diff --git a/pan/101.ipynb b/pan/101.ipynb index 5ceeef852a34b94220e9cff0cec71cbcd6fbe8ca..3d7272ef12fdba86f27da278cda566f8400156e8 100644 --- a/pan/101.ipynb +++ b/pan/101.ipynb @@ -1 +1 @@ -{"cells":[{"cell_type":"code","execution_count":2,"metadata":{"id":"84B17C132F804024858A286483EAFD88","jupyter":{},"tags":[],"slideshow":{"slide_type":"slide"},"trusted":true,"collapsed":false,"scrolled":true,"notebookId":"6308396c07d971ee2b1e99f2"},"outputs":[{"output_type":"stream","name":"stderr","text":"WARNING (theano.link.c.cmodule): install mkl with `conda install mkl-service`: No module named 'mkl'\n"}],"source":"import arviz as az\nimport matplotlib.pyplot as plt\nimport numpy as np\nimport pandas as pd\nimport pymc3 as pm\nimport xarray as xr\n%config InlineBackend.figure_format = 'retina'\naz.style.use(\"arviz-darkgrid\")\nrng = np.random.default_rng(1234)"},{"cell_type":"markdown","metadata":{"id":"B1CD9D9075E8417B8A12276281A87272","jupyter":{},"tags":[],"slideshow":{"slide_type":"slide"},"trusted":true,"collapsed":false,"scrolled":false,"notebookId":"6308396c07d971ee2b1e99f2"},"source":"例子:社会经济地位,社会关系地位与幸福感的关系\n\n数据本身的可视化、贝叶斯模型、模型诊断、统计推断"},{"cell_type":"code","execution_count":31,"metadata":{"id":"75694A4449E849718D46562560D4A45A","jupyter":{},"tags":[],"slideshow":{"slide_type":"slide"},"trusted":true,"collapsed":false,"scrolled":false,"notebookId":"6308396c07d971ee2b1e99f2"},"outputs":[],"source":"# 导入数据\nSMS_data = pd.read_csv('SMS_Well_being.csv')[['uID','variable','factor','Country']]"},{"cell_type":"code","execution_count":102,"metadata":{"id":"F85A805F43544AA69AF371B532DEE124","jupyter":{},"tags":[],"slideshow":{"slide_type":"slide"},"trusted":true,"collapsed":false,"scrolled":false,"notebookId":"6308396c07d971ee2b1e99f2"},"outputs":[],"source":"plot_data = [\n sorted(SMS_data.query('factor==\"Low\"').variable[0:3000]),\n sorted(SMS_data.query('factor==\"High\"').variable[0:3000])]"},{"cell_type":"code","source":"# import matplotlib\n# a = sorted([f.name for f in matplotlib.font_manager.fontManager.ttflist])\n\n# for i in a:\n# print(i)\n\n# 字体样式\nfont = {'family' : 'Source Han Sans CN'}\n# 具体使用\nplt.rc('font',**font)","metadata":{"id":"E3425865C50D4CBB81E3B30E2895C3C4","notebookId":"6308396c07d971ee2b1e99f2","jupyter":{},"collapsed":false,"scrolled":true,"tags":[],"slideshow":{"slide_type":"slide"},"trusted":true},"outputs":[],"execution_count":5},{"cell_type":"code","execution_count":107,"metadata":{"id":"59C5972D76C34D0CB9137A7B46DD0154","jupyter":{},"tags":[],"slideshow":{"slide_type":"slide"},"trusted":true,"collapsed":false,"scrolled":true,"notebookId":"6308396c07d971ee2b1e99f2"},"outputs":[{"output_type":"stream","name":"stderr","text":"/opt/conda/lib/python3.7/site-packages/ipykernel_launcher.py:45: UserWarning: This figure was using constrained_layout, but that is incompatible with subplots_adjust and/or tight_layout; disabling constrained_layout.\n"},{"output_type":"display_data","data":{"text/plain":"
","text/html":""},"metadata":{"image/png":{"width":766,"height":364}},"transient":{}}],"source":"# 画图对比两种社会地位对幸福感的影响\ndef adjacent_values(vals, q1, q3):\n upper_adjacent_value = q3 + (q3 - q1) * 1.5\n upper_adjacent_value = np.clip(upper_adjacent_value, q3, vals[-1])\n\n lower_adjacent_value = q1 - (q3 - q1) * 1.5\n lower_adjacent_value = np.clip(lower_adjacent_value, vals[0], q1)\n return lower_adjacent_value, upper_adjacent_value\n\ndef set_axis_style(ax, labels):\n ax.xaxis.set_tick_params(direction='out')\n ax.xaxis.set_ticks_position('bottom')\n ax.set_xticks(np.arange(1, len(labels) + 1), labels=labels)\n ax.set_xlim(0.25, len(labels) + 0.75)\n ax.set_xlabel('社会关系地位')\n\nfig, ax1 = plt.subplots(nrows=1, ncols=1, figsize=(9, 4), sharey=True)\n\nparts = ax1.violinplot(\n plot_data, showmeans=False, showmedians=False,\n showextrema=False)\n\nfor pc in parts['bodies']:\n pc.set_facecolor('#D43F3A')\n pc.set_edgecolor('black')\n pc.set_alpha(1)\n\nquartile1, medians, quartile3 = np.percentile(plot_data, [25, 50, 75], axis=1)\nwhiskers = np.array([\n adjacent_values(sorted_array, q1, q3)\n for sorted_array, q1, q3 in zip(plot_data, quartile1, quartile3)])\nwhiskers_min, whiskers_max = whiskers[:, 0], whiskers[:, 1]\n\ninds = np.arange(1, len(medians) + 1)\nax1.scatter(inds, medians, marker='o', color='white', s=30, zorder=3)\nax1.vlines(inds, quartile1, quartile3, color='k', linestyle='-', lw=5)\nax1.vlines(inds, whiskers_min, whiskers_max, color='k', linestyle='-', lw=1)\n\n# set style for the axes\nlabels = ['低','高']\nplt.xticks(np.arange(2)+1, labels)\nplt.xlabel('社会地位')\nplt.ylabel('幸福感')\n\nplt.subplots_adjust(bottom=0.15, wspace=0.05)\nplt.show()"},{"cell_type":"code","execution_count":108,"metadata":{"id":"3461187F468F46DBB18F8C3F4C3EE76C","jupyter":{},"tags":[],"slideshow":{"slide_type":"slide"},"trusted":true,"collapsed":false,"scrolled":true,"notebookId":"6308396c07d971ee2b1e99f2"},"outputs":[],"source":"x = pd.factorize(SMS_data.factor)[0] # high为0,low为1\nwith pm.Model() as linear_regression:\n sigma = pm.HalfCauchy(\"sigma\", beta=2)\n β0 = pm.Normal(\"β0\", 0, sigma=5)\n β1 = pm.Normal(\"β1\", 0, sigma=5)\n # x = pm.MutableData(\"x\", x, dims=\"uID\")\n # μ = pm.Deterministic(\"μ\", β0 + β1 * x, dims=\"uID\")\n pm.Normal(\"y\", mu=β0 + β1 * x, sigma=sigma, observed=SMS_data.variable)"},{"cell_type":"code","execution_count":44,"metadata":{"id":"BECEC5A3264F49F59EF4D89F47F57785","jupyter":{},"tags":[],"slideshow":{"slide_type":"slide"},"trusted":true,"collapsed":false,"scrolled":false,"notebookId":"6308396c07d971ee2b1e99f2"},"outputs":[{"output_type":"execute_result","data":{"text/plain":"","text/html":""},"metadata":{},"transient":{}}],"source":"pm.model_to_graphviz(linear_regression)"},{"cell_type":"code","execution_count":54,"metadata":{"id":"27050DEF12FD4AAEB72B694ECA3DA602","jupyter":{},"tags":[],"slideshow":{"slide_type":"slide"},"trusted":true,"collapsed":false,"scrolled":false,"notebookId":"6308396c07d971ee2b1e99f2"},"outputs":[{"output_type":"stream","name":"stderr","text":"Auto-assigning NUTS sampler...\nInitializing NUTS using jitter+adapt_diag...\nMultiprocess sampling (4 chains in 4 jobs)\nNUTS: [β1, β0, sigma]\n"},{"output_type":"display_data","data":{"text/plain":"","text/html":"\n\n"},"metadata":{},"transient":{}},{"output_type":"stream","name":"stderr","text":"Sampling 4 chains for 2_000 tune and 4_000 draw iterations (8_000 + 16_000 draws total) took 12 seconds.\n"}],"source":"with linear_regression:\n idata = pm.sample(4000, tune=2000, target_accept=0.9, return_inferencedata=True)"},{"cell_type":"code","execution_count":55,"metadata":{"id":"E54DEC474F6049F89408157C78B15D7D","jupyter":{},"tags":[],"slideshow":{"slide_type":"slide"},"trusted":true,"collapsed":false,"scrolled":true,"notebookId":"6308396c07d971ee2b1e99f2"},"outputs":[{"output_type":"display_data","data":{"text/plain":"
","text/html":""},"metadata":{"image/png":{"width":1211,"height":611}},"transient":{}}],"source":"az.plot_trace(idata);"},{"cell_type":"code","source":"az.loo(idata)","metadata":{"id":"CA789587B08D4E828FD0598C0B45A171","notebookId":"6308396c07d971ee2b1e99f2","jupyter":{},"collapsed":false,"scrolled":false,"tags":[],"slideshow":{"slide_type":"slide"},"trusted":true},"outputs":[{"output_type":"execute_result","data":{"text/plain":"Computed from 16000 by 6905 log-likelihood matrix\n\n Estimate SE\nelpd_loo -6936.45 61.84\np_loo 3.19 -"},"metadata":{},"transient":{}}],"execution_count":67},{"cell_type":"code","source":"az.rhat(idata)","metadata":{"id":"2DE1A8415C4E4F6F8F880B0E2C6E2DA7","notebookId":"6308396c07d971ee2b1e99f2","jupyter":{},"collapsed":false,"scrolled":false,"tags":[],"slideshow":{"slide_type":"slide"},"trusted":true},"outputs":[{"output_type":"execute_result","data":{"text/plain":"\nDimensions: ()\nData variables:\n β0 float64 1.001\n β1 float64 1.001\n sigma float64 1.0","text/html":"
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
<xarray.Dataset>\nDimensions:  ()\nData variables:\n    β0       float64 1.001\n    β1       float64 1.001\n    sigma    float64 1.0
"},"metadata":{},"transient":{}}],"execution_count":68},{"cell_type":"code","source":"reg_post = idata.posterior.stack(chain_draw=(\"chain\", \"draw\"))","metadata":{"id":"D6E5293F6DEF462F9476BE84776A3FC4","notebookId":"6308396c07d971ee2b1e99f2","jupyter":{},"collapsed":false,"scrolled":false,"tags":[],"slideshow":{"slide_type":"slide"},"trusted":true},"outputs":[],"execution_count":57},{"cell_type":"code","source":"ppc_x = np.repeat([0,1],len(reg_post.sigma)/2)\nppc_y = reg_post['β0'] + reg_post['β1']*ppc_x","metadata":{"id":"DF34678EC776459B8EA99D70817379E7","notebookId":"6308396c07d971ee2b1e99f2","jupyter":{},"collapsed":false,"scrolled":false,"tags":[],"slideshow":{"slide_type":"slide"},"trusted":true},"outputs":[],"execution_count":120},{"cell_type":"code","source":"labels = ['低', '高']\nobs_low = SMS_data.query('factor==\"Low\"').variable\nobs_high = SMS_data.query('factor==\"High\"').variable\nppc_low = ppc_y[ppc_x==1].values\nppc_high = ppc_y[ppc_x==0].values\ndata = [\n list(obs_low),\n list(ppc_low),\n list(obs_high),\n list(ppc_high)\n ]\npos = [1, 2, 4, 5]\n\nfig, ax = plt.subplots()\nax.violinplot(data, pos, points=20, widths=0.3,\n showmeans=True, showextrema=True, showmedians=True)\n# Add some text for labels, title and custom x-axis tick labels, etc.\nax.set_ylabel('幸福感')\nax.set_title('Posterior predictive check')\nplt.xticks([1.5,4.5], labels)\n\nfig.tight_layout()\nplt.show()","metadata":{"id":"D27A38FFC2E14DE7AE59DED2B16E366B","notebookId":"6308396c07d971ee2b1e99f2","jupyter":{},"collapsed":false,"scrolled":false,"tags":[],"slideshow":{"slide_type":"slide"},"trusted":true},"outputs":[{"output_type":"stream","name":"stderr","text":"/opt/conda/lib/python3.7/site-packages/ipykernel_launcher.py:22: UserWarning: This figure was using constrained_layout, but that is incompatible with subplots_adjust and/or tight_layout; disabling constrained_layout.\n"},{"output_type":"display_data","data":{"text/plain":"
","text/html":""},"metadata":{"image/png":{"width":709,"height":470}},"transient":{}}],"execution_count":131},{"cell_type":"code","source":"labels = ['低', '高']\nobs_low = SMS_data.query('factor==\"Low\"').variable\nobs_high = SMS_data.query('factor==\"High\"').variable\nppc_low = ppc_y[ppc_x==1].values\nppc_high = ppc_y[ppc_x==0].values\nobs_means = [\n np.mean(obs_low)+1,\n np.mean(obs_high)+1\n ]\nobs_std = [\n np.std(obs_low),\n np.std(obs_high)\n]\nppc_means = [\n np.mean(ppc_low)+1,\n np.mean(ppc_high)+1\n ]\nppc_std = [\n np.std(ppc_low),\n np.std(ppc_high)\n]\n\nx = np.arange(len(labels)) # the label locations\nwidth = 0.5 # the width of the bars\n\nfig, ax = plt.subplots()\nrects1 = ax.bar(x - width/2, obs_means, width, yerr=obs_std, label='观测值')\nrects2 = ax.bar(x + width/2, ppc_means, width, yerr=ppc_std, label='预测值')\n\n# Add some text for labels, title and custom x-axis tick labels, etc.\nax.set_ylabel('幸福感')\nax.set_title('Posterior predictive check')\nplt.xticks(x, labels)\nax.legend()\n\nax.bar_label(rects1, padding=3)\nax.bar_label(rects2, padding=3)\n\nfig.tight_layout()\n\nplt.show()","metadata":{"id":"2150DA71D1D540A183513441B1FCF6BE","notebookId":"6308396c07d971ee2b1e99f2","jupyter":{},"collapsed":false,"scrolled":false,"tags":[],"slideshow":{"slide_type":"slide"},"trusted":true},"outputs":[{"output_type":"stream","name":"stderr","text":"/opt/conda/lib/python3.7/site-packages/ipykernel_launcher.py:39: UserWarning: This figure was using constrained_layout, but that is incompatible with subplots_adjust and/or tight_layout; disabling constrained_layout.\n"},{"output_type":"display_data","data":{"text/plain":"
","text/html":""},"metadata":{"image/png":{"width":709,"height":470}},"transient":{}}],"execution_count":125}],"metadata":{"kernelspec":{"language":"python","display_name":"Python 3","name":"python3"},"language_info":{"codemirror_mode":{"name":"ipython","version":3},"name":"python","mimetype":"text/x-python","nbconvert_exporter":"python","file_extension":".py","version":"3.5.2","pygments_lexer":"ipython3"}},"nbformat":4,"nbformat_minor":2} \ No newline at end of file +{"cells":[{"cell_type":"code","execution_count":1,"metadata":{"collapsed":false,"id":"84B17C132F804024858A286483EAFD88","jupyter":{},"notebookId":"630abaa16bfce48b61ae22ae","scrolled":true,"slideshow":{"slide_type":"slide"},"tags":[],"trusted":true},"outputs":[{"name":"stderr","output_type":"stream","text":["WARNING (theano.link.c.cmodule): install mkl with `conda install mkl-service`: No module named 'mkl'\n"]}],"source":["import arviz as az\n","import matplotlib.pyplot as plt\n","import numpy as np\n","import pandas as pd\n","import pymc3 as pm\n","import xarray as xr\n","%config InlineBackend.figure_format = 'retina'\n","az.style.use(\"arviz-darkgrid\")\n","rng = np.random.default_rng(1234)"]},{"cell_type":"markdown","metadata":{"collapsed":false,"id":"B1CD9D9075E8417B8A12276281A87272","jupyter":{},"notebookId":"630abaa16bfce48b61ae22ae","scrolled":false,"slideshow":{"slide_type":"slide"},"tags":[],"trusted":true},"source":["# 例子:社会关系地位与幸福感的关系\n","\n","实例的数据来自 Many Labs 2 项目(osf.io/uazdm/)中的一个研究。\n","该研究探究了社会关系地位对于幸福感的影响 “Sociometric status and well-being”,\n","(Anderson, Kraus, Galinsky, & Keltner, 2012)。\n","该实验共采集了 6905 个样本。"]},{"cell_type":"code","execution_count":2,"metadata":{"collapsed":false,"id":"75694A4449E849718D46562560D4A45A","jupyter":{},"notebookId":"630abaa16bfce48b61ae22ae","scrolled":false,"slideshow":{"slide_type":"slide"},"tags":[],"trusted":true},"outputs":[],"source":["# 导入数据\n","SMS_data = pd.read_csv('pan/SMS_Well_being.csv')[['uID','variable','factor','Country']]"]},{"cell_type":"code","execution_count":3,"metadata":{"collapsed":false,"id":"F85A805F43544AA69AF371B532DEE124","jupyter":{},"notebookId":"630abaa16bfce48b61ae22ae","scrolled":false,"slideshow":{"slide_type":"slide"},"tags":[],"trusted":true},"outputs":[],"source":["# 把数据分为高低两种社会关系的地位的子数据以便画图与后续分析\n","plot_data = [\n"," sorted(SMS_data.query('factor==\"Low\"').variable[0:3000]),\n"," sorted(SMS_data.query('factor==\"High\"').variable[0:3000])]"]},{"cell_type":"markdown","metadata":{"collapsed":false,"id":"62D3505AFED84C6491DD5CD6DEEBE5CD","jupyter":{},"notebookId":"630abaa16bfce48b61ae22ae","scrolled":false,"slideshow":{"slide_type":"slide"},"tags":[],"trusted":true},"source":["## 通过画图对于两种社会关系地位对幸福感的影响\n","\n","图中横坐标代表高低两种社会关系地位,纵坐标代表了主观幸福感评分。"]},{"cell_type":"code","execution_count":4,"metadata":{"collapsed":false,"id":"E3425865C50D4CBB81E3B30E2895C3C4","jupyter":{},"notebookId":"630abaa16bfce48b61ae22ae","scrolled":true,"slideshow":{"slide_type":"slide"},"tags":[],"trusted":true},"outputs":[],"source":["# import matplotlib\n","# a = sorted([f.name for f in matplotlib.font_manager.fontManager.ttflist])\n","\n","# for i in a:\n","# print(i)\n","\n","# 字体样式\n","font = {'family' : 'Source Han Sans CN'}\n","# 具体使用\n","plt.rc('font',**font)"]},{"cell_type":"code","execution_count":5,"metadata":{"collapsed":false,"id":"59C5972D76C34D0CB9137A7B46DD0154","jupyter":{},"notebookId":"630abaa16bfce48b61ae22ae","scrolled":true,"slideshow":{"slide_type":"slide"},"tags":[],"trusted":true},"outputs":[{"name":"stderr","output_type":"stream","text":["/opt/conda/lib/python3.7/site-packages/ipykernel_launcher.py:45: UserWarning: This figure was using constrained_layout, but that is incompatible with subplots_adjust and/or tight_layout; disabling constrained_layout.\n"]},{"data":{"text/html":[""],"text/plain":["
"]},"metadata":{"image/png":{"height":364,"width":766}},"output_type":"display_data"}],"source":["# 画图对比两种社会地位对幸福感的影响\n","def adjacent_values(vals, q1, q3):\n"," upper_adjacent_value = q3 + (q3 - q1) * 1.5\n"," upper_adjacent_value = np.clip(upper_adjacent_value, q3, vals[-1])\n","\n"," lower_adjacent_value = q1 - (q3 - q1) * 1.5\n"," lower_adjacent_value = np.clip(lower_adjacent_value, vals[0], q1)\n"," return lower_adjacent_value, upper_adjacent_value\n","\n","def set_axis_style(ax, labels):\n"," ax.xaxis.set_tick_params(direction='out')\n"," ax.xaxis.set_ticks_position('bottom')\n"," ax.set_xticks(np.arange(1, len(labels) + 1), labels=labels)\n"," ax.set_xlim(0.25, len(labels) + 0.75)\n"," ax.set_xlabel('社会关系地位')\n","\n","fig, ax1 = plt.subplots(nrows=1, ncols=1, figsize=(9, 4), sharey=True)\n","\n","parts = ax1.violinplot(\n"," plot_data, showmeans=False, showmedians=False,\n"," showextrema=False)\n","\n","for pc in parts['bodies']:\n"," pc.set_facecolor('#D43F3A')\n"," pc.set_edgecolor('black')\n"," pc.set_alpha(1)\n","\n","quartile1, medians, quartile3 = np.percentile(plot_data, [25, 50, 75], axis=1)\n","whiskers = np.array([\n"," adjacent_values(sorted_array, q1, q3)\n"," for sorted_array, q1, q3 in zip(plot_data, quartile1, quartile3)])\n","whiskers_min, whiskers_max = whiskers[:, 0], whiskers[:, 1]\n","\n","inds = np.arange(1, len(medians) + 1)\n","ax1.scatter(inds, medians, marker='o', color='white', s=30, zorder=3)\n","ax1.vlines(inds, quartile1, quartile3, color='k', linestyle='-', lw=5)\n","ax1.vlines(inds, whiskers_min, whiskers_max, color='k', linestyle='-', lw=1)\n","\n","# set style for the axes\n","labels = ['低','高']\n","plt.xticks(np.arange(2)+1, labels)\n","plt.xlabel('社会关系地位')\n","plt.ylabel('幸福感')\n","\n","plt.subplots_adjust(bottom=0.15, wspace=0.05)\n","plt.show()"]},{"cell_type":"markdown","metadata":{"collapsed":false,"id":"D161E5B1ECE1430D9CCABC74C9FEF64C","jupyter":{},"notebookId":"630abaa16bfce48b61ae22ae","scrolled":false,"slideshow":{"slide_type":"slide"},"tags":[],"trusted":true},"source":["### 通过t检验,分析两种社会关系地位下幸福感的差异\n","\n","结果发现,两种社会关系水平下被试的主观幸福感边缘显著,t(6903) = -1.76, p = .08。"]},{"cell_type":"code","execution_count":6,"metadata":{"collapsed":false,"id":"2174B974752E40D4AB61ACB340D8B1C0","jupyter":{},"notebookId":"630abaa16bfce48b61ae22ae","scrolled":false,"slideshow":{"slide_type":"slide"},"tags":[],"trusted":true},"outputs":[{"name":"stdout","output_type":"stream","text":["低社会关系:0.014 ± 0.66; 高社会关系:-0.014 ± 0.67\n"]},{"data":{"text/plain":["Ttest_indResult(statistic=1.7593310889762195, pvalue=0.07856558333862036)"]},"execution_count":null,"metadata":{},"output_type":"execute_result"}],"source":["from scipy import stats\n","SMS_low = SMS_data.query('factor==\"Low\"').variable.values\n","SMS_high = SMS_data.query('factor==\"High\"').variable.values\n","print(\n"," f\"低社会关系:{np.around(np.mean(SMS_low),3)} ± {np.around(np.std(SMS_low),2)};\",\n"," f\"高社会关系:{np.around(np.mean(SMS_high),3)} ± {np.around(np.std(SMS_high),2)}\")\n","stats.ttest_ind(\n"," a= SMS_low,\n"," b= SMS_high, \n"," equal_var=True)"]},{"cell_type":"markdown","metadata":{"collapsed":false,"id":"D6D5A5DD5EE14EAD8785CF9AD1A07EC6","jupyter":{},"notebookId":"630abaa16bfce48b61ae22ae","scrolled":false,"slideshow":{"slide_type":"slide"},"tags":[],"trusted":true},"source":["## 通过模型思维替代t检验\n","\n","相比于通过t检验分析不同社会关系地位下幸福感的差异,我们可以通过模型思维来解决这个问题。\n","\n","首先,通过建立线性模型去替代原本的t检验模型。\n","\n","其次,通过贝叶斯方法与pymc对线性模型建模与分析。\n","\n","最后,展示了模型分析结果的丰富性。"]},{"cell_type":"code","execution_count":8,"metadata":{"collapsed":false,"id":"3461187F468F46DBB18F8C3F4C3EE76C","jupyter":{},"notebookId":"630abaa16bfce48b61ae22ae","scrolled":true,"slideshow":{"slide_type":"slide"},"tags":[],"trusted":true},"outputs":[],"source":["# 通过pymc建立基于贝叶斯的线性模型\n","x = pd.factorize(SMS_data.factor)[0] # high为0,low为1\n","# coords = {\n","# \"obs\": np.arange(SMS_data.shape[0]),\n","# }\n","with pm.Model() as linear_regression:\n"," sigma = pm.HalfCauchy(\"sigma\", beta=2)\n"," β0 = pm.Normal(\"β0\", 0, sigma=5)\n"," β1 = pm.Normal(\"β1\", 0, sigma=5)\n"," x = pm.Data(\"x\", x)\n"," # μ = pm.Deterministic(\"μ\", β0 + β1 * x)\n"," pm.Normal(\"y\", mu=β0 + β1 * x, sigma=sigma, observed=SMS_data.variable)"]},{"cell_type":"markdown","metadata":{"collapsed":false,"id":"105F06D55D5542ABB329490BCD2F22D7","jupyter":{},"notebookId":"630abaa16bfce48b61ae22ae","scrolled":false,"slideshow":{"slide_type":"slide"},"tags":[],"trusted":true},"source":["可以通过pymc自带的可视化工具将模型关系可视化。\n","\n","x 为自变量,其中1为低社会关系,0为高社会关系。\n","\n","参数 $\\beta0$ 是线性模型的截距,而 $\\beta1$ 是斜率。\n","\n","截距代表了高社会关系地位被试的幸福感;而截距加上斜率表示低社会关系地位被试的幸福感。\n","\n","参数$sigma$是残差,因变量$y$即主观幸福感。\n","\n","模型图展示了各参数通过怎样的关系影响到因变量。"]},{"cell_type":"code","execution_count":9,"metadata":{"collapsed":false,"id":"BECEC5A3264F49F59EF4D89F47F57785","jupyter":{},"notebookId":"630abaa16bfce48b61ae22ae","scrolled":false,"slideshow":{"slide_type":"slide"},"tags":[],"trusted":true},"outputs":[{"data":{"text/html":[""],"text/plain":[""]},"execution_count":null,"metadata":{},"output_type":"execute_result"}],"source":["pm.model_to_graphviz(linear_regression)"]},{"cell_type":"code","execution_count":10,"metadata":{"collapsed":false,"id":"27050DEF12FD4AAEB72B694ECA3DA602","jupyter":{},"notebookId":"630abaa16bfce48b61ae22ae","scrolled":false,"slideshow":{"slide_type":"slide"},"tags":[],"trusted":true},"outputs":[{"name":"stderr","output_type":"stream","text":["Auto-assigning NUTS sampler...\n","Initializing NUTS using jitter+adapt_diag...\n","Multiprocess sampling (4 chains in 4 jobs)\n","NUTS: [β1, β0, sigma]\n"]},{"data":{"text/html":["\n","\n"],"text/plain":[""]},"metadata":{},"output_type":"display_data"},{"name":"stderr","output_type":"stream","text":["Sampling 4 chains for 1_000 tune and 2_000 draw iterations (4_000 + 8_000 draws total) took 22 seconds.\n"]}],"source":["# 模型拟合过程 (mcmc采样过程)\n","with linear_regression:\n"," idata = pm.sample(2000, tune=1000, target_accept=0.9, return_inferencedata=True)"]},{"cell_type":"markdown","metadata":{"collapsed":false,"id":"4E09582EC9134F1C95875C19D60B3494","jupyter":{},"notebookId":"630abaa16bfce48b61ae22ae","scrolled":false,"slideshow":{"slide_type":"slide"},"tags":[],"trusted":true},"source":["### 参数的后验分布\n","这里的模型分析结果展示了各参数的分布(后验)情况"]},{"cell_type":"code","execution_count":11,"metadata":{"collapsed":false,"id":"E54DEC474F6049F89408157C78B15D7D","jupyter":{},"notebookId":"630abaa16bfce48b61ae22ae","scrolled":true,"slideshow":{"slide_type":"slide"},"tags":[],"trusted":true},"outputs":[{"data":{"text/html":[""],"text/plain":["
"]},"metadata":{"image/png":{"height":611,"width":1211}},"output_type":"display_data"}],"source":["az.plot_trace(idata);"]},{"cell_type":"markdown","metadata":{"collapsed":false,"id":"9C2986E309324D9BAE4DE77FDA3B7090","jupyter":{},"notebookId":"630abaa16bfce48b61ae22ae","scrolled":false,"slideshow":{"slide_type":"slide"},"tags":[],"trusted":true},"source":["下图反应了参数β1的可信度,即两个社会关系下幸福感差异的可信度。\n","\n","结果显示,两个社会关系下幸福感差异的可信度为96%。"]},{"cell_type":"code","execution_count":12,"metadata":{"collapsed":false,"id":"2E8C5D580A384AB5A8F2F85A8F765460","jupyter":{},"notebookId":"630abaa16bfce48b61ae22ae","scrolled":false,"slideshow":{"slide_type":"slide"},"tags":[],"trusted":true},"outputs":[{"data":{"text/plain":["array(0.9625)"]},"execution_count":null,"metadata":{},"output_type":"execute_result"}],"source":["(idata.posterior.β1 > 0).mean().values"]},{"cell_type":"code","execution_count":13,"metadata":{"collapsed":false,"id":"F500A43067C4488F94A672EB6A77BE57","jupyter":{},"notebookId":"630abaa16bfce48b61ae22ae","scrolled":false,"slideshow":{"slide_type":"slide"},"tags":[],"trusted":true},"outputs":[{"data":{"text/plain":[""]},"execution_count":null,"metadata":{},"output_type":"execute_result"},{"data":{"text/html":[""],"text/plain":["
"]},"metadata":{"image/png":{"height":491,"width":731}},"output_type":"display_data"}],"source":["az.plot_posterior(idata, var_names=['β1'], kind='hist',ref_val=0)"]},{"cell_type":"markdown","metadata":{"collapsed":false,"id":"B533467B3553473BB862E806B5830837","jupyter":{},"notebookId":"630abaa16bfce48b61ae22ae","scrolled":false,"slideshow":{"slide_type":"slide"},"tags":[],"trusted":true},"source":["### 模型检验\n","\n","通过模型思维进行数据分析需要注意模型检验,即检验模型是否能有效的反应数据的特征。"]},{"cell_type":"markdown","metadata":{"collapsed":false,"id":"303C9F7A2BD142B69A945635458C4401","jupyter":{},"notebookId":"630abaa16bfce48b61ae22ae","scrolled":false,"slideshow":{"slide_type":"slide"},"tags":[],"trusted":true},"source":["下表格为模型参数的基本信息:\n","\n","mean和sd 为各参数的均值和标准差;\n","hdi 3%-97% 为参数分布的可信区间;\n","msce mean和sd 为mcmc采样标准误统计量的均值和标准差;\n","ess bulk和tail 反应了mcmc采样有效样本数量相关性能;\n","r hat 为参数收敛性的指标。"]},{"cell_type":"code","execution_count":14,"metadata":{"collapsed":false,"id":"CA789587B08D4E828FD0598C0B45A171","jupyter":{},"notebookId":"630abaa16bfce48b61ae22ae","scrolled":false,"slideshow":{"slide_type":"slide"},"tags":[],"trusted":true},"outputs":[{"data":{"text/html":["
\n","\n","\n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n"," \n","
meansdhdi_3%hdi_97%mcse_meanmcse_sdess_bulkess_tailr_hat
β0-0.0140.011-0.0360.0070.00.03962.04670.01.0
β10.0280.016-0.0020.0570.00.04070.04838.01.0
sigma0.6610.0060.6490.6710.00.04591.04710.01.0
\n","
"],"text/plain":[" mean sd hdi_3% hdi_97% mcse_mean mcse_sd ess_bulk ess_tail \\\n","β0 -0.014 0.011 -0.036 0.007 0.0 0.0 3962.0 4670.0 \n","β1 0.028 0.016 -0.002 0.057 0.0 0.0 4070.0 4838.0 \n","sigma 0.661 0.006 0.649 0.671 0.0 0.0 4591.0 4710.0 \n","\n"," r_hat \n","β0 1.0 \n","β1 1.0 \n","sigma 1.0 "]},"execution_count":null,"metadata":{},"output_type":"execute_result"}],"source":["az.summary(idata)"]},{"cell_type":"markdown","metadata":{"collapsed":false,"id":"A4F6079034BB4F4B8F8F8D27C8E8384F","jupyter":{},"notebookId":"630abaa16bfce48b61ae22ae","scrolled":false,"slideshow":{"slide_type":"slide"},"tags":[],"trusted":true},"source":["### 后验预测检验 ppc (posterior predictive check)"]},{"cell_type":"code","execution_count":89,"metadata":{"collapsed":false,"id":"185D0307378F4B5B8CCE748A6655D9A7","jupyter":{},"notebookId":"630abaa16bfce48b61ae22ae","scrolled":false,"slideshow":{"slide_type":"slide"},"tags":[],"trusted":true},"outputs":[{"data":{"text/html":["\n","\n"],"text/plain":[""]},"metadata":{},"output_type":"display_data"},{"data":{"text/html":["\n","
\n"," \n"," 100.00% [8000/8000 00:22<00:00]\n","
\n"," "],"text/plain":[""]},"metadata":{},"output_type":"update_display_data","transient":{"display_id":"fd65de1e94650e7810c1e6d448869d71"}}],"source":["with linear_regression:\n"," pm.set_data({\"x\": np.array([0,1])})\n"," ppc_y = pm.sample_posterior_predictive(idata, var_names=[\"y\"],keep_size=True)[\"y\"] # keep size不是data的size 而是mcmc的size"]},{"cell_type":"code","execution_count":103,"metadata":{"collapsed":false,"id":"D27A38FFC2E14DE7AE59DED2B16E366B","jupyter":{},"notebookId":"630abaa16bfce48b61ae22ae","scrolled":false,"slideshow":{"slide_type":"slide"},"tags":[],"trusted":true},"outputs":[{"name":"stderr","output_type":"stream","text":["/opt/conda/lib/python3.7/site-packages/ipykernel_launcher.py:30: UserWarning: This figure was using constrained_layout, but that is incompatible with subplots_adjust and/or tight_layout; disabling constrained_layout.\n"]},{"data":{"text/html":[""],"text/plain":["
"]},"metadata":{"image/png":{"height":470,"width":709}},"output_type":"display_data"}],"source":["labels = ['低', '高']\n","obs_low = SMS_data.query('factor==\"Low\"').variable\n","obs_high = SMS_data.query('factor==\"High\"').variable\n","ppc_y2 = [j for i in ppc_y for j in i]\n","ppc_low = [i[1] for i in ppc_y2]\n","ppc_high = [i[0] for i in ppc_y2]\n","# reg_post = idata.posterior.stack(chain_draw=(\"chain\", \"draw\"))\n","# ppc_x = np.repeat([0,1],len(reg_post.sigma)/2)\n","# ppc_y = reg_post['β0'] + reg_post['β1']*ppc_x\n","# ppc_low = ppc_y[ppc_x==1].values\n","# ppc_high = ppc_y[ppc_x==0].values\n","\n","fig, ax = plt.subplots()\n","part1 = ax.violinplot(\n"," [list(obs_low),list(obs_high)], \n"," [1,4], points=100, widths=0.3, \n"," showmeans=True, showextrema=True, showmedians=True)\n","part2 = ax.violinplot(\n"," [list(ppc_low),list(ppc_high)], \n"," [2,5], points=100, widths=0.3, \n"," showmeans=True, showextrema=True, showmedians=True)\n","part1['bodies'][0].set_label('观测数据')\n","part2['bodies'][0].set_label('预测数据')\n","# Add some text for labels, title and custom x-axis tick labels, etc.\n","ax.set_ylabel('幸福感')\n","ax.set_title('Posterior predictive check')\n","plt.xticks([1.5,4.5], labels)\n","ax.legend()\n","\n","fig.tight_layout()\n","plt.show()"]},{"cell_type":"markdown","metadata":{"collapsed":false,"id":"BAB9CCCD2FF146C7BC6AD1BC5620C2C7","jupyter":{},"notebookId":"630abaa16bfce48b61ae22ae","scrolled":false,"slideshow":{"slide_type":"slide"},"tags":[],"trusted":true},"source":["# 模型思维对于认知机制的意义"]},{"cell_type":"markdown","metadata":{"collapsed":false,"id":"E9BB887BEC8B4E57A2A4CDD0E593140B","jupyter":{},"notebookId":"630abaa16bfce48b61ae22ae","scrolled":false,"slideshow":{"slide_type":"slide"},"tags":[],"trusted":true},"source":["在实验数据的收集时,研究者往往会采集个体反应的正确率与反应时。\n","\n","而传统分析方法并不能同时对两种数据进行分析,从而推断潜在的认知机制。比如,个体是否愿意牺牲更多的反应时间去获得一个更准确的判断。\n","\n","认知模型能有效的弥补这一问题,比如 drift-diffusion model, DDM。"]},{"cell_type":"markdown","metadata":{"collapsed":false,"id":"9EE8BDEF0D5E469BA39B4207CBD1943D","jupyter":{},"notebookId":"630abaa16bfce48b61ae22ae","scrolled":false,"slideshow":{"slide_type":"slide"},"tags":[],"trusted":true},"source":["\n","![DDM1](https://cdn.kesci.com/upload/image/rhb2957an5.png?imageView2/0/w/960/h/960)\n"]},{"cell_type":"markdown","metadata":{"collapsed":false,"id":"6324DB66BC414CDE9C19D894B239E471","jupyter":{},"notebookId":"630abaa16bfce48b61ae22ae","scrolled":false,"slideshow":{"slide_type":"slide"},"tags":[],"trusted":true},"source":["该模型假设,被试的判断需要收集的实验刺激的信息,进而做出正确或错误的判断。\n","\n","信息累积的过程就是漂移过程,用参数v表示。\n","\n","而信息累积的方向,即上下两个边界,代表被试的判断是否正确,用a表示。\n","\n","其他影响决策的参数包括,非决策反应用时与决策前的判断偏差。\n","\n","可见,**使用认知模型可以同时结合反应时与判断的正确性,并推断出更多的认知机制**。"]},{"cell_type":"code","execution_count":1,"metadata":{"collapsed":false,"id":"F833AC14AAB44690926EE15807F8E4CA","jupyter":{},"notebookId":"630abaa16bfce48b61ae22ae","scrolled":false,"slideshow":{"slide_type":"slide"},"tags":[],"trusted":true},"outputs":[{"name":"stdout","output_type":"stream","text":["HDDM: pytorch module seems missing. No LAN functionality can be loaded.\n","It seems that you do not have pytorch installed. You cannot use the network_inspector module.\n","It seems that you do not have pytorch installed.The HDDMnn, HDDMnnRegressor, HDDMnnStimCoding, HDDMnnRL and HDDMnnRLRegressorclasses will not work\n","It seems that you do not have pytorch installed.The HDDMnn, HDDMnnRegressor, HDDMnnStimCoding, HDDMnnRL and HDDMnnRLRegressorclasses will not work\n","It seems that you do not have pytorch installed.The HDDMnn, HDDMnnRegressor and HDDMnnStimCodingclasses will not work\n","It seems that you do not have pytorch installed.The HDDMnn, HDDMnnRL, HDDMnnRegressor, HDDMnnStimCoding, HDDMnnRL and HDDMnnRLRegressorclasses will not work\n","It seems that you do not have pytorch installed.The HDDMnn, HDDMnnRegressor, HDDMnnStimCoding, HDDMnnRL and HDDMnnRLRegressorclasses will not work\n"]},{"data":{"text/plain":["'0.9.7'"]},"execution_count":1,"metadata":{},"output_type":"execute_result"}],"source":["import hddm\n","hddm.__version__"]},{"cell_type":"markdown","metadata":{"collapsed":false,"id":"F4D4E39E816C4E8487A0ADFC451F6BAD","jupyter":{},"notebookId":"630abaa16bfce48b61ae22ae","scrolled":false,"slideshow":{"slide_type":"slide"},"tags":[],"trusted":true},"source":["模型图示"]},{"cell_type":"markdown","metadata":{},"source":[]},{"cell_type":"markdown","metadata":{"collapsed":false,"id":"E1F4B308667B4A9996174BE18E12EE3B","jupyter":{},"notebookId":"630abaa16bfce48b61ae22ae","scrolled":false,"slideshow":{"slide_type":"slide"},"tags":[],"trusted":true},"source":["模型拟合"]},{"cell_type":"code","execution_count":7,"metadata":{},"outputs":[{"name":"stdout","output_type":"stream","text":["No model attribute --> setting up standard HDDM\n","Set model to ddm\n"," [-----------------100%-----------------] 5000 of 5000 complete in 99.4 sec"]},{"data":{"text/plain":[""]},"execution_count":7,"metadata":{},"output_type":"execute_result"}],"source":["data = hddm.load_csv(\"simple_difficulty.csv\")\n","\n","# Create a HDDM model multi object\n","model = hddm.HDDM(data, depends_on={\"v\": \"difficulty\"})\n","\n","# Create model and start MCMC sampling\n","model.sample(5000, burn=2000)\n"]},{"cell_type":"markdown","metadata":{"collapsed":false,"id":"D0FE8AE6C4D64AEF87298F9901D04C35","jupyter":{},"notebookId":"630abaa16bfce48b61ae22ae","scrolled":false,"slideshow":{"slide_type":"slide"},"tags":[],"trusted":true},"source":["模型分析结果"]},{"cell_type":"code","execution_count":8,"metadata":{},"outputs":[{"name":"stdout","output_type":"stream","text":[" mean std 2.5q 25q 50q 75q 97.5q mc err\n","a 1.964337 0.039208 1.889998 1.9372 1.963819 1.990955 2.041962 0.001106\n","v(easy) 1.086277 0.060862 0.970537 1.045353 1.086023 1.127076 1.20418 0.00118\n","v(hard) 0.583316 0.052764 0.485529 0.546442 0.583558 0.61898 0.687896 0.00092\n","t 0.311001 0.009292 0.293203 0.30463 0.310802 0.317445 0.329226 0.000262\n","DIC: 2326.732003\n","deviance: 2322.553798\n","pD: 4.178205\n"]}],"source":["# Print fitted parameters and other model statistics\n","model.print_stats()"]},{"cell_type":"code","execution_count":9,"metadata":{},"outputs":[{"name":"stdout","output_type":"stream","text":["Plotting a\n","Plotting v(easy)\n","Plotting v(hard)\n","Plotting t\n"]},{"data":{"image/png":"iVBORw0KGgoAAAANSUhEUgAAAl0AAAFrCAYAAADrSTwGAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/NK7nSAAAACXBIWXMAAAsTAAALEwEAmpwYAABgV0lEQVR4nO3deZgU5bn38e8NDCCCgIIIguICKIkboLiD4i4uWYVsalSSHNcXThKjSZTEJGoCiUk8xiHux4AeExNAjBJ0IDFqZBA3EEQUZRFQFAYR2e73j64eemZ6756u6p7f57rmmu6q6qq76+npuufZytwdEREREWlercIOQERERKQlUNIlIiIiUgJKukRERERKQEmXiIiISAko6RIREREpASVdIiIiIiWgpEtERESkBJR0iYiIiJSAki4RERGRElDSJSIiIlICSrpERERESkBJl4iIiEgJtAk7gGS6devmffv2DTsMESmR2tra9929e9hxFEOlf39t3rwZgPbt24ccSXHU1tYCMHjw4JAjaV6VVm5Rk+13WMaky8z6APcDPQAHqt39tkbbHATcAwwCrnf3XyWsexuoA7YD29x9SKZj9u3bl7lz52baTEQqhJktCzuGYqn076/x48cDcMMNN4QcSXGYGUBFlxlUXrlFTbbfYdnUdG0Dxrn7PDPrBNSa2Ux3X5CwzTrgKuD8FPs4yd3fzyYgERGJrv79+4cdguRB5RYNGZMud18FrAoe15nZQmBvYEHCNmuANWZ2dnMFKiIi4Rs9enTYIUgeVG7RkFNHejPrCxwBPJ/Dyxx40sxqzWxMmn2PMbO5ZjZ37dq1uYQlIiIiEnlZJ11m1hH4M3CNu2/I4RjHu/sg4EzgcjM7MdlG7l7t7kPcfUj37hXRn7bFev29Daz7eEvYYYiIiERKVkmXmVURS7gedPe/5HIAd18R/F4DPAoclWuQUl7O+M0/Ofu3/ww7DBFpBuPHj6/vlC3lQ+UWDRmTLosN7bgLWOjuE3PZuZntGnS+x8x2BU4DXs0nUCkvq9ZvDjsEERGRSMlm9OJxwNeBV8xsfrDsOmAfAHf/g5ntBcwFdgN2mNk1wECgG/BoMCS3DfAnd/97Md+AiIiUjqYcKE8qt2jIZvTivwDLsM17QO8kqzYAh+UXmoiIiEjl0G2AREREREpASZeIiGRt8uTJTJ48OewwJEcqt2iI5L0XRUQkmhYvXhx2CJIHlVs0KOkSEZGsjRo1KuwQJA8qt2hQ0iUiIlkbMGBA2CFIHlRu0VD2SVd1dTVjxqS8u5CIiFSQvtc+FnYIInmryKTL3QEI5gcTEZEiqa2tBWDw4MEhR1JcxUjm3r757CJE0jwqtdzKTeRHLz7wwAMMHz6cQYMG8cADDzRY9+ijj7Jo0SKGDx/On/70Jy666CIuv/xyTjvtNNasWcMpp5zCsGHDOPXUU9mwIXa7yHvuuYejjz6a4cOHM3PmTDZv3szXvvY1Tj75ZM4999z67UREwnbjjTfyq1/9Kum6Y489Nu1rf/7znzdHSEyfPp3p06c3y76l+ajcoiHySdcXvvAFampqeOaZZ/j1r3/dYN3nPvc5BgwYQE1NDV/5ylcAGDRoEDNnzqRHjx5MnTqV2bNnc9ZZZ/HQQw+xdu1aqqurmTNnDjU1NYwYMYI//vGPnHzyyTz11FN89atfpbq6Ooy3KSKSk3//+99p1zdX0jVo0CAGDRrULPuW5qNyi4bINy8+8cQT3Hbbbbg7S5Ysybj9kUceCcDGjRv51re+xfLly1m3bh1f/OIXWbp0KYMHD6Zt27YAtGrVigULFvDCCy9w//33s3XrVk444YRmfT8iIgCTJk2iurqaLVu2cOCBB/LAAw/QoUOHJtstWLCA4cOH884773DNNddw1VVXAdCxY0c2btzIqlWruOCCC9iwYQPbtm3jjjvu4LHHHuOTTz7h8MMP5zOf+QwPPvhg0eI+55xzirYvKR2VWzREPum66aabmDNnDmbG/vvv32R9435brVrFKu+eeOIJ9ttvPx588EEmTJhAXV0dBxxwAPPmzWPr1q1UVVWxY8cODjroII455hi+/vWvA7B169bmf1MSulv//jpdOlQx5sQDwg5FWqjPf/7zXHbZZQD88Ic/5K677uLKK69sst3rr7/O008/TV1dHQMGDOA73/kOVVVV9ev/9Kc/cfrpp3P99dezfft2Nm3axAknnMDvf/975s+fX6q3IyJZiHzz4uc//3lOOOEErrrqKrp27dpk/UknncR5553HX//61wbLjz76aB5//HHOPvtsXnvtNQC6devGpZdeynHHHcdJJ53ErFmzGDNmDDNnzuTkk0/m5JNP5sknnyzF26pY8UEMUfc/NW/y8xmvhx2GtGCvvvoqJ5xwAocccggPPvhg/fdUY2effTbt2rWjW7du7LnnnqxevbrB+iOPPJJ77rmHG2+8kVdeeYVOnTo1a9x1dXXU1dU16zGk+FRu0ZCxpsvM+gD3Az0AB6rd/bZG2xwE3AMMAq53918lrDsDuA1oDfzR3W/OJcDrr7+e66+/PuX6W2+9tf7x+eefX/947733rh+tkeib3/wm3/zmNxssu//++3MJSdIok5xLJHQXXXQRf/3rXznssMO49957qampSbpdu3bt6h+3bt2abdu2NVh/4oknMmfOHB577DEuuugixo4dyze+8Y1mi3vixIkA3HDDDc12DCk+lVs0ZFPTtQ0Y5+4DgaOBy81sYKNt1gFXAQ2G2ZhZa+B24ExgIDA6yWulgijnEslOXV0dPXv2ZOvWrQX1uVq2bBk9evTgsssu49JLL2XevHkAVFVVNUt3iY4dO9KxY8ei71eal8otGjLWdLn7KmBV8LjOzBYCewMLErZZA6wxs8aTlBwFLHH3pQBmNgU4L/G1Ulmi1rx4wZ3P8sHHW/jH2GFhh1LRPtj4KR9u2sKBezZv01Yl+elPf8rQoUPp3r07Q4cOzbvpp6amhl/+8pdUVVXRsWPH+pr7MWPGcOihhzJo0KCidqQfN25c0fYlpaNyi4acOtKbWV/gCOD5LF+yN/BuwvPlwNBcjilSiOffWhd2CC3C8F/VULd5W6Qnh4ya73znO3znO99Ju82NN97Y4Pmrr75a/3jjxo0AXHjhhVx44YVNXnvLLbdwyy23FB6oiBRN1h3pzawj8GfgGncv+gyiZjbGzOaa2dy1a9cWe/dSItGq55JSqdu8LfNGIiItXFZJl5lVEUu4HnT3v+Sw/xVAn4TnvYNlTbh7tbsPcfch3bt3z+EQEiURa12UNK6a/KLuYyc5q66u1iTSZUjlFg0Zky6LTYR1F7DQ3SfmuP8XgH5mtp+ZtQVGAVNzD1NEim3qSytTrvvb/BX0v/5xPt22vYQRNT8zG2Bm8xN+NpjZNWa2u5nNNLM3gt9dg+3NzH5rZkvM7GUza/FTeq9atYpVq1aFHYbkSOUWDdn06ToO+DrwipnND5ZdB+wD4O5/MLO9gLnAbsAOM7sGGOjuG8zsCuAJYlNG3O3uySejkYrgamCsCD+fsZAt23ew7uMt9Oy8S9jhFI27LwIOh/rR1SuAR4FrgVnufrOZXRs8/z6xkdf9gp+hwB208H6p8Qldpbyo3KIhm9GL/wIswzbvEWs6TLZuBjAjr+ik7Kh5sfz8btYbXDmiX4Nllv5PvlKMAN5092Vmdh4wPFh+H1BDLOk6D7jfY8NynzOzLmbWMxjV3SL16tUr7BAkDyq3aIj8jPQi0rwmzFyccl2FJ9GjgMnB4x4JidR7xCaDhuQjsPcuTXgiUmnKOum6+fHX6XvtY+zYUdlXBpFSswqv6Ar6mJ4L/F/jdUGtVk5fKi1p9HVNTU3K2fMlulRu0VDWSVf1nDcB2FEh/44//foaTp5Qw9btO8IOJW8VUhRS+c4E5rl7/EaGq82sJ0Dwe02wPKsR2C1p9PXs2bOZPXt22GFIjlRu0VDWSZeV4N/xzVu387tZb5QkEbru0VdYuvZj1tZ92uzHai4ttSP92Ifn8+0Hmt7rs9zlU5ruTvWcN1n/SfFvQVNEo9nZtAixUdXxGUYvBP6WsPwbwSjGo4H1Lbk/F8CwYcMYNkx3eCg3KrdoKOukKy7TheHddZsY9suneW/95pz3fUfNm0yYuZg/Pf9Ok3UrPvqkWW57E4W05b5/v03fax/LecqAllrT9Zd5K/j7a++FHUbRFPLvzDNLPuDnM17nR399NfPGITCzXYFTgcQ5B28GTjWzN4BTgucQGwS0FFgCTAL+q4ShRtLw4cMZPnx42GFIjlRu0VAZSVeGC/3/PreMZR9s4tEXk87LmtbmIOn4eEvDGbdfeHsdx938FI/ULs95n6lEqRvNbbPeADTTeEuXzz8V8US9bnM0a7rc/WN338Pd1ycs+8DdR7h7P3c/xd3XBcvd3S939wPc/RB3nxte5CJS7so66YonKdk2aeXTGtmmVexFjTvrL14duzntvHc+zH2nZSDXUxU/Py20okuSKEXzv5TeypUrWbky9cS6Ek0qt2go66QrLtM/44UkAq2DC8e2RklXfB6jSm9Oy+b9zVywmv2vm8Hi1XXN0twqItExadIkJk2aFHYYkiOVWzSUddIV/0c62+t8Pv93t0pR0xXvWD/lhXebvKYS1J/bLFLWJ4K+TPPf+Ug1XSIVrmfPnvTs2TPsMCRHKrdoyOY2QJEVq23yjIlBIbUv8Zqu7Y328dGmaPZXKZ70KeqB183gmAP24IFLhpakL9r1j77C8AF7curAHpk3loIV0jSoys7KNmbMmLBDkDyo3KKhrGu64rKu6crjOhKv6SrjqbMKk+Lcbtvh/PON9xtt6s12wX3w+Xe47P7y7sO8ZM1G3t9YXtOBFFKe6tElItJQWSddW4JM6IHnlgGwpm4zsxauTveSnLVuFe+7Fe6/7+7Omrr0U164O1NfWsm2DBnikjV1HPOLWWnnA8slQW2wrWo5Ujpl4mxOvPXpsMMQEZGQlHXSFffovNhUEBfc+RyX3De3Sf+rQvKlIOcKfdb7q6fM56ifzeKdDzal3Oav81dw1eQX+eO/3kq7r0lz3mLV+s38I4sENZd3rWalzDZt2U7tsvQjXtds2Ezfax/j4bmV2V9QytuECROYMGFC2GFIjlRu0ZAx6TKzPmb2tJktMLPXzOzqJNuYmf3WzJaY2ctmNihh3XYzmx/8TC32G4gdI/b7rfc/BlInCpZHg0cri0bz4tSXYkN9V63/JOU279dtCX5n14SV7mykWrdq/SdNJkxNPK9hzEgfr+HLdSLX5vL80g+4o+bNlOu/cMe/075+afA5fmRu8eaAKyXl3pVt48aNbNy4MewwJEcqt2jIpiP9NmCcu88zs05ArZnNdPcFCducCfQLfoYCdwS/AT5x98OLGHNGO9xp3SARyF886Wpc07VpSziThnbp0DbluniMxZweKfFtuzvH/OIpTkvTmT2M2q7Zi9dy1eQXueyE/bj+7IEsXl3HgpUbOP+IvUsfDHBB9XMAfGf4AXm9Pgp9oYrxGdI0XZVp7NixYYcgeVC5RUPGmi53X+Xu84LHdcBCoPHV7Dzg/mD25ueALvGbx5ZS/Et++47kV/68OtInaV6ctXA1d85ZmvvOspSs/9jeXXYBoE3r1G8i/qpWRbjapdvFkwuSN0s64dRyxO/xtyq4zdNpv57DNQ/Nb7Ldx59u4+5/vRV6/7xMwo7uztlvsvzDWI1qIacq4qdZ8tSpUyc6deoUdhiSI5VbNOTUp8vM+gJHAM83WrU3kNgBZTk7E7P2ZjbXzJ4zs/PT7HtMsN3ctWvX5hJW/fD2+hnqi/hlXz9PV8JOn1nyQcbXzVq4ms1bc2vuSjdMf+ecZDvjWPfxlgbb7KzpSr6fsQ/N57zbn0m6bvmHm5LOrp/YXJjqvIZdo5Ht9AY3PbaQn0xfwNOL1jRzROXtF4+/HnYIIiIVKeuky8w6An8GrnH3DTkcY193HwJ8BfiNmSVtc3H3ancf4u5DunfvnsPum2rcFFjQsPf65sXsX/PqivVcct9cbvjba/kfOIX4e5n+8koG/XRmg07Z8XWpcpC/vLiCl979KGm/q+NveZrP/8/OvkaN+7/9euZirv3Ly2lju+tfb/HtB2qzeBc7nfbr2dw5O3X/p1xkKqKPNsWS1M1bd3bQ+68Ha/nKpOfqn//zjbV864G5OdWGFbvmrLly2HUfb+F3s95oMtAknUL66IWdjEvzmDZtGtOmTQs7DMmRyi0askq6zKyKWML1oLv/JckmK4A+Cc97B8tw9/jvpUANsZqyovogmPvIUvS/ytf6TVv50V9fBWIX1u07nD/+c2n9TbCT+b+579Y3c739wcdFiQMS+5bFnj/7Zqy2bcGqnflv/OLfKsuLXbqLYuPZ/m+b9QYPp+jYHd92yZqN/OftdfXL57/7UcYYFq/eWHDNSv3byKPYZ7zyHv9+c2fN5UX3vMATr61uctundD4sk4lyf/CXl5kwczHPLc1cU5tJugEdUW++lcLMmzePefPmhR2G5EjlFg0ZO9JbLJO5C1jo7hNTbDYVuMLMphDrQL/e3VeZWVdgk7t/ambdgOOAW4sUe701jUbr7XD42/wVbN66nQuO3Cfv/9Z/99Qb9Y+373CmvbSSmx5bmHL7+e9+xHcfeZk9O7UDYPWGzWzdvoOq1rnNzJHsmhVPbN7+4GN2ePJ3FM8TitKnKx5LAfs4//ZnePq/h7Nft10LiuWuFFNgbN2+gzatLOsalWxygXjCkMsZDCPJWLNhM3vu1j7puh07vL5ZPNGmLbF/FrYUOBT3L/OWM/bhl3jk28cwpO/uaacxkcozcuTIsEOQPKjcoiGbbOA44OvAyQlTP5xlZt82s28H28wAlgJLgEnAfwXLDwbmmtlLwNPAzY1GPTYLd+fqKfP5/p9fabA811ubJFZ27PCdF61UPv40NqIxngS+/cEmfpyhiXHRe3X8/dX3MsYSj/xbD9Ry5m3/bLL8w4+37OzTBTz52nusT1EDs+i9uozHiys0oYg36RXip9ObfmS2bd9Bv+sf56fTdybB2SbX6T4F3uh3NnJpeo7bvsOZNGcpn6T5TCW+n3fXbaLvtY8x/92PqF22jqN+Pou/zV/R5DWP1C5n/+tmsOKjpjVR8WS80LnX4jVlb66NDT8/8Zea8LUlGTx4MIMHDw47DMmRyi0aMtZ0ufu/yPCPv8euzJcnWf5v4JC8o8tT49GL2eYNf5j9Jlu27eCqEf0AeHXl+vp1O9wzNtslO85Tr68m3Sk4/TdzAHj75rPT7qdxwpi4zQtvr+NLf3iWg/aKjUxZU/cpYx6o5fgDu/G/lw6lsZeWr2+yLNPxUrniT/Po1D71x6iQe/ilE2/++9/nlzF4365ZvSaexKQLKX5ec8k1ExPTTBOfxk1/eSU/m7GQn81YyNQrjuPQ3l3q1yU7ZzWLY4NL/m/uu/Xl/J+31nHe4Q0HEscTsSVrNtaPeN2536bxNvb2+w2bxJNt+dTrsYEImWtw1alLRCRRRcxIn614bcHzKfq03Pz460ycuRiAee98yH/e2tk/accOT3mxfn/jp2zbviOrvmQrPvqE7z/yMlvTNPEkq7FpeuidCcTLQRL1elCDtWVbbN/vrIs1+6z7eAtL1+Y3KZ577AKeyvSXVyWNLnXcxZFNAtHYzk2LG1ViBN995KWE46WO7dNtO8v/onteyHiM7cHnpU1C5p8+eWx67Pp+gWlaF2+c1rBm1t15bukHvLtuZxPi+xtjtZfJkq633/+YrdvVp6uSLVq0iEWLFoUdhuRI5RYNFZV0xZOeVF/58WaRR2rTz/Rdu+zDBiP5YvtOXgPRppUx5KZ/MH7agqTHbXztu/bPL/PQ3Hd5Zsn7SbZO/hogZZ5gyebZDxbEwz15Qg0nT5jd5LWLV2/kjdUNmxpff6/pwNS33s9/QEA+FV3LPviY2mXr0m4zM5grrOHkren3m1OzWg5bp0q2b396ScrXtE44MemSs81bt/PqivX1NXutWlnayOKf0cdfeY/lHzbsa5Wun95Hm7aweet2dm3bsNbSgVHVz3FCkntGJku6hv+qhsv/pM66lWzKlClMmTIl7DAkRyq3aKiopCtT05A16tOybfuOJhcmgAvufLbJsh3uSa9WvYImnCdeey/jjaazlSz8VJ3jr3v0lfqmp8bbxs/DRyn6dt31r7c49ddzWLByZ6J1xm9i/cUSD5epWbXYLYjDflnDF+54tn7EaGOfbtvOFX96EYidq8YjLZM56EeP8/Lyj7KON5fmxQYhJjy+c3bqCXRbJ5zUdIf63iMvM/J3/6rvJ5hY05Xs4xZf+9Dcdzl14pyG6+o/F02PePhPZvKlPzzbJLlPdx7atlHzYUvUv39/+vfvH3YYkiOVWzRUTNL17zQ1R3GNJ0+96bGFHH/L07y/8dMG9+1LNl2AO2xPcgWK13KsqfuUS+6bmzmGFFf8xBqmZBfFxq9K7IA9p0nSlTGMBs767T+bLEuckbyQ0ZC53O/y40+3UT1n55xdtz6xiAOum9Fku8TTs8M9qyNs3rqD1RuyuydlLl54ex3Tg/tiNpb4eRlV3TCRTxxd6B67rVR8/qxtCe1//34z9rmO96NKLIvJ/3knbWyfbN3O5q3bebr+tbHlv3pyUX0TdKJXVjTt67dkTepBF21bt057fM3TVZlGjx7N6NGjww5DcqRyi4aKSbq+8sedk+Q3bhqqn7+qVcP18WRl/Sdb62tOUtm+w5M2I+U7uK/xy+I1TMnWJbNhc+p7PxY9uchU05VuncX6hKXrwxZ3699f5+czds7Z9b/PLku5z7gGzYsFTHCRWNuXiy/94dmU84xt2+68umI9/3rjfZ5bmrq59JMt2xn44yfY/7oZfLDxU74yKfZZdt/Zf6q+X52l/8zNbpSA/+yxhVx87wvMf/ej+vO2ePVGHpr7bpJXNy3LFR9tTnmsr931fJPjiYhIahWTdDWQ4qJUX0uQZP3MFPcTjNvhntfUAI1lM5Fn/KL6yvL1/G5WbK6wxrVN6Wqz4hfC9zcWnnw9Mm95k2M3rsFINwns2rpPOWXibG6c+hpL125k4arkyc3mrdv5uNH0CXWfNk0sk024OjcYMZhtApzs1DWu7Xspi4ldM9myfQcjf/cvvnZX47tmNd0u7o6anTV9c7McCZlOvGzWf7K1Qa3jxjRJeya7VO2s4brnmeRzqImISFMVmXQlNg+OuX8uj72yCkjdkXhEkk7mjT25YDWfJrmXYqqba8c1Xptdk0vsVef8/l9MCEZTNn7dPxZmvn9gpthS2bB5Zx+w3856gx//7dW026e7F2V8X8+/tY6TJ8xuMMdYoppFazIOcABYvLquSXIVnzw1m9o0yG4aiwuqn8u4TSFSdZ5P1oSd9WvTlHfj19zy9/zvArBL251J16dbi9OPUcrH+PHjGT9+fNhhSI5UbtFQkUnXsTc/Vf/4yQWr65to4vNT5TvhZ7LZ6PNt0kr3usbhLVi5oX46iFzk26fm+UZNYcuKMON4umknAK6aMj+r/Yyfmnqy2WxLIt+uRpu3bk866Wg+MaT6CGa6L+Kds5c2OMaOHc6mLbFaqw2fNB0wkZhgZvNZzSYhTfz7eTbNLYXUpUtEpKGMk6NWomLOIrQtw5xEa+s+5aEX3ondjsidmkWxpr90ed8fZi/lz/N21vok6+iejbz7mxXxtjbZdsJP1rE7mY+3bE+dsGQZ9k8fS35ThAefT96HDOAXjy+sH4249OdnJb3NTi6mvJC8E3w293yMD3IA+M0/FvPbp5bw0g2nsWxd6uS4mJ95zcLVst1www1hhyB5ULlFQ0XWdGVSzFvlffBx5tvcxG9H1PgekakkJlxheCfNxTtXxbgPZLbWb9qS9kbMcalq7q5/NHUzauL0D8X4+KTqWJ9Nk3Di/FhTg5GTH2z8lC67VDXZNtezr5tVi4g0nxaZdH2ydTvn/O5fLC1g0s98DP35rPrHpbi25XuIdDf1zlWBFUJJpWome2n5eo75xVNJ15WLbJKuxFG0bYIEbNsOT98fLMsPQ+wOAwkvS7LPVPO+iYhIei2yefG1FetZuT71UPjm8IfZbzZ4Xs71CbkkjMn6CL31/sd0bNeG7p3aNfvxm0MsETHWJ+lDVfC+s9imes7OWrf4ZKl1m7fyhTuaTuob5pQOmqerMk2ePBlAcz6VGZVbNGSs6TKzPmb2tJktMLPXzOzqJNuYmf3WzJaY2ctmNihh3YVm9kbwc2Gx30A+ijH1Q65uTjGXU6VLnHQ27qRf1TD05//Ie5/ZFt/HSaacyMUHwZQbHzSaeiN+/M/d/kxB+08mmxGcieLNt5kSwPc2bOaJ19JPiyKSjcWLF7N48eKww5AcqdyiIZuarm3AOHefZ2adgFozm+nuib2RzwT6BT9DgTuAoWa2O3ADMITYtarWzKa6e+ETEBUgm87KzW31hs18tClzf7BCPdaouajUHkgxwekOhzUbmre2cdbrmafVSOf5t9Zx1iE9uXJyw4lz4zVtyZqnS90nKn60TKMOU82PJpKrUaNGhR2C5EHlFg0Zky53XwWsCh7XmdlCYG8gMek6D7jfY1ec58ysi5n1BIYDM919HYCZzQTOACYX9V3kqBiThhbqh399lR/+Nf38VwVzQr/5cLp+Rkcl9HHLRakSm0dfXMHr79Xx8vKmt8eJineDQQ+ZBixkOzq0sTvnpL5/pLRMAwYMCDsEyYPKLRpy6khvZn2BI4DGU2zvDSTeV2R5sCzV8qI4aUD3Yu0qEordB2ZLkW7AXYhCm/iSyX4urMKSs5kLVvPbWW+wsdF7SDff1dtFmNMsF/HYMn10kt3CKhtrE0bc3v2v3Gafz+W+myIiLUHWSZeZdQT+DFzj7kVvqzCzMWY218zmrl2bXeff3ZIMkZdoWbw6/aSo+cg2f8i3dqdYxy+lTCEVIwGa9M+lbE5yVwZpWWpra6mtrQ07DMmRyi0askq6zKyKWML1oLv/JckmK4A+Cc97B8tSLW/C3avdfYi7D+nePbsarChe/AqROOmlpJFluX/3kZeb5fBf+kPTUYJhmzgzfQfZYtSirlq/mYN+9PfCdxSyoPvDI2b2upktNLNjzGx3M5sZDPiZaWZdg21TDhJqqaZPn8706dPDDkNypHKLhmxGLxpwF7DQ3Sem2Gwq8I3gC+poYH3QF+wJ4DQz6xp8iZ0WLCuKCsu5JEupZnMvlVdWRK+PVzFu0F1sURiwksJtwN/d/SDgMGAhcC0wy937AbOC59BwkNAYYoOEWrRBgwYxaFCLzz3LjsotGrIZvXgc8HXgFTObHyy7DtgHwN3/AMwAzgKWAJuAi4N168zsp8ALwet+Eu9UXwyaPbtl+kULnX6jEFNeeDfzRkWW7F6QYTOzzsCJwEUA7r4F2GJm5xEb+ANwH1ADfJ8Ug4SCfypbpHPOOSfsECQPKrdoyGb04r/I0E83+EK6PMW6u4G784ouA6VcIhEWzX70+wFrgXvM7DCgFrga6JGQSL0H9AgepxoM1GKTLhHJX4u8DZBIof42P2nXRElw0F6dwg4hmTbAIOAOdz8C+JidTYlA/T+ROf1Pl89AoHJVV1dHXV1d2GFIjlRu0VDeSZequiQkV0+ZH3YIkXf8gd3CDiGZ5cByd49Pe/MIsSRsdTC3IMHv+My6WQ0GymcgULmaOHEiEyem6t4rUaVyi4ayTrrSzZckIuHKNGFrGNz9PeBdM4vPFDmC2ETPU4H4bcouBP4WPE41SKjF6tixIx07dgw7DMmRyi0ayvqG1+pHLxJdraL7L92VwINm1hZYSmzgTyvgYTO7BFgGfDnYNukgoZZs3LhxYYcgeVC5RUNZJ10iEl1RnZHe3ecTux9sYyOSbJtykJCISK6i+79oFlTTJRJh0cy5RERCU9ZJl4hEl3KuylRdXU11dXXYYUiOVG7RUNbNi+pILyJSWqtWtehxBGVL5RYN5Z10KecSESmpyy67LOwQJA8qt2go76Qr7ABERFqYXr16hR2C5EHlFg1l3aerbeuyDl+kolkE5+kSEQlTWWct7atahx2CiEiLUlNTQ01NTdhhSI5UbtFQ1kmXOtKLiJTW7NmzmT17dthhSI5UbtGQsU+Xmd0NjATWuPtnk6zvCtwNHABsBr7p7q8G694G6oDtwDZ3TzYhYf6Uc4mIlNSwYcPCDkHyoHKLhmw60t8L/B64P8X664D57v45MzsIuJ2GMzuf5O7vFxSliJQd9eiqTMOHDw87BMmDyi0aMjYvuvscYF2aTQYCTwXbvg70NbMexQkvQ2ylOIiIiIhIERSjT9dLwOcBzOwoYF+gd7DOgSfNrNbMxqTbiZmNMbO5ZjZ37dq1RQhLRESKbeXKlaxcuTLsMCRHKrdoKEbSdTPQxczmA1cCLxLrwwVwvLsPAs4ELjezE1PtxN2r3X2Iuw/p3r17Vgd2zY4qElmaMaIyTZo0iUmTJoUdhuRI5RYNBU+O6u4bgIsBLDYxz1vA0mDdiuD3GjN7FDgKmFPoMeuPXawdiYhIVnr27Bl2CJIHlVs0FJx0mVkXYJO7bwEuBea4+wYz2xVo5e51wePTgJ8UejwREQnPmDFpe4pIRKncoiGbKSMmA8OBbma2HLgBqAJw9z8ABwP3mZkDrwGXBC/tATwazErdBviTu/+9mMG7Q989OvD2B5uKuVsRERGRosuYdLn76AzrnwX6J1m+FDgs/9Ay233Xtuy5W3slXSIRZJo0QkSkgbK+4fWN534GgL7XPhZyJCIiLcOECRMAGDduXMiRSC5UbtFQ1kmXiIiU1saNG8MOQfKgcosGJV1SFh79r2P53P/8O+wwRFq8sWPHhh2C5EHlFg1lfcNraTmO2Kdr2CGk9ewPTg47hMjRPF2VqVOnTnTq1CnsMCRHKrdoUNIlSV09ol+D55/de7dmP2bbNuF+HHfftW3er+3WsR0PXHJUEaMpTxcd2zfsEEREIktJVyPXnnlQ2CFEQv8eO/8j+tWXDmP6lSc0+zHDrhhp0yr/CAw4oV92d1KoZFeefGDYIUgzmzZtGtOmTQs7DMmRyi0aKirp2mf3DuzZqV3YYQAwsGdxa4b67L5LUfeXSWLT0BcH9069YZrXNbcD9+yYcZvjDtwj6/21zpB0XXL8flnvK1v3f7Oyasf26NiOY/bP/pxL+Zk3bx7z5s0LOwzJkcotGioq6TKD3l2bJidVrbPPBPLJGQ7Zu3OTZZku4Lka3n/Pou5vjyRNacVImDLdDvN3o49IuS7x+B3bZR7j0TqLgO/8+pCM28S1yrC/H40cSPuq5H8yluXJ+9HIgVS1Nv4x9kSW/OxMTuzftHYs2eep1Nq2LvyrIeyaS2keI0eOZOTIkWGHITlSuUVDRSVdrcySXvz+36n9GdhzN37+uUMy7iOf+zl269g0gdkR0Ztxf+vE/QE4su/ujD1155y2rVsZY0/Z+TxZzvjbNAlTtg7v0yVlUpE4meYFR/Yp+Fi7VLXOKnmrj22fLhm3Oax3+m12qWqddv03j+vLGz87iwP37ESbFInN0P12zxhHKj897zP1jwvpI3fT5z6b92ulsg0ePJjBgweHHYbkSOUWDRWWdKVeN+PqE/jK0H1y2t9/rh+R1XbJ0qtscq7Hrjo+61iK1Wx3RJBY7HBv0HHc3WnV4AQ2PWCuIZx3eK+kyz1Fapv4Hv/7tAHcdH76C3+mc3L1Kf3Sb9DIzz93CH+7/Li0fbv67N4heSzB74U/PSPtMbKpESukrE8+uEf9Yy8g8e+8S1X+QYiISFIVlXSZGbsmqdk4NeFClHEfCY/37NQ+5XY/SOhwn+zatvzDzLcm+kyvztxwzsCsYyvUxC8fVn/Rdxomi07m5rVM6xtLtrVZdgnpLm1b87Wj983peIleG3863x52QP3zbPr6tWvTisP6dEm7zR5JajWhuH3Zsm2qbOzE/t0b/OOxfUf6E53us5drWSdKlVRLZVi0aBGLFi0KOwzJkcotGioq6WplMD64NVDif+r9emQ/N0njy0WqaQS+lXBBv2pE0xqVDZu3ZXW8DNfFovr8oN71F1N3b5D9uDfsMJ/smpvNdfi7pw9I2D75Cw5OMcggl3KC9E24iYf+z/UjmDVuWP3zvXZLnkxnk2gkNoEe2jv8vleJfjvqcLp22Pl5zfTZShd/IV0S64tFnboq0pQpU5gyZUrYYUiOVG7RkDHpMrO7zWyNmb2aYn1XM3vUzF42s/+Y2WcT1p1hZovMbImZXVvMwJNpZVafbBWrH/uALBKBwfs2nbjza0fn1pRZ7I73qcQPs8ObJpjdM9QGZRNhprmuzIxLT0g+CvDei47M4gjZSUyg9uzUnk7tdybhbVIMrMgmqTy4587Pw8Ceu7HkZ2fy8o2n5V07BbB/t10bxpHnfnZt14b2Va158NKhABzQfdek2x3WuzPzf3wqg/dN3XeskJouqWz9+/enf//+mTeUSFG5RUM2NV33Auk6qlwHzHf3Q4FvALcBmFlr4HbgTGAgMNrMmrUtLbHjcLYVSI1Hox20V8MkK99rz0XH7scT15yYcbt4v5vTP5O+CdSAMz6zV/3zg3vuxj+/dxJ//s6xOcV17AHdOLF/d64/++C02yVLnnJNLJI2L9KwtihR1xwmJz20d+e8O4rv3SX59BvZvLvzDt+7wfM2rVuxW/vC+j89fs0JLPjJ6QXtA3YmSvH3kbJ53IwuHdKf6706p25al5Zt9OjRjB49OuwwJEcqt2jIeNVy9znAujSbDASeCrZ9HehrZj2Ao4Al7r7U3bcAU4DzCg85tbatW9GpfaxP17VnZDfJaeOmpuEDGk7NEM8zcpmrCmI1SgP26sQT15zI369JPbFovCkm00UQ4JKEGqLPH7E3fXbvkLSWLZ1d2rbm/m8exQHdO6btW3Vk36a1ID2LdCHOZQqPVC45fr/6+Kdd0XRAQrqamtu/Oijp8nS1jf17NJ0TLFPftP9cP4Jbv3ho+o2Adm1a06FtQl/ENKfny0NSfw7j4Wf6hyPZ7v9r+AENnh/cczemX3k8S352Zoa9pTuOastERBIVo0/XS8DnAczsKGBfoDewN/BuwnbLg2VFd2kwaWXrVkZV61a8ffPZjDoqc/PeTed/lgcvOzrtNvGL98hDe/LTNKPpGk+cGX/dgL06cdBeO/swPTTmaL4waOeFM97peNe2rXn75rNT7t/MOLLv7pwfjAgszpxaOy/PjWv4ksnUyRwaXtAvOq5vkzjNYP/umSc1zWT/bjv3kWv/s24ddzaj7pfQtJeuJi9ZEpepw/iendrTLofauO8EiU9istL4M3HrFw9L+fpsayKTbZbYFy/us3t3TjmtRTrqRi8iklwxkq6bgS5mNh+4EngR2J7rTsxsjJnNNbO5a9euzem1Jx+8Z7CP7F/TvVM7vnb0vimbmhLiqn/89TSj6RrXeqSKZej+e3DrFw/l9WBqgfjrsr1gxmvEitnnZmDP3ZicIfnMJFkNzKG9u/DWLxomDfGE4ogs5sTKJF1NU7bnZ9xp/Znz3ZO4J6E/2aijms4Rlu/5zmW+tmznFEtMGvOR+E4mfvkwDuvduaA+aeXGzN42s1fMbL6ZzQ2W7W5mM83sjeB312C5mdlvg36pL5tZ8mrSFmT8+PGMHz8+7DAkRyq3aCg46XL3De5+sbsfTqxPV3dgKbACSLx69Q6WpdpPtbsPcfch3bvndw+7XKYleuH6U7LaLn4pSrXvEQc1bI6MXzgb9096atyw+maw1q2M9hkm0WxsQFATFa+dytTvfkgWzY7xt3TUfrvn1J8q6b7qk8em616+8bSU2zf2hUG9+dHI7Lr+jQiS7WQDAHIZl7DPHh04KaEcf3Ju0xrNfAc65DNVVqb858n/l76vYPx8ZDO68vODevO34HM546oTmP3d4fxj7LAMr6oIJ7n74e4ev2XBtcAsd+8HzAqeQ6xPar/gZwxwR8kjFZGKkf103SmYWRdgU9Bv61JgjrtvMLMXgH5mth+xZGsU8JVCj5c0BnbOPVVs++4Rmwxzt12anqrEpp+j9uvK3c+8xaRvDOHwPl3YpW3DpCpVk1r96Po0F9rpVx7PZ3rFmijj0wC0SpIEjDu1PxNmLgbgke8cy1Ovr+ab985Nud/mmDQ/WT+exI7m8feZ6tATvpy6+SzRft135f+d0p9vHNM3adKVbc3NaQP3arIs2bn9asLEujeeM5Abpy3Iav+J0zY0HqWYSodGCfmlx+/HPnt0qB9Ju/uubenVuT0r129O+vr+PTox7YrjObhnJ+6cs7TJ+lTnZmCv3O8XetBenXj9vboGy045eE/+89a6pLfkirDzgOHB4/uAGuD7wfL7PfbfznNm1sXMerr7qlCijIAbbrgh7BAkDyq3aMiYdJnZZGJfRt3MbDlwA1AF4O5/AA4G7jMzB14DLgnWbTOzK4AngNbA3e7+WnO8ifprSDMkEdeddTDHH9gt7fB6gDM+25O5Pzwl56afePNTuk7Hn024bc6R++3OA88tq0/CEl05oh9dOlTVXzyP3n8Pundqx9q6T5Put5inK9t9xd/lbu2zy/cP7d2Zzx/RtCtgvEYx0zQXmWQzAvJHIwc26CMY7/SeTdKa2G/uiQw1VN84Zl/W1n3KJSfsV588A/wwSc1fpqTykDS1XMVsSDyhX7cmSddlJ+zPlwb3Kbj2tBk58GTwnXWnu1cDPRISqfeA+HDiVH1TW2zSJSL5y3jlc/e0Y0zd/Vkg6eQf7j4DmJFfaNlrzt4o7atac9pnmtaGJFNoX5tsnHtYL44Jkqlkvn5M3/rHHdq24ZFvH8OwX9ak3WdRu/Nkua9fX3A4Q276R8btpiYZmVgKxx24B88s+QBIcjudLEcJxl6783GmG3R3al/Fjed+Ju02xZBveXfr2I73N8YS+N5dd+Hei4/kT8/H8pGj99+d7wUjhs0sygkXwPHuvsLM9gRmmtnriSvd3YOELGtmNoZY8yP77JPbHH0i0nJU1Iz05ShdX6hU8qnd2SfJPQM9i1q2VH43+ogGozl7BQMSdu/Qlp6d2zeZYqF+FF9wqG4d2/G5oAZr6H6753QfylJ48NKj+eZxySdxjY94THXj7kSJE7GWe1/1uT88pf4m6ZefdCAH7tmJ7Tt2AHD6Z/Zi0D65TV8SFndfEfxeAzxKbHqb1WbWEyD4vSbYPKu+qcXok1ouJk+ezOTJk8MOQ3KkcouGgvt0RcHO+wkWp8GsZ+f2HFCEaQ1y0VzX43ZtYv2D0o3STJUMPDVuWMpReyMP7cn0l3e2sFx58oEcvFcnRhy8J6cMTH2j8GQJ3gVH9uEzvaJ1S510juy7OzP/34kcuGfmz8g5h/Vi7MMvAfnfUzGZIX27smL+J3m9tpD5s64a0Y8xJ+5fn0TX9zEsk4zSzHYFWrl7XfD4NOAnwFTgQmKjsS8E/ha8ZCpwhZlNAYYC61tyfy6AxYsXZ96ohep77WNF21e6KYTyoXKLhgpJumK/G7cC7d1lF1Z8lN2F6ZC9O3PXhbGBTM/+IHXSUGw7RyPmf9Hq2K5Nyslb9+rcnv/56iCOPWCPJuviF85dUoykTDeflpnVn/dB+3ShqnUrzjykZ5rtmy5r0mwXMak+V5D9fSKrWrfijZ+dyYZPthYxMrjlC4fyt/kr83txgflR4sjb+DlKdWulCOoBPBokwG2AP7n734OBPw+b2SXAMuDLwfYzgLOAJcAm4OLShxwto0aNCjsEyYPKLRoqIumKa3xt/MfYYWzZtqPJdo3niHrxR6eya7s2ed9WphA70jQvnnJwD75xTOq5weJeHZ/+FjJnpUiGLjhyH97fuIVvDzsg6fpM4jUmudwyprkqRLp2qOLDTcVNbHaOzygsOaxq3Yo9itzfL9cpRxIVswjGnToAdxpM+Btl7r4UaDJE1t0/AJr8txWMWry8BKGVjQEDmk6kK9GncouGiujTleoiskvb1nTu0PC+eP/83kn87yVDGyzrumvbUBKuTCZecBgn9m++/iFt27Ti/53av8n0FtlKVxOU8jUNXl+8y/9jV53Any4bmnnDHOTz/krpypMPzHrbf4zdOXKymIlv5w5V/PT8zxaUBIqItBSVVdOVxdWxT5IO5WFqPCN9p/ZtqNu8DaDgGynn46lxw7KeCDTTxLENt23e5qdeXXap78yfTr8s+mHF7ewrGE0jDu7B755aktW2B+6ZXXOoSCa1tbUADB48OORIJBcqt2ioiKQr04SbURZvuto5f1VVfdIVhmLcFzGdMG8388qNp1GVw70Eo95LKd/4dCNqKcT06dMBXbzLjcotGioi6dqzU6xP0XEHdGv2Y1V/fTDPv7WuaPvbEXTqyreJL0w7k93s091CLvf/uW4Er79Xx+atqW/teWL/7sxZnPzenZ3yrDmMavNiNoMvDtm7M6+sWN9gWZkMNJSIGjSoxd9+siyp3KKhIpKuPrt34F/fP4menZv/tiOnfWavrCdLzcYlx+/PBx9vyarDfNTEm6yGD9gzw5Y7FXLB33O39uy5W/pO+3/8xhA2b8v5fuvJ5ZFUFtN/DU8/wCGbc/m/lw5lxYexEbx3XzSEb947V0mXFOScc87J+TXFnEpB8pNPuUnxVUTSBdC7a7T6amWrc4cqfva5Q+qfl9MF8cA9O/LSDadlfUufUmjbplXRBkWE2QyX6xw9yW6VBNB5lyo67xKr4dt919gIynRztomISPOJztVSylL8gp6txETmmlP6sfzDTZwysEeaV4Qvqs2L8QR9YM/dmHjB4Rm3P7xPF/7nq4M4KYeaSZHG6upi99rs1EmDM8qJyi0aojdPglS2hMqjfffYlf/79rGhjNLMRpaDOEMTT2B35JAVnnVIz7LsPyjRMXHiRCZOnBh2GJIjlVs0qKZLSqKcmk3jOgbNplGdg+rToO9auwjOMSeVq2PH0t4iTYpD5RYNGZMuM7sbGAmscffPJlnfGfhfYJ9gf79y93uCdduBV4JN33H3c4sVeKU6tHdnln/4Cecd3ivsUJK668IhPP7qe3m/vpySr0uO3w/DIjvIoX+PTvTdowM/GjmwWY/zz++dlPXttKTyjRs3LuwQJA8qt2jIpqbrXuD3wP0p1l8OLHD3c8ysO7DIzB509y3AJ+5+eFEibSE679IWgKP22z3kSJIbcXAPRhycfx+sMsq5aNemNd/JMIIwTLu2a0PNd09q9uP02b1D5CYVFhEpRxnbJdx9DpBuYioHOlls1suOwbbhze5Z5qJ+65l8lVOyJSIi0hyK0afr98BUYCXQCbjA3eN3mW5vZnOJJWE3u/tfU+3EzMYAYwD22WefIoRV3ios56oX5oz0ie7/5lE88+b7YYchUnaqq6sBGDNmTMiRSC5UbtFQjKTrdGA+cDJwADDTzP7p7huAfd19hZntDzxlZq+4+5vJduLu1UA1wJAhQyo158goGilJ88nm/pilcGL/7s16M3GRSrVq1aqwQ5A8qNyioRhJ18XEarEcWGJmbwEHAf9x9xUA7r7UzGqAI4CkSZc0EpHkpFiiUsNVCk//93C276is8hOJu+yyy8IOQfKgcouGYiRd7wAjgH+aWQ9gALDUzLoCm9z9UzPrBhwH3FqE41W0FpSbVKz9uu0adggizaZXr2iOrJb0VG7RkM2UEZOB4UA3M1sO3ABUAbj7H4CfAvea2SvEWse+7+7vm9mxwJ1mtoNYh/2b3X1B87yNylOp9SSV+r5EREQyyZh0ufvoDOtXAqclWf5v4JCmr5B0zvhMT/73uXc4sm80p4wQkZatpqYGgOHDh4cah+RG5RYNmpE+Yo7v1y3nmx2LiJTK7NmzAV28y43KLRqUdImISNaGDRsWdgiSB5VbNCjpkpK49YuHcuvfX2fXtvrIiZQz1ZSUJ5VbNOgKKCVx1iE9OeuQnmGHISIiEpqMtwESERGJW7lyJStXrgw7DMmRyi0alHSJiEjWJk2axKRJk8IOQ3KkcosGNS+KiEjWevZUN4FypHKLBiVdIiKSNd0wuTyp3KJBzYsiUvbM7H4zOzPsOERE0olkTVdtbe37ZrYsy827Ae83ZzwFiGpsiit3UY0tqnFBbrHtW+CxLgVGmdkU4Fngj+7+cYH7FBEpqkgmXe7ePdttzWyuuw9pznjyFdXYFFfuohpbVOOCkse2B7A/sAF4D7gLGFWiY7coEyZMAGDcuHEhRyK5ULlFQySTLhGRHP03cLu7LwUws3dDjqdibdy4MewQJA8qt2hQ0iUilaAmIeE6090fDzugSjV27NiwQ5A8qNyioRI60leHHUAaUY1NceUuqrFFNS4obWwnJjw+oYTHbXE6depEp06dwg5DcqRyi4ayr+ly98hedKIam+LKXVRji2pcUPLYupvZCMABTUgkIpFUCTVdIiJXAf2BAcDVmTY2s9Zm9qKZTQ+e72dmz5vZEjN7yMzaBsvbBc+XBOv7NuebKAfTpk1j2rRpYYchOVK5RUNZJ11mdoaZLQq+EK8N4fhvm9krZjbfzOYGy3Y3s5lm9kbwu2uw3Mzst0GsL5vZoCLHcreZrTGzVxOW5RyLmV0YbP+GmV3YTHHdaGYrgvM238zOSlj3gyCuRWZ2esLyopa1mfUxs6fNbIGZvWZmVwfLQz1naeKKwjlrb2b/MbOXgtjGB8tzTlhSxVyAfYDOwJ7ANVlsfzWwMOH5LcCv3f1A4EPgkmD5JcCHwfJfB9u1aPPmzWPevHlhhyE5UrlFQ9kmXWbWGrgdOBMYCIw2s4EhhHKSux+eMDT+WmCWu/cDZgXPCeLsF/yMAe4ochz3Amc0WpZTLGa2O3ADMBQ4CrghnnQUOS6IXeAOD35mBMcfSGyY/2eC1/yPxWokmqOstwHj3H0gcDRwebDPsM9Zqrgg/HP2KXCyux8GHA6cYWZHk2PCkirmAmMbC0wHpgAPpdvQzHoDZwN/DJ4bcDLwSLDJfcD5wePzgucE60cE27dYI0eOZOTIkWGHITlSuUVD2SZdxC5wS9x9qbtvIfZle17IMUHDL+nGX973e8xzQBczK1rfE3efA6wrMJbTgZnuvs7dPwRmkjxhKjSuVM4Dprj7p+7+FrCEWDkXvazdfZW7zwse1xGr9dibkM9ZmrhSKeU5c3ePjzuvCn6c3BOWVDEX4lV3f9XdF7n7ogzb/gb4HrAjeL4H8JG7bwueL2fnOd8beBcgWL8+2L7FGjx4MIMHDw47DMmRyi0ayjnpqv8yDCR+UZaKA0+aWa2ZxW9s1cPdVwWP3wN6BI/DiDfXWEoZ4xVBM93dCTVDocQVNHsdATxPhM5Zo7ggAucsqEWbD6whlmC+Se4JS3PEdpKZTTWz/zOzh9PEPxJY4+61BR6v8X7HmNlcM5u7du3aYu5aRCpIOSddUXC8uw8i1oRzuZklDlvH3Z1YYha6KMVCrGnuAGJNVKuACWEFYmYdgT8D17j7hsR1YZ6zJHFF4py5+3Z3PxzoTax26qAw4khiNPBTd/8SsabGVI4DzjWzt4nV/p0M3Eas5jI+mrs3sCJ4vALoAxCs7wx80Hin7l7t7kPcfUj37lnfUKMsLVq0iEWLMlUmStSo3KKhnJOu+i/DQOIXZUm4+4rg9xrgUWIXodXxZsPg95pg8zDizTWWksTo7quDi/cOYBI7m5ZKGpeZVRFLbB50978Ei0M/Z8niiso5i3P3j4CngWPIPWFpjth+DVwUPP5Bmrh/4O693b0vsX5lT7n7V4P38sVgswuBvwWPpwbPCdY/FSTjLdaUKVOYMmVK2GFIjlRu0VDOSdcLQL9g5FRbYl+gU0t1cDPb1cw6xR8DpwGv0vBLuvGX9zeCUXBHA+sTmrGaS66xPAGcZmZdg+ar04JlRdWoL9vniJ23eFyjglFv+xHrtP4fmqGsg75FdwEL3X1iwqpQz1mquCJyzrqbWZfg8S7AqcT6nOWasKSKuRB1wOrg8eY8Xv99YKyZLSHWBHpXsPwuYI9g+Vh2Dqxosfr370///v3DDkNypHKLhrKdHNXdt5nZFcQucK2Bu939tRKG0AN4NBjI1Ab4k7v/3cxeAB42s0uAZcCXg+1nAGcR6zS8Cbi4mMGY2WRgONDNzJYTG1F3cy6xuPs6M/spsQs2wE/cPdtO8LnENdzMDifWdPc28K3g+K8F/XEWEBvFd7m7bw/2U+yyPg74OvBK0EcJ4DrCP2ep4hodgXPWE7gvGGnYCnjY3aeb2QJgipndBLxIw4TlgSBhWUdwA+p0MRfgfeBEM/sVOzvIp+XuNUBN8HgpSTrzu/tm4EsFxlZRRo8eHXYIkgeVWzRYC68pF5EKYWYHEftOW5hx42Y0ZMgQnzt3bpghRE7fax8LO4SUlt0Sm0Zh3+9PDzmSht6++eywQ5AcmFmt75w6KqWyrekSEYkLalQd6GBmuPv5IYckItKEki4RKXvuXt92YmbpRi9KgcaPHw/ADTfcEHIkkguVWzQo6RKRsmc7Z9tvQ2wGfhGRyFHSJSKV4EvEmhc/BX4XciwVTTUl5UnlFg1KukSkEsxl50S2e5vZ3vH7U4qIRIWSLhGpBJcC/woeHwf8NbxQRESSU9IlIpXgdXefALFJXN39/rADqlSTJ08GNO9TuVG5RYOSLhGpBG5mfyTWxLg608aSv8WLF4cdguRB5RYNSrpEpBL8kNg9HD8iv9sASZZGjRoVdgiSB5VbNCjpEpFK8BtgV3e/xMzuJLhNkhTfgAEDwg5B8qByi4ZyvuG1iEjcdmL3ygRYH2YgIiKpKOkSkUrwKXBwcJPvrmEHU8lqa2upra0NOwzJkcotGtS8KCJlzcwM+DOwB7F/JO8IN6LKNn167MbQgwcPDjkSyYXKLRqUdIlIWXN3N7OT3P3WsGNpCQYNGhR2CJIHlVs0RDLp6tatm/ft2zfsMESkRGpra9939+75vNbMzgPONbPTgXXE8rAvFzVAqXfOOeeEHYLkQeUWDZFMuvr27cvcuXPDDkNESsTMlmXeKqXT3f14M7vD3b9TtKBERIpMHelFpNzta2ZnAfuY2VnBY2kmdXV11NXVhR2G5EjlFg1KukSk3D0MdE/4nVczpWRn4sSJTJw4MewwJEcqt2iIZPOiiEi23P2+sGNoSTp27Bh2CJIHlVs0KOkSEZGsjRs3LuwQJA8qt2hQ86KIiIhICSjpEhERESmBgpIuM7vbzNaY2asp1puZ/dbMlpjZy2am2dlERMpYdXU11dXVYYchOVK5RUOhfbruBX4P3J9i/ZlAv+BnKLHbcwwt8JgiIhKSVatWhR2C5EHlFg0FJV3uPsfM+qbZ5Dzgfnd34Dkz62JmPd1dpS8iUoYuu+yysEOQPKjcoqG5Ry/uDbyb8Hx5sExJl4hIGerVq1fYIUgeVG7REJkpI8xsDDAGoGPPA0KORkRERKS4mnv04gqgT8Lz3sGyJty92t2HuPuQqqqqZg5LRETyUVNTQ01NTdhhSI5UbtHQ3EnXVOAbwSjGo4H16s8lIlK+Zs+ezezZs8MOQ3KkcouGgpoXzWwyMBzoZmbLgRuAKgB3/wMwAzgLWAJsAi4u5HgiIhKuYcOGhR2C5EHlFg2Fjl4cnWG9A5cXcoyw7Nixg1atWqV8LiLSEg0fPjzsECQPKrdoKMss4pVXXmHYsGEcc8wxXHHFFU3WP/DAAwwfPpxBgwbxwAMPALB27VpGjhzJsGHD+OpXvwrAlClTGDp0KEcffTRPPPEEEPtgfu973+P000/n3nvvZdSoUZxzzjn8/e9/L90bFBERkYpTlknXgQceSE1NDc8++yzvvvsub7zxRoP1X/jCF6ipqeGZZ57h17/+NQC/+MUvuPjii5k9ezYPPPAA27dv5xe/+AWzZ8/mySef5Prrr69//emnn87MmTMBqKqqYtq0aZx11lmle4Mi0izMrL2Z/cfMXjKz18xsfLB8PzN7Prh7xkNm1jZY3i54viRY3zfUNxABK1euZOXKlWGHITlSuUVDWSZdb731FmeddRbDhg1j3rx5TT5ITzzxBMOHD+eMM85gyZIlACxcuLC+TbtVq1asXbuWffbZh/bt27PbbrtRVVXFtm3bADjyyCPr95X4WETK3qfAye5+GHA4cEYwyOcW4NfufiDwIXBJsP0lwIfB8l8H27VokyZNYtKkSWGHITlSuUVDWSZdd9xxB+PGjWP27NkcccQRxLqO7XTTTTfx2GOP8fjjj9OhQwcADj74YObMmQPE+md1796dZcuWsXnzZjZs2MCWLVto0ybWxS2x75b6cYlUDo/ZGDytCn4cOBl4JFh+H3B+8Pi84DnB+hFmZqWJNpp69uxJz549ww5DcqRyi4bITI6ai3POOYerr76agw46iB07djRZ//nPf54TTjiBQYMG0bVrVwB+8IMfcNFFF3HbbbfRu3dvHnzwQa699lpOPPFEWrVqxU033VTqtyEiITCz1kAtcCBwO/Am8JG7bws2id85AxLuquHu28xsPbAH8H5Jg46QMWPGhB2C5EHlFg3WuJYoCnbf92Bft2xh2GGISImYWa27DynxMbsAjwI/Au4NmhAxsz7A4+7+WTN7FTjD3ZcH694Ehrr7+432VX9HjX322WfwsmXLSvdGykDfax8LO4SUlt0yEoB9vz895Egaevvms8MOQXKQ7XeY2s5EpEVy94+Ap4FjgC5mFq/5T7xzRv1dNYL1nYEPkuyr/o4a3bt3b+7QRaRMKekSkRbDzLoHNVyY2S7AqcBCYsnXF4PNLgT+FjyeGjwnWP+UR7F5oIQmTJjAhAkTwg5DcqRyi4ay7NMlIpKnnsB9Qb+uVsDD7j7dzBYAU8zsJuBF4K5g+7uAB8xsCbAOGBVG0FGycePGzBtJ5KjcokFJl4i0GO7+MnBEkuVLgaOSLN8MfKkEoZWNsWPHhh2C5EHlFg1KukREJGudOnUKOwTJg8otGtSnS0RERKQElHSJiEjWpk2bxrRp08IOQ3KkcosGJV0iIpK1efPmMW/evLDDkByp3KJBfbpERCRrI0eODDsEyYPKLRqUdImISNYGDx4cdgiSB5VbNBTUvGhmZ5jZIjNbYmbXJlm/j5k9bWYvmtnLZnZWIccTERERKVd5J13B5IK3A2cCA4HRZjaw0WY/JDb54BHEJhX8n3yPJyIi4Vu0aBGLFi0KOwzJkcotGgqp6ToKWOLuS919CzAFOK/RNg7sFjzuDKws4HgiIhKyKVOmMGXKlLDDkByp3KKhkD5dewPvJjxfDgxttM2NwJNmdiWwK3BKAccTEZGQ9e/fP+wQJA8qt2ho7o70o4F73X2CmR1D7B5mn3X3HY03NLMxwBiAjj0PaOawREQkH6NHjw47BMmDyi0aCmleXAH0SXjeO1iW6BLgYQB3fxZoD3RLtjN3r3b3Ie4+pKqqqoCwRERERKKnkKTrBaCfme1nZm2JdZSf2mibd4ARAGZ2MLGka20BxxQREREpS3knXe6+DbgCeAJYSGyU4mtm9hMzOzfYbBxwmZm9BEwGLnJ3LzRoEREJx/jx4xk/fnzYYUiOVG7RUFCfLnefAcxotOzHCY8XAMcVcgwRERGRSqAZ6UVEJGs33HBD2CFIHlRu0aAbXouIiIiUgJIuERERkRJQ0iUiIlmbPHkykydPDjsMyZHKLRrUp0tERLK2ePHisEOQPKjcokFJl4iIZG3UqFFhhyB5ULlFg5IuERHJ2oABA8IOQfKgcosG9ekSERERKQElXSIikrXa2lpqa2vDDkNypHKLBjUviohI1qZPnw7A4MGDQ45EcqFyiwYlXSIikrVBgwaFHUKL0Pfax4q2r7dvPlvlFhFKukREJGvnnHNO2CFIHlRu0aA+XSIiIiIloKRLRESyVldXR11dXdhhSI5UbtGgpEtERLI2ceJEJk6cGHYYkiOVWzSoT5eIiGStY8eOYYcgeVC5RUNBSZeZnQHcBrQG/ujuNyfZ5svAjYADL7n7Vwo5poiIhGfcuHFhhyB5ULlFQ95Jl5m1Bm4HTgWWAy+Y2VR3X5CwTT/gB8Bx7v6hme1ZaMAiIiIi5aiQPl1HAUvcfam7bwGmAOc12uYy4HZ3/xDA3dcUcDwRkYKYWR8ze9rMFpjZa2Z2dbB8dzObaWZvBL+7BsvNzH5rZkvM7GUz02RHIpK3QpKuvYF3E54vD5Yl6g/0N7NnzOy5oDkyKTMbY2ZzzWzu1q1bCwhLRCSlbcA4dx8IHA1cbmYDgWuBWe7eD5gVPAc4E+gX/IwB7ih9yNFSXV1NdXV12GFIjlRu0dDcHenbEPuyGg70BuaY2SHu/lHjDd29GqgG2H3fg72Z4xKRFsjdVwGrgsd1ZraQ2D+L5xH7ngK4D6gBvh8sv9/dHXjOzLqYWc9gPy3SqlUt9q2XNZVbNBSSdK0A+iQ87x0sS7QceN7dtwJvmdliYknYCwUcV0SkYGbWFzgCeB7okZBIvQf0CB6nqtGv+CtYqtvQ7GEHA3BPEW9TI83vsssuCzsEobDmxReAfma2n5m1BUYBUxtt81eC/x7NrBux5salBRxTRKRgZtYR+DNwjbtvSFwX1GrlVNue2D1i7dq1RYw0ej7wXfnAdw07DMlRr1696NWrV9hhtHh5J13uvg24AngCWAg87O6vmdlPzOzcYLMngA/MbAHwNPBdd/+g0KBFRPJlZlXEEq4H3f0vweLVZtYzWN8TiA/6yaZGH3evdvch7j6ke/fuzRe8iJS1gvp0ufsMYEajZT9OeOzA2OBHRCRUZmbAXcBCd0+cnnsqcCFwc/D7bwnLrzCzKcBQYH1L7s8FcHibWM45f1vjcVMSZTU1NQAMHz481DhaOs1ILyItyXHA14FXzGx+sOw6YsnWw2Z2CbAM+HKwbgZwFrAE2ARcXNJoI+iIqljOqaSrvMyePRtQ0hU2JV0i0mK4+78AS7F6RJLtHbi8WYMqMy9u7Rl2CJKHYcOGhR2CoKRLRERyoBqu8qQarmgoZPSiiIiIiGRJSZeIiGRtD/uYPezjsMOQHK1cuZKVK1eGHUaLp6RLRESydm77hZzbfmHYYUiOJk2axKRJk8IOo8VTny4REcna+zs6hB2C5KFnTw2AiAIlXSIikrVpnw4MOwTJw5gxY8IOQVDzooiIiEhJKOkSERERKQElXSIikrUL2r/EBe1fCjsMydGECROYMGFC2GG0eJHt03XBnc8C8NC3jgk5EhERietgW8MOQfKwcePGsEMQIpx0iYhI9Ez55NCwQ5A8jB07NuwQBCVdIiKSg09oG3YIkodOnTqFHYKgPl0iIiIiJaGkS0REsnZs1dscW/V22GFIjqZNm8a0adPCDqPFKyjpMrMzzGyRmS0xs2vTbPcFM3MzG1LI8UREJFwD2rzPgDbvhx2G5GjevHnMmzcv7DBavLz7dJlZa+B24FRgOfCCmU119wWNtusEXA08X0igIiISvme27Bt2CJKHkSNHhh2CUFhH+qOAJe6+FMDMpgDnAQsabfdT4BbguwUcS0REImDx9u5hhyB5GDx4cNghCIU1L+4NvJvwfHmwrJ6ZDQL6uPtjmXZmZmPMbK6Zzd26VfPAiIiISGVpto70ZtYKmAiMy2Z7d6929yHuPqSqqqq5whIRkQL0afURfVp9FHYYkqNFixaxaNGisMNo8QpJulYAfRKe9w6WxXUCPgvUmNnbwNHAVHWmFxEpX6e0W8Ip7ZaEHYbkaMqUKUyZMiXsMFq8Qvp0vQD0M7P9iCVbo4CvxFe6+3qgW/y5mdUA/+3ucws4poiIhOid7Z3DDkHy0L9//7BDEApIutx9m5ldATwBtAbudvfXzOwnwFx3n1qsIEVEJBpmbekXdgiSh9GjR4cdglDgbYDcfQYwo9GyH6fYdnghxxIREREpZ5qRXkRERKQElHSJiEjWLt5lLhfvoq655Wb8+PGMHz8+7DBaPCVdIiIiIiVQUJ8uERFpWe75RLP+lKMbbrgh7BAE1XSJiIiIlISSLhEREZESUNIlIiJZG9H2DUa0fSPsMCRHkydPZvLkyWGH0eKpT5eIiGRtn9brww5B8rB48eKwQxCUdImISA7+8emBYYcgeRg1alTYIQhKukREJAfv7ugSdgiShwEDBoQdgqA+XSLSgpjZ3Wa2xsxeTVi2u5nNNLM3gt9dg+VmZr81syVm9rKZDQovchGpBEq6RKQluRc4o9Gya4FZ7t4PmBU8BzgT6Bf8jAHuKFGMkda/9Vr6t14bdhiSo9raWmpra8MOo8VT0iUiLYa7zwHWNVp8HnBf8Pg+4PyE5fd7zHNAFzPrWZJAI+y4tss4ru2ysMOQHE2fPp3p06eHHUaLpz5dItLS9XD3VcHj94AeweO9gXcTtlseLFtFC7ZoW7ewQ5A8DBqk1vEoUNIlIhJwdzczz/V1ZjaGWBMk++yzT9HjipJ/b+0bdgiSh3POOSfsEIQCmxfN7AwzWxR0NL02yfqxZrYg6IQ6y8z2LeR4IiLNYHW82TD4vSZYvgLok7Bd72BZE+5e7e5D3H1I9+7dmzVYESlfeSddZtYauJ1YZ9OBwGgzG9hosxeBIe5+KPAIcGu+xxMRaSZTgQuDxxcCf0tY/o1gFOPRwPqEZsgWaxe2sAtbwg5DclRXV0ddXV3YYbR4hdR0HQUscfel7r4FmEKs42k9d3/a3TcFT58j9p+iiEgozGwy8CwwwMyWm9klwM3AqWb2BnBK8BxgBrAUWAJMAv4rhJAjZ9QuLzNql5fDDkNyNHHiRCZOnBh2GC1eIX26knUyHZpm+0uAxws4nohIQdx9dIpVI5Js68DlzRtR+dnkVWGHIHno2LFj2CEIJepIb2ZfA4YAw9JsU98RtWPPA0oRloiI5OihzYeFHYLkYdy4cWGHIBTWvJhVJ1MzOwW4HjjX3T9NtbPEjqhVVfpPSkRERCpLIUnXC0A/M9vPzNoCo4h1PK1nZkcAdxJLuNYk2UdWLrjzWS6489kCQhUREREJV95Jl7tvA64AngAWAg+7+2tm9hMzOzfY7JdAR+D/zGy+mU1NsTsRESkD57RbwDntFoQdhuSourqa6urqsMNo8Qrq0+XuM4iN8Elc9uOEx6cUsn8REYmWbq02Zd5IImfVqhY/20kkaEZ6ERHJ2tTNB4cdguThsssuCzsEQUmXiIjk4APfNewQJA+9evUKOwShwNsAiYiIiEh2lHSJiEjWDm+zgsPbJL0FpURYTU0NNTU1YYfR4inpEhGRrB1RtYojqtQpu9zMnj2b2bNnhx1Gi6c+XSIikrUXt/YMOwTJw7BhKW8IIyWkpEtERLI2f9veYYcgeRg+fHjYIQhKukRERCpa32sfK9q+3r757KLtqyVSny4REcnaHvYxe9jHYYchOVK5RYOSLhERydq57RdybvuFYYchOVK5RYOaF0VEJGvv7+gQdgiSB5VbNCjpEhGRrE37dGDYIUgeVG7RoOZFERERkRIoq6Trgjuf5YI7nw07DBEREZGclVXSJS1DFJLrKMQQVTo3LdsF7V/igvYvhR2G5EjlFg3q0yWRFb+wP/StY0KOJNoSz1PjZKhU5y5ZDCq30ivmfEypdLCtzX4MKT6VWzQUlHSZ2RnAbUBr4I/ufnOj9e2A+4HBwAfABe7+diHHLAVdNFomlXtT6ZK4TOdL57MyTfnk0LBDkDyo3KIh76TLzFoDtwOnAsuBF8xsqrsvSNjsEuBDdz/QzEYBtwAXFBJwrtJ98eui0DIUUs75vLYUtT7l9tkNqwZOiu8T2oYdguRB5RYN5u75vdDsGOBGdz89eP4DAHf/RcI2TwTbPGtmbYD3gO6e4aC79OrvB475HQADe+7GglUbGqwf2HO3+sfxdamWJXttumWZjtdSJDuvuWyby+sbb1/s858plmw/I/kcrxjnJttYm/PcJTteLjFkiuvhbx9b6+5DCgo2IoYMGeJz584N5dilaF6sNMtuGQnAvt+fHnIk5UG3AUrOzLL6DiukeXFv4N2E58uBoam2cfdtZrYe2AN4v/HOzGwMMAagY88DGnwpJ7twZHsxS/baTMvSXaiyvbhkirlYF65iL0v2OJP4tonx53oOcynvfBKBdPvL9jOS7PXJts/285fPeyr1Z7dYfz/pykDKy7FVbwPw7619Q41DcqNyi4bIdKR392qgGmL/KZaqKagQyZpMsm3OzNTcUozmmKg2QeXT/Jbp3OV6vgo9N6Uon2KXX7bnMIy/n1dLckQphgFtYv8z6+JdXlRu0VBI0rUC6JPwvHewLNk2y4Pmxc7EOtQ3i1InF/HjJV480sUQVnxRVuwYs91fsY5byH4yvbbU5yYKfz8Sfc9s2TfsECQPKrdoKCTpegHoZ2b7EUuuRgFfabTNVOBC4Fngi8BTmfpzlaN8LlaZLjjlkDDlq5LfW7lQGUi+Fm/vHnYIkgeVWzTknXQFfbSuAJ4gNmXE3e7+mpn9BJjr7lOBu4AHzGwJsI5YYiYJdPHLTlRraURERLJVUJ8ud58BzGi07McJjzcDXyrkGCKNqVmqsjz0rWN4+NthRyHZ6tPqIwDe3dEl1DgkNyq3aIhMR3qRXKm2SaT0Tmm3BIB7PqmIGT5aDJVbNCjpEhGRrL2zvXPYIUgeVG7RoKRLRESyNmtLv7BDkDwUq9yKPQFvS5tstVXYAYiIRJmZnWFmi8xsiZldG3Y8IlK+VNMlIpJClveYzZtu2yMtXTH/Bsqh1kw1XSIiqR0FLHH3pe6+BZgCnBdyTKG6eJe5XLxLOPeWlPyp3KJBNV0iIqllc49ZEYmAcqg1syhOEG9mdcCisOMogm4kubl3mdJ7iZ5KeR8AA9y9U9hBNGZmXwTOcPdLg+dfB4a6+xWNthsDjAmeDqD5v7+iWPZRiylq8YBiylY5xrSvu2ec9j+qNV2L3L3sJxMxs7mV8D5A7yWKKuV9QOy9hB1DCtncYxZ3rwaqSxVUFMs+ajFFLR5QTNmq5JjUp0tEJLX6e8yaWVtitzKbGnJMIlKmolrTJSISulT3mA05LBEpU1FNukpWTd/MKuV9gN5LFFXK+4AIv5dk95iNgCier6jFFLV4QDFlq2JjimRHehEREZFKoz5dIiIiIiUQqaSrnG+3YWZ9zOxpM1tgZq+Z2dXB8t3NbKaZvRH87hp2rNkws9Zm9qKZTQ+e72dmzwdl81DQqTjyzKyLmT1iZq+b2UIzO6aMy+T/BZ+tV81sspm1L5dyMbO7zWyNmb2asCxpOVjMb4P39LKZDQov8tJKdp4are9sZtPM7KXgs3BxwrrtZjY/+ClaZ/8sYupqZo8GZfUfM/tswrqif6cXGM/bZvZKcI6KNmI21fd/o21Sfq7N7MLg7+ANM7swIjEV9fOUZTwHmdmzZvapmf13o3XN8VkqNKbcP0/uHokfYp1U3wT2B9oCLwEDw44rh/h7AoOCx52AxcBA4Fbg2mD5tcAtYcea5fsZC/wJmB48fxgYFTz+A/CdsGPM8n3cB1waPG4LdCnHMiE2SedbwC4J5XFRuZQLcCIwCHg1YVnScgDOAh4HDDgaeD7s+MM8T43WX5dwnroD64C2wfONIcX0S+CG4PFBwKzgcbN8p+cbT/D8baBbM5yjpN//jbZJ+rkGdgeWBr+7Bo+7hhlTc3yesoxnT+BI4GfAfycsb67PUt4x5ft5ilJNV1nfbsPdV7n7vOBxHbCQ2IXyPGIXfoLf54cSYA7MrDdwNvDH4LkBJwOPBJuUy/voTOwL+i4Ad9/i7h9RhmUSaAPsYmZtgA7AKsqkXNx9DrEEIVGqcjgPuN9jngO6mFnPkgQashTnqcEmQKfgb7JjsO22kGMaCDwVbPs60NfMetBM3+kFxNNs0nz/J0r1uT4dmOnu69z9Q2AmcEbIMRVdNvG4+xp3fwHY2ujlzfVZKiSmvEQp6Up2u43GH5CyYGZ9gSOA54Ee7r4qWPUe0Kx//EXyG+B7wI7g+R7AR+4e/3Ivl7LZD1gL3GOxptI/mtmulGGZuPsK4FfAO8SSrfVALeVZLnGpyqFivguawe+Bg4GVwCvA1e4e/zttb2Zzzew5Mzu/hDG9BHwewMyOAvYlNolsWOWYKh6IJa1Pmlmtxe4iUHSNvv8TpTofzX6e8ogJmvHzlCaeVMI8R+nk/HmKUtJVEcysI/Bn4Bp335C4zmP1kZEeLmpmI4E17l4bdixF0IZYM8Qd7n4E8DGxZqx65VAmEOunQuw/u/2AXsCuFOG/4agol3KIgNOB+cQ+A4cDvzez3YJ1+3psxuyvAL8xswNKFNPNxGpI5gNXAi8C20t07FzjOd7dBwFnApeb2YnFPHC67/+wFBBTs3yeKuwc5fx5ilLSldXtNqLMzKqIFdyD7v6XYPHqeHVt8HtNWPFl6TjgXDN7m1gV7snAbcS+xOLzupVL2SwHlrt7/D+XR4glYeVWJgCnAG+5+1p33wr8hVhZlWO5xKUqh7L/LmhGFwN/CZqDlhDr53cQ1NeG4u5LgRpi/7U3O3ff4O4Xu/vhwDeI9TVbSkjlmCaexHO0BniUWLNVUaT4/k+U6nw023kqIKZm+TxlEU8qYZ6jlPL5PEUp6Srr220EfSzuAha6+8SEVVOB+GiUC4G/lTq2XLj7D9y9t7v3JVYGT7n7V4GngS8Gm0X+fQC4+3vAu2Y2IFg0AlhAmZVJ4B3gaDPrEHzW4u+l7MolQapymAp8IxhZdTSwPqEZsqV7h1jZE/RTGgAstdiIvXbB8m7EEvIFpQjIYiOE46NmLwXmBLUFoXynp4rHzHY1s07BNrsCpwFJR0DmccxU3/+JUn2unwBOC8qwaxDXE2HG1ByfpyzjSaVZPkuFxJT35ylTT/tS/hAbSbGY2CiF68OOJ8fYjyfWPPIyser/+cH72QOYBbwB/APYPexYc3hPw9k5enF/4D/AEuD/gHZhx5flezgcmBuUy1+JjQ4qyzIBxgOvB3/YDwDtyqVcgMnE+qJtJVYDeUmqciA2kur24HvgFWBI2PGHfJ6+DXw7WN8LeDI4L68CXwuWHxsseyn4fUkJYzom+N5eRKwGtmvCa4v+nZ5vPMHfykvBz2vFvMak+f5PjCvl5xr4ZvA3vAS4OOyYmuPzlGU8ewVlugH4KHi8WzN+lvKOKd/Pk2akFxERESmBKDUvioiIiFQsJV0iIiIiJaCkS0RERKQElHSJiIiIlICSLhEREZESUNIlIiIiUgJKukRERERKQEmXiIiISAn8fxEdpWCAzCy7AAAAAElFTkSuQmCC","text/plain":["
"]},"metadata":{"needs_background":"light"},"output_type":"display_data"},{"data":{"image/png":"iVBORw0KGgoAAAANSUhEUgAAAlMAAAFrCAYAAAD1gAy1AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/NK7nSAAAACXBIWXMAAAsTAAALEwEAmpwYAABfm0lEQVR4nO3dd5hU5fn/8ffNsggKigIiCIiFInaKYF1AsQFiFyzBEkm+seULJmJ++YpYIiaRJKaoYEGNgkZNpFlQKWpUYAGRIogIUqUoTen7/P6Ys8vs7OyZmZ3Zc2Z2P6/r8mLmzJlz7jnPOOfep5pzDhERERGpmBphByAiIiKSy5RMiYiIiKRByZSIiIhIGpRMiYiIiKRByZSIiIhIGpRMiYiIiKRByZSIiIhIGpRMiYiIiKRByZSIiIhIGpRMiYiIiKRByZSIiIhIGpRMiUiVY2ZtzGxO1H9bzOyXZnaImU0ysy+9fw/29jcze8zMlpjZXDNrH/ZnEJHcYWEtdNywYUPXsmXLUM4tIuEoLCzc4JxrFOQ5zSwPWAV0Bm4FvnPODTOzwcDBzrm7zewi4HbgIm+/vzjnOvsdt7r/hu3YsQOA2rVrhxxJMAoLCwHo0KFDyJGEo7qVdzx+v181gw6mWMuWLZk5c2ZYpxeREJjZ8hBOew7wlXNuuZn1Abp6258DpgB3A32A513kr8tPzKy+mTVxzq0p76DV/Tds6NChAAwZMiTkSIJhZgDVtsyrW3nH4/f7FVoyJSISkL7AaO9x46gEaS3Q2Ht8OLAi6j0rvW3lJlPVXevWrcMOQQKk8vanZEpEqiwzqwVcDNwT+5pzzplZSv0czGwAMACgRYsWGYkxV/Xr1y/sECRAKm9/CTugm9kzZrbOzOaV83ofr8PmHDObaWZnZj5MEZEKuRCY5Zz71nv+rZk1AfD+XedtXwU0j3pfM29bKc65Ec65js65jo0aBdr1S0SyWDKj+UYBF/i8/h5wknPuZOAm4Kn0wxKRVCxYvYXNP+4OO4xs1I99TXwAY4H+3uP+wBtR23/ijerrAmz26y8lIhItYTLlnJsGfOfz+ja3b0jgAUA4wwNFqrGLHvuAq578OOwwsoqZHQD0AF6P2jwM6GFmXwLnes8BJgJLgSXASOAXAYaak4YOHVrSKVmqPpW3v4z0mTKzS4GHgUOBnpk4poikZtG3W8MOIas4534AGsRs20hkdF/svo7ItAkiIinLSDLlnPs38G8zOxt4gMhffGWo86aISNVQnYfIV0cqb38ZnQHdaxI8yswalvO6Om+KiIhIlZJ2MmVmx5g3m5m3BMN+wMZ0jysiIiKSCxI285nZaCIzBjc0s5XAECAfwDn3BHA5kVEwu4HtwNVRHdJFRKQKGj06MkhS8w9VDypvfwmTKeec75Vzzj0CPJKxiEREJOstXrw47BAkQCpvf5oBPU1TFq3jhmdnMP0353DogdV3AUgRqV769u0bdggSIJW3PyVTaXrh48i6h3NXbubcdkqmRKR6aNOmTdghSIBU3v6yOpn66U9/yh//+Efq16+f0eP+/ve/p1u3bnTq1ImvN/zACx8v57c9j+X555/jmmuuoVatWkkfS53DRESqj5aDJ2T0eMuGaWrGqiCjUyNk0rJly8jLy8t4IgVw880389hjjwHwsxdm8sxHX7N0wzZGjRrFrl27yuxfVFRU7rGK+9pHxjOK5JaFa7awYPWWsMOQHFRYWEhhYWHYYUhAVN7+Qk+mdu/ezRlnnFHy/Prrr+eLL75g7NixnHNOZKLiHTt2cN1119G9e3cuvvhitmzZQlFREeeeey4FBQX06NGDLVu28N1339G1a1e6detGnz59yhz72muvZfHixTRo0IDVq1ezd+9e9hZFkqHZMz5lzpw5XHjhhQwfPpz77ruPG264gYsuuoi5c+dyzTXXUFBQwJlnnsk333wDwMSJExn/4E2sfWkw7479F845br/9drp168a5557LypUrA7ySUlk2/biL//lnYZVc++7Cv3zARY99EHYY1dYVV1zB0qVLK/08f/vb33jmmWfivnbDDTfw6quvltm+evVqrrjiinKP+a9//Yt77703YzFKdhs/fjzjx48PO4ysFXoylZ+fz7HHHstnn33Gjh07WL58OW3btuWLL77gqKOOAuCpp56ie/fuvP/++1x77bWMGDGCGjVqMHbsWKZOncpFF13Eyy+/zOzZszn11FOZPHky//73v8nPz6dDhw5Mnz6dbdu2sXbtWlq3bg1Ao0aNSpIigFM6debkk0/mzTffZODAgQA0b96ciRMncvLJJ/PUU08xdepUBg0axJNPPklRURH33HMPPQY9xmHXDOOc3pczYcIEDj74YCZPnsxDDz3EsGHDyn7gchQVObbt3JPBK1u5Ziz7jpaDJ7Bsww8ZPW7LwRO45/XPM3rMdD3z4de8OW8to/67LOxQpAqZP38+e/fuLfmdq0w33XQTf/3rX1N6T9OmTeMmWcWOOeYY5s2bl25okiPat29P+/btww4ja2VFn6m+ffvy8ssv06lTJy666KIyry9YsIAZM2bw/PPPs3v3bs466yy2bdvGz372M1auXMl3333HFVdcwY033siHH37ItddeyymnnMJdd91F//79ee655+jUqROXXnppUvE89cFSvt2ygwu7ng7A3r17+fWvf83cuXPZvn07xx9/POvXr6d58+bUqlMX2E5ejTwWLFjAv//9b6ZNm4ZzjubNmyd9DYZPWszfJi9h7n3ncWDt/KTfF5bXCiO1bh8v3UjLhgdk9Nijp3/Dw5edkNFjpsObk5aiSp4+bc/eIrr+cQr3XHgsPU9sUqnnkmB88cUX/OQnP2H69OlApPtC7969+fzzz3nxxRfp06dPyb7vvPMOQ4YMYefOnRx99NE8++yz1K1bl/vvv59x48axfft2Tj/9dJ588knMjMcee4wnnniCmjVr0q5dO1566SXatGnDf//7Xxo1akRRURGtW7fm448/plGjRrRs2ZLp06dz6qmnlolz2rRpDB8+nLVr1/L73/+eK664gmXLltGrVy/mzZvH/PnzufHGG9m1axdFRUW89tprvPvuu6xbt46TTz6ZHj168Ic//CGw65qqTPdzqo569+4ddghZLfSaKYBu3boxZcoUXnnllZLhl23atCmp/m7bti133HEHU6ZM4aOPPuKBBx7g7bff5sgjj2Tq1KnccMMNOOfYvXs3Q4YM4cUXX+Sdd97hm2++oUOHDsybN4+XXnqp1NDOdevWlUl28vPz2bt3Lw9OWMjo6d9Qo0bk8syZM4dNmzYxbdo0Bg8ejHOORo0asXLlSnbv+BGI9Ktq27YtV111FVOmTGHq1Kk8++yzSV+D/8xZBZCwKWnrjt08NGEBO/fsTfrYkp4aXjJV2XPR/rBzLyu/387g1+dW6nkkOG3btmXXrl18/fXXALz88stcffXVAHz00Ud06NABgA0bNvDggw/y7rvvMmvWLDp27Mjw4cMBuO2225gxYwbz5s1j+/btJU0tw4YNY/bs2cydO5cnnniCGjVqcN111/Hiiy8C8O6773LSSSdRvHRXx44d+eCD+E26a9as4cMPP2T8+PEMHjy4zOtPPPEEd955J3PmzGHmzJk0a9aMYcOGcfTRRzNnzpysTqREgpAVyVReXh7t27dnxYoVtGzZEoCLL76Y9957D4ABAwYwadIkunfvTvfu3XnnnXfo0qULb775Jj179mT+/PkAzJgxg7POOouCggIaNWpEs2bNALjwwgupWbMmDRtGlgzcuHEjTZs2pWbN0hVzF198MVdddRVb57xVanvbtm1Zvnw5PXr0YMqUKQDUqFGDhx56iHf+cBtrR9/Du+Neo3fv3mzcuJFu3brRvXt3nn/++Yxfq7+8+yUjP/iaV2aqP1ZQaniDC/ZWcjKVlxc5UXE/PqkarrrqKl5++WWgdDK1Zs2akkTnk08+YcGCBZxxxhmcfPLJPPfccyxfHpl2ZfLkyXTu3JkTTjiB999/v+T37sQTT+Taa6/ln//8Z8lv2U033VTyu/PMM89w4403lsRx6KGHsnr16rgxXnLJJdSoUYN27drx7bfflnn9tNNO43e/+x2PPPIIy5cvp06dOmzbts13cI5ULVu3bmXr1q1hh5G1sqKZDyIdJKMdeeSR7Nmzh02bNlG/fv24iUm8kQXx/vKqUaMG/fv3L3n+9NNPc8cdd5Taxzm4/fbbuf3220uqhHv1igxZPeCAA+Iet2fPnlz0bSOmLl7PeZd0wsz485//nPjD+kh0v961N/LjtXdvdvyIVYeFg2rUKG7mq+TzeEnbHiVTVcrVV1/NlVdeyWWXXYaZ0apVKwDq1KnDjh07gEitZ48ePUqW7Ci2Y8cOfvGLXzBz5kyaN2/OfffdV/KeCRMmMG3aNMaNG8dDDz3E559/TvPmzWncuDHvv/8+06dPL6mlKj5WnTp14sa43377lTyOVwN7zTXX0LlzZyZMmMBFF13Ek08+ydixY9mwYUN6F0dyRnFN6ZAhQ0KOJDtlRc1UeZ5++um0p0a4//77mTRpEpdccknJtl//+tdx+w1URKq3vXVbd9By8ATe8Jr1iiU7tULx75xpLobAFF/qyu4zVXz4PVmSKEtmHH300eTl5fHAAw+U1EoBHHvssSxZsgSALl268NFHH5U8/+GHH1i8eHFJ4tSwYUO2bdtW0iG8qKiIFStW0K1bNx555BE2b97Mtm3bgMj8fNdddx1XXnkleXl5JedbvHgxxx9/fIU+w9KlSznqqKO444476NOnD3PnzuWQQw5h9+6qN8JV4qtbty5169YNO4yslTU1U5WlsofulswzleT+S9ZFfvBGT/+GPicfHnWcJM9HevNa7di9l99NXMhd57fJSEf36pDTFfeZCmqGVtVLVT1XX301v/rVr0r6TkGkZnvKlCmce+65NGrUiFGjRtGvXz927twJwIMPPkjr1q255ZZbOP744znssMPo1KkTEBkUc91117F582acc9xxxx0lf3hefPHF3HjjjaWa+CDSR+u+++6rUPyvvPIKL7zwAvn5+Rx22GH85je/4ZBDDuGLL77g+OOP58ILL1S/qSpu0KBBYYeQ1ap8MhWUpGuKEtwpEx2mpGYqubOV8fKMFTz/8XJq1qjBvb3bVfAoZePJhLkrN2XuYBlU0meqyLFlx25q5dWgdn6e/5sqQElU1XXXXXdx1113ldp2xRVX0K1bN4YOHUpeXh7du3dnxowZZd774IMP8uCDD5bZ/uGHH8Y912effcZJJ51E27ZtS7bNnj2b4447jgYNGpTZf9SoUaWeF9dwtWzZsmTqg8GDB8ftmP7SSy/FjUGkusnqZr5MenjiQp6c+lXYYZSwctKhpJOTClYJFTdVlddkdfvo2Qx8eU5lnd7Xyu+3Z/6gGVBcM7XXOU687x16/zVyE3POMeub7zM+yi+dS/vdD7v4z+xViXeU0NWpU4ehQ4eyalXmymvYsGFcfvnlPPzww6W2b9iwgQceeCBj5xGR0qpNMvXktKU8/OYXZbYH3feovNtuhiq20jbus9W8nsTNuDp0PC8W+x350muqfX3WKi77x38ZP3dNRs5T0aRs6fptJY9//s9CfvnyHFZvys7EVEo7//zzadGiRcaON3jwYJYvX86ZZ55ZanuPHj1KRkpnyogRIxgxYkRGjynZS+Xtr9okU9mmwn2edkXml3ouzdm4E92473n9cxatTTwMNpO5aKYStCFvzOOlT79JvGOavvKSmOUbMzsLfKq6Pzq15PHazZEOy7vViV0q2Zo1a1izJjN/SEj2U3n7U5+pNKXSh2neqs3MWPZdWufb+ENkIebijuypSjb3GT39Gz5asoFpv+7mu18ma6hchurdnvs4Mj/PNZ0z8xd/osQzU7Wb1aiyT6qAW265JewQJEAqb3/VrmZq4udruPvV5GaYfv+LspPXlSf2fvr+F98yaUHp9/f664f8+d0vkz5mZUrmxu2X3GTDKL4OD0yix/CpiXdMgXOOt+atZdeesjU7sf3c1m3dmdFzl5wnjYtbMtozrZ5XIok1bdqUpk2bhh2GBETl7a/aJVO/eHEWL89cUWb74m+38fFXG0ttu2nUTAqX+9cklZdw3DRqJrc8P7Pc94WVjFjJ0iiR53uLHM455q/ezJYdpeeMCbpfVKrn2/jDrpL+S5ky7csN/Pyfhfzp3cVlXost61e99Qn37M3MhUrm86/fupP+z0wvd9mhFd9F+kplQ7IrIlJdVLlk6q15a2k5eAIrvvsxpffd+tIs+o38pMz2rTv2JPX+XKkJiL3JHv2bidz7xnx6PvYh1z/1aThBeSqaksxZsYlxn8VfJiNV33vNqNEjC4MepOB3tiemfsXUxet5Jc4fBJVp1abtXPL3j0quj8iUKVNKlteSqk/l7S8nkqm5Kzdx/7gFSY12Kh4WPm/V5oycOz8v2EuUqX5DqZznhU8ifYw+W1n6muXKiL1L/v4Rt4+enZFjFXfcTiU5i861nHNMWvBtxTqAJ3G9982An/rhEx/bMXTc/LgDD0ZM/Yo5KzaVmblfqq+pU6cydWpmm9kle6m8/eVEMnXF4x/zzEdfl6xLF6REyVRFE46K1GRt/nE3Uxevr9gJS84bjO279rJwzRbmrNjE41OSm98r0/M1VUS871gqcU1ZvJ5bnp/JX9+rnL5xlZlsf7tlJ89+tIzrny6/hjL8EpJsUVBQQEFBQdhhSEBU3v4SjuYzs2eAXsA651yZhZ3M7FrgbiL36a3A/zjnPstkkEHV1sTz7sJvWbN5e6mlX6JluqbAL8m6cdT0zJyEyq91umPM7FId8P+n69Hs2lPEf+as4txjG3PIAbUA+N3EhdTJz+N/e7Su3IBijJy2lNHTv+H9u7qmfazoEtu4zWsmrMA8T8l8zzO1NuP6rTuZvGhd3PPHO7TWgpRYXbt2DTsECZDK218yNVOjgAt8Xv8aKHDOnQA8AFTarF7Fica6LTsoXP59ZZ2mlBHTlnLnmDkJ97s2qr/Rdm8uKD/l3Zv8bqhflDPv0849e3lowgK27khi0dHiDuiJ90xL7BQQny7dyJ/eXcyvX51L+wcmlVyjEdOW8pcka3G+WLslY312Hpq4kKUbys4PVSOmYLbt3MODExb6Hiu2mS8Zb81bw4ZtpUcDppKYp5vaDHhhJr+OGdVafP4du4uY9U38/7+GjlvAY5VU6yYikqsSJlPOuWlAuUPanHP/dc4V//J+AjTLUGxR5yj9/Pw/T+Pyx/+b6dMkbffeIo66ZwKvzFwRN/m5f/z8lI/pVyM1bfF6Wg6ewI/lJGn/mrmSkR98HXfahSemfsWx//dW1HmSt6eoiFtfnFWhNfNiz3P1iE9KNfft2F32syTKQy748wdc9NgHKceSiti4v0pxtGDxR/Arz607dvPzf86i/zPT+eDL9XT745RS16P4vc65MslZycLa3uE3bks8PcOevUX8Z/aqUsdaHzOtQ8/HPuD8P08DYPP23Vz2j/+yYdtOHp/yFS0HT2D83H19yIZPWszazTs4aeg7fPlt4oldpWpavXo1q1dnZuCHZD+Vt79M95m6GXgzw8cs4/tyhoUHZfP23RQ5eCRmeZriqQVWb9qR0fON/GCp7+t7vH4+e+L09xn25hdsj5O4JOPbLTuZ8PkabntpNpt/3J3SCMnKahZa483wvWD1lko5fqZq7OJ9/N9NXMgNz05nb1HkLCu++5H7xs7n6w0/sOK7H8uc+6EJCznynomlkqB9yVrEOwsSz4X21Idf88uX5/D6rH2dx2Pjm796S5mRq8s2/MAjb0W+4xu2la4RfHPeGjZv380/vcELUv2MHDmSkSNHhh2GBETl7S9jyZSZdSOSTN3ts88AM5tpZjPXr0++I3VFbnDJvie22eizFZsSvqfIxe9b8nvvxlPeIsLxPPXBUloOnsAPO5ObgiGepCbgLFPDkcrxHef+aSpn/X5y0u+pSCqVSt+4VGuoxn62mhc/LXvjjzc5Z7SZUc3JSV0zn31GTFvKlEXr99U84Z90PvPR1wDsKYpKpirQZ6q4Fuq7FJtIo88bK1N9tyR3NWnShCZNmoQdhgRE5e0vI8vJmNmJwFPAhc65jeXt55wbgdenqmPHjinnSF+s3cKJzeqXPN+yYzcH1s5POd5oG2NuMH3+/lHiN5VEbqVusMU35lQSlWc/WhY3joowM77dsoPGB9YGKNWHam+Ro+APk0tqz1K9B8Y2CxX7zb8/5/IOh7NfzbyKBR2QO7ypE67tfESp7a1/+ybLhvUseR57WR4Yv6Dk8c4EiVc0v8v7zoK1kQcx35PYhLdmXg127Sliz15HfszlXfHdj0xbvJ6v4/T7gtLlW9F0x+97PNObzFa5VPU1YMCAsEOQAKm8/aVdM2VmLYDXgeudc2Wnjc6gi/9WOtF59sNl5cdViXEU32NqxJyk+OaTTA1LJv+iLz7v9K+/o/Pv3mOsN0dSr79+WLLPniLHqk3bSzXlbPoxM52553yzqcy2iiSH5d28r37yY174eFnJ87AmjoxdHqiifuV1/C73W+J9NfK9L1j0dA3F362nPvyanzwznRHT/JuAoz000b8jfSy/7/HEz9d6oSqbEhFJmEyZ2WjgY6CNma00s5vN7Odm9nNvl3uBBsA/zGyOmZW/hkoFJTtC6p+fLOet+ZEf+UTv2FvkeM1bDiRV0c180ecpflwUVYHRcvAEXp+V/HkK/jCFm0fNiHo+mQ++3JDUexesifQjKvRG0i3fuK+PU7wmm9lJNGnCviVKIscsWxMSe+RvNqY2+3zJccoptE+//o7/e2Nfp/7yJuh8YupXCZvtEvHLcWNH3xWbsigyQGDVpu0lCci7C7/l5RnflPSPiie2L1TsnnleMhXdF64iU1rEneogiSTojdmJO5vG/kEhIlIdJWzmc871S/D6T4GfZiyiBOJ1si722//MS/o4//fGPF769JsKxVB8Q6sRm00Vvx6zccz0FVzWPv4gx3iJ4ntf7Jv/Z3kFEpN4tV6x59m711WoM1rBH6awbFhPdu4u/wa/a2/qHd4Xrkm+Q3l5TY7D3vyiVH+1PXuLqJniDPbRnyV2eofyFPeriu5v9/2Pu7n7tc9xDvqe2iL+uco5XnFCaHGmsahI/8GnPvy6Au8i7hqWsdTMV309+uijAAwaNCjkSCQIKm9/OTEDevQNZEeSNQ+JfuMrmkgtWru1pBnNgL1xkqHYyoh1W3eUqa35at02duzeW2bfYs45pn+d3M08tvZj6YYfynSkjz3NyzNXlDvVQiI7du/l9dnlLytSkdqTC//yQUZG0v3+rUUlj89OocN8segYUh2pFm/gwQ8+1zh29+jnzrmSRCX6uBW5tpU5Qas6oFdf27ZtY9u2zC40LtlL5e0vIx3QwxLGzOjFc/FA5EZSGGe0V2wStGzjj5z9h9I39lWbtjPoX+VPFP/PT5aXatoqzw8795TpCzNt8XqmJbHszJZkJvmMo8efSq/PFFsOPi1bUftUftmt3pz8FBWbf9xdJjGOncAzkXifu1bN8v9eib5usWdybt/5S4eV3HVLdHlXV2CG9niyNZcys/pEBsUcT+Si3QQsAl4GWgLLgKucc99bJCP8C3AR8CNwg3NuVvBR55aBAweGHYIESOXtLydqpirik6UbebWCfaKStXNPxWp2in269LtyE8J4s3PHmrTgW2bH6fydrIrmM9F9qCIHin2a+MD/90bZJtkw1+Y76f53aP/ApFLb/PKEeDOERybZLL0tz8s24k19UaomitLXzUWdPzrx/Gpd4u9FtPISZr9pD1KRxR3Q/wK85ZxrC5wELAQGA+8551oB73nPAS4EWnn/DQAeDz7c3FOvXj3q1asXdhgSEJW3v5xIpqJvOh8tid8Z+x2v43mx5z5ezl0+NT+ZEDuR4ZfrtjJ+7moaH7hfUu+Pd/MtFjuBYjy3PD8z6ZqBiXPXlNn2Wgod41ORTE5UPBosWqrzIFXUJ0vLnb2jVOzf+Yx2vOwfZWfgj1fb9vWGbTz70dcMeKHsuIyde4ooKiepKa9pb+MPiWc8j35P76gRnZUhG2umzOwg4GzgaQDn3C7n3CagD/Cct9tzwCXe4z7A8y7iE6C+mWlCHRFJWs4189392ty42we8UBhwJGXNXbmZ216anXwyRfmNNlu2J9cEl+y9bPDrn5fZlqn1DWM/Q7IVTLEj75auT63WpaIenLCg3NfWbtnXNDhlUfITy0JkFGfsRx/5gX/n71I1kKX6TO3rj1SqZirJa/T1xh9o0WD/Cg1gSEUW5lIARwLrgWfN7CSgELgTaOycK/6rYi3Q2Ht8OBDd236lt63sXyBSYty4cQD07t075EgkCCpvfzlRMxVtU9RSMs7B2/PXcuQ9E8rdP5lFhzPt2y3J1h6Un3Uk218nGzoAFznHrj1F+yYtTbJfT2zZBNUHLs/nmqWziK+j4k2nf3t/CbOimmyLojqgV+SY/Z+ZHnd7y8ETkprlP1lZ8PWLpybQHnjcOXcK8AP7mvQAcJH/+VK+shVdxaEqmjVrFrNmqWtZdaHy9pdzNVOx7nrlM9+bzfVPf8qr/3N6cAGlwO/mOyfJG1623MyOv+9tdu0p4t2BZ1c4oUj2ffFGUJbnq/XbOOfRfR3mX/hkOZuTrPVLVTqd6sd+trpklGixeH2mMiGZKQ+SlWon/YCsBFY65z71nr9KJJn61syaOOfWeM14xXOQrAKaR72/mbetjHRXcahKevXqFXYIEiCVt7+cq5mKtTXBmnYzM9SUVRmcK792Krq5yU823Myc29dkd+7waRVPppLcb8m65IfnvjGndILyf/+Zx7KYpq+N5UzGmapMdqAvcq6kbDdv383mkBf3Lk/4376ynHNrgRVm1sbbdA6wABgL9Pe29Qfe8B6PBX5iEV2AzVHNgVKODh060KFDh7DDkICovP3lfM1UMu4bm3iKgWRksnkEim++6d2Okp1YsjKV6TOVZFq0u6h0n6nKGMyXTKLU4cF3M3KuIpe5pspIn6nI4+JllKLXEEz32Jnyz0+/YeB5bRLvGLzbgRfNrBawFLiRyB+Pr5jZzcBy4Cpv34lEpkVYQmRqhBuDD1dEcllOJ1O7fWZDjzbqv8sycr6kFkFOwZYde8jPSy+Z+sPbixLvFLBkO7Y/MeWrUs+jRxe++fka6tXO57qnP419W0perODkrBVxz+uf89Clx2fkWMcNeZva+aUrjr9an9qEee9maC1BP0GNwEyVc24O0DHOS+fE2dcBt1Z2TFXNokWR3542bbIymZYMU3n7y+lmvn/E3Ixz0e69ud/tIrZPz9Bx5Y+Wi+a3zMn/vDiLN+aUP8t6dbBjd+k/FqL7fiXjr+9XvDO9SCJjxoxhzJgxYYchAVF5+8vpminJDr9+Nf50FelKdV29bBDivKNlfLZyczmvZFGQkrNat24ddggSIJW3PyVTSRpczvxWUv7Cw+lKtwlU4sumhE9yV79+/cIOQQKk8vaXe3/6h2TMjMwNJ5fk5NVQMiUiItlPyZRkrWyY9iFVuVDpo5opEZHMUjIlWSsnK6ZyIFN574vKH+UnVd/QoUMZOnRo2GFIQFTe/pRMSdZ6KcBpDTLl/97IzJxmlSl2gW4REUmPOqBL1vohhHUVRSQ5Q4YMCTsECZDK259qpkRERETSoGRKREREJA1KpkREJGWjR49m9OjRYYchAVF5+1OfKRERSdnixYvDDkECpPL2p2RKRERS1rdv37BDkACpvP0lbOYzs2fMbJ2ZzSvn9bZm9rGZ7TSzuzIfooiIZJs2bdrQpk2bsMOQgKi8/SXTZ2oUcIHP698BdwB/zERAIiIiIrkkYTLlnJtGJGEq7/V1zrkZwO5MBiYiItmrsLCQwsLCsMOQgKi8/QXaZ8rMBgADAFq0aJHUe/bsLarMkEQkTc45LAfXUZT0jB8/HoAOHTqEHIkEQeXtL9Bkyjk3AhgB0LFjx6QWMSvK/qXORESqnfbt24cdggRI5e0v60fz5eRityIiVVzv3r3DDkECpPL2l/WTdqr5QCS7OdUei0g1l7BmysxGA12Bhma2EhgC5AM4554ws8OAmcCBQJGZ/RJo55zbkokAlUqJiGSfrVu3AlCvXr2QI5EgqLz9JUymnHP9Ery+FmiWsYhiqGJKRCT7DB8+HIAhQ4aEHIkEQeXtL+v7TKmZTyS7qZWveqpbt27YIUiAVN7+sj6ZEhGR7DNo0KCwQ5AAqbz9ZX0HdBHJbk490EWkmlMyJSIiIpIGJVMiIpKyESNGMGLEiLDDkICovP2pz5SIpEWNfNXTmjVrwg5BAqTy9qdkSkREUnbLLbeEHYIESOXtT8mUiIikrGnTpmGHIAFSeftTnykRSYsG84lIdadkSkREUjZlyhSmTJkSdhgSEJW3PyVTIiKSsqlTpzJ16tSww5CAqLz95USfqen/7xxOfei9sMMQkTicxvNVSwUFBWGHIAFSefvLiWTq0Hq1ww4ha7RvUZ9Z32wKOwwRqea6du0adggSIJW3v5xIpmSfTkceomRKRKq8loMnhB2CSNLUZyrHHNf0oLBDEClFo/mqp9WrV7N69eqww5CAqLz9KZkCTjg8dxIUCzsAyag7zmkVdggiFTJy5EhGjhwZdhgSEJW3PyVTwAXHHxZ2CElTJUDVcuYxDcMOocoys2Vm9rmZzTGzmd62Q8xskpl96f17sLfdzOwxM1tiZnPNrH240We/Jk2a0KRJk7DDkICovP2pz5RIhtzR/Rgee39JSu9xSbSRtWlcj0Xfbk05nqYH1Wb15h0pv6+K6eac2xD1fDDwnnNumJkN9p7fDVwItPL+6ww87v0r5RgwYEDYIUiAVN7+VDOVxX7b89hQz2853qZ4w+ktAz1fUQWqDZN5S0XL4c99T+HBS46v2Jurrj7Ac97j54BLorY/7yI+Aeqbmf4MF5GkKJkC9uzNzsazGiFnM6mev12TAzMeQ+MD96vQ+8499lD+t0frDEfjr6gCPbEPOzDxtB8V7eBdw+C6LkdQI8eT4jQ44B0zKzSz4j+rGzvn1niP1wKNvceHAyui3rvS21aKmQ0ws5lmNnP9+vWVFbeI5JicTaYy2dekIjfBIIR9Ezy7VfLX+L1BBRx9aN2MxzDovDYVet+f+57CQXXyMxyNv4p8i5odXIext52R8VgguJrFLP3fB+BM51x7Ik14t5rZ2dEvukgba0rRO+dGOOc6Ouc6NmrUKIOh5p5HH32URx99NOwwJCAqb385l0wtG9aTZcN60uWoQzJ2zIomU6e0qJ9wn3subMuyYT0rdPzWjetV6H2Zklcj+a+HAbXyMv91qmg+UDOETDSZ79HH93Qvs63JQXV831PRGcYt19tp0+ScW+X9uw74N3Aq8G1x85337zpv91VA86i3N/O2STm2bdvGtm3bwg5DAqLy9pfw7mdmz5jZOjObV87rgY2COffYQ0seV6R/Snn2VvBgr/zstKQSqoq4tnMLTk+y9q1h3Yo1hWWSmXFUowMS7teywf4pHfe8dvFHWl7buQVv3nlWue+rnZ+X0nkyod5+icdzxEucKivnKT5sZSdV2bicjJkdYGb1ih8D5wHzgLFAf2+3/sAb3uOxwE+837MuwOao5kCJY+DAgQwcODDsMCQgKm9/yYzmGwX8DXi+nNcDGQUzf+j57FdzX+6Xyaa5lg0TJwHx5OfV4NSWhzC7EmYkf+jSE1KIIztqIJKpDTqu6UEs2/hj0sc8aP/4TXXHNT2IY+P00Zr2q25s+GFn0sfPpKs7teCpD79m04+7k36PmWnusMrRGPi3l0jWBF5yzr1lZjOAV8zsZmA5cJW3/0TgImAJ8CNwY/Ah55Z69cKtOZdgqbz9JayZcs5NA77z2SWQUTAH7FeTmnnRyVRmjvvuwLO5skOzzBwsC/U/7YhKOe7RMbVQySYEwy5PPkn0U14y3aLB/rRvcXBGzpGqRvX2Y86956X8vpqV0DwKkWS/unLOLXXOneT9d5xz7iFv+0bn3DnOuVbOuXOdc995251z7lbn3NHOuROcczPD/QQikksy8Wub1CgYyOxImBaH+DcXJdPkAnDMofWqbN+S0bd0Seuz+b019rhmcNrRDRIes17tfC49Je7XIyXx5me6qmNuJsUH1cmndn75/ytWtBK2Qd1acbfHq9FLRxZ3QJdKNG7cOMaNGxd2GBIQlbe/QP90zeRImMvbH86LP+1MrxObMPGOsn1nzm5TseMfXt+/M3AZUTnFnHt7lH05QS7T4ID4N7xUNDko/vD6yuyDHXtswzixWX2WDevJB7/u5vvehy5Nf+6jeP3cfn/FSWkfN1kXHHdYudc9FcWXsfeJTeO+/qvzKzaaEfb1z4ouqkMOqMWYAV0qfEyRYrNmzWLWrFlhhyEBUXn7y0QyFcooGDPjjGMa8rdr2tOuaem/tOvVrkkdrwNyqhNfXnRCxZeWqb9/6olRrxObpNwpO9bIn3SMuz063bij+zEpd1SPrnG4pnOLUq/5zUHVPEGt4f61yq81rJtkjWImByDc0f2YlEdcPnF9B37bs13J89f+5/TMBRTl1m7HVKh792dD4jc3nnFMQ98pI/p2al7uayLRevXqRa9evcIOQwKi8vaXiWQqK0fBFCcCmWrCe+uXZ/HST+P0q/fOc9pR8Zu4EnUvPi7OIsttD0uto1+DuvvR79SyN8HoZOjgA2pxYRJrEB5QK/4ouDYx0zTEJlOZaik9JmquKr+an4qOwBwUM5FnuyYHVnix4eh+Wx2OSL6f1sHldKqviI7lnDc6YYoum7r7+Y9yrMjIULXyVU8dOnSgQ4cOYYchAVF5+0tmaoTRwMdAGzNbaWY3m9nPzezn3i4TgaVERsGMBH5RadEmy+0brp2plq62hx3oO1VBQTnNik3q+zcFdTmyQamb0ez/68G/f5H6JI739jqOx68tOytFdN+iZIawR+cofglSzTRHEH5+33nMG3p+me3FIzYLWjfiVZ/anl17iwD489Unp3Te22MSpzOOaVDhDuCZSCLSTUJv7XYMD/Q5znef0n2aqmb/QBGRMCUzmq+fc66Jcy7fOdfMOfe0c+4J59wT3utZNwrm0AP3K7nT7efTsTeeTHdG73lCagMbDz6gFnXKqR3yU6dWHhfGnCs6eTL23VSP8GlWjK5tia4Zir0ssdMgbNiW2nQE9Wrnl2nSq5Ofx6He8ip9Tm7q23+teAmgSzLQmb3YIymONExmkeK474uzLZWv3SEH1KJrVPJ+/Wktk35vovNk45xRkp0WLVrEokWLwg5DAqLy9lclx06/+NMuJbeEOj6TN+5fgaQlWVPu6son95yTMDmr1IGErpwbt/9bSvyi6zHlvie2me+QNDvSzxt6PgsfuKAkSYuXp0TPsH7TmS3TOl+x6PNc3alF+TtWwLWd4x8vXhOl3+jU4qSt85GRWf87tUxt6odUvmN7omJL9g+BiiaVktvGjBnDmDFjwg5DAqLy9ldlkql3BxaUPD7soNolNSzl3UjeH1SQcNRZKmLvJy0bHsBhSYz2cs5/aHmqndP9lnTpf3pL6tWuyXnHld93Kro/T14NK3e6gdjr2uzg9DrRJ9PxfPFDF5Y8rle74v2Onu6/r8N+jTSGPCbKIcqbeLW4Vm3yXV1Lku1fdD2GI6Mmj/34nu4U/vbcmOMdz9u/PJu/9D2lwjEnsmtPUcnjv/Y7hTsr2J9Mqr7WrVvTunWwi4lLeFTe/qpMMnVMzCK7xTe68kadHdWoLg3idLbtd6p/7cTDl2Vm0slofk0rU37VjYX3X5D0sRY/dGG56xa2blyPz+87n8YHlp/k1Yxaj69UghN1Hf9+TXuu61J6MtCwF2VOxTnHNubXF0SmHEinZrC43KKXOUrGbq+/V7OD9zVj1qhhTL6ra8nzJgfVKfl+Rn872hxWr9RSOck0yxUPgjjkgFrcctZRvvue07Yxz910Ks/e2IkaNYz/7aEfT4mvX79+9OvXL+wwJCAqb39VJpmKlepyM3+75hQm39XVd9g4lJ9sVfSm3DRBB3WI9Ic6tF7yo6yKb57RV8CvufH+qA7MxU027w0qoE6tvLijEXue2IQ+Jx9eajqBTPU1Kz5KdOyv/vw03h+0r+Yx3sjFVJWM9oz5fA9ekngOrOImzSMbRhL4gtapzWlWnMilsxhzyXVK4Ws+eVDXktqverXL1gQOvfg4zmzVkILWjejWJrkEcdhlJ7BfzeDXQRQRySbJTeqTw5K9yffyJk38/oddABxYuyaDzmvDjt17WfF96bXkauXV4OiYmrCKSnYk2dRfdWN3URGTv1iXcN9rOrfg46UbaXVoXd6eX/b16Csy9VeRBPLeNyI7ltfXLMyKp44t99W0pTofVHmKk8bYfOakZvUTvrd4geWTm9dn2q+60fyQ8jvKvz+ogP3y8zhj2Psl2wacfTQDzj466VjTvfbxaq/G3XYmM5d/z13/+izl44277Ux6/+1DAPomqMkVEakOqmwyVXz7qOiNqEYNo//pLeO+Ft13JxOSqV2oUyuPOpStAYg3v1Xvk5rS+6T4M2oD9D21OfePXwDAEQ1Kr7G3b36uxDEBvP6L0/nwyw0J9xt/+5lJT8gZhFQ/Z7ToZtIWCfq0HdUo/aQ73e7dJU3eUXl7y4YH0LLhATSoW4ufv1DIzqi+Un6aH1KHE5qVnRtNqp+hQ4cCMGTIkJAjkSCovP1lz90tAx685Hi279oL7Kt5iL5ZntWqIR8kuPEXT0tw2SmVs87bsU0OZOGaLaW2pZJkxNa0PXL5ib77x0vU/GYgL+m476WhiZKN9i0OTmph4SYH1Y7bRy1WnldVlMmasIPq5LN5++5S24ovi99M7pl0becWnNS8fppH2RdrKs2qfp+1W5tDubpTc57/eHlyx9LAPRGRMqpUMhXdKTpen5hnbuhEq//3pu8xaufnseD+86kdYD+Qp2/oVKoZKBUVzQXG334mX2/4ocz2uvvVZN3WnSW1GFd3as6YGStS7hdU7OD98/n+x92Jd/T85qJjqZ2f51uzlop//fw0mh+8P10efq/U9n1JYzDKG9mXlDQTmH1Nmv6fVlMcSCpUQ1G9qLz9ValkKlpB60a8OW8trRrva2bJT7J/kl/NTWVIeXHlDDj+8IM4Ps5SNqNuPJU3563h0HqRpqxTWhzMsmE9U77RvvXLs5i57HsefScyyVuyNSkHH1CLB5LoBJ6sTi3jj2ws7hO2fxY1PZZnf28JmLwKdlgvStCkmUMDMUVEslL230kq6OpOzbnw+CYclMF10DKhYd34k1vm5xm79yZOWCpae5BsDVaLBvvzs4KynaNTHa3X9rADaXvYgSXJVNj+99zW1I0awXbDGS3ZU+S46Ywjkz7GTWccyeUdMjfjerKevL4j/5m9Ku6cY7Ffh8EXti13fb1MNGmq8kpEpKwqm0yZWdYlUlD+DW3CHWfx0ZLEHbljaXmQ5Nx5bunJJ/ermcet3Y4pZ+/4OhxxMMc1Db7z9eH165SJNV6x71ezBj+PkwgXq2jNlkg8o0ePBtDcQ9WEyttflU2mck3rxvVo3bhewv1ia4gyvZZgIkc1OiDxTilKdXmUsAR8qX09eOnxHPzOYs72+rK9eedZNCin1rOYcinJpMWLF4cdggRI5e1PyVSawq73aZDmmnipePGnnWlzWOKEL1qi6zPn3h4VWtg52nFND+TSDC54XJ5sauJqclAd/njlSSXPj21yYML3JEq8s+jjSQ7o27dv2CFIgFTe/pRMBeSln3Zm9opNTP/6u4wcr9eJTfjbNe2T3j8TlRJnHNOwwu8t7/z1908/GZxwx1lpH6Mqe+K6Djz/8bJyXw+6dlOqhjZt2oQdQpXQcvCEjB0rU5Max6Py9lctkqm6+9Vk2849lXLs2NtQq0PrllqwttjpxzTk9GMaMmPZ9LTOp+HrkqoLjj+MC44vf3FrERFJT5Vdmy/apIFn88rPTgvoXAWM+EnHcl9/+LITEi6mXJXcdV7kr5kDcmAKAhFJXmFhIYWFhWGHIQFRefurFne4JgfVoclBwc/lFE+Tg+rw8GUnMHr6NxV6f6pNMqlUZJ1YCcuEXNfliFKTqYpI1TB+/HgAOnToEHIkEgSVt79qkUxFO7B2TbbsyFyTX0Ub3Z76SUfWbNmRsTgSSpCEzf6/9DuCS0S3No1KJj3NBcXLGdXOT6381dWqemvfPvk+m5L7VN7+ql0y9cHd3dmxe2/Gj5vqfeXcdo0zHkM8A3u0ZuuOPVyWYLTbwQGOCqzqnr3x1Aq/d9SNnWh2cLC1qLd1P4a6tWtyZYfk16O8t1c7Tj+m7CLbUn307t077BAkQCpvf9UumTqoTj4H1cn8ZJ5BdQtPtQN6g7r78Vi/UyopGsm0rm0ODfyctfPzfCf7jFb8/bvpzORnjhcRqeqqRQf0yhR0S0dxrdr+apILxPCrTuK0o1QDIxJr69atbN26NewwJCAqb39KpnJM8cK9l7dPvklGKq5Ofh7nHxdpkj0iztp41cVFJ2hqBSlt+PDhDB8+POwwJCAqb39JNfOZ2QXAX4A84Cnn3LCY148AngEaAd8B1znnVmY41qwU9KxPRzWqW6kTs1V3bQ6rR6N6+7F+686Sbf1Pb8m57RrT7ODqmUwtG9aTVZu2M/HztWGHIlmkbt26YYcgAVJ5+0uYTJlZHvB3oAewEphhZmOdcwuidvsj8Lxz7jkz6w48DFxfGQFnKw1sqhpq1azBszd0otdfPyzZZmbVNpGKpSljpdigQYPCDkECpPL2l0wz36nAEufcUufcLmAM0Cdmn3bA+97jyXFeF8lJSh4iihdJzs9TzwARkVjJ/DIeDqyIer7S2xbtM+Ay7/GlQD0zK9Nr18wGmNlMM5u5fv36isQrIiE47MDa3HFOK567qeLTPoiIVFWZ+jPzLqDAzGYDBcAqoMxkTs65Ec65js65jo0aNcrQqbODajCqJi2FGGFmDOzROu66k1I9jRgxghEjRoQdhgRE5e0vmQ7oq4DmUc+bedtKOOdW49VMmVld4HLn3KYMxSgSKCVQIomtWbMm7BAkQCpvf8kkUzOAVmZ2JJEkqi9wTfQOZtYQ+M45VwTcQ2RkX7WiDugiUp3ccsstYYcgAVJ5+0uYTDnn9pjZbcDbRKZGeMY5N9/M7gdmOufGAl2Bh83MAdOAWysxZpFKdXjUci5ODbgicTVt2jTsECRAKm9/Sc0z5ZybCEyM2XZv1ONXgVczG5pIOA45oBY9T2jChM9VrS0iIolpnLOIVElmlmdms81svPf8SDP71MyWmNnLZlbL276f93yJ93rLUAPPEVOmTGHKlClhhyEBUXn7UzKVpuJ1205pcXDIkUhlUGf0nHYnsDDq+SPAn5xzxwDfAzd7228Gvve2/8nbTxKYOnUqU6dODTsMCYjK219SzXxSvm5tD+Xz+86jXu38sEORTNKIgpxmZs2AnsBDwEAzM6A7+wbPPAfcBzxOZJLh+7ztrwJ/MzNzTqm0n4KCgrBDkACpvP0pmcoAJVJVz/8UHM1/l2zg9KPLzD0rueHPwK+Bet7zBsAm59we73n05MMlExN7A242e/tviD2omQ0ABgC0aNGismLPCV27dg07BAmQytufmvlE4jj+8IOYfe95NKi7X9ihSIrMrBewzjlXmOljV+WJh0Wk4lQzJSJVzRnAxWZ2EVAbOBD4C1DfzGp6tVPRkw8XT0y80sxqAgcBG4MPO7esXr0a0JD56kLl7U81UyJSpTjn7nHONXPOtSQyyfD7zrlriSzCfoW3W3/gDe/xWO853uvvq79UYiNHjmTkyJFhhyEBUXn7U82UiFQXdwNjzOxBYDbwtLf9aeAFM1sCfEckAZMEmjRpEnYIEiCVtz8lUyJSZTnnpgBTvMdLgVPj7LMDuDLQwKqAAQMGhB2CBEjl7U/NfCKSE8zseTO7MOw4RERihVYzVVhYuMHMlqfwlobEGaqcBbI1Lsje2BRX6rI1tlTjOiKNc/0U6GtmY4CPgaeccz+kcTwRkYwILZlyzqU0rtjMZjrnOlZWPBWVrXFB9samuFKXrbEFHFcD4ChgC7CWSF8n9W8KyaOPPgrAoEGDQo5EgqDy9qc+UyKSK+4C/u71fcLMVoQcT7W2bdu2sEOQAKm8/SmZEpFcMSUqkbrQOfdm2AFVZwMHDgw7BAmQyttfLnVAHxF2AOXI1rgge2NTXKnL1tiCjOvsqMdnBXheiaNevXrUq1cv8Y5SJai8/eVMzZRzLitvJtkaF2RvbIorddkaW8BxNTKzcwAHaNIbEckauVQzJSLV2x1Aa6ANcGfIsVR748aNY9y4cWGHIQFRefvL+mTKzC4ws0VmtsTMBocUwzIz+9zM5pjZTG/bIWY2ycy+9P492NtuZvaYF+9cM2ufwTieMbN1ZjYvalvKcZhZf2//L82sf7xzZSi2+8xslXfd5nhrpRW/do8X2yIzOz9qe0bL28yam9lkM1tgZvPN7E5ve6jXzSeubLhmtc1supl95sU21Nt+pJl96p3nZTOr5W3fz3u+xHu9ZaKYK6gFkXXzDgV+meaxJE2zZs1i1qxZYYchAVF5+8vqZMrM8oC/AxcC7YB+ZtYupHC6OedOjhoGPhh4zznXCnjPew6RWFt5/w0AHs9gDKOAC2K2pRSHmR0CDAE6E5kNekhxIlEJsQH8ybtuJzvnJnoxtCMypP047z3/MLO8SirvPcAg51w7oAtwq3fMsK9beXFB+NdsJ9DdOXcScDJwgZl1AR7xYjsG+B642dv/ZuB7b/ufvP3KjTmNuAYC44ExwMtpHEcyoFevXvTq1SvsMCQgKm9/WZ1MEblpLXHOLXXO7SLyI9on5JiK9QGe8x4/B1wStf15F/EJkZXqM9K/wzk3jcjaYenEcT4wyTn3nXPue2AS8ZOgTMRWnj7AGOfcTufc18ASImWd8fJ2zq1xzs3yHm8FFgKHE/J184mrPEFeM+ecKx4Hne/954DuwKve9thrVnwtXwXOMTPzibmi5jnn5jnnFjnnFqVxHMmADh060KFDh7DDkICovP1lezJ1OBA9l8xK/G84lcUB75hZoZkVL1DU2Dm3xnu8FmjsPQ465lTjCDq+27zmsmeianJCic1rfjoF+JQsum4xcUEWXDOv1msOsI5I4vgVsMk5tyfOeUpi8F7fTGSCzUzH1s3MxprZv8zslTSOIyKSUdmeTGWLM51z7Yk0pdxqZtFDtHHOOSIJV6iyJY4ojwNHE2kqWgM8GlYgZlYXeA34pXNuS/RrYV63OHFlxTVzzu11zp0MNCNSm9Q2jDhi9AMecM5dSaTJT0K0aNEiFi1SBWF1ofL2l+3J1CqgedTzZt62QDnnVnn/rgP+TeTm8m1x85337zpv96BjTjWOwOJzzn3r3ZSLgJHsa+IJNDYzyyeSsLzonHvd2xz6dYsXV7Zcs2LOuU3AZOA0Ik2exdOpRJ+nJAbv9YOAjZUQ25+AG7zH96RxHMmAMWPGMGbMmLDDkICovP1lezI1A2jljSKqRaQz69ggAzCzA8ysXvFj4DxgnhdH8Yiu/sAb3uOxwE+8UWFdgM1RzUmVIdU43gbOM7ODvSak87xtGRfTV+xSItetOLa+3iiwI4l09p5OJZS313fnaWChc2541EuhXrfy4sqSa9bIzOp7j+sAPYj06ZoMXOHtFnvNiq/lFcD7Xm1feTFX1FbgW+/xjjSOIxnQunVrWrduHXYYEhCVt7+snrTTObfHzG4jctPKA55xzs0POIzGwL8j9z5qAi85594ysxnAK2Z2M7AcuMrbfyJwEZHOtj8CN2YqEDMbDXQFGprZSiKjy4alEodz7jsze4DITRjgfudcsh3HU42tq5mdTKQJbRnwMy+G+V6flwVERrXd6pzb6x0n0+V9BnA98LnXBwjgN4R/3cqLq18WXLMmwHPeyLsawCvOufFmtgAYY2YPArOJJIN4/75gZkuIDELomyjmCtoAnG1mfwSK0jiOZEC/fv3CDkECpPL2Z5E/IEVEsp+ZtSXyu7Uw7Fg6duzoZs6cGXYYVVbLwRPCDqGU5Y9EpgU44u7xIUdSvmXDeoYdQpVmZoVR0yOVktU1UyIixbzaTwfsb2Y45y4JOSQREUDJlIjkCOdcSTuDmWk0X8iGDh0KwJAhQ0KORIKg8vanZEpEckLUzO41icz2LiKSFZRMiUiuuJJIM99O4K8hx1LtqYaielF5+1MyJSK5Yib7Jlc93MwOL167UEQkTEqmRCRX/BT40Ht8BvCf8EIREdlHyZSI5IovnHOPQmRiUefc82EHVJ2NHj0a0PxD1YXK25+SKRHJFc7MniLS1Pdtop2lci1evDjsECRAKm9/SqZEJFf8lsj6fpvQcjKh69u3b9ghSIBU3v6UTIlIrvgzcIBz7mYzexJvqR0JR5s2bcIOQQKk8vaX7Qsdi4gU20tkHUWAzWEGIiISTcmUiOSKncCx3sLOB4cdTHVXWFhIYWFh2GFIQFTe/tTMJyJZz8wMeA1oQOSPwMfDjUjGj48s+NuhQ4eQI5EgqLz9KZkSkaznnHNm1s059/uwY5GI9u3bhx2CBEjl7S+0ZKphw4auZcuWYZ1eREJQWFi4wTnXKNX3mVkf4GIzOx/4jkh+dVXGA5Sk9e7dO+wQJEAqb3+hJVMtW7Zk5syZYZ1eREJgZssT7xXX+c65M83scefc/2Q0KBGRNKkDuojkgiPM7CKghZld5D2WEG3dupWtW7eGHYYEROXtT8mUiOSCV4BGUf+m3FQomTV8+HCGDx8edhgSEJW3P3VAF5Gs55x7LuwYpLS6deuGHYIESOXtT8mUiIikbNCgQWGHIAFSeftTM5+IVDlmVtvMppvZZ2Y238yGetuPNLNPzWyJmb1sZrW87ft5z5d4r7cM9QOISE5RMiUiVdFOoLtz7iTgZOACM+sCPAL8yTl3DPA9cLO3/83A9972P3n7iYgkJWEyZWbPmNk6M5tXzutmZo95f9HNNTPN7CUioXIR27yn+d5/DugOvOptfw64xHvcx3uO9/o53qzrUo4RI0YwYsSIsMOQgKi8/SVTMzUKuMDn9QuBVt5/A9AyDyKSBcwsz8zmAOuAScBXwCbn3B5vl5XA4d7jw4EVAN7rm4ksXRN7zAFmNtPMZq5fv76SP0F2W7NmDWvWrAk7DAmIyttfwg7ozrlpCfoP9AGed8454BMzq29mTZxzuuoiEhrn3F7gZDOrD/wbaJuBY44ARgB07NjRpXu8XHbLLbeEHYIESOXtLxOj+Ur+ovMU/7WnZEpEQuec22Rmk4HTgPpmVtOrfWoGrPJ2WwU0B1aaWU3gIGBjKAHniKZNm4YdggRI5e0v0A7o0VXki1ZvCvLUIlKNmFkjr0YKM6sD9AAWApOBK7zd+gNveI/Hes/xXn/fq20XEUkoEzVTxX/RFYv+a6+U6CryQ444Vj9UIlJZmgDPmVkekT8aX3HOjTezBcAYM3sQmA087e3/NPCCmS0hspBy3zCCziVTpkwBoGvXrqHGIcFQefvLRDI1FrjNzMYAnYHN6i8lImFyzs0FTomzfSlwapztO4ArAwitypg6dSqgm2t1ofL2lzCZMrPRQFegoZmtBIYQGWaMc+4JYCJwEbAE+BG4sbKCBfjHP/5BmzZtOOecczJ63E8//ZRp06bxq1/9KqPHFRGpigoKCsIOQQKk8vaXzGi+fgled8CtGYvI/1yMHTuWt956K+PH7ty5Mw888ACDBg2iRo3MdiUr7npRPG1NUVFRxs8hIhIk1VBULypvf1l7R+/Tp0/JnBZPP/00TzzxBJ9//jlHHXVUyT6/+93vKCgo4Oyzz+bzzz8HYODAgRQUFHDqqacyZ84cAG688UbOOussunbtyrJly7jssstYuXIlEJmIbOTIkQC0a9eOGTNmlIpj0qRJFBQU0KlTJ4YNGwbA9u3b6devHwUFBSU1ZJMnT6ZLly506dKF559/HoAbbriBW2+9lfPOO49XX32V3r17c+mllzJq1KjKuWgiIiISuKxNpq688kpeeeUVAF577TWuuOIKvvjii5Jkat68eSxatIipU6cyZswYfvvb3wLw4IMPMnXqVJ588kn+8Ic/sHv3bhYtWsS0adOYMmUKLVq04LrrruOll14qOfaVV0a6Shx11FEsWLCgVBxnnHEGU6dO5dNPP+W1115j+/btjBw5ko4dOzJ16lQmTZoEwD333MP48eP54IMPeOyxx9i+fTsA7du3Z9KkSTRq1IjNmzfz+uuvc9NNN1X+BRQRqUSrV69m9erVYYchAVF5+8vaZKpPnz6MHTuWDRs2UKNGDRo2bFjq9QULFvDf//6Xrl27cs0117BtW2TliD/84Q+cddZZ3HHHHaxevZr8/HxuvfVWrr/+eu68805+/PFHevXqxZtvvsk333zDQQcdRP369cuNo7CwkHPPPZdu3bqxbNky1q1bx8KFC0vaj4ub6/bu3UvDhg3Jz8/nmGOOKfnSderUqeRYHTt2RCtUiEhVMHLkyJJafan6VN7+sjaZqlevHg0aNGD48OFccUVkWpg2bdqwdOlSANq2bUtBQQFTpkxhypQpvPXWW2zcuJFJkybxwQcf8Oc//xnnHHv37uWqq67in//8J40bN+b111+nVq1aHHfccdx9991ce+21JedcunQpxx57bKk4fv/73/PEE08wefJkDj/8cJxzHHvssUybNg2I9H+CSFK1YcMGdu/ezZdfflkywVl03yj1kxKRqqJJkyY0adIk7DAkICpvf5mYGqHSXHXVVfTv37+klufEE0/kq6++KnncqlUrCgoKqFGjBj169GDw4MEccsghdO3alS5dugCwdetW+vTpg5lhZrz44osA9O/fnwsuuKCkfxPA/Pnzefjhh0vFcPnll3PppZdywgknUK9ePSAyrf4NN9xAQUEBNWvW5L333uN3v/sdPXv2xMy47bbbqFOnTqVfHxGRsAwYMCDsECRAKm9/FtYkv4cccaz7bvnClN/397//nbZt26Y9NUJhYSHPPvssf/vb3wBNjSASBDMrdM51DDuOTOjYsaObOXNm2GFUWS0HTwg7hFKWP9ILgCPuHh9yJOVbNqxn2CFUaX6/X1ldMxXPrbemPwvDf/7zH4YNG1ZSSwWRqRE6d+6c9rFFRESkesm5ZCoTLrnkEi655JKwwxARyVmPPvooAIMGDQo5EgmCyttftUymREQkPcUjqKV6UHn7UzIlIiIpGzhwYNghSIBU3v6UTImISMqKRzdL9aDy9qeJj0RERETSoGRKRERSNm7cOMaNGxd2GBIQlbc/JVMiIpKyWbNmMWvWrLDDkICovP2pz5SIiKSsV69eYYcgAVJ5+1MyJSIiKevQoUPYIUiAVN7+kmrmM7MLzGyRmS0xs8FxXm9hZpPNbLaZzTWzizIfqoiIiEj2SZhMmVke8HfgQqAd0M/M2sXs9lvgFefcKUBf4B+ZDlRERLLHokWLWLRoUdhhSEBU3v6SqZk6FVjinFvqnNsFjAH6xOzjgAO9xwcBqzMXooiIZJsxY8YwZsyYsMOQgKi8/SXTZ+pwYEXU85VA7IrA9wHvmNntwAHAuRmJTkREslLr1q3DDkECpPL2l6kO6P2AUc65R83sNOAFMzveOVcUvZOZDQAGANRtcnSGTi0iIkHr169fmW0tB08IIRIJQrzyln2SaeZbBTSPet7M2xbtZuAVAOfcx0BtoGHsgZxzI5xzHZ1zHfPz8ysWsYiIiEgWSaZmagbQysyOJJJE9QWuidnnG+AcYJSZHUskmVqfyUBFRESkfJmsGVw2rGfGjlUdJKyZcs7tAW4D3gYWEhm1N9/M7jezi73dBgG3mNlnwGjgBuecq6ygRUQkXEOHDmXo0KFhhyEBUXn7S6rPlHNuIjAxZtu9UY8XAGdkNjQRERGR7KcZ0EVEJGVDhgwJOwQJkMrbnxY6FhEREUmDkikRERGRNCiZEhGRlI0ePZrRo0eHHYYEROXtT32mREQkZYsXLw47BAmQytufkikREUlZ3759ww5BAqTy9qdkSkREUtamTZuwQ5AAqbz9qc+UiIiISBqUTImISMoKCwspLCwMOwwJiMrbn5r5REQkZePHjwegQ4cOIUciQVB5+1MyJSJVipk1B54HGgMOGOGc+4uZHQK8DLQElgFXOee+NzMD/gJcBPxIZG3RWWHEnkvat28fdggSIJW3PyVTIlLV7AEGOedmmVk9oNDMJgE3AO8554aZ2WBgMHA3cCHQyvuvM/C496/46N27d9ghSIBU3v7UZ0pEqhTn3JrimiXn3FZgIXA40Ad4ztvtOeAS73Ef4HkX8QlQ38yaBBu1iOQyJVMiUmWZWUvgFOBToLFzbo330loizYAQSbRWRL1tpbct3vEGmNlMM5u5fv36ygk6R2zdupWtW7eGHYYEROXtT8mUiFRJZlYXeA34pXNuS/RrzjlHpD9VSpxzI5xzHZ1zHRs1apShSHPT8OHDGT58eNhhSEBU3v7UZ0pEqhwzyyeSSL3onHvd2/ytmTVxzq3xmvHWedtXAc2j3t7M2yY+6tatG3YIEiCVt7+kkikzu4DIaJc84Cnn3LA4+1wF3Efkr73PnHPXZDBOEZGkeKPzngYWOuei/5QeC/QHhnn/vhG1/TYzG0Ok4/nmqOZAKcegQYPCDkECpPL2lzCZMrM84O9ADyJ9CWaY2Vjn3IKofVoB9wBneEOND62sgEVEEjgDuB743MzmeNt+QySJesXMbgaWA1d5r00kMi3CEiJTI9wYaLQikvOSqZk6FVjinFsK4P311gdYELXPLcDfnXPfAzjn1pU5iohIAJxzHwJWzsvnxNnfAbdWalAiUqUl0wE9mZEurYHWZvaRmX3iNQuWET0SZvfu3RWLWEREQjdixAhGjBgRdhgSEJW3v0x1QK9JZMK7rkQ6b04zsxOcc5uid3LOjQBGABxyxLEpj6QREZHssGaNupVVJypvf8kkU8mMdFkJfOqc2w18bWaLiSRXMzISpYiIZJVbbrkl7BAkQCpvf8kkUzOAVmZ2JJEkqi8QO1LvP0A/4Fkza0ik2W9pBuMUEZEs0rRp07BDkACpvP0l7DPlnNsD3Aa8TWRZhlecc/PN7H4zu9jb7W1go5ktACYDv3LObaysoEVERESyRVJ9ppxzE4kMH47edm/UYwcM9P4TEZEqbsqUKQB07do11DgkGCpvf1pORkREUjZ16lSmTp0adhgSEJW3Py0nIyIiKSsoKAg7BAmQytufkikREUmZmnuqF5W3PzXziYiIiKRByZSIiKRs9erVrF69OuwwJCAqb39KpkREJGUjR45k5MiRYYchAVF5+1OfKRERSVmTJk3CDkECpPL2p2RKRERSNmDAgLBDkACpvP2pmU9EREQkDUqmRERERNKgZEpERFL26KOP8uijj4YdhgRE5e1PfaZERCRl27ZtCzsECZDK25+SKRERSdnAgVrXvjpReftTMiUiIimrV69e2CFIgFTe/tRnSkRERCQNSqZERCRl48aNY9y4cWGHIQFReftLKpkyswvMbJGZLTGzwT77XW5mzsw6Zi5EERHJNrNmzWLWrFlhhyEBUXn7S9hnyszygL8DPYCVwAwzG+ucWxCzXz3gTuDTyghURESyR69evcIOQQKk8vaXTAf0U4ElzrmlAGY2BugDLIjZ7wHgEeBXGY1QRESyTocOHcIOQQKk8vaXTDPf4cCKqOcrvW0lzKw90Nw5N8HvQGY2wMxmmtnM3bt3pxysiIiISLZJuwO6mdUAhgODEu3rnBvhnOvonOuYn5+f7qlFRCQkixYtYtGiRWGHIQFReftLJplaBTSPet7M21asHnA8MMXMlgFdgLHqhC4iUnWNGTOGMWPGhB2GBETl7S+ZPlMzgFZmdiSRJKovcE3xi865zUDD4udmNgW4yzk3M7OhiohItmjdunXYIUiAVN7+EiZTzrk9ZnYb8DaQBzzjnJtvZvcDM51zYys7SBERyS79+vULOwQJkMrbX1LLyTjnJgITY7bdW86+XdMPS0RERCQ3aAZ0ERERkTQomRIRkZQNHTqUoUOHhh2GBETl7U/JlIiIiEgakuozJSIiEm3IkCFhhyABUnn7U82UiIiISBqUTImIiIikQcmUiFQ5ZvaMma0zs3lR2w4xs0lm9qX378HedjOzx8xsiZnN9dYalQRGjx7N6NGjww5DAqLy9qdkSkSqolHABTHbBgPvOedaAe95zwEuBFp5/w0AHg8oxpy2ePFiFi9eHHYYEhCVtz91QBeRKsc5N83MWsZs7gN09R4/B0wB7va2P++cc8AnZlbfzJo459YEFG5O6tu3b9ghSIBU3v6UTIlIddE4KkFaCzT2Hh8OrIjab6W3TcmUjzZt2oQdggRI5e1PzXwiUu14tVAu1feZ2QAzm2lmM9evX18JkYlILlIyJSLVxbdm1gTA+3edt30V0Dxqv2betjKccyOccx2dcx0bNWpUqcFmu8LCQgoLC8MOQwKi8vanZEpEqouxQH/vcX/gjajtP/FG9XUBNqu/VGLjx49n/PjxYYchAVF5+1OfKRGpcsxsNJHO5g3NbCUwBBgGvGJmNwPLgau83ScCFwFLgB+BGwMPOAe1b68ZJKoTlbc/JVMiUuU45/qV89I5cfZ1wK2VG1HV07t377BDkACpvP0llUyZ2QXAX4A84Cnn3LCY1wcCPwX2AOuBm5xzyzMcq4iIZFjLwRPCDkEk5yXsM2VmecDfiUxs1w7oZ2btYnabDXR0zp0IvAr8PtOBiohI9qjDLuqwK+wwJCBbt25l69atYYeRtZKpmToVWOKcWwpgZmOITHK3oHgH59zkqP0/Aa7LZJAiIpJd+taZC8Cz2zuGHIlUhtgayxvrzAQqVt7LhvXMSEzZLJlkKt6Edp199r8ZeDOdoEREJLv96PLDDkECpPL2l9EO6GZ2HdARKCjn9QFE1r6ibpOjM3lqEREJ0Ms7Tgo7BAmQyttfMvNMJTWhnZmdC/w/4GLn3M54B4qe8C4/X1muiIiI5L5kkqkZQCszO9LMagF9iUxyV8LMTgGeJJJIrYtzDBEREZEqKWEy5ZzbA9wGvA0sBF5xzs03s/vN7GJvtz8AdYF/mdkcMxtbzuFERKQK6L3fAnrvtyDxjlIlqLz9JdVnyjk3kcgswdHb7o16fG6G4xIRkSzWsMaPYYcgAVJ5+9MM6CIikrKxO44NOwQJkMrbn5IpERFJ2UZ3QNghSIBU3v6S6YAuIiIiIuVQMiUiIik7ueYqTq5ZZpYcqaJU3v6UTImISMpOyV/DKflrwg5DAqLy9qc+UyIikrLZu5uEHYIESOXtT8mUiIikbM6ew8MOQQKk8vanZj4RERGRNCiZEhGRlDWwH2hgP4QdhgRE5e1PyZSIiKTs4toLubj2wrDDkICovP2pz5SIiKRsQ9H+YYcgAVJ5+1MyJSIiKRu3s13YIUiAVN7+1MwnIiIikgYlUyIiIiJpUDIlGXX1kx9z9ZMfhx2GiFSyq2t/xtW1Pws7DAmIytuf+kxJRiiBEqle9rfdYYcgAVJ5+0sqmTKzC4C/AHnAU865YTGv7wc8D3QANgJXO+eWJXPs4pvwyz87LemgK0t0LNkUV5hy6TrEizWX4o8n1+OXqmvM9hPDDkECpPL2l7CZz8zygL8DFwLtgH5mFtut/2bge+fcMcCfgEcyHWixRM1I6b4u4cql8kk21lz6TCLJ2k4ttlMr7DAkICpvf+ac89/B7DTgPufc+d7zewCccw9H7fO2t8/HZlYTWAs0cj4Hr9O0tbt4yHMsWLMFgHZNDix5Ld62ZF6r6OvF24q1a3Jg3G25JNF1SPa9yZaF3zVMJYZMlH28GKK3pXre8varyHtSfT3Z/z8yfa1TOWYq537l56cXOuc6Jh1kFuvYsaObOXNm2GGkreXgCWGHkBOWP9ILgCPuHh9yJLln2bCeYYeQEWZW7u9XMs18hwMrop6vBDqXt49zbo+ZbQYaABtiAhkADACo2+RoYN8PcPQPcrxtySZByb4e73yx+8ZK9mad6GaX6nHixZToeOkkp/EeJyoLv2uYyk07nYQi1XJM5Xvl9zjZsijvvH7XqSJJVLLfyUTXJp3P5xefVA2n5y8D4L+7W4YahwRD5e0v0A7ozrkRwAiI/FWXSt+WivSHCaK/SWzzTXn9rdLZ5nfedPsHVeR8qZ6nMsopnbLNdN+4eMcrFsZ3M9nvZKrHS3ScZM7xys9TPr3EyJaapDY1I38r6+ZaPai8/SWTTK0Cmkc9b+Zti7fPSq+Z7yAiHdGTVpEf+WzolBsvhmTjSif+bPjsUlY2lUvQsWTTZ5fK99GuI8IOQQKk8vaXTDI1A2hlZkcSSZr6AtfE7DMW6A98DFwBvO/XXyoo2fTjHkQslZmQRu+X6nkq47NnUyKaTd8zqNx4su2zSngW720UdggSoHTKO5O1qdna/yphMuX1gboNeJvI1AjPOOfmm9n9wEzn3FjgaeAFM1sCfEck4coo/YhXXWGWrb5XIiKSrqT6TDnnJgITY7bdG/V4B3BlZkOrnnRzl2yj76TE07zGJgBWFNUPNQ4Jhsrbn2ZAF6kGlBBJpp273xIAnt1eJWa6kARU3v6UTImEQMmN5Lpv9h4UdggSIJW3PyVTIiKSsvd2tQo7BAmQyttfwuVkRESqAzO7wMwWmdkSMxscdjwikjuUTIlItZfkGqQiInGpmU9EBE4FljjnlgKY2RigD7AgEwfPllnLM+nGOpF1CdUhuXrIlvLO9P9LmZq3SjVTIiLx1yA9PKRYRCTHWFgTlZvZVmBRKCfPvIbELOqcw6rKZ6kqnwOq1mdp45yrF3YQsczsCuAC59xPvefXA52dc7fF7FeyWDvQhmB+w6pS+Uerip9Lnyl3VORzHeGcizsVfJjNfIucc1WiftjMZuqzZJeq8jmg6n2WsGMoRzJrkJZarD0oVan8o1XFz6XPlDsy/bnUzCciErUGqZnVIrIk1tiQYxKRHKEO6CJS7ZW3BmnIYYlIjggzmQq0qryS6bNkn6ryOUCfJRDx1iDNEll7zdJUFT+XPlPuyOjnCq0DuoiIiEhVoD5TIiIiImkIJZnK1WUbzKy5mU02swVmNt/M7vS2H2Jmk8zsS+/fg8OONVlmlmdms81svPf8SDP71Cubl73OuFnPzOqb2atm9oWZLTSz03KxXMzsf73v1jwzG21mtXOpTMzsGTNbZ2bzorbFLQeLeMz7XHPNrH14kYcv0e+imR1hZu9512qKmTULI85UxPs+xLyec9+BJD5TWzP72Mx2mtldQcdXEUl8pmu98vnczP5rZicFHWNFJPG5+nifa46ZzTSzMyt6rsCTqRxftmEPMMg51w7oAtzqxT4YeM851wp4z3ueK+4EFkY9fwT4k3PuGOB74OZQokrdX4C3nHNtgZOIfKacKhczOxy4A+jonDueSEfovuRWmYwCLojZVl45XAi08v4bADweUIxZJ8nfxT8CzzvnTgTuBx4ONsoKGUXZ70O0XPwOjML/M31H5P/jPwYSTWaMwv8zfQ0UOOdOAB4gd/pRjcL/c70HnOScOxm4CXiqoicKo2aqZNkG59wuoHjZhqznnFvjnJvlPd5K5IZ9OJH4n/N2ew64JJQAU+T9ZdsT7wtkZgZ0B171dsmJz2JmBwFnA08DOOd2Oec2kZvlUhOoY2Y1gf2BNeRQmTjnphG5mUQrrxz6EEkOnHPuE6C+mTUJJNDsk8zvYjvgfe/x5DivZ51yvg/Rcu47kOgzOefWOedmALuDiyo9SXym/zrnvveefkJkHrasl8Tn2ub2dRw/AKhwJ/IwkqkqsWyDmbUETgE+BRo759Z4L60FGocVV4r+DPwaKPKeNwA2Oef2eM9zpWyOBNYDz3pNlk+Z2QHkWLk451YR+Wv2GyJJ1GagkNwsk2jllUOV+C3IkGSuxWfAZd7jS4F6ZtYggNgqk74Duedm4M2wg8gUM7vUzL4AJhCpnaoQdUCvADOrC7wG/NI5tyX6NS/LzfohkmbWC1jnnCsMO5YMqAm0Bx53zp0C/EBMk14ulIvXl6gPkeSwKZG/lPyqqHNOLpRDFrsLKDCz2UABkRna94YbklQnZtaNSDJ1d9ixZIpz7t9e95BLiDRhVkgYyVRSyzZkKzPLJ5JIveice93b/G1x1bT377qw4kvBGcDFZraMSJNCdyL9jup7TUyQO2WzEljpnPvUe/4qkeQq18rlXOBr59x659xu4HUi5ZSLZRKtvHLI6d+CDEt4LZxzq51zl3l/MPw/b9umwCKsHPoO5AgzO5FIl5A+zrmNYceTaV6T4FFm1rAi7w8jmcrZZRu8PkVPAwudc8OjXhoL9Pce9wfeCDq2VDnn7nHONXPOtSRSBu87564l0hfjCm+3XPksa4EVZtbG23QOsIDcK5dvgC5mtr/3XSv+HDlXJjHKK4exwE+8EV1dgM1RzYHVTcLfRTNraGbFv9n3AM8EHGNl0HcgB5hZCyJ/3F3vnFscdjyZYmbHeL+1eCNJ9wMqlig65wL/D7gIWAx8Bfy/MGKoYNxnEmmimAvM8f67iEhfo/eAL4F3gUPCjjXFz9UVGO89PgqYDiwB/gXsF3Z8SX6Gk4GZXtn8Bzg4F8sFGAp8AcwDXvD+586ZMgFGE+nvtZtIjeHN5ZUDYERGsH0FfE5kFGPonyHEa1fmd5HIqL2LvcdXeNdwMZEagqz9HiT4Pvwc+HmufgeS+EyHedu3AJu8xweGHXean+kpIiOJi+97M8OOOUOf625gvveZPgbOrOi5NAO6iIiISBrUAV1EREQkDUqmRERERNKgZEpEREQkDUqmRERERNKgZEpEREQkDUqmRERERNKgZEpEREQkDUqmRERERNLw/wF4XmxIqGpe9wAAAABJRU5ErkJggg==","text/plain":["
"]},"metadata":{"needs_background":"light"},"output_type":"display_data"},{"data":{"image/png":"iVBORw0KGgoAAAANSUhEUgAAAlMAAAFrCAYAAAD1gAy1AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/NK7nSAAAACXBIWXMAAAsTAAALEwEAmpwYAABfDElEQVR4nO3dd5wU9f3H8deHowonoCCheihNbAioWCIoFpRmEguYKCYG8ks0TVLwl0TEJL9gDMQUYwRNokYpUaOAGkXl0Ng5ihEQRALSlF6V/v39sbPH3t7u7czdzs3u3fv5eNyD3dnZmc/O99j53Leacw4RERERqZw6UQcgIiIiks+UTImIiIhUgZIpERERkSpQMiUiIiJSBUqmRERERKpAyZSIiIhIFSiZEhEREakCJVMiIiIiVaBkSkRERKQKlEyJiIiIVIGSKRGpUcysq5ktTPjZaWbfM7NjzGy2mX3g/dvc29/M7PdmtsLM3jWznlF/BhHJL0qmRKRGcc4tc871cM71AHoBnwL/BMYALznnOgMvec8BLgc6ez+jgPuqPWgRyWt1ozpxixYtXFFRUVSnF5EIlJSUbHbOtazGU/YHPnTOrTazoUA/b/tDQDHwY2Ao8LCLrfr+ppk1M7PWzrkN6Q5am7+/9u7dC0DDhg0jjqT6lJSUANCrV6+II6ketbGM/ajo+yuyZKqoqIh58+ZFdXoRiYCZra7mUw4DpniPWyUkSB8DrbzHbYE1Ce9Z621Lm0zV5u+vcePGATB27NiII6k+ZgZQa8q8NpaxHxV9f0WWTImIhMnM6gNDgNuSX3POOTNzAY83ilgzIB06dMhKjPmoS5cuUYcgIVMZB6dkSkRqqsuB+c65T7znn8Sb78ysNbDR274OaJ/wvnbetjKcc5OASQC9e/cOlIjVJMOHD486BAmZyjg4dUAXkZpqOEea+ABmACO8xyOApxO23+CN6usD7Kiov5SISDIlUyK12N4Dh1jw0baow8g6M2sMXAI8mbB5PHCJmX0AXOw9B3gWWAmsACYD36rGUEWkBlAzn0gt9tOn3uPxkrW8+qMLaX/MUVGHkzXOuT3AsUnbthAb3Ze8rwNurqbQ8p46J9d8KuPgVDMlUou9t24HADv3Hog4EhGR/KWaKZFaLD7k29Xa7tQSlGoraj6VcXCqmRKpxSzqAEREagAlUyIiIiJVoGRKpBbzWvnUzCe+TZkyhSlTpmTeUfKWyjg49ZmSKpm7fBNHN6zLGR2aRx2KVIKpnU8CWr58edQhSMhUxsEpmZIqGfGXtwFYNX5gxJFIVThUNSX+DBs2LOoQJGQq4+CUTInUYoZG80kwXbt2jToECZnKOLicTqa+/vWv85vf/IannnqK3bt3c8stt1T6WH/84x9p0qQJV199Nd/61rd46KGHyry+atUqli9fzqWXXlrVsEXyhpr5pDYoGvNM1o6jWnhJJWc7oK9atYqCggKaNWtWqfcfPnw45fbGjRtzzDHH8P7775c73wsvvOD7OCI1iSqmxK+SkhJKSkqiDkNCpDIOLvJk6sCBA5x33nmlz6+//nref/99ZsyYQf/+R1Z+mDNnDoMHD+bMM89kw4bYGqTXXXcdffv25fzzz+ejjz4CoGfPnnz3u9/l+uuvZ82aNXz+85/n8ssv58UXXyw91iWXXMLTTz9Novvuu49p06bRr18/tm7dSvfu3fnqV7/KrbfeyuzZs+nbty9nnnkm48fHlvP67LPPGD58OH379i2Nc968eVx44YV8/vOf5ze/+U04F6yW27PvIBt37o06jIyccxSNeYYHXl0ZdSgVildMObXziU+zZs1i1qxZUYchIVIZBxd5MlWvXj1OOukkFi1axN69e1m9ejXdunXj/fff54QTTijdr2nTpsycOZOvfe1r/OMf/wDggQceYO7cuYwePZr7778fgG3btvHtb3+bRx99lLvuuouf/exnPPfcczRs2LD0WCeccAJLliwpE8c3v/lNrr32WoqLiznmmGNYu3YtEydO5J577uG8885j7ty5vPXWWzzxxBN89tlnTJ48md69ezN37lxmz54NwJgxY3jyySd59dVXmTt3Lp988knYl6/WGXrva5z1fy9FHYZvv3hmadQhVEztfJG56qqrWLkylmw3adIkq8cuKipi8+bN7N+/nwsuuICDBw+W22fVqlWccsopKd9/++23l/kDNFHPnj3Zv39/ue9QqTl69uxJz549ow4jr+REn6lhw4Yxbdo0zjzzTK644oqU+5xxxhkAtG/fnpKSEg4dOsSPfvQj3n33XT777LPSL4XmzZvTqVMnAFasWEGvXr0AOPPMMwPF1KlTJ5o3jw33LykpYdy4cRw4cIBVq1axceNGli5dyk033QRAnTqxnPTdd9/lC1/4AhBL6tasWUOrVq0CnVcqtmLj7qhD8CWxoudnT71Hp+OaMOLcosjiyUT1UtVr8eLFHDp0qMwfjJV18OBB6tZN/VVev359+vfvz7Rp0/jyl7/s+5h33nln2tcGDx7ME088wZIlS+jevXvgePNdtvpfQe6Ogh48eHDUIeSdyGumAC688EKKi4uZPn166ZDMrl27lv7VBkfWEINYk8TChQvZvn07r7zyCmPGjCltpognNhBLiBYsWADEmuDiVq5cyUknnVQmhnr16nHo0KHS54nH+fWvf82f//xn5syZQ9u2bXHOcdJJJ/HKK68AR/pVnX766Tz99NMUFxczf/780kROardH3lzN2BmLow4jJdVLhef999/nrLPOKn2+atUqTj31VAAeffRRhg4dWmb/n/zkJ5x++un06dOntFZ75syZnH322ZxxxhlcfPHFpdvvuOMOrr/+es477zyuv/56tmzZwqWXXsrJJ5/M17/+9TLNtldeeSWPPvpoyhgPHTrEyJEjOfnkk7n00kv57LPPALjxxht5/PHHgViNe/fu3TnttNP4wQ9+wOuvv86MGTP44Q9/SI8ePfjwww+zdMVE8ldOJFMFBQX07NmTNWvWUFRUBMCQIUN46aX0zTndunVj9erVXHLJJRQXF6fc50c/+hF33HEHAwYMKJMozZ49u9wX2amnnkpJSQlXX30127dvL/Pal770Jb7whS/wla98hcLCQgBGjhzJW2+9Rd++fbnkkksAGD9+PF/84he58MILGThwIHv35n7fHglHkJqeNVs/5Y4Zizl8WPVDNUm3bt3Yv38///3vfwGYNm0a1157LQCvvfZamT+29uzZQ58+fVi0aBEXXHABkydPBuD888/nzTffZMGCBQwbNoxf//rXpe9ZsmQJL774IlOmTGHcuHGcf/75LF68mC984QulfUgBTjnlFN55552UMX7wwQfcfPPNLF68mGbNmvHEE0+UeX3Lli3885//ZPHixbz77rv89Kc/5dRTT+Xyyy/n7rvvZuHChZx44onZuWCSM3bt2sWuXbuiDiOv5EQzH8SmLkjUsWNHDh48yPbt27nxxhtLtw8aNIhBgwYB8Oqrr5Y7TmINVIcOHfj3v/9d5vU9e/awZcuWcjVTRx99dGlNU/JxbrzxxjIxxE2bNq3M8169elWYAErtEaRD93enLmD+R9sZ2qNNZDPJq/95OK655hqmTZvGmDFjmDZtWul3xoYNG2jZsmXpfvXr1y/9XuvVq1dpP8y1a9dy7bXXsmHDBvbv30/Hjh1L3zNkyBAaNWoEwCuvvMKTTz4JwMCBA0u7KEDsj9X69euza9eu0j8G4zp27EiPHj1Kz7tq1aoyrzdt2pSGDRty0003lX73/upXvypN2qRmmjhxIgBjx46NOJL8kRM1U+k8+OCDlZ4aIZ3GjRvz8MMPs377Z7y7dntWj10dVmzcxaA/vMrOvQeiDkWy5FAWE5ntn+4v/d04eCjztB5HWs+VTYXh2muvZfr06Sxfvhwzo3PnzgA0atSoTM11vXr1SrsyFBQUlHYY//a3v80tt9zCf/7zH+6///4y72ncuLHvOPbt21dmEE5cgwYNSh8nnjeubt26vP3221x11VXMmjWLAQMG0KRJE+rVq+f73JJ/mjRpkvVBETVdTidTYTp3/MsM+eNrUYcR2IQXlvPeup28unxz1KGktG3Pfu55cXmtb7KqzKf3856dew/w9MJ1aV/vcedsTrvjBd5ZtZVOP3mOt1ZuqfB46jMVrhNPPJGCggJ+/vOflzbxAZx00kmsWLEi4/t37NhB27ZtAcpNNJzoggsu4LHHHgPgueeeY9u2baWvbdmyhRYtWlQqAdq9ezc7duzgiiuu4Le//S2LFi1i9OjR9OnTR81ANdjo0aMZPXp01GHklVqbTFXWO6u28uGm6EaUxZtjcnVE+0+feo97XvyAV1fkZrKX726dtojvTl3IB59UfCN7zbv+r31YcTIVp2a+8Fx77bX8/e9/55prrindNnDgwLR9PRPdcccdXH311fTq1YsWLVqk3W/s2LG88sornHzyyTz55JN06NCh9LU5c+YwcGDlRo3t2rWLQYMGcdppp3H++eeXNv8MGzaMu+++mzPOOEMd0EXIoT5T+eLqP78BRDekNb4gbY7mUuzZH2smOFTLZ44PKznZsCM22mrvgexc33jTknKp8PzgBz/gBz/4QZltV111FRdeeCHjxo2joKCA3bt3l3ntqquuAmDo0KHlBstALMlKdOyxx6ZcwQHgscceK51sOFFRURHvvfdemTjj/va3v5U+fvvtt8u997zzztM8UyIJVDOVZ5Jrpuat2srrVagFWrRmOzf97R1f/Wsyqc6mvVnvrgdg976D9J9QnHP931yA9CRIYrx7XyxZzVbN5JEZ0LNzPPGnUaNGjBs3jnXr0jfZZsP+/fu58sor6dKlS9aOOWnSJCZNmpS140nuURkHp5opHzbv3kfTRvWoVxB97nnknhe7DV5VxZqy709byMrNe1i99VNObFm1Docn/O+zVXp/ELc8toDR0xdxTe/2fLhpD3c/v4xHbjo76+dZtXkPbZo1on7d9GW/c+8BmtSvS506VctwMiU0r3+4mdVbPq3SOdLJ1Wbjmuyyyy4L/Rz169fnhhtuyOox48t5Sc2lMg5OyVQGhw87ev/iRYac3obfDz8j6nBK5frNz6qhIXLfwcM88ubq0I6/Zfc++v2mmOFndeBXXzw15T7bP91Pjztnc8uFnfjBZV1Lt4dR0/POf7dl3imZqpwky0aOHBl1CBIylXFw0Ve15LhD3s1oxqL1EUcSk+17Y0251VoI2eXOvbEmtdc/TN+Munn3fgCe/U/V/5KLIkGuKeUv1adNmza0adMm6jAkRCrj4HwlU2Y2wMyWmdkKMxuT4vXfmtlC72e5mW3PeqQRKV62KeX2FRt3UzTmGZZnGFWVff46oD/y5upyfane/3gnn+wMZ1b2IJNU5qqVm3bz7w+OXLP4NQ6raS1ZpksYpB9WZWSj35yISG2UMZkyswLgXuByoDsw3MzKrG7pnPu+c66Hc64H8AfgyWwHumvvAZ6cvzbbh81o0ZrtKbfHayJmLKzeGqsjHdArTqd+9tR7XPfAW2W2DbjnVc75lWZoT+eiCXP5yoNvZd4xjcXrd2RMKkf85e2sLpSajt9m1vheMxetp9NPnmNlhNN+SH4oLi72Na2D5C+VcXB+aqbOAlY451Y65/YDU4HyY3WPGA5MyUZwiW578j/cOn0R/1m7I9uHLmfHZwdKh6Cnqw2I9zWOv75z74FquRHFo6lsi1C6AXe52gVr38FDbNq1L+owMlq5eQ8Df/9vnpwfG52VLqeauzx1TacfQSr//NZixfd67r2PAVi6QRMxSsXmzp3L3Llzow5DQqQyDs5PMtUWWJPwfK23rRwzOx7oCLyc5vVRZjbPzOZt2hTsphJvnvp0/8EMe1bdxRPncs6vYh8hbfLh1QzFX7/2/je5aEL1/fIlV0xdc/8bgaYHOHzYsWvvAQ5680G9tHRj2n337DtYOiS/OmzatY+iMc/w9MJ13PzofM785YsZ3xM0GXzg1ZV89a/l588pc8ykgzrnMl7j5RtjyUigqRHSBL9ozXaKxjxDyept3jGPOOxc6cSc2ZCrybTknr59+9K3b9+ow5AQqYyDy3YH9GHA4865Q6ledM5Ncs71ds71TlzkM9ck1oRk7Mfivb50w84QI0o8X+qA3v7vVn729GLfx7nnpQ849Y4XWLM1VgP3y2eXpt331Due55Sxz2eIK2lDFe7OH23dA8D4597nxQqSvIo88+4G7pyZflLBXzyzlDlp+sPFJTeV/fW1VQz542tZTWLKKnsR4/31ipeVvwZ/fHkFX37grbRzjFXHaEqpnfr160e/fv2iDkNCpDIOzk8ytQ5on/C8nbctlWGE0MQXlQ07Pktbw/Cmt+ZZNjoF79l3kLXb/HVyLm3ms1gCVVnxSS/9iNe+lazeVi01VA3qFgCwYUflO8vf/Nh8/vLaf6sUR3KN0fsfxxLmisoqnsRkoz9+udnuEw66akss4fxkV3YGFOT/8AERkej4SabeATqbWUczq08sYZqRvJOZdQOaA29kN0Tv+BH8pf0/j5Skvcu8Gh/1lfR6ZUa1XXP/G5x/1xxf+8YP//TC9Vxzf+Uv9cpNewK/50v3vc43/15S6XNGZe+BQ3y6/yCHDzte/aDyfZaSbdq1jz+8/EGZbRWNC6hogWLv3WWeucTMudye2UvaRIJYv34969fnxlQxEg6VcXAZkynn3EHgFuB5YCkw3Tm32MzuNLMhCbsOA6a6HBgjf/DQ4awM1d+z/1DGv9iTX6/MiiqL1/tvIowffsXGynd2r8qyL++tC38AQLb1nzCX7rc/z+RXV3L9g2/z4pJPsnLc0f9YxNNpRnOmusLPvJtpLiqX8ll1/BmhRkHxa/LkyUyePDnqMCREKuPgfPWZcs4965zr4pw70Tn3S2/b7c65GQn73OGcKzcHVXVzztHpJ88xroL+MkFkSjySk7Yn569lx2cHKn2+eFNSJlWZ4NHPe1dv2cO/vBFefnyYNJKxKjfnyny2it6zbnusX5jfprH5H1U803i8yPfuT9k10Nun4t+bKW9/VPo4bejeMVJ9tvi2KP50ydYfK5KfWrduTevWraMOQ0KkMg6uxs6A/rfXV1X5GM6V7RGValLD5HvKDx9/l+9MWVCp881ctJ4B97zKcxXMpp2Nm5ifQ/S9u5j/CdCkd8lvX6lCRGWFdZ8unaMrQ6r3xT+97ut4dVL874kfuaLRkRCb6iOT+GWoU0Gm6IgtfvzK8k38c0HqedjmrdpK0ZhnykzY+s8Fa1m0Znvg36ctu/fR6SfPZeX/l+SnUaNGMWrUqKjDkBCpjIOrcWvzVfZGvHDNdj7dd5BzO7Uos/3ThNqHHz7+bvnzpTjWGp+dyZPFZ1P/YONulr6wjN+/vILlv7g85SK7YfQh2/7pfpodVb/CfcKsj9h/8DD9JxbzpZ7tAr/Xz9U4MuGpz2NWsN/lv3u1whGc35u20N9JKnAk+SsvcdLWikZaOuChN2LrF765cgtDe7Rl1rvr+f60RQD07NAs7Xs37PiMc371Mv/4n3M4s+gYALZ9Gls+55E3V3P8sUexdMMubr6wk/8PJSJSA+VdzVSQm7lzrvQv75LVW1POZr5730EWrdnOlfe+Vm7GcCjbHPNKigkXUyVvBxJqsJxz/Ob5ZSzx0S9q5eYjncJ///IKAJ57r2wtVdCEIJV017DHnbPLbdt7oGxTVpitO5t372PN1s+458UPMu9cgYVpZq0vNzrOs3vfwdK5nNLZsOMz/rPuSBmmS6SqVC7JgxmSSyrh4PFHfmqWkvdZ/smRJtn5H20vt/+efQc59Y7nueu59wF4NGEx6QKvOu7QYcfcZZuY9MrKjOcXEanp8qdmKsUw9ZZNGnBskwZltifeNr76t3coXraJVeMH8qX7YiPf+nZpSb+uR+a4+taj88skSdv27E8bwsEU/acOp7iZHTx0ZNu+g4f545wV/OW1/7LkzgFpjw1HOignftTEY8GRm3hVFvb9T4BO5KP/sSjl9qUbdlJ0bOMK37tn30EOHDpcprarZPVWWh3dkHbNj2LL7n388pml/HRQd45pXHGNmF+bdu3jqvtSN9OlS0RveWx+uTUY4/2s4s4d/3K1909Kjjcx7NI+UxmOUfY9Vm5bKis27mbX3oM8laJzfTwxM+/cUSzOLNGaMGECAKNHj444EgmLyji4vKuZgtgNc8A9r3LZPa9WuF+qRYrnLt9UpnP6wqTOxueOPzJ5e7mRepUYBRdPtg47x9f+9g5D/vjvjO9xaR4DbKkg2QP41qMlGeeQ2n/Q/4K2ybVxzsVmTr/8d6/yvWkV9w37/K/n0OPO2Wzds5+iMc/w3H828KX7jkwDMWPRep5csI6/VXE+qERn/vLFlElvouQm0lQjFNds/bRMwpqYSIWVUyUnJn8q/tDbbny05VP2J9R4+k1iUsWa6b0Vfb4jszUYzmkUYG20e/dudu/WGo41mco4uPypmfJs/3R/6fIim3eXX7MtaIfa5Bqezw6kH6G1K8WElanOZ2Vej28zXn4/+GzeQT7Ppp17WbRmO8/+p+JReEGOmZxA7tx7kO2fxkYrVtQ0ZmZs9RK/+Ei/B/59JGl6cv7a0qT2UBaqfPzU1AU5S2WThBRjFHx74NX/0uv4Y/h0/0F6jDvS5HrosOOCu8vOQxZPCB9+Y1XG41b16qZ7v8NVqYY0TGbWDHgAOIXYR/gasAyYBhQBq4BrnHPbLPYhfgdcAXwK3Oicm1/9UeeHW2+9NeoQJGQq4+DyrmYqfiPPliC1NH6VqdEo3Rbg/QmP093I6qQ43voqzBieTqpKntHT401//j5U/YLYr1nitf79S0f6RcVzqWprRfMRtpmxPqmpz48DFWRTW5NqFZ1zFI15prTfUnyx4Y+2lq2FemJ++VF68d+n99Zl7ov3gTew4akF60qPH0SqXPe/m/fkes3U74B/Oee6AacTmyNvDPCSc64z8JL3HOByoLP3Mwq4r/rDzR+FhYUUFhZGHYaESGUcXN4lU8mSZ5UOekOuqCbqkI9mvVR7JPe3gfI3nSXrd3L38++nrCX6feKs2ukWWs4YWcyKjbt8TBZ5xOsfbi4zbD9Vn7C3VwVbxqael0wlJhqrthy5occvc9hzFwU9/NV/Dj7DfEXlsnFX2ZpUv63Gq7eUT34ylX9i8h7vcD7HW+PvyfnpZ2LP2ASY1NyZixVTZtYUuAB4EMA5t985tx0YCjzk7fYQcKX3eCjwsIt5E2hmZppkR0R8y7tmvjFJ8/N8d+pCTmzZhFPaNs36uVLdxJI9/MZqHn5jdbntn+0/RKP6BWkThGGT3mDn3oN8s1/5YeUHEjqdp1v778Ahf3fiiyfG5n8aeNrAhGOmd93ksiMaUyVTcVv3lG9mTSU+H1O6Q8U/471zVvg6XhCJoxHTjeZLuaWSSULF/Y2SZjivSvKY5Swmnug5Vz6utds+ZdXmPRS1KDvgILZbDmZT0BHYBPzVzE4HSoDvAq2cc/G/LD4GWnmP2wJrEt6/1ttW5q8QMxtFrOaKDh06hBZ8rps5cyYAgwcPjjgSCYvKOLi8qZmqaFHfQX+Ideo+dNilnL6gaMwzocWVzkm3/4vfPL+sdOh4YtNfvM8XpJ4INFG62ougzZPfr+S8RxXVzgXtj7/Ma24qxzvOC4vTL/OyesseHnvro7Svp7ul/2+KyTH99PMJI0U4nFRkqS5fbDqPzMfyG19F18yv+R9tp99vir1nZYdH5GLNFLE/EnsC9znnzgD2cKRJDwBv2atAv8HOuUnOud7Oud4tW7bM/IYaav78+cyfry5lNZnKOLi8q5mqyJ/nfsjdzy+LOoxSf0yoaUm852zatY8WTWJTAWSqYUp3Y800qi/ZPxccadp5oiT1TNlhyTTBqEv6N5W+dxdnPM9vZy8vt+3JhM8dP8EP0kz3kA0V9UdKbv5NVbZ+mpbBf8VU4u+Jn7cEaeZ7/+NdVVrnMURrgbXOuXg16+PEkqlPzKy1c26D14wXHxGyDmif8P523jZJYdCgQVGHICFTGQeXNzVTmbz+4eZyE1zmlKSbVIHXg/xgcnVFksSmocTml1QjGf36RzUkU6nmREpn0isr2bpnf5X7TP3upYon+6yoyTLZzr2VG+gwO8AiyqmacDNN6xCXKTGamCKx9KOiS/SXhNGYAAs+2h44qa8OzrmPgTVm1tXb1B9YAswARnjbRgBPe49nADdYTB9gR0JzoCTp1asXvXr1ijoMCZHKOLgaUzNVvGyTr5FNUdm1t/y0CpC51uZAQnPengoW1g1LNuod/NSIPLWgahUBmRYvDuprf5uX1eOlUpXcMdXM5X74uc7pwrpz1hJe+P4FlTpvBL4NPGpm9YGVwFeJ/fE43cxuAlYD13j7PktsWoQVxKZG+Gr1hysi+SwvkqmNWb5R5pM7Zi7hxvM6Rh1GYMsT+kf5aZI67NJ1tffHTyKdaw1Sr3+4udy2P768goGnhTOQ7LDLvGZgkGa+XOacWwj0TvFS/xT7OuDmsGOqKZYti3Wl6Nq1a4Y9JV+pjIPLi2a+kQ+FX0tQ3eI3pT6/einjvkVjnuGZdzfwr/cqnowzDJW9ef7imaWBjvGLZ5aGfqNOdfxn3t0QuMk0W3Gmqv36YwgjGoPYtfcAf5rzYaQxSG6bOnUqU6dOjToMCZHKOLi8qJnaEMJklFFLnnMokz+8/AHvf5xmNFyO+5W3YG4mOz7L7oSsyWYsKr/Mzs2PBR+xkrz4czK/nchz0c9nLWV3ipn+46pWfyg1QZcuXaIOQUKmMg4uL5KpglTTfdcyYczUXl0qs4xOLrtz1pIKX8+0NmJFjj/2qEq/NxsqSqQAtuzOvQ7nUr2GDx8edQgSMpVxcHnRzFcnRyezqU4rN++JOgTxKXnZmCBy/Tf9hr+8HXUIIiI5Jy+SqboFuX6LETkivoBzZeTqwsFx+dyEKSISlrxIpkRqi/gCwiK5aty4cYwbNy7qMCREKuPglEyJ5Jgrfv9q1CGIiEgAedEBXUREcsPYsWOjDkFCpjIOLi9qptTsISIiIrkqL5KpihaPFREREYlSXiRTfkx6ZWXUIYiI1HhTpkxhypQpUYchIVIZB6c+UyIi4tvy5cujDkFCpjIOzlcyZWYDgN8BBcADzrnxKfa5BriD2Hqyi5xz12UxThERyQHDhg2LOgQJmco4uIzJlJkVAPcClwBrgXfMbIZzbknCPp2B24DznHPbzOy4sAIWEZHodO3aNeoQJGQq4+D89Jk6C1jhnFvpnNsPTAWGJu0zErjXObcNwDlXsxZjExEREUnDTzLVFliT8Hytty1RF6CLmb1mZm96zYIiIlLDlJSUUFJSEnUYEiKVcXDZ6oBeF+gM9APaAa+Y2anOue2JO5nZKGAUQIcOHbJ0ahERqS6zZs0CoFevXhFHImFRGQfnJ5laB7RPeN7O25ZoLfCWc+4A8F8zW04suXoncSfn3CRgEkDv3r01FaeISJ7p2bNn1CFIyFTGwflJpt4BOptZR2JJ1DAgeaTeU8Bw4K9m1oJYs58mfhIRqWEGDx4cdQgSMpVxcBn7TDnnDgK3AM8DS4HpzrnFZnanmQ3xdnse2GJmS4A5wA+dc1uyEeDGXXuzcRgRERGRUPjqM+WcexZ4Nmnb7QmPHXCr95NVu/cezPYhRUSkknbt2gVAYWFhxJFIWFTGweX8DOhmFnUIIiLimThxIgBjx44N9TxFY54J9fiSXnWVcU2S+8lU1AGIiEipJk2aRB2ChExlHFzuJ1PKpkREcsbo0aOjDkFCpjIOzs+knZEy1U2JiIhIDsv9ZEq5lIiIiOSwnE+mREQkd0yaNIlJkyZFHYaESGUcnPpMiYiIbxs2bIg6BAmZyji4PEimlE2J5Kohp7eJOgSpZiNHjow6BAmZyji43E+mog5ARNL6XNOGUYcg1axNGyXQNZ3KOLic7zOliikRERHJZbmfTKluSkQkZxQXF1NcXBx1GBIilXFwuZ9MKZcSEckZc+fOZe7cuVGHISFSGQenPlMiIuJb3759ow5BQqYyDi7nkykXdQAiIlKqX79+UYcgIVMZB5fzzXyHndIpkVzl9P9TRCQfkqmoI5Bc9u2LOkUdgkitsn79etavXx91GBIilXFwuZ9M1cBsqkurJlGHUGOMOLco6hBqtXoFufkVYmarzOw/ZrbQzOZ5244xs9lm9oH3b3Nvu5nZ781shZm9a2Y9o40+t02ePJnJkydHHYaESGUcXG5+Eyaoia0Il3RvFXUIIllRN0eTKc+Fzrkezrne3vMxwEvOuc7AS95zgMuBzt7PKOC+ao80j7Ru3ZrWrVtHHYaESGUcXM53QK+JNHeW1BTtmjWKOoQghgL9vMcPAcXAj73tD7tYB7A3zayZmbV2zmmBshRGjRoVdQgSMpVxcDn9ZyVA+2Py6staaqGzOx4TdQiRmHxDb67u3S7qMNJxwAtmVmJm8TtDq4QE6WMgXkXcFliT8N613rYyzGyUmc0zs3mbNm0KK24RyUM5n0xFudDxF84o931aaX+/6ezSx1F9pHNPPDaaE9dwHY45KuoQInFJ91a5vBD5+c65nsSa8G42swsSX/RqoQJ1InDOTXLO9XbO9W7ZsmUWQxWRfJfzyVRt1L310Vk71iltjxzrpwO7c2ZR86wdO2pX9mjjq8H0nBPCTSIL6mQvoTi6oVres8E5t877dyPwT+As4BMzaw3g/bvR230d0D7h7e28bZLChAkTmDBhQtRhSIhUxsHViGQqrNFxdbN4k0yU7qjxJKpNs4ZZO1fdOnXo9rnC2HkNvndxl6wdO9taNw32ua/u3b7M87GDu6fcr3njepWOyY86Wfw9OVQDR69WNzNrbGaF8cfApcB7wAxghLfbCOBp7/EM4AZvVF8fYIf6S6W3e/dudu/eHXUYEiKVcXB5m0xdmjAi7oXv96VFk/pZP8dPBp6U9WNW5EiLSfZuzoUN65YZEVldrTIXn3Rc4Pf86ounBto/eaTnkNPbVLh/YRVrfRrXL0i5/ZYLy891VXRs5Zr+op7qIWhCm6NaAf82s0XA28Azzrl/AeOBS8zsA+Bi7znAs8BKYAUwGfhW9YecP2699VZuvfXWqMOQEKmMg8vbZCr57/cwplBodlT2ErTEJObCbqkTjf4nHUkQ37ytf1bO+9tre+C8q2UGdbKUTXU6ruLawMr0penSqrCy4dCoXgHHNmlQ4T4N6xWwavxAzioK3mH87f/tT9NGqWu4UiVpDeulTrwyGX1p10q9LxtW/t8V/GhAdOfPFufcSufc6d7Pyc65X3rbtzjn+jvnOjvnLnbObfW2O+fczc65E51zpzrn5kX7CXJbYWEhhYWV/78quU9lHFz+JlMVJE892jcLfLx4E9HJbcr2V0pXG5FJg7rpL+0ZHZqzavzActvj5zaDz2WphqBFkwal18qyOCnDSRn6dVV0nq5pkqag+bDZkaQt3tI2+Ybe6ff3E1wadQvq8Pevn515R09lk/tM/a9+NKArr4+5iJdHZ38h0jp10v+GZLNfmIhITeMrmTKzAWa2zJsheEyK1280s03ebMMLzezr2Q+1rLbNGvKdhKVEEitC6hUE/+L/6nkdWTV+YLkbfWVHK1WmBijsCUqz1cR3cpujM/brquhc077RJ+1rs759fqViil/vS7q3KpeoBrmu91zbI+1rJ7RMXRvngMFeE2O75o28bdkpzMQRmBOuPp1vXHAibZo1ymqtaaJsxS0118yZM5k5c2bUYUiIVMbBZUymzKwAuJfYEOPuwHAzS9XTd5o323AP59wDWY6z1PCz2vPnr/TktitO4tZLu6as4cmm29N0as4kOZkIsuxGRTlPZUamJd4eszGUfWiPNhmrkSpKJtMlAs45Tmnb1FcMl53cit4JIxP9fCw/+1x5RluGndk+0Kg6547014p/7jD6kX+pV7vSGqKqlGKqKT9GnHN8FY4otcn8+fOZP39+1GFIiFTGwfm5w58FrPD6IewHphKbMTgSvY8/hgGntC7XJyWx9qFKNTxJd6lrkkaMpXJRmj5QiSpq9jsic+C9jg8+tUEzr69PYkKXqc9TXGVzr8rUzH3uaH9Nm+2aN+L+63vToO6R34EgSWLfLhXPETT+S6fx7h2XldnmfP5S1fVqRSvbPJwtf/3qmWlfq6hsNDu/ZDJo0CAGDRoUdRgSIpVxcH7u8L5mBwa+5C0S+riZZc5AKuGF71/AF3tWfSLNJg0y1zr85Ar/I/lSjSJLviV1a13IjFvO489fybyGqp+8IMjoxT99pSfjhpxMxxaNS4/dtFE9vn1R+VFoyf7vC+VH2CXfjI9tXD6WoM1FX+nTIe06bwtvvyTQscrFkhTKt/qdWKXjAfz7xxdSGP89Sjh+x2Mb8+MB3bjvK70CHW/V+IEpa1nT/S5k+h1pmaEzfjrp+uopxZK4Xr160atXsN9vyS8q4+Cy1QF9JlDknDsNmE1s3atyqrocQ5dWhRlrIF74/gUZb+Otjs58o2meIkFIZdX4gVxxavkFIRvWK+ArfTpwevtmjP/iqTSoW8Bp7Zox4JT0i0cGqVG74Zwi3rjtIl/7HlfYsHTIfeLVSxw5dn6nFr6O1bZZI77Sp2yT0IBTPlduvxPT9C+qjORmwTJTPQQ4TrzWpTJNncnvadf8qNKEJjFxNINv9ov1a8rktTH+yi9lPFVIbypKdPuccCx/S1Gr1ba5lnUSEUnHTzKVcXZgb8jxPu/pA0DKlDbM5Rjit4djKkiCfjboSP8nv8lDVeL5xZWn8vTN5zHsrA4Z92+U0GxZ0Y0y8Z7eumn5G5zfkYzJzVbp5niqn1Rb9OurTqNhvYIyt+NUzUbXV6EPTv0MTaKJUxHE40gOwU/CHESqZr54glXZZuW2PhKutL8LVakqyhBv7xRTR0wbdQ5/+nLmWlWp+ZYtW8ayZcuiDkNCpDIOzk8y9Q7Q2cw6mll9YBixGYNLxZdo8AwBlmYvRFg09lLevePSCveJd1yuX7dOuRnRe3ZoBkBnr5/Qd/p35oERqYfQ9+sa6/90Umv/c2wk3sjTzUWUydwf9vO1X0U37gZ165SO/jq74zEppwk4UptSVrqmz+Q5lOLHT0wukkfN/+SKk3w1pSZK7Hf27HfSj+j72nkdefDGIzUn8TiSc4uHv3ZkGoNUNTHDvQT3sZH+pztIdt3ZsWM0CrF/VFVnV+/2uUJe+P4FvP/zAWW2x6fhaORzPqzPNW2YsgZWap+pU6cyderUqMOQEKmMg8uYTDnnDgK3AM8TS5KmO+cWm9mdZjbE2+07ZrbYm3H4O8CN2QyyaaN6HN2w4iTlT1/uyRPfPJejG9Zj7OCTeWzk2fznjktZ8LMj/W0aN4hN2ji0R9syHdj/eN0ZpY+HnN6G98Zdxslt/I0qSxaf/8dvh+W4oxvVC9TLKH6LfSYh8UhM6i7o0pJLEmaJj2vuNZlVdv2/VE1kybVQnVo14aj6dbmvgpqM5Jqwi7odibXTcYW0SNPn53uXdC5To3OkZqpsXF0/V8jtg9KPxPy/L5zCf391Beee2IKrerVLu19FfnRZVz745eWVnqDTj3RLGlXUUpk4B1UdM7q0KiwX41M3n8f7Px9QOkln0KbPTH/cSM3VpUsXunTJ3WWppOpUxsH5qj5wzj1LbMmFxG23Jzy+Dbgtu6EF06RB3dKRbg3rFXDuiUea8TIlKYNOK9uBPGitStnlWqrQlyU+uWaAQyTnbJk+6wktm/DEN88tswByRTJ9nv+9ohuN6pe9Xhd6tXuFFSTAw8/qwFW92tH5J8+lOW/q96VLqoNe9cTP9esvncbjJWsDHiF2jIrmNPt85xa8+sHmlK/5GYgA6SfLrOjzntCyCe+t25H2dUdsZGe9gso3UWb640ZqruHDh0cdgoRMZRxc3s6AHsS13vQGHY5pnJXjJf9Vnqr2wM89auqoPvxuWA++fn5HGtStU2bZl8o6vV2sRq17m/TJUq/jm5eZVqAiiUP8042qSxdu76Lm9O3Skhe+fwFTRpafqDPI3FuVMeys9lzVqx3f6d8ZSH9d69Qx/vrVM5nzg34ZjzninOMZ+fmO5banqol85Kaz064HWNFAhMR1/QrTJPbJSW7LQv99xILWmoqISMWqtvJrnhh2VgdfncD9Sv6rPLFfS/yhn/tVH28CzqE9Kj/dQ9mRbcaAU1rz6o8upP0xlVtoN9k5CTNwJ46q87N4csN6BTz0tbMAeGP3lkDn9dtVqKLrfFT9uvzm6tNZt/2zjMeJ16ZlMm7oKf4C8zQ7qh679h4EYonpnv2Hyu2TXEv4z2+dx9ptn/Hi0k/42nkdeXLBunLvSTbp+l584U+vB4pNRESyo1bUTFWn+Oir6vrrP1Xn6mwlUiM/3zFtM1+8SfUUn33Lgs475XfofzZq87Ih3XV67OtHauQW3zmg3OvLf3E5T33rvDLbmjeuz6ntmvL9S7rQ9Ch/zZp16+i/slSPcePGMW7cuKjDkBCpjIOrFTVTYXh5dF/2HTyc9vXKpFKJCxJHLdMyPZef2pq3/7c/xx3dkI937M14vJNbp066GtUr4LMD5Wtrmh1Vj493HjnulJF9Uk8lUHqh01+zdCP+qkOmxDbTNBDpJOZuZ3RoRudW/uf1SvzdPOxyIxkVEclnSqYqKd2it6V37CwuaZMouYbHT3NbWI7zln/xc950NSzFP+zHJzvLJ2N/ufFMzh3/cunzxObGVPytzVf5C3R0hikvqrsfUjzhrl9Qh38m1WxlkhjqgUOu9Dh+jPx8RxZ8tD3Q+aRmGTt2bNQhSMhUxsEpmQrggRt60yJNR9+hPdpwSpumaedxqozp3ziHa+5/o8J9yixinIVzVrdWRzekVYo1+VqnWdYkWXWlMP47y+dXKez3alf91pD9ZGDlFv4WEanJlEwFcGyT+mlnGP/dsNhcVbv2HgAqV1OR/I74ZKOJkpsAw6gRSZ70NAp+a5GONI1m3qd6VHyyf/zPOby6PPhSSsmyVQvZt2tLfvvicvqfVH5OMhER8UfJVAB+bvClS4xU4vjJfXtSLfyb3Mx3Stum9O92HC+9v7ESZ4xN3rlkw87S582OqscL3+9bwTvKy4W6mHzp83Nm0TGcmWK5luqU+BvUo32zjP3jRBJNmTIF0FxENZnKODglUz60a96ItdsyD6+H7CQW/pK22L/1Cupwz7AenHrHC5XqE/T4N89h52cHK9xn3k8v5tN95TuJ54KgowTDVz1ZXVWSxzOLmlf4esNKdoqX2mH58uVRhyAhUxkHp2TKh58N6s43HinhhJb+J/3MVtPSNy44gWZH1eeuf72f/lxVOP5R9etyVP26bNuzP+0+LZo0gOhb/iqUCyMgc8mJLZvQumlD/veKk8q9dn2fihehTlUjKhI3bNiwqEOQkKmMg1My5cNlJ3/Od1NIndJmvuxkU7d5N8N4MhVfWy/VgspVSScKG9bluMIG/LSC9ezS8nni+gV12H8o/XQSlZF7k3lHF1Cn45qwYuNuILb48hu39U+5X1VGNYp07do16hAkZCrj4JRMZVl87sQ2qeZE8qmiW92N5xbRqH4Bw848MqN7YYO6XNmjDV/JUONQkboFdXj7JxdX+v1+FP+wHxt2+Gsu9evIQsfp92lQL1YoQeZiykezvn1+xmTV77qTdwzuzp79h7j7+WXZCE1EpEZTMpVlDeoWcO91PemdoV9KKn5qWeoW1OHLZ5dNmsyMe7zRhLmsTbNGVUoyU/EzIedxhQ155Kaz0o7EzK7oan0a1iugYb30ay4uHndZac1pJjeeF1t/UMmUJCspKQGgV69eEUciYVEZB6dkKgQDT0u/iG1F4vMtdTquZteghCFT09XnO7espkiqR/2COvQ+vjmjLjjB93sa+6yVEqnIrFmzAN1oazKVcXD6ds0h55x4LNNG9aF3xEPn80mbpo0YflaHjJ2qK+P3w8/gO1MWZP242WBmPP7Nc6MOQ2qhnj17Rh2ChExlHJySqRxz9gkVL5siZdWpY/zqi6eGcuwhp7fxnUyd7jUhfvnsDuVe+9tXz/S9XItIrhs8eHDUIUjIVMbBKZmSnBZkOoootTq6YdoRn/26HlfN0WTPuSceS8s0SyiJiEhMrU6m/vyVXjTQBIU564lvnkvHFvmRTNVUj43sE3UIkmN27doFQGFhYcSR5L+iMc9k9XjZWs1AZRxcrU6mBpzyuahDqBHCmjCz1/HBR0SKSLgmTpwIwNixYyOORMKiMg6uVidTkh1H1U8/HF+q7rbLu7H8k91RhyECQJMmGm1c06mMg1MyJVXWuEFd3rytP31+9VLUodRI3+h7YtQhiJQaPXp01CFIyFTGwanDkGTF55o2jDoEERGRSKhmSrLm9HZN83rkmoiISGUomZKsefqW86MOQURCNmnSJABGjRoVcSQSFpVxcEqmRETEtw0bNkQdgoRMZRyckikREfFt5MiRUYcgIVMZB6dkSqQCPxvUnbbN1LleJK5NmzZRhyAhUxkH52s0n5kNMLNlZrbCzMZUsN+XzMyZWe/shSgSnZvO78iAU1pHHYZUgpkVmNkCM5vlPe9oZm9532PTzKy+t72B93yF93pRpIGLSN7JmEyZWQFwL3A50B0YbmbdU+xXCHwXeCvbQYqIVMJ3gaUJz+8Cfuuc6wRsA27ytt8EbPO2/9bbT9IoLi6muLg46jAkRCrj4PzUTJ0FrHDOrXTO7QemAkNT7PdzYl9Ce7MYn4hIYGbWDhgIPOA9N+Ai4HFvl4eAK73HQ73neK/39/aXFObOncvcuXOjDkNCpDIOzk+fqbbAmoTna4GzE3cws55Ae+fcM2b2w3QHMrNRwCiADh06BI9WRMSfe4AfAfGVWo8FtjvnDnrP1xL7boOE7zjn3EEz2+Htv7naos0jffv2jToECZnKOLgqd0A3szrARODGTPs65yYBkwB69+7tqnru2mRojzYc27hB1GGI5DwzGwRsdM6VmFm/LB5XfwwC/fr1izoECZnKODg/ydQ6oH3C83betrhC4BSg2KsZ/xwww8yGOOfmZSvQ2u53w86IOgSRfHEeMMTMrgAaAkcDvwOamVldr3Yq8Xss/h231szqAk2BLckH1R+DIpKOnz5T7wCdvZEw9YFhwIz4i865Hc65Fs65IudcEfAmoERKRCLhnLvNOdfO+z4aBrzsnPsyMAe4ytttBPC093iG9xzv9Zedc0qW0li/fj3r16+POgwJkco4uIzJlPdX3C3A88RGxkx3zi02szvNbEjYAYqIZMmPgVvNbAWxPlEPetsfBI71tt8KpJ3+RWDy5MlMnjw56jAkRCrj4Hz1mXLOPQs8m7Tt9jT79qt6WCIiVeecKwaKvccriY1OTt5nL3B1tQaWx1q31rxrNZ3KODjNgC4iIr5p8duaT2UcnK8Z0EVEomZmD5vZ5VHHISKSLLKaqZKSks1mtjrAW1qQm/O+KK7gcjW2XI0Lcje2oHEdX4VzfR0YZmZTgTeAB5xze6pwPBGRrIgsmXLOtQyyv5nNc87l3Jp/iiu4XI0tV+OC3I2tmuM6FjgB2Al8TKzj+LBqOrd4JkyYAMDo0aMjjkTCojIOTn2mRCRf/AC41+tIjpmtybC/hGD37t1RhyAhUxkHp2RKRPJFcUIidblz7rmoA6qNbr311qhDkJCpjIPLpw7ok6IOIA3FFVyuxparcUHuxladcV2Q8Pjz1XheSVBYWEhhYWHmHSVvqYyDy5uaKW8ph5yjuILL1dhyNS7I3diqOa6WZtYfcIAmwhGRnJFPNVMiUrt9B+gCdAW+G3EstdbMmTOZOXNm1GFIiFTGweV8MmVmA8xsmZmtMLNqX+bBzFaZ2X/MbKGZzfO2HWNms83sA+/f5t52M7Pfe7G+a2Y9sxzLX8xso5m9l7AtcCxmNsLb/wMzG5HqXFmI6w4zW+ddt4XeorPx127z4lpmZpclbM96WZtZezObY2ZLzGyxmX3X2x7pdasgrkivm5k1NLO3zWyRF9c4b3tHM3vLO8c0b51OzKyB93yF93pRpniroAOxRYiPA76XheNJJcyfP5/58+dHHYaESGUcXE4nU2ZWANwLXA50B4abWfcIQrnQOdcjYQj4GOAl51xn4CWOrOV1OdDZ+xkF3JflOP4GDEjaFigWMzsGGAucTWxpjbHxRCLLcQH81rtuPbwlifDKbxhwsveeP5lZQYhlfRAY7ZzrDvQBbvaOG/V1SxcXRHvd9gEXOedOB3oAA8ysD3CXF1cnYBtwk7f/TcA2b/tvvf3SxluFuCC2bt4sYCowrYrHkkoaNGgQgwYNijoMCZHKOLicTqaI3bRWOOdWOuf2E/sSHRpxTBCL4SHv8UPAlQnbH3YxbwLNzCxrfTucc68AW6sYy2XAbOfcVufcNmA2qROhqsaVzlBgqnNun3Puv8AKYuUcSlk75zY45+Z7j3cRW6y7LRFftwriSqdarpv3uePjout5Pw64CHjc2558veLX8XGgv5lZBfFWxXvOufecc8ucc8uqeCyppF69etGrV6+ow5AQqYyDy/Vkqi2QOJfMWiq+4YTBAS+YWYmZxRcsauWc2+A9/hho5T2OIt6gsVRnjLd4TWV/SajFiSwurwnqDOAtcui6JcUFEV83r8ZrIbCRWNL4IbDdOXcwxTlKz++9voPY5JphXK8LzWyGmf3DzKZX8VgiIlmT68lULjjfOdeTWDPKzWaWODwb55wjlnBFLpdiIdY8diKxpqINwIQogzGzJsATwPecczsTX4vyuqWIK/Lr5pw75JzrAbQjVpvUrbpjSGM48HPn3NXEmvwkAsuWLWPZMlUM1mQq4+ByPZlaB7RPeN7O21ZtnHPrvH83Av8kdnP5JN585/270ds9iniDxlItMTrnPvFuyoeByRxp4qn2uMysHrGE5VHn3JPe5sivW6q4cum6Oee2A3OAc4g1d8anUkk8R+n5vdebAltCiuu3wI3e49uqeCyppKlTpzJ16tSow5AQqYyDy/Vk6h2gszeSqD6xDq0zquvkZtbYzArjj4FLgfe8GOKjuUYAT3uPZwA3eCPC+gA7EpqSwhI0lueBS82sudeEdKm3LauS+op9gdh1i8c1zBsF1pFYR++3Camsvf47DwJLnXMTE16K9Lqliyvq62ZmLc2smfe4EXAJsf5cc4CrvN2Sr1f8Ol4FvOzV9KWLtyp2AZ94j/dW8VhSSV26dKFLly5RhyEhUhkHl9OTdjrnDprZLcRuWgXAX5xzi6sxhFbAP2P3PeoCjznn/mVm7wDTzewmYDVwjbf/s8AVxDrbfgp8NZvBmNkUoB/QwszWEhtdNj5ILM65rWb2c2I3YYA7nXN+O48HiaufmfUg1ny2CviGd/7FXn+XJcRGtN3snDvkHSeMsj4PuB74j9cPCOB/if66pYtreMTXrTXwkDfyrg4w3Tk3y8yWAFPN7BfAAmKJIN6/j5jZCmKDEIZlircKNgMXmNlvgMNVPJZU0vDhw6MOQUKmMg7OYn9EiojkPjPrRux7a2mUcfTu3dvNmzcvyhBqvKIxz0QdQqnVd8WmCTj+x7MijqRiq8YPjDqEGs3MShKmSCojp2umRETivBpQBxxlZjjnrow4JBERQMmUiOQJ51xp24OZaTRfRMaNGwfA2LFjI45EwqIyDk7JlIjkhYSZ3esSm+1dRCQnKJkSkXxxNbFmvn3AHyKOpdZSbUXNpzIOTsmUiOSLeRyZXLWtmbWNr10oIhIlJVMiki++Dvzbe3we8FR0oYiIHKFkSkTyxfvOuQkQm1zUOfdw1AHVRlOmTAE0F1FNpjIOTsmUiOQLZ2YPEGvq+yTTzhKO5cuXRx2ChExlHJySKRHJFz8ltsbfdrScTGSGDRsWdQgSMpVxcEqmRCRf3AM0ds7dZGb34y21I9Wra9euUYcgIVMZB5frCx2LiMQdIraOIsCOKAMREUmkZEpE8sU+4CRvYefmUQdTW5WUlFBSUhJ1GBIilXFwauYTkZxnZgY8ARxL7I/A+6KNqPaaNSu22G+vXr0ijkTCojIOTsmUiOQ855wzswudc7+OOpbarmfPnlGHICFTGQcXWTLVokULV1RUFNXpRSQCJSUlm51zLYO+z8yGAkPM7DJgK7H86pqsBygZDR48OOoQJGQq4+AiS6aKioqYN29eVKcXkQiY2erMe6V0mXPufDO7zzn3zawGJSJSReqALiL54HgzuwLoYGZXeI8lArt27WLXrl1RhyEhUhkHp2RKRPLBdKBlwr+BmwolOyZOnMjEiROjDkNCpDIOTh3QRSTnOeceijoGiWnSpEnUIUjIVMbBKZkSkRrFzBoCrwANiH3HPe6cG2tmHYGpxKZXKAGud87tN7MGwMNAL2ALcK1zblUkweeB0aNHRx2ChExlHJya+USkptkHXOScOx3oAQwwsz7AXcBvnXOdgG3ATd7+NwHbvO2/9fYTEfFNyZSI1CguZrf3tJ7344CLgMe97Q8BV3qPh3rP8V7v700SKiLiS8Zkysz+YmYbzey9NK+bmf3ezFaY2btmptm+RCRSZlZgZguBjcBs4ENgu3PuoLfLWqCt97gtsAbAe30HsaZASWHSpElMmjQp6jAkRCrj4PzUTP0NGFDB65cDnb2fUWiZBxGJmHPukHOuB9AOOAvoVtVjmtkoM5tnZvM2bdpU1cPlrQ0bNrBhw4aow5AQqYyDy9gB3Tn3ipkVVbDLUOBh55wD3jSzZmbW2jmnkhCRSDnntpvZHOAcoJmZ1fVqn9oB67zd1gHtgbVmVhdoSqwjevKxJgGTAHr37u2qI/5cNHLkyKhDkJCpjIPLRp+p0ipyT2L1uYhItTKzlmbWzHvcCLgEWArMAa7ydhsBPO09nuE9x3v9Ze+PQ0mhTZs2tGnTJuowJEQq4+CqdWoEMxtFrCmQJq1PrM5Ti0jt0Rp4yMwKiP3BON05N8vMlgBTzewXwALgQW//B4FHzGwFsXX/hkURtIjkr2wkU/Eq8rjE6vMyEqvJjzn+JP3lJyJZ55x7FzgjxfaVxPpPJW/fC1xdDaHVCMXFxQD069cv0jgkPCrj4LLRzDcDuMEb1dcH2KH+UiIiNdPcuXOZO3du1GFIiFTGwfmZGmEK8AbQ1czWmtlNZvY/ZvY/3i7PAiuBFcBk4FuhRQv86U9/4qWXXmLVqlVcddVVmd9Qgffee48bb7wRgBEjRrBnz54sRCgiUnP17duXvn37Rh2GhEhlHJyf0XzDM7zugJuzFlHF52LGjBn861//YtWqVZV6P0Cq+fi++MUv8ve//51vfOMbVQ2znMOHD1OnTp1yj0VE8o2afmo+lXFwObs239ChQ/nzn/9M69atefDBBzlw4ADnnnsuJ5xwQuk+GzZs4Nprr2XJkiX87ne/46KLLuLuu+/mmWeeYefOndx1111ccskl3HjjjTRu3Jjly5fz2GOPcfPNN7N161aOP/740mP179+fa6+9tlwydd1117Fu3ToOHTrEY489RocOHXj22We58847adiwITfddBPXXXcdI0aMYM2aNTRp0oS///3v7NixgxtuuIHWrVvTo0cPnn/+ec466ywWLFjA7Nmzq+06iohUl6Ixz0QdgkgkcraK5Oqrr2b69OkAPPHEE1x11VW8//77ZZKpzZs38+ijjzJ9+nT++Mc/AnDzzTdTXFzMv/71L37xi1+U7tuzZ09mz57N3Llz6dSpEy+++CJnnnlm6etNmjQh1UR8DzzwAHPnzmX06NHcf//9HD58mNtuu40XXniB4uJivvzlL/PPf/6Tdu3aMXfuXIYNG8Yf/vAHANatW8cjjzzCbbfdBsBll12mREpE8tr69etZv3591GFIiFTGweVsMjV06FBmzJjB5s2bqVOnDi1atCi3zymnnELdunVp374927ZtA+CRRx7hggsu4Jprrikzg2s8cVqxYgW9evUqsy2dQ4cO8aMf/YgLLriA//u//2P9+vVs2rSJ9u3bc/TRRwNQp04dVqxYUXqsM888kw8++ACA008/nfr165eLQUQkX02ePJnJkydHHYaESGUcXM4mU4WFhRx77LFMnDixtKN5165dWblyZek+iX2f4v2h/vCHPzBnzhymTZtG4rx78X5KnTp1YsGCBQDMmzev9PXdu3fTsmXLMjEsXLiQ7du388orrzBmzBicc7Rs2ZK1a9eye3dsHdXDhw/TqVMn3n77bQDeeecdOnfuXOacyTGIiOSr1q1b07p166jDkBCpjIPL2T5TANdccw0jRoworW487bTT+PDDDyt8z/nnn8/5559Pnz59aNKkSbnXr7zySqZOnUr//v3p0qVL6faXXnqJQYMGldm3W7durF69mksuuYRu3WJLe9WpU4df/vKX9O/fn6OOOoqvfe1rDB8+nCeffJILLrigtM/Uzp07q/rxRURyzqhRo6IOQUKmMg7Oolo14ZjjT3JbVy8N/L57772Xbt260b9//6zGM2LECP70pz/RuHHjrB5XRI4wsxLnXO+o46iq3r17u8SabYmpqR3QV98V+0P7+B/PijiSiq0aPzDqEGq0ir6/crpmKpWbbw5nFoaHHnoolOOKiIhIzaZOPCIi4tuECROYMGFC1GFIiFTGweVdzZSIiEQnPvhGai6VcXBKpkRExLdbb7016hAkZCrj4JRMiYiIb4WFhVGHICFTGQenPlMiIiIiVaBkSkREfJs5cyYzZ86MOgwJkco4OCVTIiLi2/z585k/f37UYUiIVMbBqc+UiIj4lrxShNQ8KuPglEyJiIhv8YXipeZSGQfnq5nPzAaY2TIzW2FmY1K83sHM5pjZAjN718yuyH6oIiIiIrknYzJlZgXAvcDlQHdguJl1T9rtp8B059wZwDDgT9kOVEREords2TKWLVsWdRgSIpVxcH5qps4CVjjnVjrn9gNTgaFJ+zjgaO9xU2B99kIUEZFcMXXqVKZOnRp1GBIilXFwfvpMtQXWJDxfC5ydtM8dwAtm9m2gMXBxVqITEZGc0qVLl6hDkJCpjIPLVgf04cDfnHMTzOwc4BEzO8U5dzhxJzMbBYwCaNL6xCydWkREqsvw4cOjDkFCpjIOzk8z3zqgfcLzdt62RDcB0wGcc28ADYEWyQdyzk1yzvV2zvWuV69e5SIWERERySF+kql3gM5m1tHM6hPrYD4jaZ+PgP4AZnYSsWRqUzYDFREREclFGZMp59xB4BbgeWApsVF7i83sTjMb4u02GhhpZouAKcCNzjkXVtAiIhKNcePGMW7cuKjDkBCpjIPz1WfKOfcs8GzSttsTHi8BzstuaCIiIiK5TzOgi4iIb2PHjo06BAmZyjg4LXQsIiIiUgWqmRIREakBisY8k7VjrRo/MGvHqg1UMyUiIr5NmTKFKVOmRB2GhKh//Q9UxgGpZkpERHxbvnx51CFIyDoU7GD58h1Rh5FXlEyJiIhvw4YNizoECdmL+zrxwIjeUYeRV5RMiYiIb127do06BAnZmsPNVM4Bqc+UiIiISBUomRIREd9KSkooKSmJOgwJUZeCTSrjgJRMiYiIb7NmzWLWrFlRhyEhOq/+apVxQEqmRKRGMbP2ZjbHzJaY2WIz+663/Rgzm21mH3j/Nve2m5n93sxWmNm7ZtYz2k+Q23r27EnPnrpENdmygy1UxgGpA7qI1DQHgdHOuflmVgiUmNls4EbgJefceDMbA4wBfgxcDnT2fs4G7vP+lRQGDx4cdQgSstcPFPHYYE3aGYRqpkSkRnHObXDOzfce7wKWAm2BocBD3m4PAVd6j4cCD7uYN4FmZta6eqMWkXymZEpEaiwzKwLOAN4CWjnnNngvfQy08h63BdYkvG2tty35WKPMbJ6Zzdu0aVN4Qee4Xbt2sWvXrqjDkBA1Yr/KOCAlUyJSI5lZE+AJ4HvOuZ2JrznnHOCCHM85N8k519s517tly5ZZjDS/TJw4kYkTJ0YdhoRoWKN3VcYBqc+UiNQ4ZlaPWCL1qHPuSW/zJ2bW2jm3wWvG2+htXwe0T3h7O2+bpNCkSZOoQ5CQferqcVxhg6jDyCu+kikzGwD8DigAHnDOjU+xzzXAHcT+2lvknLsui3GKiPhiZgY8CCx1ziX+eT0DGAGM9/59OmH7LWY2lVjH8x0JzYGSZPTo0VGHICGbtvd0Vt2hDuhBZEymzKwAuBe4hFhfgnfMbIZzbknCPp2B24DznHPbzOy4sAIWEcngPOB64D9mttDb9r/EkqjpZnYTsBq4xnvtWeAKYAXwKfDVao1WRPKen5qps4AVzrmVAN5fb0OBJQn7jATudc5tA3DObSx3FBGRauCc+zdgaV7un2J/B9wcalAiUqP56YDuZ6RLF6CLmb1mZm96zYLlJI6GOXDgQOUiFhGRyEyaNIlJkyZFHYaEaHCDJSrjgLLVAb0usQnv+hHrvPmKmZ3qnNueuJNzbhIwCeCY408KNJJGRESit2GDupPVdC3qfMqGDZ9GHUZe8ZNM+RnpshZ4yzl3APivmS0nlly9k5UoRUQkJ4wcOTLqECRkM/aexMxvnx91GHnFTzPfO0BnM+toZvWBYcRGvyR6ilitFGbWgliz38rshSkiIrmgTZs2tGnTJuowJERbXGOVcUAZkynn3EHgFuB5YssyTHfOLTazO81siLfb88AWM1sCzAF+6JzbElbQIiIiIrnCV58p59yzxIYPJ267PeGxA271fkREpIYqLi4GoF+/fpHGIeHpUXcdxcXFKuMAtJyMiIj4NnfuXObOnRt1GBKiM+ptUBkHpOVkRETEt759+0YdgoRswYHWfO/iLlGHkVeUTImIiG9q+qn5Fh5sq3IOSM18IiIiIlWgZEpERHxbv34969evjzoMCdGxtkdlHJCSKRER8W3y5MlMnjw56jAkREMaLlUZB6Q+UyIi4lvr1q2jDkFCtvnwUZzatmnUYeQVJVMiIuLbqFGjog5BQjZzX3f+MGpg1GHkFTXziYiIiFSBkikRERGRKlAyJSIivk2YMIEJEyZEHYaE6NqGi1TGAanPlIiI+LZ79+6oQ5CQHWUH2L37QNRh5BUlUyIi4tutt2o9+5pu6men8fZPLo46jLyiZEpERHwrLCyMOgQJ2WfUVzkHpD5TIiIiIlWgZEpERHybOXMmM2fOjDoMCdG59VapjAPylUyZ2QAzW2ZmK8xsTAX7fcnMnJn1zl6IIiKSK+bPn8/8+fOjDkNC1LXuZpVxQBn7TJlZAXAvcAmwFnjHzGY455Yk7VcIfBd4K4xARUQkeoMGDYo6BAnZa/uP51dfPDXqMPKKnw7oZwErnHMrAcxsKjAUWJK038+Bu4AfZjVCERHJGb169Yo6BAnZ8kMtVc4B+WnmawusSXi+1ttWysx6Au2dc89UdCAzG2Vm88xs3oEDmsNCRERE8l+VO6CbWR1gIjA6077OuUnOud7Oud716tWr6qlFRKSaLVu2jGXLlkUdhoSofZ3tKuOA/CRT64D2Cc/bedviCoFTgGIzWwX0AWaoE7qISM0zdepUpk6dGnUYEqKLG6xQGQfkp8/UO0BnM+tILIkaBlwXf9E5twNoEX9uZsXAD5xz87IbqoiIRK1Lly5RhyAh++hQUy4+qVXUYeSVjMmUc+6gmd0CPA8UAH9xzi02szuBec65GWEHKSIiuWH48OFRhyAhe2l/Zx4cPjDqMPKKr+VknHPPAs8mbbs9zb79qh6WiIiISH7QDOgiIiIiVaBkSkREfBs3bhzjxo2LOgwJ0VcbzVMZB6RkSkRERKQKfPWZEhERARg7dmzUIUjI/vpZb1aNVwf0IFQzJSIiIlIFSqZEREREqkDJlIjUOGb2FzPbaGbvJWw7xsxmm9kH3r/Nve1mZr83sxVm9q631qikMWXKFKZMmRJ1GBKi/vU/UBkHpGRKRGqivwEDkraNAV5yznUGXvKeA1wOdPZ+RgH3VVOMeWn58uUsX7486jAkRB0KdqiMA1IHdBGpcZxzr5hZUdLmoUA/7/FDQDHwY2/7w845B7xpZs3MrLVzbkM1hZtXhg0bFnUIErIX93XigRFaXjcIJVMiUlu0SkiQPgbii4+1BdYk7LfW26ZkKoWuXbtGHYKEbM3hZirngNTMJyK1jlcL5YK8x8xGmdk8M5u3adOmkCITkXykZEpEaotPzKw1gPfvRm/7OqB9wn7tvG1lOOcmOed6O+d6t2zZMvRgc1VJSQklJSVRhyEh6lKwSWUckJIpEaktZgAjvMcjgKcTtt/gjerrA+xQf6n0Zs2axaxZs6IOQ0J0Xv3VKuOA1GdKRGocM5tCrLN5CzNbC4wFxgPTzewmYDVwjbf7s8AVwArgU+Cr1R5wHunZUzNH1HTLDrZg+Fkdog4jryiZEpEaxzk3PM1L/VPs64Cbw42o5hg8eHDUIUjIXj9QxGODtZxMEL6a+cxsgJkt8ya1G5Pi9VvNbIk34d1LZnZ89kMVERERyT0ZkykzKwDuJTaxXXdguJl1T9ptAdDbOXca8Djw62wHKiIi0du1axe7du2KOgwJUSP2q4wD8lMzdRawwjm30jm3H5hKbJK7Us65Oc65T72nbxIbDSMiIjXMxIkTmThxYtRhSIiGNXpXZRyQnz5TqSa0O7uC/W8CnqtKUCIikpuaNGkSdQgSsk9dPY4rbBB1GHklqx3QzewrQG+gb5rXRxFb+4omrU/M5qlFRKQajB49OuoQJGTT9p7OqjvUAT0IP818via0M7OLgZ8AQ5xz+1IdKHHSu3r16lUmXhEREZGc4ieZegfobGYdzaw+MIzYJHelzOwM4H5iidTGFMcQERERqZEyNvM55w6a2S3A80AB8Bfn3GIzuxOY55ybAdwNNAH+YWYAHznnhoQYt4iIVFHRmGcCv2dwgyUAzNyXPKhbaorBDZYwadI6Ro0aFXUoecNXnynn3LPEZglO3HZ7wuOLsxyXiIjkoBZ1Ps28k+S1FnU+ZcMGlXMQmgFdRER8m7H3pKhDkJDN2HsSM799ftRh5BUlUyIi4tsW1zjqECRkW1xj2rRpE3UYecXXcjIiIiIikpqSKRER8a1H3XX0qFtudhypQXrUXUdxcXHUYeQVJVMiIuLbGfU2cEa9DVGHISE6o94G5s6dG3UYeUV9pkRExLcFB1pHHYKELF7GlZk6I5VV42v+bOpKpkRExLeFB9tGHYKETGUcnJr5RERERKpAyZSIiPh2rO3hWNsTdRgSIpVxcEqmRETEtyENlzKk4dKow5AQqYyDU58pERHxbfPho6IOQUKmMg5OyZSIiPimBY5rPpVxcGrmExEREakCJVMiIiIiVaBkSkREfLu24SKubbgo6jAkRCrj4NRnqppce/8bAEz7xjkRRyJR0e+A1ARH2YGoQ5CQqYyD85VMmdkA4HdAAfCAc2580usNgIeBXsAW4Frn3Krshir5IF8ThnyNW6S6Tf3stKhDkJCpjIPLmEyZWQFwL3AJsBZ4x8xmOOeWJOx2E7DNOdfJzIYBdwHX+gkgl25iqWKpTHy58JniMcTlwvWF3Lg2Fcm38g7r3FU9bq6Xs1TeZ9SPOgQJmco4OHPOVbyD2TnAHc65y7zntwE4536VsM/z3j5vmFld4GOgpavg4I3adHFDxj7Ekg07Aeje+uiqfpYyKnPcVO/xu60yx8n03qpcm/h74yoTS1XPV93Xrioqul5+3xukbLMlG+fOVjn5eX36/5xb4pzrXWGweaB3795u3rx5kZw7W4vPin+r7xoEwPE/nhVxJPmppix0bGZpv7/8NPO1BdYkPF8LnJ1uH+fcQTPbARwLbE4KZBQwCqBJ6xOBI1+2qZKIuMpsS3djqMpNv6JticdL9Zkq+pzpYqjoxpdqn1TnS/XeINfG736pzuf3Ovh9T6rPkvg+v9tSfaZM1yvo701V9ksVa3I8yfv4LZ9Mv3NBf8fTxecnLslP59ZbBcDrB4oijUPCozIOrlo7oDvnJgGTIPaXXbrmtFRNVBU1W6V6b2WOnalJoqL9KnOMTHEHjSXTMarS9FKVJtAwYq3K70jQ+CsjyO9k8ra4yjY1Zuv/StC4/JTZe5k/iuS4rnVjfyPrRltzqYyD85NMrQPaJzxv521Ltc9ar5mvKbGO6L4lfgGn+jKu6MaS6b25JF2sQePO9c+ZqLpjzYVrk63f56qeO+ixw3pv/PXp/1PhLpIHXtt/fNQhSMhUxsH5SabeATqbWUdiSdMw4LqkfWYAI4A3gKuAlyvqL5ULcuGGm235lLRU9cYc9D35UN75EKPI8kMtow5BQpbtMs5mP79c7X+VMZny+kDdAjxPbGqEvzjnFpvZncA859wM4EHgETNbAWwllnDljGzduPP9Zhdm8hOVmviZKiPbyWdVjy0iUpv46jPlnHsWeDZp2+0Jj/cCV2c3tHCEdWPQDad66XqLRKN9ne0ArDncLNI4JDwq4+C0nIyIiPh2cYMVXNxgRdRhSIhUxsFpORkREfHto0NNow5BQqYyDk7JlIiI+PbS/s5RhyAhUxkHp2Y+ERFia5Ca2TIzW2FmY6KOR0Tyh5IpEan1EtYgvRzoDgw3s+7RRiUi+ULNfCIicBawwjm3EsDMpgJDgSUVvsunmrSe3lcbxdYk/Otneb/EoqShMg5OyZSIiL81SEUkYtn+wyRbk4BaVBOVm9kuYFkkJ8++FiQt6pzHaspnqSmfA2rWZ+nqnCuMOohkZnYVMMA593Xv+fXA2c65WxL2KV2oHehK5b6/alJZ+lHbPi/Uvs9cmz7v8c65lNPDR1kztcw5VyPqEM1snj5LbqkpnwNq3meJOoY0Mq5BmrhQe2XVpLL0o7Z9Xqh9n7m2fd501AFdRCRhDVIzq09sSawZEcckInlCfaZEpNZLtwZpxGGJSJ6IMpmqUnV5jtFnyT015XOAPku1SLUGaQhy9vOHpLZ9Xqh9n7m2fd6UIuuALiIiIlITqM+UiIiISBVEkkzl67INZtbezOaY2RIzW2xm3/W2H2Nms83sA+/f5lHH6peZFZjZAjOb5T3vaGZveWUzzeuMm/PMrJmZPW5m75vZUjM7Jx/Lxcy+7/1uvWdmU8ysYb6UiZn9xcw2mtl7CdtSloHF/N77TO+aWc/oIs8+v99xZvYlM3NmltejoTJ9XjO70cw2mdlC7+frUcSZLX7K18yuSbhXPFbdMWabjzL+bUL5Ljez7RGEGR3nXLX+EOvc+SFwAlAfWAR0r+44Khl7a6Cn97gQWE5s6YlfA2O87WOAu6KONcBnuhV4DJjlPZ8ODPMe/xn4ZtQx+vwcDwFf9x7XB5rlW7kQmzjyv0CjhLK4MV/KBLgA6Am8l7AtZRkAVwDPAQb0Ad6KOv4sXgdf33Hed8grwJtA76jjDvPzer/Hf4w61mr8vJ2BBUBz7/lxUccd9mdO2v/bxAZxRB57df1EUTNVumyDc24/EF+2Iec55zY45+Z7j3cBS4ndAIcSu5nj/XtlJAEGZGbtgIHAA95zAy4CHvd2yYvPYmZNid3IHwRwzu13zm0nP8ulLtDIzOoCRwEbyJMycc69AmxN2pyuDIYCD7uYN4FmZta6WgINn9/vuJ8DdwF7qzO4EOTtd3ol+fm8I4F7nXPbAJxzG6s5xmwLWsbDgSnVElmOiCKZSrVsQ9sI4qgSMysCzgDeAlo55zZ4L30MtIoqroDuAX4EHPaeHwtsd84d9J7nS9l0BDYBf/WaLB8ws8bkWbk459YBvwE+IpZE7QBKyM8yiUtXBjXieyCNjJ/Na9Zs75yrCYv2+S3LL3lNuo+bWfsUr+cLP5+3C9DFzF4zszfNbEC1RRcO3/9fzex4Yt/JL1dDXDlDHdArwcyaAE8A33PO7Ux8zcXqOHN+iKSZDQI2OudKoo4lC+oSa166zzl3BrCHWJNSqXwoF68/0VBiX0RtgMZAvn8Jl8qHMqgOZlYHmAiMjjqWajQTKHLOnQbM5khtZU1Vl1hTXz9itTSTzaxZlAFVo2HA4865Q1EHUp2iSKYyLtuQy8ysHrFE6lHn3JPe5k/iTRTev/lQpXseMMTMVhGrsr0I+B2x5pb4/GP5UjZrgbXOube8548TS67yrVwuBv7rnNvknDsAPEmsnPKxTOLSlUFefw9kkOmzFQKnAMXe/78+wIw87oTuZymeLc65fd7TB4Be1RRbGPz87q4FZjjnDjjn/kusf23naoovDEH+vw6jljXxQTTJVN4u2+D1KXoQWOqcm5jw0gxghPd4BPB0dccWlHPuNudcO+dcEbEyeNk592VgDnCVt1u+fJaPgTVm1tXb1B9YQv6Vy0dAHzM7yvtdi3+OvCuTBOnKYAZwgzeqrw+wI6E5MN9V+B3nnNvhnGvhnCvy/v+9CQxxzuXquoWZZPxOT+oPN4RYf9N85ece9hSxWinMrAWxZr+V1Rhjtvm6b5tZN6A58EY1xxe9KHq9ExvJs5zY6ICfRN0LP0Dc5xNrpngXWOj9XEGsr9FLwAfAi8AxUcca8HP148hovhOAt4EVwD+ABlHH5/Mz9ADmeWXzFLH/0HlXLsA44H3gPeARoEG+lAmxv0Y3AAeI/WV+U7oyIDaK717vO+A/5PFotjTXotx3HHAnsaQped/ifP/8mT4v8CtgMbFRYHOAblHHHPLnNWJNuUu83+9hUccc9mf2nt8BjI861ih+NAO6iIiISBWoA7qIiIhIFSiZEhEREakCJVMiIiIiVaBkSkRERKQKlEyJiIiIVIGSKREREZEqUDIlIiIiUgVKpkRERESq4P8B6MYzeTxDcHUAAAAASUVORK5CYII=","text/plain":["
"]},"metadata":{"needs_background":"light"},"output_type":"display_data"},{"data":{"image/png":"iVBORw0KGgoAAAANSUhEUgAAAlkAAAFrCAYAAADiopx8AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/NK7nSAAAACXBIWXMAAAsTAAALEwEAmpwYAABeKElEQVR4nO3deZxT9b3/8deHYVUQVNACgqAsihvCuNUFVLQoorVWC7Z1+VnpotZeaCu2vUVs7aW2oLX12oJWq1dBa6sFpFqrgEtdYBA3EERFQVBwAUF25vP7IydDJpNMksnJnCTzfj4ePCY5Ocsn+Q45n/mu5u6IiIiISLiaRR2AiIiISDlSkiUiIiJSAEqyRERERApASZaIiIhIASjJEhERESkAJVkiIiIiBaAkS0RERKQAlGSJiIiIFICSLBEREZECUJIlIiIiUgBKskREREQKQEmWiIiISAE0jzqAZB07dvQePXpEHYaINKKqqqqP3L1T1HGEQd9hDbNlyxYAWrduHXEk4aqqqgJg4MCBEUfS+Mq1TJPV9/1VdElWjx49mD9/ftRhiEgjMrN3o44hLPoOa5jx48cDMG7cuIgjCZeZATTJ34lyLdNk9X1/FV2SJSIiTU+fPn2iDkFCpjJVkiUiIkVg5MiRUYcgIVOZquO7iIiISEEoySoy6zdtZ9Gqz6IOQ0RERPKkJKvIfPWP/+HMW56OOgwRkUY1fvz4mo7SUh5Upkqyis6bazZGHYKIiIiEQB3fRUQkcuU+zL8pUpmqJksKYOmHG9i8bWfUYYiIiERKSZaEasv2nZx+01Nccd+Cgpz/9qff5tWV6wty7rBs21HNzmqPOgwREYlYVkmWmQ01syVmtszMxqZ4/Ttm9qqZLTSzZ8ysX9Lr3c1so5n9MKzApTjtCJKLF97+uCDn/+Ujixn+h2cKcu6w9PnZP7nkzhejDkOkpEydOpWpU6dGHYaESGWaRZ8sM6sAbgVOA1YC88xsursvStjtPnf/Y7D/2cAkYGjC65OAf4YWtUiRe/rNj6IOQaSkLF26NOoQJGQq0+w6vh8NLHP3twHMbBpwDlCTZLl74sROuwM1bSVm9mXgHeDzEOJtMty9Zs0rEZFyN2LEiKhDkJCpTLNLsroCKxKerwSOSd7JzK4ARgMtgVOCbW2Ba4jVgqmpMAfVDhXKsaQInHjjk/Tvtie/H3lk1KFIGevbt2/UIUjIVKYhTuHg7rcCt5rZhcDPgIuB64Cb3H1jfbUyZjYKGAXQvXv3mu0PP/wwX/ziF9lnn31q7X/XXXdx4YUX0rJly7DCLzrV7lSgLEuit+KTzaz4ZLOSLJEMeox9pEGvpbJ8wrB8w5EikE3H9/eBbgnP9wu2pTMN+HLw+BjgRjNbDvwA+ImZXZl8gLtPdvdKd6/s1KlTzfaHH36YNWvW1LnAXXfdxbZt22qef7ZlO59t2U51dXUWb6c0uAaniYTOzPoGA3Ti/z4zsx+Y2V5m9riZvRn83DPY38zslmDQzytmNiDq91CuqqqqqKqqijoMCZHKNLskax7Q28x6mllLYAQwPXEHM+ud8HQY8CaAu5/o7j3cvQdwM/Ard/9DNoG98847PProo1x66aX8+Mc/rtn+3HPPsXDhQs444wwmTZrEddddR5ejzmDfQ47jlVde4cILL2TQoEGccMIJvPfeewDMmjWLY489lsGDB3PPPffg7lx11VWcfPLJDBkyhJUrV2YTUqOqVpYlEjp3X+Lu/d29PzAQ2AQ8BIwFnnD33sATwXOAM4Dewb9RwG1hxXLXXXexatWqlK8NHjyY+fPn19k+f/58vv/976c95/Lly7nvvvvCCrFRzZw5k5kzZ0YdhoRIZZpFc6G77whqnx4DKoA/u/vrZnY9MN/dpwNXmtkQYDvwKbGmwrz07NmToUOH8sMf/pBDDz20Zvtxxx1H//79mTlzJm3btuW6666jebuOdBz2X/Tv35/bb7+d3XbbjYceeog//elP/OIXv+Daa6/l6aefZo899qC6uppHHnmEPffck9mzZ/PCCy8wYcIE/vCHrHK/RrPy08302qdt1GE0mFJEKQGnAm+5+7tmdg4wONj+F2AOsf6k5wB3u7sDz5tZBzPr7O6r8734XXfdxaGHHkqXLl2yPqayspLKysq0r8eTrAsvvDDf8BrdgAGqJCw3KtMs+2S5+yxgVtK2nyc8vjqLc1yXa3DZatm5DwA7d+7kxz/+Ma+88gqbN2/m0EMPZe3atXTr1o099tgDgGbNmrFo0SIeeughnnrqKdydbt261Xf6RtW6RTO2bK+mdYvCzxPr7mzf6bRsrjlpm4Jlazbw28eWcsvII1XmMSOA+CQ++yYkTh8A+waPUw386QrUSrLS9StN58EHH2T+/Pl8/etfp02bNjz33HO0adOm1j5//etf+d73vse6deu44447OPHEE5kzZw6//e1vmTlzJnPnzuXqq6+OX5+nnnqKsWPHsnjxYvr378/FF1/Mf/3Xf+XwcURr+PDhUYcgIVOZFvmM7y1atGDnzrrLs9TZHnSqX7hwIevWrav5snF3OnXqxMqVK9m4MbbwcnV1NQcddBAXXHABc+bMYe7cudx5552N8n6y0aJZrEgao7Xwz88up8/P/slHG7eGfm512S8+Y//2Ko++/gEvr1wXdSiRC7o+nA38Nfm1oNYqp/+B6fqVpvPVr36VyspK7r33XhYuXFgnwQLYsWMHL774IjfffDPjx4+v8/pvf/tbbr31VhYuXMjTTz9NmzZtmDBhAieeeCILFy4sqQRLpFwVdZJ1xhln8IMf/IAbbrih1vazzz6bCy64gMmTJ9fa3nzPrrz77rucdtppzJkzB4jVXN1www2ceuqpnHzyydx7770MHz6cjz/+mJNPPplTTjmFu+++u7HeUlH5+4JYX7TV67ZEHIk0hvgA32ot+QOxvlYL3P3D4PmHZtYZIPgZH3GT68Cf0HzlK18BYODAgSxfvrzO68cffzyjR4/mlltuYd26dTRvHtpg8Uhs2LCBDRs2RB2GhEhlGuIUDoXwla98peaLJtFVV13FVVddVfP8rmBo7LodFTz99NN19h82bBjDhtUeDnvzzTeHGutvH1vCH2Yv453/OTO/SUSDQxujJit+jULMearbePGJ/16qbAAYya6mQogN5rkYmBD8/EfC9iuDSZiPAdaH0R8rG61atQKgoqKCHTt21Hl97NixDBs2jFmzZnH88cfz2GOPNUZYBTNp0iQAxo0bF3EkEhaVaZEnWaXk1jnLANi0bSe7t2r4xxrPd1y3QglZ/HerqY9cNbPdiU2Q/O2EzROAB8zsMuBd4IJg+yzgTGAZsZGIl4YVR7t27fL6K/+tt97isMMO47DDDmPevHm88cYbdOvWrWRrDtq2Ld2BPpKayrTMkqwo+wE1M2Onh5caucNVU1/ioC+044qTe4V01saTXBZLP9zA2g1bOb5Xx0jikdjvKIRTS/rqyvV8oX1rOrVrlf/JGpm7fw7snbTtY2KjDZP3deCKQsRxySWX8J3vfCdtx/dMbr75ZmbPnk2zZs045JBDOOOMM2jWrBkVFRUcccQRXHLJJSXVL2vMmDFRhyAhU5mWW5IVYZblIdUOJDbpzHh5FTNepmBJVmPWZ5x+01OAZjGOUjCmIpSarOF/eIa9d29J1X+flve5mqrzzjuP8847L+Vr8T6lAB07dqzpkzV48GAGDx4MwO9///uUxz755JNhhikieSjqju+lKNdka+2GrYy+fyGbt9UeRRlW0laf+DWKaR3qe55/lxWfbIo6jAZrjHJrqDBrsgA+/nxb5p1ERJqwskqyLMcGw3c++pwPP4t2ZN3//HMxf3/pfWa+Epv5OZ7wZHMffP7tj/n3og8z75hBrp9bKtXVzrYdu5Y1ash9/LMt2/nvh1/j67e/0OA4/u/5d3nklUbpl5xSFDnWD//6Mg+9lHnVgqff/AhQnywpTpMnT64zYlxKm8q0zJKsXJ382zkc86snQj1nrrevrUFi0rpFRe3zZHGiEZOf51t31116I27dpm1ceueLoc+DNW/5J/QY+0itBPWK+xbQ52f/zOu8HuRo6zY1vIbkZw+/xhX3LcgrjnxEkb48WLWS/7r/5az3V4olxWj16tWsXh3dH0gSPpVpmfXJipKZgXvONRlbt8cyi/gM3LvqlPK/Fd77wnvMXrKWPz/zDj8eelCd1xs6hcNd/1kOwIvvfMLwI2JLgvzztQ9q7VNELZChqK52mjXL/K4Sa4nWbdpG6xYVdRLoqH22eXvUIYjUcfnllzf6NXsE0/9IYURRpsWmrGqyirnj+0k3zmbSv5bU2b5tZyzJahVPsurpN/Oftz6i8pf/5vOtdefMSaVm8skM+Vox9cmC4qtpWbTqMw74ySxmv7Em476JSVb/6x/n/D8+l/V1lq3ZyLQX38t6/53Vzvad1Zl3TLJ9Z+pP+P11m3M+l0hYunTpktM6jlL8VKbllmRFHQCkzRDe+2QTtzy5rM72rdtjHd5bNY/VdnwSdCZOdZrfPLaEjzZu5Y0PspsHJ97XKl0CWMi5uLI584pPNvHqyvW7NhRFAcbcP+89fvvYEm56fClV730KwL8X1+3/5u58mtABPPmjfvX99WRr2C1PM/bvr2a9/+k3zaX3T/Nroo2bu3Qtx094klmvNu2qfRGRMKm5MLB+03ZatWhW07TTY+wjfG/wgSmb2VKpaS7MMXGJ13xUJDVF1Vcxtm1HdVaj2JrV1GTVv28YHd8b4sQbZwPFOa3DNX+rm+yk+hTvfHY5189cxOwfDqZnx93z6vge75/n7lmtGvDW2s8bfrEki1Z9BsDLK9dx5mGdQzuvSLbi01bEp6iQ0qcyLbOarGwtW7OxpsYo7ojr/8XX/lS7aed/57yV9TnzHbqffE/90s1Ppd135JTnuenfb2Y8Z3zIfmJz4dyla+kx9hHe+3hTQUfCbdq2kx9Meym3gzLEk89nvGNnNSfdOJtHk/qO5Wv2klgT4nvBtBNhjNxL15yXj+QpQtIqtrZaaTLmzp3L3Llzow5DQqQybaJJ1pBJcxkyqW7Bv7wyc9POY69/QNW7n6R9Pdd7bEPvyfEpH+pTMx1EwjXii0IvCJrAEvfbvrOa8TNe5+N6RiO++/HnrM6y787DC1exfWd11p1Lk2sB3/noc3qMfYS5S9cCcNlf0o+kzOTTTdt575NN/Ozh7Jvj6sQXhPfMmx8x/PfPpOwP9WSKflvZTimRWA5hy9Tfqtj65UnTM2jQIAYNGhR1GBIilWm5JVk53CgSa7JezSK5ivv2PVWcd1v2nZmzlU3oiclSNvvvqslK1yertscXfcidzy5n/IxF7Kx2eox9hFtn1+5HNug3c1jw3rosrh6zdUf2CUNymPOWx5LZ6QtjCWWqBCbrc4dYRXPN317h1ffX88H6XVNYuDuvrlzPVVPr1t5dcd8CXkpIatPJVF65uOvZd/jX64m1dnXP6e5FPXmqNC2Js9lLeVCZlluSlWTbjmreXrsx437D//BM2te2bM+ymSWQyy1rx85qPmngnFDZ9NnZGbQTprppO86yNbHP5rHXPqC62mv2Sxy19rsnMjdL1ufQcY+l3D5/ed3aQE96EGrlSs3J0591/abtXPPgK2zalm70Zu0Z8t1rL4O0vp6pETZsyTwidNfi4Pm7bsYiRt1TVfM88Vcgnlhd9pf59Lx2Vp3XRUQkHGWVZCV34P7pQ69yysS5tUZ/ZSPxr/vkmpxcjs1k/IxFvB10Xs6nuSbVrPXV1c4NsxYHMdV//MTHl3LTv5fuGo2YeJsv0M33qymmNshnFOToBxbyvXurMu7n7qzftCsZ2r6zuiah/P2Tb3L//BXc90L6aRS27tiVdCfHFVaTW7ryuunxpTnVutY6Z4ptqWoG73vxvZp+ZiKNadWqVaxalbkbhJQOlWm5JVlJN7n/vPUxAJ+nrZlILfEmt/zjTbzxwWf17r9wxbp656JK19k6n+HyiYMRU81av716VzPdzhR37eSE9N+L1yTV0ASPG7EndPKV6qut+2xL7Vqjvy94n1mvZu7U/vHn2zji+n+xZsMWtu+spvKX/+bw6/6V8vrJNm3bSd+fPcrKT2P9m5I/1nyTLMtQlfW7J96st9a1PpkS7fi1N2zZwaV3zsv6vMs/+pxrHnyFHQXoRyZNy5QpU5gyZUrUYUiIVKZllmQla2h/k8SjZry8iqE3P13v/l++9dmUx8aP/87/pa5hqX1Tzu0OnWnahaunLtwVU5rmwuSrx8/42OvhjsDL5H/nLAumpYg937B1B2P/9squHVIU45sfZm4GTpR8iqNveIIhk+ayfvN2Nm9PXpw79Tn+sbD2X2TV7rVKoVlIVVmOs3r95px/f29/+u20r60q0ESjV9+/kPvnr8hpPjCRVDp37kznzpo+pJyoTJvIPFnZ9F8KS/J9MVVHaICXV6zjo427mjHvfeHdjP3HEk+d/JY2bNmOmdG2VaxIH01IlKqzrGRINUN8rnnqtgwd3VPNAXXjo0toWdGMs4/YNTPwtHkrOKrHXrFjUpxnaxZ95Z5d9hGd27fmgE5tU77+7sebaj3fVZGU3ZuuU/OWw771eWvtRs677TmuPeMgvj3oQOYuXZtVCv7LRxbzrRMPqLP9441bufSuXbVTodZNqjOXhGTUqFFRhyAhU5mWe01WQ4/L4saRTYf6+pyTUPsFseauHz34Spq9Mzvsun9x2HWxTuajH1hY67Xsc8yElRODj6C+T8Istj5f4hxMF//5xXqv8I+Fq1i4Yl2d7Z9t2VHnWmP++nIQS90oEkct/ntR3ZnYAb5++wucMnEuh457rGaNyHQ2b9vJ7c+8A2RehijupffW1UwvAfkn8/HayXjyF2/uvvjPL3JR0udaX61Vss8ydLr/4V/rLi69ZftOLr97Pu9+nN2Ep+f+73+469l3so5JRKQpKKsky4jdcO994V0gYQHkHM+TzT327ufeTbk90/D7VDe0bL2TqabLYzPV/33B+7W2T5u3oqazd7rPwix1MlZfwvn4og/pf/3j9Bv3aM22TM1GKz7ZxOOL6jZHJjYX5upbd9c/f9bGrTv4V4prJvrD7F2jKLOdQqFWWXrtfnLJcmn6S9x15aebUu7zy0cWpz1+xSe1j/ljikl1EzvwP1i1ss7rT7/5EY8v+pBfzFxUa3t1tdea9yvxXdUXk4hIU1RWSRbEbrg/fei1WtsSk4c/za1/Fvd1m7ZldbPfmaa641sJE2amurGmuqFlo7raM9ZI1OdvwSSk6d5asCpQHQ5s2raDS+58kTc/rL1mYryPUhgtRl7PkkRhNEhlSgA2b9tV09WQ9/PeJ5vyH11YM9ggZtmajZzw69k5nya+XFHc/fNX1NlnzpK1tZ4nh968IrZlW8Ls81++9VkerFrJFfctSHldTWgq+Zg4cSITJ06MOgwJkcq0zJKs5OaaD5KmNljz2Rb+559v1HuOLdurs+qTk2rEHuS2IHAu8k00Mh1vWOr5tDw21H/OkrWcdlP6pX5yiSPlR5cmyavPW2s3pq3pycdvHluS8zHjpr9OfXWm2TQlbktYuxAyz9LeUJ9t3l4zQjKdlhWxr4btCc2yC1esY/X62v+nak+QG3uPn2/dUac2TSSTjRs3snFjft0wpLioTMus43vG+1gWf2k/vPB9JmRIxCBWs1SfP819K21C97cG1mYlyjUhsaSfqexIeE+J52/erHFy8f97PnUTLKSe1PTUienXxLqnnnMVSn2/f5maC59/++Nd+4YVEPD0m2vrbEtVq3dz0lqY8QXLn0uIC9L/cQHU/HJdOOV5Xl65vigX/pbiNXr06KhDkJCpTMusJqs+H23cyofr06/JF3frk9lNProjQ5I1pZ6OyWNy7JfVY+wjddYTzHXplUwJqBnsTBiG+FZC/68WFeG1Axnpk4h0C3K7x/pV5eK/H34t804hq28Kh0syzD21eHXCXGwhZlnfvKP+gQhxydNYpHsvO5OGqibW3MaPyGYNUJFk7dq1o127dlGHISFSmTaRJMswKn/576wmcsy2X0mmvlVhj2x/56Pao7xyPX38bT2z7COg7rQOBiTOJ5nYeb6ivh7dOdq6ozptf7ZSl+vqAIkSR0tmaq5OnLG+UCrSfDPU98eF+mSJiNRWVs2FiV5rYN+odH1n7nluOf/9j9drbdu6Yyetmlc06Dq5Sr635doXKf6+4nNzbUoxz1TXDm1qHifWWIQ5z9gf0iQi9TW/lkpK9niaqSSy8WkOa1gecf2/Gnyd7KUu83Wfp0/wMk2QK1KfGTNmADB8+PCII5GwqEyzrMkys6FmtsTMlpnZ2BSvf8fMXjWzhWb2jJn1C7afZmZVwWtVZnZK2G+gVhwJj++ft2tEVS45Qrp9kxMsgKrln6bc9/mkfixhSO7TsyXDvE/JsvkMdm+1K2FM7HvTGEumTHk6/RxLDZ25vxit27Qt5aLj9z2/a73EfN5u4pxl+UhXeamaLCmUBQsWsGBB6pGrUppUplnUZJlZBXArcBqwEphnZtPdPXECnfvc/Y/B/mcDk4ChwEfAcHdfZWaHAo8BXUN+DzW+83+pCzOXm1YYS6OMmPw8e+/eMu/zJCp0muHUngH9/xJu+ktzXMImbKnee6590jJ54o2G10Llov/1j3P4fu2ZfuUJNdtWr9/MhoQ+Z/m0pk56PPeRkamk+39Q3+euHEvycdZZZ0UdgoRMZZpdc+HRwDJ3fxvAzKYB5wA1SZa7J66gvDvBfdHdE9eUeR1oY2at3D1zD/QG+Cihc3jiPeKnD72a9TnatMi++c+BK+5Nk9hlfZbsfP32F/I6vk6TX9LN8pWV69MuAdSYi0RnK+xuXclL7BTSKyvXs37zdk66cTa3X1xJl4Rm2nxtyGMutUTpO77XV5OlNEsabuDAgVGHICFTmWbXXNgVSJzNcCUpaqPM7Aozewu4Efh+ivOcBywoVIKV7POtu5pNnnhjTUGusXXHTh55dXXmHYvA22s3Zpx2olg9G3TWTxR2TVZjOOW3c2oev/Tep6zfvJ1bnniT5kltc8WY1MZNf3lV2tc2bt3BKRPnNF4wIiJFLrTRhe5+q7sfCFwD/CzxNTM7BPg18O1Ux5rZKDObb2bz166tO69PQ8RnOM/VjmxXUwa+l6YWqxjd+exypiX0UyulDjTrUoymK8V+Wm8njBCNR29mdWqNiuGt5dIRP9Hba7Nb61Ak2ZIlS1iyJJzmbikOKtPskqz3gW4Jz/cLtqUzDfhy/ImZ7Qc8BFzk7iknQnL3ye5e6e6VnTp1yiKkwvnws+wr2urrfL5+c+GH2efqJwnNprkkKcU4aqxEK+XqMOrmu/m8tfii0vlKXpBapNCmTZvGtGnTog5DQqQyza5P1jygt5n1JJZcjQAuTNzBzHq7e3zK6GHAm8H2DsAjwFh3fzasoEtBsc8FlUttSTE2X5Vic2EtCeEnv5V8JlJ9T8vZSInq06dP1CFIyFSmWSRZ7r7DzK4kNjKwAvizu79uZtcD8919OnClmQ0BtgOfAhcHh18J9AJ+bmY/D7ad7u6F6SQlWculJuvGR4uvunfthkbp2ldwZsWZxIo0tpEjR0YdgoRMZZrlZKTuPguYlbTt5wmPr05z3C+BX+YToBTG2o2lnaSMn7Eo805FbGXC4s+lXiknIiKpNYlldaSuW2enXidQGke8SdBQkiUiUq6UZIlEyMzUXNjIzKyDmT1oZm+Y2WIzO87M9jKzx83szeDnnsG+Zma3BKtdvGJmA6KOv1yNHz+e8ePHRx2GhEhlqiRLJFLlXJNVxNNs/A541N0PAo4AFgNjgSfcvTfwRPAc4Aygd/BvFHBb44crIqWqbBeIFikVRZuK5Mm9+KZjM7P2wEnAJQDuvg3YZmbnAIOD3f4CzCE25985wN0eyxifD2rBOrt7acxCXELGjRsXdQgSMpWparJEIvXJpm0lOxN/JkX6rnoCa4E7zewlM7vdzHYH9k1InD4A9g0eZ7XihYhIKiWfZM1eotkgpHS99N467nn+3ajDaEqaAwOA29z9SOBzdjUNAhDUWuWUIxZi1QoRKX0ln2TNXaIvNCltk596O+oQCqJI+2StBFa6e3zF9QeJJV0fmllngOBn/K+3rFa8KKZVK0rV1KlTmTp1atRhSIhUpuqTJSIFUowplrt/YGYrzKyvuy8BTgUWBf8uBiYEP/8RHBKfbHkacAywXv2xCmPp0qVRhyAhU5mWQZJV8suriJSpIv6veRVwr5m1BN4GLiVWq/+AmV0GvAtcEOw7CzgTWAZsCvaVAhgxYkTUIUjIVKZlkGSJSHEq1vm/3H0hUJnipVNT7OvAFYWOSaBv375RhyAhU5mWQZ+sIv5rWaRJ0/9NEWnqSj7JWr95e9QhiIhInqqqqqiqqoo6DAmRyrQMmgunv7wq6hBERCRPM2fOBGDgwIERRyJhUZmWQZIlIsVJzYWSiwEDtCxkuVGZKskSkQIp1o7vUpyGDx8edQgSMpVpGfTJEpHipJosEWnqSjrJmv2GltQRKVbKsSQXGzZsYMOGDVGHISFSmZZ4knXpXfOiDkEa2TeO7R51CJKlIl1WR4rUpEmTmDRpUtRhSIhUpuqTJSWm2567RR2CZEkpluSibdu2UYcgIVOZKsmSElPRzKIOQUQKYMyYMVGHICFTmSrJitSdlx7FpXeqyTMXaoEqHSorkYbrMfaR0M61fMKw0M4luSnpPlml7tAu7aMOoeTcP39F1CFItpRkiUgTpyQrQq1b6OPP1YYtxbGMkqnVMiPNkyW5mDx5MpMnT446DAmRylTNhZFq17pF1CGUHKM4spv999qN5R9vijqMoqbmQsnF6tWrow5BQqYyVZIlJUb93kuHcizJxeWXXx51CBIylamaC4vG7RdVRh0CAMf03CvqEOplRdBOd8XJByqByILmyZJcdOnShS5dukQdhoRIZaokq2gM6bdv1CEA8NNhB0cdQtE7uufeUYdQEpRiiUhTpySrgYYcXDsp+v6pvSOKJFzNiqCmqD7FEp4qaUTCNWfOHObMmRN1GBIilamSrAZL7htUjH2Ffjeif87HFHuS1Zjx7bV7y5TbO7ZNvb0cXZ30x0O/zntkfawSUcnF3LlzmTt3btRhSIhUplkmWWY21MyWmNkyMxub4vXvmNmrZrbQzJ4xs34Jr10bHLfEzL4UZvBRSr7Zt2xeHvlq2O8jl5tyNhozB0x1qd989XAO6dK+5KYn6LNv5uUtTurTqc62g5PK7/KTemZ9zVL7jCRagwYNYtCgQVGHISFSmWaRZJlZBXArcAbQDxiZmEQF7nP3w9y9P3AjMCk4th8wAjgEGAr8b3C+SH3rhOxvFOkk3+wzTcewR+vSGMjZPEOVXK4d4886onM+4dRRX3Qd27YK9VqpDNx/z1rP09V2NYanf3xy1vvOuOqEjPvcdMERdbblVUOrHEtyMHjwYAYPHhx1GBIilWl2NVlHA8vc/W133wZMA85J3MHdP0t4uju7vl7PAaa5+1Z3fwdYFpwvUn32bZf3OZKTrFYV9X+UUY2KW3bDGTntv6O6/jtj+zbRzu1V3+cYdpNtqk8ifv14U9gPhqTvi3fjVw8PN6AkrRJqHTONTm3VPPPfNqk+2+TPIJcmQOVYItLUZZNkdQUS1zJZGWyrxcyuMLO3iNVkfT+XYwvprV+dWWdb8r3kgI6753ze5EkxWzQvvr5MZkbzDMlfskz9jRrjxnnqQfs06LjG6K+VfIWT+6aP9asD9itsMAna1lNTOuKobnW2pfp/0SFFAp1Pvyr1yZJcrFq1ilWrVkUdhoRIZRpix3d3v9XdDwSuAX6Wy7FmNsrM5pvZ/LVr14YVUuzcKbZ1bt+GH57ep+b5kz8cnNM5rzj5wDrbWmSsycrpEpHpsFuGJCuHG+eIo7o16Eb7k2EHc9AXcq9tTK7JakjH/0Sp5nlqllSTBdAuTYLTrNCjIRJO379bh7S7TTivbo1aRYrYwo5XfbIkF1OmTGHKlClRhyEhUplml2S9DyT+KbxfsC2dacCXcznW3Se7e6W7V3bqVLfzbT7SJTdXntLwKRe+dMgX6mxr3iz9R9lrn7Z5LQZTKv25kqW6ucf98RsDOLlv6rJ2b1gtSHKSkDzNRn3233u3rPbr1K5uv6+jekQ/gWvrFoXp6nhKhlrFrwzoyqM/OLHWthN6dSxILFLeOnfuTOfO4fbhlGipTLNLsuYBvc2sp5m1JNaRfXriDmaWmLEMA94MHk8HRphZKzPrCfQGXsw/7Ow1pC/UoBSjrOqeOPbj/IH7ccR+7dlnj9Sdrr9/Si8evuL4mg7S//OVw7KK4Q8XHlnz+JXrimdQ5n57tslp/+o0fbyGHtqZc/qnazluWA3IWYfXnlk4VW1NOtl0DG9RYbRpWTeZyaaZ8o/fGFjrefe9Mid1vzr3MFpUpD93cpN1vH9YqkQwk3S1cS2bN+NHX+pb8zwx+V0+YRiTLujPQV+oPQLxrMM719lXJJNRo0YxatSoqMOQEKlMs0iy3H0HcCXwGLAYeMDdXzez683s7GC3K83sdTNbCIwGLg6OfR14AFgEPApc4e47w38b4Uo3wq5tq9iNKPHmcVKfTvzjyhNqdUJO1LlDG9q2as49lx3Dr849jD13i/V76ZmhH9hZh3fhgW8fxx0XF8dyO3F7ZNnxvV38s0rYdtwBtWdKr67nLlxfU9NuKRIdgEu+2IMlvxxa8zzTSMlEewSjQ4/vld1s7vGkumXzZmTT7a1Vi107HdNzL/736wMyHuM48346hGfHnpJVTId0aQ/A4V3b88YvhmbYu7Z/XHF8TvvXJ55zKscSkaYuq3Yod58FzEra9vOEx1fXc+wNwA0NDbAQGtJX5PyB+7Hkww28snJ9raPjj+trLgTo0qENFx7TnUdf+wCINSFmcnQRrCM49JAv8OjrH+R83GnBMkGJedTRPffiubc/rnmerqapvuZCIzZVw3ufbKrz2hfat671PFMNk1ndmpkt23dy0H8/mubau8435aJKnlq6ln33aJ1VjVly/65sR7h22K0lHXaLjepcv3l7nfjTad2ighvOPZR573yS1XUO6BT7ffz2SQfwp6feTrtfNhXD8c9JaxeKSFNXHjNohuzzbTvqbDvz8M41t1h3r9PHKl1txvEH1u6fUiod4OOSc8dsw4/fXhNrq5Lf+5mHpW6r9xT7JkrXtJUs3Tn+eXXtPkQtEwovMTGrL0Xo2LYVXwlGDyYeM++nQ1LuX11d+3nL5s34v8uOqecKDRcP5+vH7M/NI3Y1O7dukfm/+4XHdK/39azypnhNlnIsycHEiROZOHFi1GFIiFSmTTTJSu7LkmzhinVpDgz+Qk/xUkWKmqyT+nSie5oO1Q29ASXOvdQYc1Zl+qwySazNqDPtRUUzZn3/xORD6Nlxd3bWM1/Xn745MO1ridL1x9szYQTlxPOPqNVxu95aqTQvJR6Trj9UqqbR+LYTenXkqB67JjlNfFxz6RTXzrVkHvvBSTke0TAl9neEFImNGzeycePGqMOQEKlMs2wuLEVPjBlUp0mp9z5teXNNwwrcSH3ziCcRXTtk1yE83xvQVwfsx24tK/hs8w6OPWAvTpmYfl2o5Gt9d/CB9OrUljF/fTn7C6YIOFXTVbL455KYWqTKX1IloS0qmqWdFNWB/fbcdcxBX2jHGx9s4OsZamBSxwjnDaw9l1VijMl5Ubqyq8iiejLV24lP+7FHm+Z8tGFXVVevfdoxb/mnKa/9gyG9ufnfb9IQ+++deT64VMn/iKO68ZvHlmR1jT99cyAbtuxIey6RdEaPHh11CBIylWkZ12Qd2KltnYkia+Y4ytAnK21/oIRmkORakpbNmzHy6NiNPt4fqX51L9I3i346zZoZZx3ehQuP6Z5xhFryvf+aoQfVSSoySZVAPH1N7eVcUjVDJc+MDrGavcF9O6Wc02n3pM7sO3amLoTkaHrt05a/ffeLjBt+SMr9445IuGZ9OVF9o1HT1XJlM4LVUzSbHnvAXow94yB+de5hNW/szkuOSjim7nm+eez+tAmmazAznhwziHsuq72IQl4TiKbYtnfbVnzlyOzmEP7SIV9QTZY0SLt27WjXLv/VOKR4qEzLNMn67fl112CD/PtDZddbJ9X+iTGkDyLbvkbZyrepD+C/z0pepjK32rivH9udgzvvwYs/OZUjunXgrkuP5uGEkWzpOkenS2iSt5sZA/ffM+PC1omj57KNP7mo0tVYHbhP5hqinSnep5nxnUEH1poAtnWLitRNgwkbE18/oFNbTuwdm3IkjOQmU2f1XPI3TUYqIk1d2SRZX9hj18iyr6aprTnj0FhH6x5ZNJskS7zJuZPQCb7uvg2tSUh1I842plTCmMC7U7tWtRKtVJeMh33ukV35/im9ar3WuX0b/nn1ieyzR+u6ByZIXv7n4M6p//qJJ1nXDD0IaOB7zPKY5OJINyP6/zu+Z8ZzJTYXpkp+cx1QkMsxyXKZpLUhEmt8RbI1Y8YMZsyYEXUYEiKVaRklWdn81fz1Y7vzxi+G0i1DM1uH3VKt4eZpaxNSRZNpn1Q3oPo6ezdEppq7VOvXpfL/ju+RdN7UJ/7VuYfRI8d1INu2as6VJ/figW8fl9X+8WvvE3QwTzVNw1cG5Lc85lWn9OJv3z2uTq1OuoQumykcWua4hmSyxKQ+n9x56S/PqHfgQBi/gZonSxpiwYIFLFiwIOowJEQq0zLq+N6/Wwcee/3Devcxslt+5Jz+Xem9T1t+9OArdY6H9DePfkHtS30djJNvkHN/NLgmUahvcs6GaVhN1/IJw+gx9pFdZ0lIZIYcvG+tsz7+Xydx1u+fCfbbtT3bOZLMjB8mzCieSbOkG3iqtzDpgv5MuqB/+mtm+FzGnJ46nnTJVHKid8vII/lw/ZZa2049eB+O7rEXLy6vf96qdH8spG5CTD42s0zNqul0CQZ27JniD5BkxT5PlpktBzYAO4Ed7l5pZnsB9wM9gOXABe7+qcV++X8HnAlsAi5x96Z91yiQs846K+oQJGQq0zJJslo2b8bNXzuSg3+eehLJuOQamP93fM+UNzUzOL+yW60ky8xSNoMkHv+NY/dnwP578uFnW7jjmXdS3srj/a7iE2cmJmQ7q1MckIdMNVkNWXLo0K7t2RTMI9amRQW9921XkBqLdPfneKJTcwNvQLVOQ/vm7ZumyTM59zr7iF3L+8y86gTatmpOi4pmXD2kN1+//YWU1//Gsfvzwjuf0HufdsBqIH3SlK7c4gnU7q0a/t863ed+9ZDeHNx5j4xrGcbiC87V4Cgaxcnu/lHC87HAE+4+wczGBs+vAc4gthxYb+AY4Lbgp4Rs4MDspmaR0qEyLZMka8xpfVKuKZfJz4fX7dQNcMR+Heo9LtVkpBC7+R3SpX3NOoXnV3ars88xB+zNLSOP5PQUIxDTrfOXTnIM+7RrxZoNW9O+HpZ4TUU2k1uGLT7KbVdNVu7vsiH9n357/hGc1Dv1wsf1JauHdm2/63z1FO/wI7ow/Igu6XeI1w6x63cv+b2f2KsjP/pSX75xzP71nCeT1EG2qGjGsMNzW+i1SCuy0jkHGBw8/gswh1iSdQ5wt8ey+ufNrIOZdXb31ZFEKSIlpSz6ZI066YCs9sv25npEiikGjIRpCTIc37l9G5ZPGJZ2RvOzj+iSstmyvo7v5w3Yr2Y9wLjkvW8ZeWStNesaUlNVn3gtUpuWFfx4aF/++p0vhnr+RImhJ06JUTMFRfDmw+jcn42vDtwvY+f9Qqr5PJy0v8jNmhlXnNyL9lk06aXTqW3+7zHs37sCcOBfZlZlZvHVa/dNSJw+AOK/dF2BFQnHrgy2SciWLFnCkiXZzccmpUFlWiZJVrZf6tl+98d3mzbq2FoLOacaURjmX+s76mkvnHjBEbw6/kv1Hl/RzGolb7nc6gbuv2etUWe/Pu8wfnrmwTXPp1xUyZNjBtU8/97gXrvWXyxAjUXi5xp/H18Z0JV2wULOJ/XphBlcdFyPnM+d7e9Lv857AJmXmgnbib1iNWaHJdSCnRo00zWkxjYX7XdrkXFAxH+f1Y8pF2WzcHnRVmWd4O4DiDUFXmFmtabCD2qtcgrezEaZ2Xwzm7927doQQ206pk2bxrRp06IOQ0KkMi2T5sK4B79zHB9/vi3t69k2Le2aLHJvunZowzsffV7rdccL8td6ulnO06loZlx9am8mP/U2m7fvrHl3J/ftxOwla9MmlY/94CReTlo66G/frV0r9bWjaicW9U2wet7Arkx9cQXNm1mD+zul07l9a04+aB/+tejDWuX3hfateed/hjXonNmGuEewbNFJwTxUYcn0GZ1xWGdeue509mi9q0bqF18+lO+f2pt2rVsUfLLPimbGPZcdnXbR88tOqH/KivqmNykG7v5+8HONmT0EHA18GG8GNLPOwJpg9/eBxHb//YJtyeecDEwGqKysLNJ3Xtz69OkTdQgSMpVpmSVZlT32avCx/xl7CtNefI/b5r5V06cqkRmc3b8LL7zzSYPm2cpGtz13Y+Wnm7nh3EOzPua/TuvDM8s+ourdXcuwxL/hU01vAND3C+3o+4XYSMjvDj6QLx64d4NjBvjllw/jJ2ceXGeuq1zd/f+O5vm3PwZ2JSLjhvfjs2CZlsZuharpWx/SdXOZnDMxwYJYn6guSUs3FXKyzxPzSCyLueO7me0ONHP3DcHj04HrgenAxcCE4Oc/gkOmA1ea2TRiHd7Xqz9WYYwcOTLqECRkKtMyS7Iyqudm2aVDG0af3pfRaYbvA1x4dHfOH9it1jD4MP9aj0/hcEDHtjkdFx9pV2f0YxbJQXxSz3xUNLOaZrx8nNSnEyf1id3cEz/XY3rGkudsl3bJJNekKezcLt+Z+FMtWVRMdk3hEHEgqe0LPBR8hs2B+9z9UTObBzxgZpcB7wIXBPvPIjZ9wzJiUzhc2vghi0ipalJJVt7L6pjRsnnsJJnmzGqI+GSk2UxumShhVTxgV7IWP8ukC46oUwtSKOHfWI39996d5RMa1jSY6Kkfncx7n2zKIckpziyh2PuV76rJKr7Pz93fBuqsu+XuHwOnptjuwBWNEJqIlKGmlWSFeK7Pg7mi6uusnqtffeUwbnz0DY7o1j7zzgmSE5t4khXvU/OVAbktCl1cwrtRd997N7rvvRvrN2/P6biw+t+FlYCGneCHVUMYV+x9sqQ4jR8/HoBx48ZFHImERWVaJqMLCyndX+Px2eX/tmBlaNfqs287br/4KFo1z20EWU3rYHB327EztiVNv2XJUqGShDBqVCH/GdWP77U3o046gElf659fQEmKvaZNRKSxNK2arDy+/dM1MW3ZHvI07Q3Qr3M7Xl6xjg7BaLjkmqzSFv4dO6o+WWHnbPme795vHRtKHMlOPXhfXr3udHZr2aS+XiRPTbm2o1ypTJtaklWAc4a9qHNDjBt+COcN2I8DOsU6zO9oYN+uMJRCLUZp98gq3Ez+YWlR0YwWeY40FREpB03qm7AhCUCmFpnwF3XOXesWFbWmr/jR6X3p2LYVBwXTNEjDJI/arM8tI49k5lUnFDii2orgV09EROrRpJKsMHUJFniuf725aHyxV0fm/2xIXgsFR61HMNN+qjnL8pVrs3E2u599RJda6xSmckiX2Azy/+/4+ifzzOTqIb0B2KNNcZXviWnWdhTJxtSpU5k6dWrUYUiIVKYl3lw486oT+KSeGd6T5Ts/UaIeHXdn1fotGReTlob54el9Oe6AvTm6Z8MnmAX4+/e+yD7tWtXaFlVzW8e2rUKZiuKi43o0aDmhQgrjfUnTtnTp0qhDkJCpTEs8ycpUc5Asn/5CycfGm2oi6PbUJLRs3oyTg/X68jGg+551tmX7e6DWOJHGM2LEiKhDkJCpTEs8yYpSTV8sJVkplUOCsquIVcgihda3b/rVNqQ0qUzVJyujdJ2Ld61coxtwqcm2zOJ9jLrttVshwxERkTLVpGqy8mouTHreMhiirubC0pPt78FlJ/Tk7CO6sM8erQsbkIhQVVUFwMCBAyOORMKiMm1qSVaItU4TLziCO555h6N65NcxW4qXmSnBEmkkM2fOBJr2DbncqEybWpLVkHmy0vQu2neP1vzkzIPzjEiiUAoTpoo0NQMGDIg6BAmZyjTLJMvMhgK/AyqA2919QtLro4FvATuAtcD/c/d3g9duBIYR6//1OHC157vomkge1I9OpPgMHz486hAkZCrTLDq+m1kFcCtwBtAPGGlm/ZJ2ewmodPfDgQeBG4NjvwgcDxwOHAocBQwKLfoc6dYqoJosERFpHNmMLjwaWObub7v7NmAacE7iDu4+2903BU+fB/aLvwS0BloCrYAWwIdhBN4QDVkg+qpTetOiwjikS25zcjVVpVBLVPwRijQ9GzZsYMOGDVGHISFSmWaXZHUFViQ8XxlsS+cy4J8A7v4cMBtYHfx7zN0XNyzU/DXk5np8r468ecOZtN+tRejxlKN0fdiKSUOSbREprEmTJjFp0qSow5AQqUxD7vhuZt8AKgmaBM2sF3Awu2q2HjezE9396aTjRgGjALp37x5mSCJ1KMUSKT5t27aNOgQJmco0uyTrfaBbwvP9gm21mNkQ4KfAIHffGmw+F3je3TcG+/wTOA6olWS5+2RgMkBlZWXBqkJUgSEiUpzGjBkTdQgSMpVpds2F84DeZtbTzFoCI4DpiTuY2ZHAn4Cz3X1NwkvvAYPMrLmZtSBWwxVdc6GyLEHJtoiINI6MSZa77wCuBB4jliA94O6vm9n1ZnZ2sNtvgLbAX81soZnFk7AHgbeAV4GXgZfdfUbYb0KKR0l0fFeWJSIijSCrPlnuPguYlbTt5wmPh6Q5bifw7XwCFBGR8jd58mQARo0aFXEkEhaVaROb8V0Kb592rQDo2XH3iCMRkVKyevXqqEOQkKlMlWRJyL7YqyP3fusYjumpNR1FJHuXX3551CFIyFSmSrKkAI7v1THqEESkxHTp0iXqECRkKtPsRheWvIuP2z/qEERERKSJaRJJ1vhzDmX5hGFRhyEiImnMmTOHOXPmRB2GhEhl2kSSLBERKW5z585l7ty5UYchIVKZqk+WiIgUgUGDBkUdgoRMZaokS5qofp334CL11RMpGoMHD446BAmZylRJljRRs64+MeoQRESkzKlPloiIRG7VqlWsWrUq6jAkRCpTJVkiIlIEpkyZwpQpU6IOQ0KkMlVzoYiIFIHOnTtHHYKETGWqJEtERIpAU15EuFypTNVcKCIlzszuNrMzcti/wsxeMrOZwfOeZvaCmS0zs/vNrGWwvVXwfFnweo8CvQURKVNFV5NVVVX1kZm9m8MhHYGPChVPHoo1Lije2Io1Lije2Io1Lsgttnzm0/gWMMLMpgHPAbe7++f17H81sBjYI3j+a+Amd59mZn8ELgNuC35+6u69zGxEsN/X8ohTRJqYokuy3L1TLvub2Xx3ryxUPA1VrHFB8cZWrHFB8cZWrHFBo8a2N3AA8BnwAXAHMCJNTPsBw4AbgNFmZsApwIXBLn8BriOWZJ0TPAZ4EPiDmZm7e0HeRRM3ceJEAMaMGRNxJBIWlWkRJlkiIjn6IXCru78NYGYr6tn3ZuDHQLvg+d7AOnffETxfCXQNHncFVgC4+w4zWx/sX6w1hyVt48aNUYcgIVOZKskSkdI3JyHBOsPd/5lqJzM7C1jj7lVmNjjMAMxsFDAKoHv37mGeuskYPXp0Vvv1GPtIgSORsGRbpuWsHDq+T446gDSKNS4o3tiKNS4o3tiKNS5ovNhOSnhc31T+xwNnm9lyYBqxZsLfAR3MLP4H537A+8Hj94FuAMHr7YGPU53Y3Se7e6W7V3bqlFOPBwm0a9eOdu3aZd5RSobKtAySLHcvyptMscYFxRtbscYFxRtbscYFjRpbJzM71cxOAdJOzOPu17r7fu7eg1ifrSfd/evAbOCrwW4XA/8IHk8PnhO8/qT6Y4lILko+yRKRJu/7QB+gL7GRg7m6hlgn+GXE+lzdEWy/A9g72D4aGBtCrJLGjBkzmDFjRtRhSIhUpiWcZJnZUDNbEsxhE8mXn5ktN7NXzWyhmc0Ptu1lZo+b2ZvBzz2D7WZmtwTxvmJmA0KM489mtsbMXkvYlnMcZnZxsP+bZnZxqmuFFNt1ZvZ+8LktNLMzE167NohtiZl9KWF7qOVtZt3MbLaZLTKz183s6mB7pJ9bPXEVw2fW2sxeNLOXg9jGB9t7Wo7zTKWLuYG6E2vK2wf4QTYHuPscdz8rePy2ux/t7r3c/Xx33xps3xI87xW8/naecUo9FixYwIIFC6IOQ0KkMi3RJMvMKoBbgTOAfsBIM+sXUTgnu3v/hKHqY4En3L038AS7/vo9A+gd/BtFbIh4WO4ChiZtyykOM9sLGAccAxwNjIsnGAWIDWLzEvUP/s0KYuhHrBnnkOCY/7XYxJGFKO8dwBh37wccC1wRnDPqzy1dXBD9Z7YVOMXdjwD6A0PN7Fh2zTPVC/iU2PxSkDDPFHBTsF/amPOIazQwk1g/q/vzOI9E6KyzzuKss86KOgwJkcq0RJMsYjezZcFfoNuIfbmeE3FMcecQm2uH4OeXE7bf7THPE+tsG8rCTu7+FPBJnnF8CXjc3T9x90+Bx0mdHIURWzrnANPcfau7vwMsI1bWoZe3u6929wXB4w3EJqfsSsSfWz1xpdOYn5m7e3xMdovgnxPrQP5gsD35M4t/lg8Cp5qZ1RNzQ73m7q+5+xJ3X5LHeSRCAwcOZODAgVGHISFSmZZuklUzf00gcW6bxuTAv8ysymJDuAH2dffVweMPgH2Dx40dc65xNHZ8VwbNbn9OqPmJJLagGetI4AWK6HNLiguK4DMLaskWAmuIJZRvkeU8U0B8nqmwYzvZzKab2V/N7IE8ziMiEqpSTbKKxQnuPoBYk8wVZpY4lJxgJFLko5GKJY4EtwEHEmtyWg1MjCoQM2sL/A34gbt/lvhalJ9biriK4jNz953u3p/YVAdHAwdFEUeSkcAv3P18Yk2HUoKWLFnCkiWqiCwnKtPSTbJq5q8JJM5t02jc/f3g5xrgIWI3nQ/jzYDBzzXB7o0dc65xNFp87v5hcLOuBqawq6moUWMzsxbEEpl73f3vwebIP7dUcRXLZxbn7uuITX1wHLnPMxV2bDcBlwSPr83jPBKhadOmMW3atKjDkBCpTEs3yZoH9A5GNbUk1ol2emMGYGa7m1m7+GPgdOA1as+tkzznzkXBKLVjgfUJzVKFkGscjwGnm9meQVPU6cG20CX1RTuX2OcWj21EMCqtJ7FO5i9SgPIO+gbdASx290kJL0X6uaWLq0g+s05m1iF43AY4jVifsVznmUoXc0NtAD4MHm/J4zwSoT59+tCnT5+ow5AQqUxLdFkdj60jdiWxm1kF8Gd3f72Rw9gXeCh2T6Q5cJ+7P2pm84AHzOwy4F3ggmD/WcCZxDr5bgIuDSsQM5sKDAY6mtlKYqPdJuQSh7t/Yma/IHZzBrje3bPtsJ5rbIPNrD+xprjlwLeDGF4P+tQsIjbK7gp33xmcJ+zyPh74JvBq0McI4CdE/7mli2tkEXxmnYG/BCMBmwEPuPtMM1sETDOzXwIvUXueqXssNs/UJwSLNtcXcwN9BJxkZr8FqvM4j0Ro5MiRUYcgIVOZgrkmMBaREmdmBxH7PlscdSyVlZU+f/78qMMoW6W2duG7v45NYbD/NTMji2H5hGGRXbspMLOqhGmcainJmiwRkbigttSB3cwMd/9yxCGJiABKskSkxLl7TZuEmWl0YYkaP348AOPGjYs4EgmLylRJloiUuISZ7JsTm91eRKQoKMkSkVJ3PrHmwq3A7yOORRqoKdd2lCuVqZIsESl989k1aWxXM+saX9tRRCRKSrJEpNR9C3gmeHw88HB0oYiI7KIkS0RK3RvuPhFiE6a6+91RByS5mzp1KqC5lcqJylRJloiUPjez24k1GX6YaWcpTkuXLo06BAmZylRJloiUvp8RW/9wHVpWp2SNGDEi6hAkZCpTJVkiUvpuBnZ398vM7E8ESw5Jaenbt2/UIUjIVKalu0C0iEjcTmLrTAKsjzIQEZFESrJEpNRtBQ4OFsTeM+pgpGGqqqqoqqqKOgwJkcpUzYUiUsLMzIC/AXsT+6PxtmgjkoaaOTO2gPLAgQMjjkTCojJVkiUiJczd3cxOdvcbo45F8jNgwICoQ5CQqUyLMMnq2LGj9+jRI+owRKQRVVVVfeTunXI9zszOAc42sy8BnxDLuy4IPUApuOHDh0cdgoRMZVqESVaPHj2YP39+1GGISCMys3cz75XSl9z9BDO7zd2/G2pQIiJ5Usd3ESll+5vZmUB3MzszeCwlaMOGDWzYsCHqMCREKtMirMkSEcnBA0CnhJ9SoiZNmgTAuHHjIo6k/PQY+0ho51o+YVjW+6pMlWSJSAlz979EHYOEo23btlGHICFTmSrJEhGRIjBmzJioQ5CQqUzVJ0tERESkIJRkiYiIiBRAXkmWmf3ZzNaY2WtpXjczu8XMlpnZK2ammclERKSOyZMnM3ny5KjDkBCpTPPvk3UX8Afg7jSvnwH0Dv4dQ2zJi2PyvKaIiJSZ1atXRx2ChExlmmeS5e5PmVmPenY5B7jb3R143sw6mFlnd9cnLyIiNS6//PKoQ5CQqUwLP7qwK7Ai4fnKYJuSLBERqdGlS5eoQ5CQqUyLZAoHMxsFjAJo2/nAiKMRERERyV+hRxe+D3RLeL5fsK0Wd5/s7pXuXtmiRYsChyQiTZWZtTazF83sZTN73czGB9t7mtkLwSCd+82sZbC9VfB8WfB6j0jfQBmbM2cOc+bMiToMCZHKtPBJ1nTgomCU4bHAevXHEpEIbQVOcfcjgP7A0OC76dfATe7eC/gUuCzY/zLg02D7TcF+UgBz585l7ty5UYchIVKZ5tlcaGZTgcFARzNbCYwDWgC4+x+BWcCZwDJgE3BpPtcDWLhwIdu2bePoo4/O91Qi0sQEg3A2Bk9bBP8cOAW4MNj+F+A6YqOhzwkeAzwI/MHMLDiPhGjQoEFRhyAhU5nmP7pwZIbXHbgin2skW7hwIRs3bixIkhX/3jQzAKqrq2nWTPO1ipQTM6sAqoBewK3AW8A6d98R7BIfoAMJg3fcfYeZrQf2Bj5KOmdNv9Lu3bsX+i2UpcGDB0cdgoRMZVqCM77fdttt/O53v+P000+vtf3xxx9n0KBBHHXUUUyYMAGAzZs3M3LkSAYNGsSpp54KwOzZszn22GM59thjufvu2PRel1xyCVdccQWnn346Dz74IMOHD+fcc8/lrrvuatT3JiKF5+473b0/sT6iRwMHhXDOmn6lnTp1yvd0IlImimJ0YS6++93vsnHjRq688spa248//njmzp1LdXU1xxxzDFdffTVTpkyhsrKSMWPGUF1dDcC1117LzJkzad++Pccddxznn38+AAMGDODWW29lzpw5rF+/nrlz59bUaIlI+XH3dWY2GzgO6GBmzYParMQBOvHBOyvNrDnQHvg4koDL3KpVqwAN+y8nKtMSrMlKp6qqiiFDhnDyySezfPly1qxZw+LFi2vahOPNfjt37qRjx460aNGCXr161fwSHHXUUTXnqqysVIIlUobMrJOZdQgetwFOAxYDs4GvBrtdDPwjeDw9eE7w+pPqj1UYU6ZMYcqUKVGHISFSmZZgTVaLFi3YuXNnne033ngjf/zjHznggAMYMGAA7s7BBx/MU089RWVlZU3/qmbNmvHRRx/Rvn173nzzzZoMO7HvlfphiZStzsBfgn5ZzYAH3H2mmS0CppnZL4GXgDuC/e8A7jGzZcAnwIgogm4KOnfuHHUIEjKVaQkmWccddxwXXXQRL7zwAvfdd1/N9vPOO49zzz2Xww47jHbt2gGxKf0vueQSBg0aRPPmzXniiSf41a9+xbBhwzAzrrzyStq0aRPVWxGRRuburwBHptj+NrH+WcnbtwDnN0JoTd6oUaOiDkFCpjIFK7aa7732P9g/eXdx1GGISCMysyp3r4w6jjBUVlb6/Pnzow6jbPUY+0jUIeTk3V+fBcD+18yMOJJwLJ8wLOoQik59319qFxMREREpACVZIiISuYkTJzJx4sSow5AQqUxLsE+WiIiUn40bN2beSUqKylRJloiIFIHRo0dHHYKETGWqJEtERIpAfFS4lA+VqfpkiYiIiBSEkiwREYncjBkzmDFjRtRhSIhUpkqyRESkCCxYsIAFCxZEHYaESGWqPlkiIlIEzjrrrKhDkJCpTJVkiYhIERg4cGDUIUjIVKZ5Nhea2VAzW2Jmy8xsbIrXu5vZbDN7ycxeMbMz87meiIiISKlocJIVrGJ/K3AG0A8YaWb9knb7GbFV7o8ktnr9/zb0eiIiUr6WLFnCkiVLog5DQqQyza8m62hgmbu/7e7bgGnAOUn7OLBH8Lg9sCqP64mISJmaNm0a06ZNizoMCZHKNL8+WV2BFQnPVwLHJO1zHfAvM7sK2B0Yksf1RESkTPXp0yfqECRkKtPCd3wfCdzl7hPN7DjgHjM71N2rE3cys1HAKIC2nQ8scEgiIlJsRo4cGXUIEjKVaX7Nhe8D3RKe7xdsS3QZ8ACAuz8HtAY6Jp/I3Se7e6W7V7Zo0SKPkERERESKQz5J1jygt5n1NLOWxDq2T0/a5z3gVAAzO5hYkrU2j2uKiIiIlIQGJ1nuvgO4EngMWExsFOHrZna9mZ0d7DYGuNzMXgamApe4u+cbtIiIlJfx48czfvz4qMOQEKlM8+yT5e6zgFlJ236e8HgRcHw+1xAREREpRZrxXUREIjdu3LioQ5CQqUy1QLSIiIhIQSjJEhERESkAJVkiIhK5qVOnMnXq1KjDkBCpTNUnS0REisDSpUujDkFCpjJVkiUiIkVgxIgRUYcgIVOZKskSEZEi0Ldv36hDkJCpTNUnS0RERKQglGSJiEjkqqqqqKqqijoMCZHKVM2FIiJSBGbOnAnAwIEDI45EwqIyVZIlIiJFYMCAAVGHICFTmSrJEhGRIjB8+PCoQ5CQqUzVJ0tERESkIJRkiYhI5DZs2MCGDRuiDkNCpDJVkiUiIkVg0qRJTJo0KeowJEQqUyVZItKEmFk3M5ttZovM7HUzuzrYvpeZPW5mbwY/9wy2m5ndYmbLzOwVM1NP3gJp27Ytbdu2jToMCZHKNM+O72Y2FPgdUAHc7u4TUuxzAXAd4MDL7n5hPtcUEcnDDmCMuy8ws3ZAlZk9DlwCPOHuE8xsLDAWuAY4A+gd/DsGuC34KSEbM2ZM1CFIyFSmeSRZZlYB3AqcBqwE5pnZdHdflLBPb+Ba4Hh3/9TM9sk3YBGRhnL31cDq4PEGM1sMdAXOAQYHu/0FmEMsyToHuNvdHXjezDqYWefgPCIi9cqnufBoYJm7v+3u24BpxL6QEl0O3OrunwK4+5o8riciEhoz6wEcCbwA7JuQOH0A7Bs87gqsSDhsZbAt+VyjzGy+mc1fu3Zt4YIWkZKST5KVzZdPH6CPmT1rZs8HzYt1JH5Bbd++PY+QREQyM7O2wN+AH7j7Z4mvBbVWnsv53H2yu1e6e2WnTp1CjLTpmDx5MpMnT446DAmRyrTwk5E2J9aXYTCwH/CUmR3m7usSd3L3ycBkgL32PzinLzcRkVyYWQtiCda97v73YPOH8WZAM+sMxGvd3we6JRy+X7BNQrZ6tVpgy43KNL8kK5svn5XAC+6+HXjHzJYSS7rm5XFdEZEGMTMD7gAWu3vi2PLpwMXAhODnPxK2X2lm04h1eF+v/liFcfnll0cdgoRMZZpfkjUP6G1mPYklVyOA5JGDDwMjgTvNrCOx5sO387imiEg+jge+CbxqZguDbT8hllw9YGaXAe8CFwSvzQLOBJYBm4BLGzXaJqRLly5RhyAhU5nmkWS5+w4zuxJ4jNgUDn9299fN7HpgvrtPD1473cwWATuBH7n7x2EELiKSK3d/BrA0L5+aYn8HrihoUCJStvLqk+Xus4j9pZe47ecJjx0YHfwTERFJac6cOQAMHjw40jgkPCpTzfguIiJFYO7cucydOzfqMCREKtPCjy4UERHJaNCgQVGHICFTmSrJEhGRItCUm5TKlcpUzYUiIiIiBaEkS0REIrdq1SpWrVoVdRgSIpWpkiwRESkCU6ZMYcqUKVGHISFSmapPloiIFIHOnTtHHYKETGWqJEtERIrAqFGjog5BQqYyVXOhiIiISEEoyRIREREpACVZIiISuYkTJzJx4sSow5AQqUzVJ0tERIrAxo0bow5BQqYyLeIk62t/eg6A+799XMSRiIhIoY0ePTrqECRkKtMiTrJERKTpaNeuXdQhSMhUpuqTJSIiIlIQSrJERCRyM2bMYMaMGVGHISFSmebZXGhmQ4HfARXA7e4+Ic1+5wEPAke5+/x8rikiIqWlx9hHMu5zaZsFAFz1rP72LxcLFsTKdPjw4RFHEp0GJ1lmVgHcCpwGrATmmdl0d1+UtF874GrghXwCFRGR8vXstv2jDkFCdtZZZ0UdQuTyqck6Gljm7m8DmNk04BxgUdJ+vwB+Dfwoj2uJiEgZW7qzU9QhSMgGDhwYdQiRy6detiuwIuH5ymBbDTMbAHRz93rris1slJnNN7P527dvzyMkERERkeJQsMZvM2sGTALGZNrX3Se7e6W7V7Zo0aJQIYmISJHq1mwd3ZqtizoMCdGSJUtYsmRJ1GFEKp8k632gW8Lz/YJtce2AQ4E5ZrYcOBaYbmaVeVxTRETK0JBWyxjSalnUYUiIpk2bxrRp06IOI1L59MmaB/Q2s57EkqsRwIXxF919PdAx/tzM5gA/1OhCERFJ9t7O9lGHICHr06dP1CFErsFJlrvvMLMrgceITeHwZ3d/3cyuB+a7+/SwghQRkfL2xLbeUYcgIRs5cmTUIUQur3my3H0WMCtp28/T7Ds4n2uJiIiIlBLN+iYiIiJSAEqyREQkcpe2mc+lbdRlt5yMHz+e8ePHRx1GpJRkiYiIiBRAXn2yREREwnDnZs3uU27GjRsXdQiRU02WiIiISAEoyRIREREpACVZIiISuVNbvsmpLd+MOgwJ0dSpU5k6dWrUYURKfbJERCRy3SvWRx2ChGzp0qVRhxA5JVkiIhK5f2/tFXUIErIRI0ZEHULk1FwoIk2Gmf3ZzNaY2WsJ2/Yys8fN7M3g557BdjOzW8xsmZm9YmYDoou8/K2o7sCK6g5RhyEh6tu3L3379o06jEgpyRKRpuQuYGjStrHAE+7eG3gieA5wBtA7+DcKuK2RYhSRMqEkS0SaDHd/CvgkafM5wF+Cx38Bvpyw/W6PeR7oYGadGyXQJqhPxVr6VKyNOgwJUVVVFVVVVVGHESn1yRKRpm5fd18dPP4A2Dd43BVYkbDfymDbapKY2ShitV107969cJGWseNbvgvA0s2dIo5E6tNj7CNZ7xtfJum8v36Q8vXlE4aFElMxU5IlIhJwdzczb8Bxk4HJAJWVlTkfL7BkR8eoQ5CQqUyVZImIfGhmnd19ddAcuCbY/j7QLWG//YJtUgD/2d4j6hAkZCrTPPtkmdlQM1sSjL4Zm+L10Wa2KBiZ84SZ7Z/P9URECmA6cHHw+GLgHwnbLwpGGR4LrE9oVhQRyajBSZaZVQC3EhuB0w8YaWb9knZ7Cah098OBB4EbG3o9EZF8mdlU4Dmgr5mtNLPLgAnAaWb2JjAkeA4wC3gbWAZMAb4XQchNRhu20YZtUYchIVKZ5tdceDSwzN3fBjCzacRG4yyK7+DusxP2fx74Rh7XExHJi7uPTPPSqSn2deCKwkYkcSPavALAnZsrI45EwqIyzS/JSjXy5ph69r8M+GeuF/nan54D4P5vH5froSIiUiI2eYuoQ5CQqUwbqeO7mX0DqAQGpXm9Zvhz284HNkZIIiJSRO7fckTUIUjIVKb5dXzPauSNmQ0Bfgqc7e5bU53I3Se7e6W7V7ZoocxXRERESl8+SdY8oLeZ9TSzlsAIYqNxapjZkcCfiCVYa1KcQ0RERKQsNTjJcvcdwJXAY8Bi4AF3f93Mrjezs4PdfgO0Bf5qZgvNbHqa04mISBM2vNUihrdalHlHKRkq0zz7ZLn7LGLDnBO3/Tzh8ZB8zi8iIk1Dx2abog5BQqYy1YzvIiJSBKZvOTjqECRkKlMlWSIiUgQ+9t2jDkFCpjLNc1kdEREREUlNSZaIiESuf/P36d9c62+XE5WpkiwRESkCR7ZYzZEttP52OVGZqk+WiIgUgZe2d446BAmZylRJloiIFIGFO7pGHYKETGWq5kIRERGRglCSJSIikdvbPmdv+zzqMCREKlMlWSIiUgTObr2Ys1svjjoMCZHKVH2yRESkCHxUvVvUIUjIVKYllmR97U/PAXD/t4+LOBIREQnTjK39og5BQqYyVXOhiIiISEEoyRIREREpACVZIiISua+1fpmvtX456jAkRCrTEuuT1RjU70ugtH4P6ou1sd5HKX1eUpx2s+1RhyAhU5nmmWSZ2VDgd0AFcLu7T0h6vRVwNzAQ+Bj4mrsvz+eakNsXur78S0+8zOIaq+xS/a4U8vcn7HMnni/5M4yS/g+Wph5jH2nU603bfHijXk8KT2WaR5JlZhXArcBpwEpgnplNd/dFCbtdBnzq7r3MbATwa+Br+QScLNsv8FQ3oFQ301THxDX0JqGbTGZN5TMqh/eZ7f+LYkr0pPhtpmXUIUjIVKZg7t6wA82OA65z9y8Fz68FcPf/SdjnsWCf58ysOfAB0MnruWibLn387HF/YdHqz2pt79d5j3q39eu8R832xG25HpPpeg0R1nmKSarPMKzzZVtm+V4neVuq6yVuC0Oq99mQc2f7eSVuy/acmY7J9f9mNjE88J0vVrl7ZcYgS0BlZaXPnz8/6jDy1tg1WeXq3V+fBcD+18yMOJLis3zCsKhDCIWZpf3+yqe5sCuwIuH5SuCYdPu4+w4zWw/sDXyUFOAoYBRA284HAqm/kBuyrb7XE29U2Z47UwKQ6vX6bi4NuVk2JAEN+9ypPsN8kuCGlFlDPod8yr6++HN5z/VdoyHnzjX+dLJ9z/n830x1vuT3KU3TF1ssB+A/23tEGoeER2VaJB3f3X0yMBlifwWWQlNKuubHXJuD6utHk2lbfc2d6eLK59z5vKdC9Duq73pxjdXhO/F6+bznbMussf+PFLpv2muhn1VKTd/msb+9m/INudyoTPNLst4HuiU83y/YlmqflUFzYXtiHeDLVlQJYrbXTbVf4rZMr4cZSyE1dgxhXS9VWSQmW8X++9XQcz/wnYKdXkrEs9v2jzoECZnKNL8kax7Q28x6EkumRgAXJu0zHbgYeA74KvBkff2xSkmmxCSf82TqMNyQhKpcbs7FkMBlUgoxihSbpTs7RR2ChExlmkeSFfSxuhJ4jNgUDn9299fN7HpgvrtPB+4A7jGzZcAnxBIxySCM2qSGXqcURfk+yuUzFBFpbGEPrijGjvR59cly91nArKRtP094vAU4P59rNHW6iYtIU9Ct2ToAVlR3iDQOCY/KtEg6vouEpRyT0nJ8TyLJhrRaBsCdm8tiJg9BZQpKskREpAi8t7N91CFIyFSmSrJERKQIPLGtd9QhSMhUptAs6gBERIqZmQ01syVmtszMxkYdj4iUDtVkiYikkeUarSJSBMIcrRjWSEUlWSIi6R0NLHP3twHMbBpwDhBKkqX1AXe5tE1svcem3Em63KhM1VwoIlKfVGu0do0oFhEpMVZsE7Cb2QZgSdRxhKQjSYthlzC9l+JTLu8DoK+7t4s6iGRm9lVgqLt/K3j+TeAYd78yab+aRe6BvkT7HVYMvxdRxxD19RVDcVy/sWLY391TTm9fjM2FS9y9LOoWzWy+3kvxKZf3Ui7vA2LvJeoY0shmjdZai9xHrRh+L6KOIerrK4biuH4xxKDmQhGR9GrWaDWzlsSWBpsecUwiUiKKsSZLRKQopFujNeKwRKREFGOSVRRV7iHReylO5fJeyuV9QBG/l1RrtBa5Yvgso44h6uuDYiiG60PEMRRdx3cRERGRcqA+WSIiIiIFUFRJVqkuX2Fm3cxstpktMrPXzezqYPteZva4mb0Z/Nwz6lizZWYVZvaSmc0Mnvc0sxeCsrk/6ARc9Mysg5k9aGZvmNliMzuuVMvFzP4r+P16zcymmlnrUikXM/uzma0xs9cStqUsB4u5JXhPr5jZgOgiLy6ZviPNbHTwPfSKmT1hZvsnvHZj8PuzOPh8rZGv/+vgd/c1M/tartfOIYbvmNmrZrbQzJ4xs34Jr10bHLfEzL7U2DGY2d7BvWKjmf0hguufZmZVwWtVZnZKBDEcHWxbaGYvm9m5jXn9hNe7B+Xww4ZcP2vuXhT/iHUqfQs4AGgJvAz0izquLGPvDAwIHrcDlgL9gBuBscH2scCvo441h/c0GrgPmBk8fwAYETz+I/DdqGPM8n38BfhW8Lgl0KEUy4XYBJjvAG0SyuOSUikX4CRgAPBawraU5QCcCfwTMOBY4IWo4y+Gf9l8RwInA7sFj78L3B88/iLwbHCOCuA5YHAjXn8Y8DixfsC7Exu1uUeBPoM9Eh6fDTwaPO4X7N8K6Bmcp6KRY9gdOAH4DvCHAv4epLv+kUCX4PGhwPsRxLAb0Dx43BlYE3/eGNdP2PYg8Ffghw35DLL9V0w1WTXLV7j7NiC+fEXRc/fV7r4geLwBWEzspngOsZs8wc8vRxJgjsxsP2JfircHzw04hdgvJZTIezGz9sRu7ncAuPs2d19HiZYLsRtUGzNrTuyLajUlUi7u/hTwSdLmdOVwDnC3xzwPdDCzzo0SaHHL+B3p7rPdfVPw9Hli83oBONCa2A2pFdAC+LARr98PeMrdd7j758ArwNAcr59tDJ8lPN2d2Hsn2G+au29193eAZcH5Gi0Gd//c3Z8BtjTgumFc/yV3XxVsf53Y90mrRo5hk7vvCLa3Zlf5NMr1Aczsy8T+aC34SOFiSrLKYvkKM+tB7K+FF4B93X118NIHwL5RxZWjm4EfA9XB872BdQn/MUqlbHoCa4E7Ldb0ebuZ7U4Jlou7vw/8FniPWHK1HqiiNMslLl05lMV3QQHk+rlcRqxGEHd/DphN7HdnNfCYuy9urOsTq2kYama7mVlHYjVe3dIemWcMZnaFmb1FrLb0+w2MvxAxhCGs658HLHD3rY0dg5kdY2avA68C30n4Div49c2sLXANMD7HazZIMSVZJS8ovL8BP0jKovFY/WTRD+U0s7OANe5eFXUsIWhOrInqNnc/EvicWLNUjRIqlz2J/aXWE+hC7C+zhtQEFKVSKYdSYWbfACqB3wTPewEHE6tZ6gqcYmYnNtb13f1fxKbB+A8wlVhz5c5CXd/db3X3A4ndTH9WqOsUcwz1Xd/MDgF+DXw7ihjc/QV3PwQ4CrjWzFo34vWvA25y942FuGayYkqyslq+oliZWQtiCda97v73YPOH8WaO4OeaqOLLwfHA2Wa2nFgV7CnA74g12cTnVSuVslkJrHT3F4LnDxJLukqxXIYA77j7WnffDvydWFmVYrnEpSuHkv4uKKCsPhczGwL8FDg7oZbiXOB5d98Y3Fz+CRzXiNfH3W9w9/7ufhqx/nZLc7x+1jEkmMauZuiwfq/yiSEMeV0/6A7yEHCRu78VRQxxQW3qRmL9wxrr+scANwb3uB8AP7HYhMMFUUxJVskuXxH0WboDWOzukxJemg5cHDy+GPhHY8eWK3e/1t33c/cexMrgSXf/OrGmhq8Gu5XKe/kAWGFmfYNNpwKLKMFyIdZMeGzQ3GLsei8lVy4J0pXDdOAiizkWWJ/QrNiUZfyONLMjgT8RS3AS/3h4DxhkZs2DPwgHEes72ijXt9ho5b2Dx4cDhwP/yvH62cbQO+HpMODN4PF0YISZtTKznkBv4MVGjiEMDb6+mXUAHiE24OTZiGLoGf/D0GKjTw8CljfW9d39RHfvEdzjbgZ+5e4NHumZURi958P6R2xU0VJiowZ+GnU8OcR9ArGmjleAhcG/M4n1ZXoiKNx/A3tFHWuO72swu0YXHkDsC2kZsREZraKOL8v30B+YH5TNw8CepVouxPoQvAG8BtxDrANzSZQLsSai1cB2YjWMl6UrB2K1HLcG3wOvApVRx18s/1J9RwLXE0tqCD7HDxO+h6YH2yuIJT+LiSXnkxr5+q2D6y4i1iG+fwE/g98R69C8kNgfIYckHPvT4LglwBkRxbCc2CCQjcH/hZxH0Tf0+sSazD5PKJ+FwD6N+RkA30zYvgD4cmOXQcI5rqPAows147uIiIhIARRTc6GIiIhI2VCSJSIiIlIASrJERERECkBJloiIiEgBKMkSERERKQAlWSIiIiIFoCRLREREpACUZImIiIgUwP8H2iqLGj0veZUAAAAASUVORK5CYII=","text/plain":["
"]},"metadata":{"needs_background":"light"},"output_type":"display_data"}],"source":["# Plot posterior distributions and theoretical RT distributions\n","model.plot_posteriors()"]},{"cell_type":"code","execution_count":10,"metadata":{},"outputs":[{"name":"stderr","output_type":"stream","text":["d:\\Miniconda3\\envs\\hddm39\\lib\\site-packages\\kabuki-0.6.5-py3.9.egg\\kabuki\\analyze.py:589: UserWarning: Too many nodes. Consider increasing number of columns.\n"]},{"data":{"image/png":"iVBORw0KGgoAAAANSUhEUgAAAeMAAAGQCAYAAACdwQhXAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/NK7nSAAAACXBIWXMAAAsTAAALEwEAmpwYAAAueklEQVR4nO3deZhcVZ3/8c+3uxOyJ0CagWzdARIgLIkYAoyPgIoCiuCCCA6OO6OAgz9xZtCZn86DwzOLo/5kBBUVFUUZRFF0UEZFBkHiJBEBISSEpDsLgWxkT3o9vz++fa1Kp5fq7rtU93m/nqeeU7fqdt3TS/WnzrnnnmMhBAEAgOLUFF0BAABiRxgDAFAwwhgAgIIRxgAAFIwwBgCgYIQxAAAFI4wBACgYYQwAQMEIYwAACkYYA8OAmU0zsx+Y2WYzW2Nmf931+CIze9TMtpvZRjP7opmN7nrOzOzzZrbJzHaa2ZNmdpKZnWZmL5pZbdnrv8XMHi/q+wNiRxgDVc7MaiT9RNLjkqZLeo2kj5jZeZI6JP0fSVMlndn13FVdX/o6SWdJmitpsqRLJW0NISyRtLXr+cQ7Jd2e+TcDoEeEMVD9TpNUH0K4IYTQGkJYLemrki4LISwLISwOIbSHEJokfUXS2V1f1yZpoqTjJVkIYXkIYWPXc9+SdIUkmdlhks6T9N38viUA5eqKrgCAfjVImmZm28seq5X0GzObK+lzkhZKGid/Ty+TpBDCA2b2RUk3S2owsx9K+lgIYaek70habmbj5S3m35QFNYCc0TIGqt86SWtCCFPKbhNDCK+X9CVJz0iaE0KYJOkTkiz5whDCTSGEl0uaJ++u/puuxzdIelTSW+Rd1N/O9TsCcADCGKh+/ytpl5n9nZmNNbPaZCCWvBt6p6TdZna8pA8lX9Q1UOt0MxslaY+k/ZI6y173dkl/K+lkST/M65sBcDDCGKhyIYQOSRdKWiBpjaQtkr4mH5T1MUnvkLRLfh75P8u+dFLXYy9JapYP2vpM2fP3yLvA7wkh7M30mwDQJwshFF0HAAUxs+ck/VUI4ZdF1wWIGS1jIFJm9lZJQdIDRdcFiB2jqYEImdmD8kFd7wwhdPazO4CM0U0NAEDB6KYGAKBghDEAAAUjjAEAKBhhDABAwQhjAAAKRhgDAFAwwhgAgIIRxgAAFIwwBgCgYIQxAAAFI4wBACgYYQwAQMEIYwAACkYYAwBQMMIYAICCEcYAABSMMAYAoGCEMQAABSOMAQAoGGEMAEDB6oo68NSpU0NjY2NRhwcAIHfLli3bEkKo7/54YWHc2NiopUuXFnV4AAByZ2bNPT1ONzUAAAUjjAEAKBhhDABAwQhjAAAKRhgDAFAwwhgAgIIRxgAAFIwwBgCgYIQxAAAFI4wBACgYYQwAQMEIYwAACkYYAwBQMMIYAICCEcYA1NgomfmNZcaB/BW2njGA6tHcLIXg982KrQsQI1rGAAAUjDAGAKBghDEAAAUjjAEAKBhhDABAwQhjAAAKRhgDAFAwwhgAgIIRxgAAFIwwBgCgYIQxAAAFI4wBACgYYQwAQMEIYwAACkYYAwBQMMIYAICCEcYAABSs3zA2s9vMbJOZ/bGX5//CzJ4wsyfN7LdmNj/9agIAMHJV0jL+pqTz+3h+jaSzQwgnS/q0pFtTqBcAANGo62+HEMJDZtbYx/O/LdtcLGlGCvUCACAaaZ8zfp+kn/X2pJldaWZLzWzp5s2bUz40AADDU2phbGavkofx3/W2Twjh1hDCwhDCwvr6+rQODQDAsNZvN3UlzOwUSV+TdEEIYWsarwkAQCyG3DI2s1mSfijpnSGElUOvEgAAcem3ZWxm35N0jqSpZrZe0qckjZKkEMKXJX1S0uGSbjEzSWoPISzMqsIAAIw0lYymvryf598v6f2p1QgAgMgwAxcAAAUjjAEAKBhhDABAwQhjAAAKRhgDAFAwwhgAgIIRxgAAFIwwBgCgYIQxAAAFI4wBACgYYQwAQMEIYwAACkYYAwBQMMIYAICCEcYAABSMMAYAoGCEMQAABSOMAQAoGGEMRC6EomsAgDAGInfttV4+/3yx9QBiRhgDkVu/3stXv1q67bZi6wLEijAGIrdvn5ejR0s33uj329uLqw8QI8IYiFxLi5ejR0tTpvj9F18srDpAlAhjIHJJy1iSzLwkjIF8EcZA5JKWcbkXXsi/HkDMCGMgcq2tBz+2cWP+9QBiRhgDkeupZdzUlHs1gKgRxkDEOjultraDH29uzr8uQMzqiq4AgOK8+KK0a5ffb24uBXNy7TGAfBDGQMRuu03ats3vb99emhqT0dRAvuimBiL20kul+/PnS/X1fn/vXr8ByAdhDERs9+7StcWST/wh+WO0joH8EMZAxPbs6TmMOzoIYyBPhDEQsT17pJqy/wJJGLe0MPEHkCfCGIjY3r09t4xbWpj4A8gTYQxEbN++A1vGtbVednRIa9YUUycgRoQxELF9+w5sGSc6Opj4A8gT1xkDEdu/vxTGIfi1xpKvZ7xhQ2HVAqJDyxiIWHnLePt26ayz/H5bm4+mTiYBAZAtwhiIWEuLd0lL0lVXSV//ut8PwVdz2rmzuLoBMSGMgYi1tJRav9ddd+BgLolrjYG89BvGZnabmW0ysz/28ryZ2U1mtsrMnjCzU9OvJoAstLT0PIBL8vPGXGsM5KOSlvE3JZ3fx/MXSJrTdbtS0peGXi0AeWhtPbg1nGDiDyA//YZxCOEhSdv62OViSbcHt1jSFDM7Kq0KAshOW1vPLeOaGg9qRlQD+UjjnPF0SevKttd3PXYQM7vSzJaa2dLNmzencGgAgxWCd0X31DKuq2PiDyBPuQ7gCiHcGkJYGEJYWJ+s1QagEPv3e9lTy3jcOA/qtWvzrRMQqzTCeIOkmWXbM7oeA1DF9u3zsqeW8dSp3oX9/PP51gmIVRphfK+kv+waVX2GpB0hBKaYB6rc3r1e9hTGM2d6N/amTVJnZ771AmJUyaVN35P0qKTjzGy9mb3PzD5oZh/s2uU+SaslrZL0VUlXZVZbAKnpq2V8/PFednZKW7fmVycgVv3OTR1CuLyf54Okq1OrEYBc9BXG8+Z52dHhE38wxAPIFjNwAZHqK4znz/eyvZ1ZuIA8EMZApJIwTtYwLnfSST7Kmok/gHwQxkCkkjAePfrg56ZMkUaN8ok/1q07+HkA6SKMgUglYTxhwsHPmfnj7e3S6tX51guIEWEMRCoJ44kTe36+vt4HcNEyBrJHGAOR2rPHy97CuLHRL23ayKwBQOYIYyBSO3d6OX58z88fd5yXW7Yw8QeQNcIYiNTu3V72FsYnnOBlZ6e0ra912wAMGWEMRGrXLi8nTer5+QULvOzslFhkDcgWYQxEKjln3FvLOAnjtjbCGMgaYQxEas8ev4Rp3Lienx8zxq9B3r+fMAayRhgDkdq718O4t5ax5Ncat7UxJSaQNcIYiFSyhGJvLWPJ1zXu6JDWrs2nTkCsCGMgUknLeOzY3veZNcsHcBHGQLYIYyBSSct4zJje92ls9HL9+syrA0SNMAYitX+/t4wPOaT3febM8ZJZuIBsEcZApCoJ42Tij507fQUnANkgjIFItbR42VcYn3iilyH4tJgAskEYA5Fqaem/ZTxzZmlfwhjIDmEMRKq11cO4rwFco0b5xB9tbdKmTfnVDYgNYQxEqLFR2r7dW7ynny41NPS+76RJTIkJZI0wBiLU3CzV1fmEH8uXS01Nve9bX8+6xkDWCGMgUu3t/Z8zlqTp030AFxN/ANkhjIGI1dT0H8YzZ3oY99V6BjA0hDEQsZqavgdwSdIxx3i5bl329QFiRRgDEaukm/q447xkABeQHcIYiFhtbf9hPG+el3v3luazBpAuwhiImJmPqu7LrFlecnkTkB3CGIhYbW3/+0yY4IHNxB9AdghjIGI1Ff4HmDjRL4WiZQxkgzAGIjZ6dGX7TZ0qdXQwPzWQFcIYiNj48ZXtN22aX2vM5U1ANghjIGITJ1a234wZTPwBZIkwBiI2YUJl+x19tJdr1mRXFyBmhDEQsXHjKttv7lwvn38+u7oAMevnCkMAI1kl54wbG32VJ8lXeGpspLsaSBstYyBilZwzbm4uXV88eXIpmAGkhzAGIlbpaOqpU/2a5La2bOsDxIowBiJlVnkYm/lgr/b2bOsExIowBiJlVvkALkk6/HCf+ANA+ioKYzM738xWmNkqM7u+h+dnmdmvzewxM3vCzF6fflUBpK3SlrEkHXmk1NmZXV2AmPUbxmZWK+lmSRdImifpcjOb1223f5B0VwjhZZIuk3RL2hUFkK6BtoxnzvSJPwCkr5KW8SJJq0IIq0MIrZLulHRxt32CpEld9ydL4mpEYBjoby3jcrNnZ1cPIHaVhPF0SeUz0q7veqzcP0q6wszWS7pP0od7eiEzu9LMlprZ0s0s/wIUykwaM6by/efMya4uQOzSGsB1uaRvhhBmSHq9pG+b2UGvHUK4NYSwMISwsL6+PqVDAxisgbSMjz8+u3oAsaskjDdImlm2PaPrsXLvk3SXJIUQHpU0RtLUNCoIIBtmAwvjhobS/T170q8PELNKwniJpDlmNtvMRssHaN3bbZ+1kl4jSWZ2gjyM6YcGqthAw/ioo/xrJOnFF7OpExCrfsM4hNAu6RpJ90taLh81/ZSZ3WBmF3Xtdp2kD5jZ45K+J+ndITDuEqhmAw3j2trSKk8vvJBNnYBYVbRQRAjhPvnArPLHPll2/2lJr0i3agCyNNABXJJUXy/t2kUYA2ljBi4gUr21jBsa/LnkVn6ueNo0LzduzKeOQCwIYyAyyQmkmpqew7ipyfdJbuXLJSbB/NxzWdcSiAthDESmpcXL3sK4L3Pnevnss+nWCYgdYQxEZt8+Lwc6gEuSTjzRS9Y0BtJFGAORScK4pmbgA7iOO87LF15gnmogTYQxEJnyMB5oy3jWLC9bWqTt21OtFhA1whiITHkYjx49sK+d1LUcTFsbE38AaSKMgciUh3Eyo9ZAtbdzrTGQJsIYiEwSxrW1g3+Njg5axkCaCGMgMkkY11U0/17PQpA2dF8uBsCgEcZAZPbu9XL8+MG/RgjSM8+kUx8AhDEQnSSMk0UfBmvlyqHXBYAjjIHI7N7t5VBaxpK0du3Q6wLAEcZAZHbt8nKoYbxjh9TZOfT6ACCMgegkYTxu3OBfw0xqbZW2bEmnTkDsCGMgMnv2eDmUc8YTJ/rEH1xrDKSDMAYik8Y54yOO8GuNCWMgHYQxEJmkZTyUMJ4xw88XM/EHkA7CGIhMGtcZz57tYdzUlEqVgOgRxkBkkpbxUAZwzZ3r5dNPD70+AAhjIDpptIxPPNHL554ben0AEMZAdPbv93LMmMG/xuzZXjLxB5AOwhiITLJQxCGHDP41Zs3ysqXFrzcGMDSEMRCZlhYvh9IynjRJGj3ag3jTpnTqBcSMMAYik4TxUFrGknT44VJ7O9caA2kgjIHIpBXG06b5xB8bNw69TkDsCGMgMsk53qGGcUODX2u8bt3Q6wTEjjAGIpNWGB97rBSC9OSTQ68TEDvCGIhMEsZDGcAlSSed5OUf/zi01wFAGANRCcFXW5KG3jI+4QQvn312aK8DQKorugIA8lN+TfBgw7ihwdczTrz4Ymm7oYH5qoHBoGUMRCSZ8EMafBg3NXkLOwR/jbFjpZUrfbu5OZVqAtEhjIGIpBHG5Y44wru9168f+msBMSOMgYiUh/FQB3BJPi1mZ6e0YcPQXwuIGWEMRCTtlvGcOR7GK1YM/bWAmBHGQETKw7i2duivN3++l48/PvTXAmJGGAMRSZZPTMuCBV7SMgaGhjAGIpL2codz5ni5ZYt3VwMYHMIYiEjaYXzUUd7d3dLC6k3AUBDGQETSDuOaGl9Ksa2NEdXAUFQUxmZ2vpmtMLNVZnZ9L/tcamZPm9lTZvbddKsJIA3J8olpmjnTl1IkjIHB6zeMzaxW0s2SLpA0T9LlZjav2z5zJH1c0itCCCdK+kj6VQUwVGm3jCXpmGM8jNesSf+1gVhU0jJeJGlVCGF1CKFV0p2SLu62zwck3RxCeEmSQgib0q0mgDRkEcbJ6k1c3gQMXiVhPF1S+fLh67seKzdX0lwze8TMFpvZ+WlVEEB6sgjjl73MS9Y1BgYvrVWb6iTNkXSOpBmSHjKzk0MI28t3MrMrJV0pSbNmzUrp0AAqlUUYz53r5bp1fe8HoHeVtIw3SJpZtj2j67Fy6yXdG0JoCyGskbRSHs4HCCHcGkJYGEJYWF9fP9g6AxikLAZwNTb6EoppTygCxKSSMF4iaY6ZzTaz0ZIuk3Rvt31+JG8Vy8ymyrutV6dXTQBpyKJlPHq0NGlSNq8NxKLfMA4htEu6RtL9kpZLuiuE8JSZ3WBmF3Xtdr+krWb2tKRfS/qbEMLWrCoNYHCyCswZM3xENYDBqeiccQjhPkn3dXvsk2X3g6SPdt0AVKksuqkl6eijpaefzua1gRgwAxcQkf37/fxu2k44QQoh/dcFYkEYAxHZty+bMD711PRfE4gJYQxEJKtu6uOOy+Z1gVgQxkBEsuqmPuaY0v22tvRfHxjpCGMgIi0t2YTxxInSuHF+nwUjgIEjjIGIZNUylnxtY0maPduPYeYTggDoH2EMRCTLiTlmz/b1jb/6VR9ZHYLU3Jzd8YCRhDAGIpJVN7UknXKK1Nkp/f732bw+MJIRxkBEWluzC+PTT/dy2bJsXh8YyQhjICJZdlMvWODl6tXeQgZQOcIYiEiW3dRHH+3njPfvl154IZtjACMVYQxEpK0tuzCuq5Pq6z3wm5qyOQYwUhHGQESyPGcs+eQfHR3SmjXZHQMYiQhjICJZtowl6aSTGFENDAZhDEQk66kqzzjDyyVLsj0OMNIQxkBEsm4ZL1rk5YoVLKkIDARhDEQk6zCeM8dff98+adu27I4DjDSEMRCR9vZsw3j0aOmww3xENYO4gMoRxkBEsg5jya83bm8njIGBIIyBSHR0+EjnrMM4GVH95JPZHgcYSQhjIBJZToVZLpmj+ne/y+d4wEhAGAORSMK4JuN3fTKi+oknsj0OMJIQxkAkkjDOupv6+OO93Ls32+MAIwlhDEQir5bx2LHSlCk+ohpAZQhjIBJJOGbdMpak2bN9RDWAyhDGQCTyahlL0okn+ujtKVM8/JNbY2P2xwaGI8IYiERe54wl6bTTvDzrLJ8WM7k1N2d/bGA4IoyBSOTZMk4ub3rsseyPBYwEhDEQiTzDeN48L3fs8BuAvhHGQCTyHMA1caI0aZIfc8WK7I8HDHeEMRCJPFvGkq/g1NYmLV+ez/GA4YwwBiKRhPEhh+RzvAULfI7qRx7J53jAcEYYA5FIwnjcuHyOd845Xi5enM/xgOGMMAYikYTx+PH5HO9Vr/Jy3Tppz558jgkMV4QxEIlkAFdeLePp06UxY6R9+6SVK/M5JjBcEcZAJPJuGUvS0Uf7IK5nnvHthgZm5AJ6QhgDkUjCeNKk/I556qk+iCs5b9zUxIxcQE8IYyASRYRxMoiLEdVA3whjIBLJOeM8w/g1r/Fy9WqWVAT6QhgDkSiiZdzQII0e7YO4Vq3K77jAcEMYA5FIwnjChPyOaeaBXD6IC8DBKgpjMzvfzFaY2Sozu76P/d5qZsHMFqZXRQBpaG31cBw7Nt/jLljgaxsvWZLvcYHhpN8wNrNaSTdLukDSPEmXm9m8HvabKOlaSb9Lu5IAhi4J4zwvbZJKg7geeijf4wLDSSUt40WSVoUQVocQWiXdKeniHvb7tKR/lbQ/xfoBSMn+/cW0jM8918sVK6T29nyPDQwXlYTxdEnryrbXdz32J2Z2qqSZIYT/6uuFzOxKM1tqZks3b9484MoCGLyWFg/j0aPzPe6xx0p1dT6Ia/XqfI8NDBdDHsBlZjWSPifpuv72DSHcGkJYGEJYWF9fP9RDAxiA/V19VqNG5Xvcmhpp5kzvJmcQF9CzSsJ4g6SZZdszuh5LTJR0kqQHzaxJ0hmS7mUQF1BdkpZx3mEsSfPn+yCuZcvyPzYwHFQSxkskzTGz2WY2WtJlku5Nngwh7AghTA0hNIYQGiUtlnRRCGFpJjUGMChFdVNL0llnefmLX+R/bGA46DeMQwjtkq6RdL+k5ZLuCiE8ZWY3mNlFWVcQQDqSAVxFtIxf+1ovV6yQ9u7N//hAtaurZKcQwn2S7uv22Cd72fecoVcLQNqK7KaeN8+Pu2eP9OST0umn518HoJoxAxcQieQ64yK6qWtqfDnF1lbOGwM9IYyBSCRhXETLWJLOPNOXTbz//mKOD1QzwhiIRNFh/KY3ebl0KZN/AN0RxkAkiuymlqTzzvPj79wprVxZTB2AakUYA5EoumU8Zox05JE+E9djjxVTB6BaEcZAJNravCwqjCUfRd3RIf3qV8XVAahGhDEQibY2H9VcVDe1JL3+9V4+9JAP5gLgCGMgEkV3U0vSW9/q5ebN0rp1fe8LxIQwBiLR1uZhXFPgu/6ww6QpU3wWrj/8obh6ANWGMAYi0d7uYVy0BQu8Lr/5Td/7NTZ6fZNbY2MOlQMKQhgDEejs9IFT1eB1r/Oyv0Ujmpv9vHJya27Ovm5AUQhjIALJSOoiu6gTl17qJeEKlFTBWxNA1lpaiq5ByTHHSGPHsnoTUI4wBiLQ2uplNbSMJemEE0qtdQCEMRCFl73My02bfDBUQ0Ox9Xn1q0vXGXO9MUAYA1FYv97LI4/08GtqKrQ6uuKK0n3OHQOEMRCVari0SZLmz5fGjfP7jzxSbF2AakAYAxGplnPGknTyyV7ee2+x9QCqQRW9NQFkrZrC+JJLvHz44eoa7Q0UoYremgCyVi3d1JL03vd6uXu3tGxZsXUBikYYAxGpppbxYYd5uXu39OCDhVYFKFwVvTUBZK2awjjR2Sndc0/RtQCKVYVvTQBZGTOm6Br0rKlJev75omsBFIcwBiKSXE5UTQ45RNq1S/rtb4uuCVAcwhiISDWG8ckn+2jqn/yk7/0aGlhSESMXYQxEZMKEomtwsLe8xcsHHuh7vuqmJpZUxMhFGAMRmTix6Boc7P3v95burl3SkiVF1wYoBmEMRKQaW8b19dIRR/glTj/6UdG1AYpBGAMRqcYwlqTzzpM6OqQf/KC03CMQE8IYiEi1hvHVV3u5fbu0eHGhVQEKQRgDEanGc8aSdNpp0qRJ0o4dTACCOBHGQESqNYzNSl3VP/4xXdWID2EMRMJMGju26Fr07rrrvNy+nQlAEB/CGIiEWXVO+pFYtEg69FBp507p7ruLrg2QL8IYiES1h7GZdOGF3lX9058WXRsgX4QxEAkzafz4omvRt6SreseOYusB5I0wBiJR7eeMJWn+fJ8EZOfOomsC5IswBiJR7d3UiTe/2dc4lghlxIMwBiJhJo0eXXQt+vexj3ldJenee4utC5AXwhiIhJk0alTRtehdY6PXce5cX5VJkr70pdJ9YCSrKIzN7HwzW2Fmq8zs+h6e/6iZPW1mT5jZr8ysIf2qAhiKam8ZNzeXlkf81Kf8sWeflZYtK7ZeQB76DWMzq5V0s6QLJM2TdLmZzeu222OSFoYQTpF0t6R/S7uiAIam2lvG5a66yj847NghffObRdcGyF4lLeNFklaFEFaHEFol3Snp4vIdQgi/DiHs7dpcLGlGutUEMFTV3jIud8QR0umn+7SYP/6xtG1b0TUCslVJGE+XtK5se33XY715n6Sf9fSEmV1pZkvNbOnmzZsrryWAIRtOLWNJuuEGr/P27dIPf1h0bYBspTqAy8yukLRQ0md6ej6EcGsIYWEIYWF9fX2ahwbQj+EWxmefLR15pLRnj/TlL5cudwJGokrCeIOkmWXbM7oeO4CZnSvp7yVdFEJoSad6ANJSUzN8uqkl//Bw7bU+oKupiXWOMbJVEsZLJM0xs9lmNlrSZZIOuPrPzF4m6SvyIN6UfjUBDJWZB/JwctVVPmvYjh3eOgZGqn7fmiGEdknXSLpf0nJJd4UQnjKzG8zsoq7dPiNpgqTvm9kfzIxL9YEqY1aaTGO4mDjR1zlub5d++Utp+fKiawRkw0JBV9QvXLgwLF26tJBjA7Exkw47TNq6teiaHMisNKlH+f1yf/yjtGCBVFcnvetd0le+0vf+QDUzs2UhhIXdHx9mnVYABqsaW8UNDaUWe0MvUwWddJJ04olSS4svrbhq1cFf29iYW5WBTBDGQCSqMYybmkqzbjU19b7fjTdKtbV+vfFNNx38tc3NOVQWyBBhDIxw5d3Aw9UFF3hLeP9+v+aY8MVIQxgDI1xbm5fDOYxra6XPftbLrVul//iPomsEpIswBka41lYvh3MYS9JFF/m54f37pTvvlDYcNNsBMHwRxsAIl4TxcLvGuLuamlLreNs26d/KlqMpH8zFgC4MR8P87QmgPy1d8+EN95axJL3xjR60+/ZJ3/++9Nhj/nj5YC4GdGE4IoyBEW6kdFNL3jr+/Of9muOtW6Xrr2fOaowMhDEwwo2kMJakN7xBmjfPv69ly1jRCSMDYQwMUWPjgecrJ0+W3v1u6U1vkt7znuJniRppYVxTI33xi9K4cdJLL0mf+pS0c2fRtQKGhjAGhqi52QP3c5+TZs/2YHj0UWnlSunhh0szRhUlOWc83AdwlXvlK310dWentHYtlzph+BtBb0+gON/+ts8MNWaMbx9yiJ/X7OiQHnmk2LqNtJZx4nOfkw4/XNq9W/rSl/zDDzBcEcZACj75SWnLltKqQk8+6bctW6Sf/7zYuo2US5u6O+oo6YYb/EPP5s3Shz5U+l6B4WaEvT2BfP3v/3q5aZO30KZN8+2GBmnSJGnPHh9ktG9fcXUcqWEsSR/4wIGDuT772aJrBAzOCHx7AunqPkArmVBi7VofqCVJe/f6+eKjjvLtqVOl+no/p7lvnwdFUZIwPuSQ4uqQlVGjpNtu8w8+O3b4uePkA1Klevv9AnkijIF+JAO0yieU2L1besc7pNWrfZ+jj/b1gtvbfbuzU5o40f+579olPfhgYdX/0wCuCROKq0OWXv5ybyGPGuU9FH/1VwP7+p5+v0DeCGNgEK65xlu7Savz0EN9FHXSHb1rl7R9uzR2rD9W5HnjpI7jxhVXh6x9+tPSggX+IWjFCn+s6EvKgIEgjIFB+P73fcGCpEtz+3Yf2ftf/+Xbzz7rg7kaGnzVpLVrpeefL6auSRiPH1/M8fMwdqx0xx1+aiD5QPSNbxRbJ2AgCGNgAH7yEy/37pVmzJCmTPHtk06SfvpT6dhjS/uOGSP95V+W9n/00Vyr+icxtIwlac4cP2ecfJ//8A/SQw8VWyegUoQxUKFHH/UZtSTpz/7MW2E7dvj2f/6nt4ylA1cQ+vjH/bGtW6VLLilmcFAMLePE297m5/IlaeNG6eyzex6UVT5oq6Eh71oCByOMgQo8/bT05jd7qEo+anrHDunSS327fKRy9xWEZs3yx+fMKWZwUDKAa+LE/I+dNzOfDOSMM3ypxbo6P5fc/edePmirqamImgIHIoyBCrzuddKLL5a6pZMgvvHG/r/2kku83LUrs+r1KWkZxxDGkn+fd98tzZ3rM6A9/bQ/zvzVqGaEMdCHF1/0csMGXwAi6dJ8+9s9iCuZSON97/NWWtFhPFIvberJ9Om+mtPMmaXv/+1vJ5BRvQhjoBfr1klnnun3kyBOArXSIJakE07w88l792ZTz/7EGMaSdPzxfi7/yCN9+9e/9nPKBDKqEWGMKAx0lqVVq6TTT5fWrPHtmTN9oo8Pfci3BzK1pJl03nml617zvv41pgFc3Z1xhvTVr/r91laffCU5bQBUE8IYURjILEt/+IN02mk+GjcZIb13r18q87GPDe74V11Vur9p0+BeY7CSAVwxhrEkXXihl9Om+TXfyWxo69YVViXgIIQxUOaee6RXvMIn8Zg2zeeYlnyEbnJZ02AsWuQTU0g+IUiekpZxcvxY3XWX93B0dPj22WdLS5YUWycgQRgD8mkUr73WR0jv2+fd2OPGlS5Zuvjiob1+TY2fw5SkZ54Z2msNVMzd1OX+/M990pZkYpY1a6QLLvDZ1ICiEcaI3vbt3i19001+fnfOHB/9fNxx0s9+lt5xzj3Xy7xnhaJlXHLKKaXf6fjxft34e94jXX11caPdAYkwRuR+9CMfJf373/t2W5u0cqUvVv+DH5TWJy5XPsPWQGZwuugiLwe6xN9QJeeMR/p0mJU6+mgv3/teX2lrzx7pK1/x1Z+WLh3Ya7H8ItJCGCNa55wjveUtpRbR0UdLJ5/sc0zv3Nn7+r/dZ9iqdAan007zcuPGUms1D7HMTT1QX/iCdPPN/mGqttbP5b/qVf5cpZehsfwi0kIYIyohSJ/9rN//n//x2ZqOOca3zz1XeuAB6Q1vyObYSbjv31+6ZCoPhHHPzKTLLpP++7/9d3/ooX75muSnKO65x8cSAHkgjBGNO+7wCSCSy5MaGnyxh0mTfPvLXy6Nns5S0hWeF84Z923uXB/YddNNpS7s9et9MN+iRdLjjxdbP8SBMMaId/fdXl5xhbRlS2lGpnHjpI9+VHr4Yd82y6c+IeQ7iCs5ZzxmTH7HHG5qavzv45FHfHvaNH9s2TI/vXDmmfmf60dcCGNkrnyQS38DXPoaENPfYJnuz0+Z4i3ft73Nnz/iCF9BKWkJP/SQT8bRU4uxfJBWmkvsHXWUl//+7/kN+Nm/38tRo7I/1nCXfFB74AFfivGII7wnY/Fin5HNzJfPHGz39UDeC4gLYYzMlQ9y6W+AS18DYvobLNPc7AH7xjdKo0f7yko7dvg/VMm7oK++utQS7qtLunyQVppL7DU3e4tr8uT8BvwkLeO6uuyPNVIcd5z0jW9Iv/iFb0+bVupZ2LSp9Lc0UAN5LyAuvD0xrIUgPfaYdMstvn3WWV6OG+fnSmfN8tumTd7NWPTEF6NG+YCxtWulbdvyOWYSxnl1w48kp5zi5eLF0re/Ld12m/Tcc/4hL/mbmzPHW9Ef/nBx9cTwR8sYw862bdKdd/r9SZP8+tCvf923Dz3Uw272bN/+8Y+lX/3K7xcdxIkzzvAPCitW5HO8JIwxeDNnSp/4hPTEE7596aWlUw7PPSfdcEOpB+YDH5B+85v8FwTB8EYYo+o9+6x0++1+f/p0X7zh8st9u7XVAzgJ32uukb7zHW8tS9KJJ1Zfi/DVr/Z/1D/6UT7Hy/Oa5pEuuTzse98rBfNb3+rBnCxR+bWveQ/NmDHS/PnenX3//XwoQt8I4xQUNQvPUI6b5td2vw3ltY48Urr1Vp8daf5832fuXOld7/L7mzb5P8Tp0/0caGur9NJLft1uQ4O3UM44w7uD+xqENdhZtNKQTP5x1135HI8QGJhK/zaSMQff/75/YEw+XJ16qj9n5oF9yy3S+ed7ONfUeFB/9KO+b1NTaTBYf++rvP7HxD6rWFGD7CwU1JeycOHCsHSgc89VKbMDu6S6b1fjcdP82kpfe/dun2Tj/vt9+bqmJumf/kmaN8+3y+cGNvN/XDU1/k9s3Dhv/S5a5JeZnHyyh/RwHCHc0eEjuCdO9C73rP9WJk/2GcVi7jZN8z1a/rW9ve7Wrd4789rX+lrWTzzhv4OWFv/9l39NTY2P0N640S+vmjfPbzNn+ofO+vqD18/O8n9MUf/PqkVfv990Xt+WhRAWdn+8ogFcZna+pC9IqpX0tRDCv3R7/hBJt0t6uaStkt4eQmgaaqVRvXbs8PDcscNbptu3e5kMSrrySun556UXXvDtMWNKLbTzzjvwtZ591qcjnDDBQ+rww33gzLx50kkn+QCZY48dOTNI1db695bXUoptbfkcByWHH15aGOTnP/fWb3Oz/86fe84HhN1+u++3f7+Ht+SnWLpLRt8ffrifl07OVf/Lv/hjhx/up2omTy7dJk3yKwowfPQbxmZWK+lmSa+VtF7SEjO7N4TwdNlu75P0UgjhWDO7TNK/Snp7FhWuJsklClJpjdRku7X1wMtwOjsP3O7puc7O0q18u6PjwPvJTfL1WMu3H3hAam/3W1tbqWxr8zolpSTdeKMHZLL9wQ/6P4a9e33y/N27/f7u3b69Z48vLyj5Nbx9+frXPXSST/SjRnkg79ghzZjhl4qceqrPevXd7/o/mKOO8pZAb3NCjyRnn1065xhC+ue1t2zxv42HHy5dZ4zi1NR4z04ytuFDH/Iw3rTJFyXZsMEHIt5yiy+x+dhj0qpVpfdsS4vPCtbcXOrW/vjH+z5mXZ2/58aP9w+y48cfeEs+/CZLhSY3Sfr85z3Mk0C/4w5/Dye3ujq/1dYeXCa3mpoD7yfbyf2amgN7wJKu4eR+eX1i0G83tZmdKekfQwjndW1/XJJCCP9cts/9Xfs8amZ1kl6QVB/6ePE0u6kffNDXJU0CqSflNemv26H78wP52uEo6YqpqzvwXFH3N0xSvvRSqeuspqb0pp82zc+xfOtbHrDJJ/RXvtJbyYce6m/+mLvAEt/9rvQXf+H3zUr/tNIK5fIArqkpfcCLVd7d1JUcp9J929u9x+mll/zD7Pbt3rv0hS9Iy5d7S3v9ev/QnHwQ7+mDfU9l9/vV5K//2r/HvBXVTV1JGF8i6fwQwvu7tt8p6fQQwjVl+/yxa5/1XdvPde2zpdtrXSnpyq7N4ySleHHH5Ine5qo22+qkw9pTeKFK/k13/TJ7anP/qew88K16QJu7Wzs8BKkzaaOHjKfNnyppS797jSizpksTJ3dtDOAtX+nflNVIrS1SW6u0a7e0Jacrm6tGhH9TvampkWqsVJr530dN10fBtkOlcbul2poD265/+kiefF1ZmXw8l1TZ/6dyFfy9b94sbaq2318af1MNIYT67g/mOulHCOFWSbfmecyimdnSEJ4/6FMQDuQ/p4M/LeJg/E1Vhr+pyvnPag8/q35k+TdVyaVNGyTNLNue0fVYj/t0dVNPlg/kAgAA/agkjJdImmNms81stKTLJN3bbZ97JXVdCapLJD3Q1/liAABQ0m83dQih3cyukXS//NKm20IIT5nZDZKWhhDulfR1Sd82s1WStskDGy6qbvkh4OdUOX5WleHnVDl+VpXJ7OdU2KQfAADAMR0mAAAFI4wBACgYYZwjM7vOzIKZ9bGsfbzM7DNm9oyZPWFm95jZlKLrVE3M7HwzW2Fmq8zs+qLrU63MbKaZ/drMnjazp8zs2qLrVM3MrNbMHjOznxZdl2pmZlPM7O6u/1HLuybESg1hnBMzmynpdZLWFl2XKvYLSSeFEE6RtFJSPxP+xaNsWtoLJM2TdLmZzSu2VlWrXdJ1IYR5ks6QdDU/qz5dK2l50ZUYBr4g6echhOMlzVfKPzPCOD+fl/S3GtBMS3EJIfx3CCGZWWqx/Jp2uEWSVoUQVocQWiXdKenigutUlUIIG0MIv++6v0v+T3N6sbWqTmY2Q9IbJH2t6LpUMzObLOks+ZVDCiG0hhC2p3kMwjgHZnaxpA0hhMeLrssw8l5JPyu6ElVkuqR1ZdvrRcD0y8waJb1M0u8Krkq1+n/yRkKWU92OBLMlbZb0ja4u/a+Z2fg0D5DrdJgjmZn9UtKRPTz195I+Ie+ijl5fP6cQwo+79vl7eVfjHXnWDSOLmU2Q9ANJHwkh7Cy6PtXGzC6UtCmEsMzMzim4OtWuTtKpkj4cQvidmX1B0vWS/m+aB0AKQgjn9vS4mZ0s/1T1uPmSPDMk/d7MFoUQXsixilWht59TwszeLelCSa9hFrcDVDItLbqY2Sh5EN8RQvhh0fWpUq+QdJGZvV7SGEmTzOw7IYQrCq5XNVovaX0IIelhuVsexqlh0o+cmVmTpIXdV7SCjxaW9DlJZ4cQNhddn2rSNef7SkmvkYfwEknvCCE8VWjFqpD5p95vSdoWQvhIwdUZFrpaxh8LIVxYcFWqlpn9RtL7QwgrzOwfJY0PIfxNWq9PyxjV5IuSDpH0i65ehMUhhA8WW6Xq0Nu0tAVXq1q9QtI7JT1pZn/oeuwTIYT7iqsSRoAPS7qja42G1ZLek+aL0zIGAKBgjKYGAKBghDEAAAUjjAEAKBhhDABAwQhjAAAKRhgDAFAwwhgAgIL9f4xF2FJDoqBFAAAAAElFTkSuQmCC","text/plain":["
"]},"metadata":{"needs_background":"light"},"output_type":"display_data"},{"data":{"image/png":"iVBORw0KGgoAAAANSUhEUgAAAeMAAAGQCAYAAACdwQhXAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/NK7nSAAAACXBIWXMAAAsTAAALEwEAmpwYAAA1TElEQVR4nO3deZxcZZ3v8e+vu9NJOvtKyNqJLLIFhICyuCIICjgyLujA6AzCi6s4Lrjhfp2ro844V0fxCiPCHUQURBQZEARl3MhIWGUxCyEJSQjZ00k63dXLc//49blVaTrd1dWn6jlV9Xm/XvU6daqrz3l6qfrW85xnsRCCAABAPA2xCwAAQL0jjAEAiIwwBgAgMsIYAIDICGMAACIjjAEAiIwwBjLOzNaY2evLdOz7zey95Tg2gOIRxgAAREYYA3XAHK93IKN4cQLV4Tgze9zMdpnZj81sjJlNMbM7zGyLme3ouz83+Ya+JugvmdkfJLVLWmRmZ5jZX/qO821JFu0nAvD/EcZAdXi7pLMkLZS0WNJ75K/f6yQtkDRf0j5J3+73fRdJulTSBEm7JP1U0mckTZf0jKRTy190AEMhjIHq8G8hhI0hhO2SfiHpuBDCthDCrSGE9hDCbklfkvTqft93fQjhyRBCt6SzJT0ZQvhJCKFL0jckbarkDwFgYIQxUB0KQ7Nd0ngzazGzq81srZm1SfqtpMlm1ljw3OcK7s8u3A++Skzh1wFEQhgD1esKSYdLenkIYaKkV/U9XngduHBZtuclzUt2zMwK9wHEQxgD1WuC/DrxTjObKunzQzz/PyUdZWbnm1mTpH+QNKvMZQRQBMIYqF7fkDRW0lZJSyX9crAnhxC2SnqbpK9I2ibpUEl/KG8RARTD/LIRAACIhZoxAACREcYAAERGGAMAEBlhDABAZIQxAACREcYAAERGGAMAEBlhDABAZIQxAACREcYAAERGGAMAEBlhDABAZIQxAACREcYAAERGGAMAEBlhDABAZIQxAACREcYAAERGGAMAEBlhDABAZIQxAACREcYAAERGGAMAEFlTrBNPnz49tLa2xjo9AAAV9dBDD20NIcwY6GvRwri1tVXLli2LdXoAACrKzNYe6Gs0UwMAEBlhDABAZIQxAACREcYAAERGGAMAEBlhDABAZIQxAACREcYAAERGGAMAEBlhDABAZIQxAACREcYAAERGGAMAEBlhDABAZIQxgBFrbZXM8jeWKgeGJ9p6xgBqx9q1Ugj5fbN4ZQGqETVjAAAiI4wBAIiMMAYAIDLCGACAyAhjAAAiI4wBAIiMMAYAIDLCGACAyAhjAAAiI4wBAIiMMAYAIDLCGACAyAhjAAAiI4wBAIiMMAYAIDLCGACAyAhjAAAiI4wBAIiMMAYAIDLCGACAyAhjAAAiI4wBAIiMMAYAIDLCGACAyAhjAAAiI4wBAIiMMAYAIDLCGACAyIoKYzM7y8yWm9kqM/vkAF+fb2a/MbNHzOxxM3tj+kUFAKA2DRnGZtYo6SpJZ0s6UtI7zezIfk/7jKSbQwgvk3SBpO+kXVAAAGpVMTXjkyStCiGsDiHkJP1I0pv7PSdImth3f5KkjekVEQCA2lZMGM+R9FzB/vq+xwp9QdKFZrZe0p2SPjDQgczsUjNbZmbLtmzZUkJxAQCoPWl14HqnpOtDCHMlvVHSDWb2omOHEK4JISwJISyZMWNGSqcGAKC6FRPGGyTNK9if2/dYoYsl3SxJIYQHJI2RND2NAgIAUOuKCeMHJR1qZgvNrFneQev2fs9ZJ+l0STKzI+RhTDs0AABFGDKMQwjdki6XdLekp+W9pp80sy+a2Xl9T7tC0iVm9pikmyS9J4QQylVoAABqSVMxTwoh3CnvmFX42OcK7j8l6dR0iwYAQH1gBi4AACIjjAGUTXt77BIA1YEwBlAWq1ZJb3iD1NsbuyRA9hHGAMrihz+Unn1W2rQpdkmA7COMAZTFj38sNTVJzzwTuyRA9hHGAMoil5MaGqSVK2OXBMi+ooY2AcBwNTRIIUiPPRa7JED2UTMGkKrVq307frw0erT05z/HLQ9QDQhjAKn60Y98a+ZhvG6d1N0dt0xA1hHGAFKTy0k33ZTfb2iQGhs9kAEcGGEMIDX33Sd1dvr97m6pp8dryKtWxS0XkHWEMYDUXHtt/v5f/uI14s5OacWKeGUCqgFhDCAVzz/vPacnTPD9zk5pzx5p1CjpkUfilg3IOsIYQCq2bfPrw2b5x3I5n/jj6afjlQuoBoQxgFR0dHgQJ3NRjxrl2+5u6YUXpH374pUNyDrCGEAqOjt9ko+dO31/zhzfdnR4MD/7bLSiAZlHGANIRUeHb7dv9+3Uqd5E3d7utWV6VAMHRhgDSEVHh9TVJe3a5ftmUkuLh3FXl/TUU3HLB2QZYQwgFR0dUlvb/o+NHeuPNzdLjz4apVhAVSCMAaSis9PDuKUl/1hLi19HDkFavjxe2YCsI4wBpGLVKh/KNG1a/rEkmHM5D+qkcxeA/RHGAFLxu9/5dsoU3/b0SDt2+LXjffu8R/Uzz8QrH5BlhDGAVDz0kF8jTsYX797tC0WMHeth3N1NGAMHQhgDSMXu3d5RK9HYKM2Y4eHc3u415ccfj1c+IMsIYwCp6O72mnCioUG64AIP5Z4eH3P82GPxygdkGWEMIDWFYXzGGdJJJ0njx/t+T4938gohTtmALCOMAaSmsTF///zzpSOPzD+WTAqSzNAFII8wBpCahgZvrpakU07xa8aTJkmjR3snrqYmacOGuGUEsogwBpCahgbvyCV5Zy4z6bjj8p24QpDWr49aRCCTCGMAqWls9NpvoVe8wsM4l/Pa8bp1ccoGZBlhDCA1IeTHGSeOOUYaN87v9/RIK1ZUvlxA1hHGAFLT2Smdc87+jx1xRL6XdU8PE38AAyGMAaSmqUn6q7/a/7EpU6RZs/xruRzN1MBACGMAqRkzRlqy5MWPJ524Ojp8veOOjooXDcg0whhAaubOfXEHLinfiauz07++cWPlywZkGWEMIDVjxw78+FFHea25t9dv/Yc3tbb6MKjk1tpa7pIC2TLAZ1gAKE0y9WV/hZ249u178cQfa9fuP02mWXnKB2QVNWMAqTlQGE+YIM2e7fdzOXpUA/0RxgBSc6Awlvy6seTN1Iw1BvZHGANIhVl+co+BnHqqd97q6ZHWrKlYsYCqQBgDSE1Ly4G/dsQRPl91V5f0/PNeQwbgCGMAqTAbvJn6pS/1mnFnpwfx1q2VKxuQdYQxgNQMVjMeO1aaPNmbqRsaWEoRKEQYA0iF2YHHGScWLvRtRwdLKQKFCGMAqRk9evCvH3+8b/ftk557rvzlAaoFYQwgFWY+y9ZgTjzRt7290l/+Uv4yAdWCMAaQCrOha8YveYnPUd3TI61eXZlyAdWAMAaQmqHCuLXVe1R3ddFMDRQijAGkopia8YwZPtY4l5Pa2qT29sqUDcg6whhAKhoahg5jM2nmTG+mbmpieBOQIIwBpKKYDlySdOihvl21SjrsMP++BQvKWzYg6whjACOSLH1YTM1YkpYs8e2MGdINN/j3M1c16h1hDGBEcjnfFlszPuEE33Z1ee0YAGEMYIT27fNtsTXjQw7xbU+PtHJl+coFVBPCGMCIJD2iiw3j5Ppwd7e0dm35ygVUE8IYwIgMt2acrHmcy0mbNrGUIiARxgBGqLBmXMw140RPj3feeuGF8pQLqCaEMYARSWrGZh7IkjdFmx34liy12NPD6k2ARBgDGKEkjBsb84+tWeO13gPdPv95f15HB9NiAhJhDGCEkmbq4TRRJ8ObOjsZYwxIhDGAEdq717dJx6xiHHaYT4fZ08NSioBEGAMYod27fTucmvHs2b6UYleX9Mwz5SkXUE2KCmMzO8vMlpvZKjP75AGe83Yze8rMnjSzH6ZbTABZ1dbm26RTVjEaG6VJk3x40/r1+Sk1gXrVNNQTzKxR0lWSzpC0XtKDZnZ7COGpguccKulKSaeGEHaY2cxyFRhAtiQ14+E0U0vSvHk+zjiXk7Zvl6ZNS79sQLUopmZ8kqRVIYTVIYScpB9JenO/51wi6aoQwg5JCiFsTreYALKq1DBevNi3vb30qAaKCeM5kgpfKuv7Hit0mKTDzOwPZrbUzM4a6EBmdqmZLTOzZVu2bCmtxAAyZc8e344fP7zvO/5433Z2EsZAWh24miQdKuk1kt4p6d/NbHL/J4UQrgkhLAkhLJkxY0ZKpwYQUxLGw60Zn3iibzs6GN4EFBPGGyTNK9if2/dYofWSbg8hdIUQnpW0Qh7OAGpcMs54OB24JF+9KRnetHx5+uUCqkkxYfygpEPNbKGZNUu6QNLt/Z7zM3mtWGY2Xd5svTq9YgLIqlLDePJkHw7FusZAEWEcQuiWdLmkuyU9LenmEMKTZvZFMzuv72l3S9pmZk9J+o2kj4UQtpWr0ACyo9QwNpOmT/fe1OvWpV8uoJoMObRJkkIId0q6s99jnyu4HyR9pO8GoI4kc1MPtwOXJC1a5NeL9+718coTJ6ZaNKBqMAMXgBFJwnjs2OF/73HH+TYEelSjvhHGAEako8O3o0cP/3uTBSNyOcIY9Y0wBjAiIwnjE0/0a8f79nHdGPWNMAYwIp2dvh3OQhGJBQt8eFN3N6s3ob4RxgBGJAnjUmrGzc3ShAk+vGnlynTLBVQTwhjAiORyvi0ljCVp1iyvGdNMjXpGGAMYka4u35bSTC1JRxzhvam3b8+PWQbqDWEMYES6u31bas342GN9G4KvbQzUI8IYQMm6ujxEpdLD+OUvzx+L4U2oV4QxgJIlE35IpYfxCSf48KaODmrGqF+EMYCSFV7jLTWMp0717+3qYngT6hdhDKBkhTXjUjtwmUlTpngYr1iRTrmAakMYAyhZGjVjSZo/3zuCrVkz4iIBVYkwBlCyNK4ZS9JRR/l28+b8JCJAPSGMAZSsMIybilqQdWDJ6k29vdKGDSMqElCVCGMAJdu7N53jnHyyb7u6mIkL9YkwBlCy3bvTOc4xx0gNDT686dln0zkmUE0IYwAla2tL5zijR0stLT7P9RNPpHNMoJoQxgBKllYYS9KMGSyliPpFGAMo2Z496R3r0EOlnh7pmWfSOyZQLQhjACVL65qxJC1e7Nu0OoUB1YQwBlCyNGvGyYIRPT3pHROoFoQxgJKlGcannebbwrHLQL0YwTB9APWqtVVauza/P378yI950EFSczMzcKE+UTMGMGxr1/o6xmef7Qs9XHLJyI9p5is4dXWN/FhAtSGMAZSsvd1DtKUlneMtWuTDm4B6QxgDKFlyfTeNZmopP0d14bGBekAYAyhZ2mH8ilfk7zNHNeoJYQygZElnq7Fj0zneq1+dv8/axqgnhDGAknV0+DXjkaxlXGjePGnUKL/PTFyoJ4QxgJKlHcZJj2qJBSNQXwhjACXL5dINY8l7VEvS00+nd0wg6whjACVLwnjMmPSOmfSoXr1a6u1N77hAlhHGAErW3Z1+zTiZo7qrS9q0Kb3jAllGGAMoWTnC+LWv9W1XFz2qUT8IYwAl6enxZuSGhnTDeP5837a3E8aoH4QxgJIkE36kXTNO5HLSU0+lf1wgiwhjACVpb/dtQ0O6HbgS3d3Sk0+mf1wgiwhjACVJasblCmNJ+stfynNcIGsIYwAlKQzjcjRTS9LOnVJbW3mODWQJYQygJIXN1OUK454eOnGhPhDGAEpS7ppxU5MHPnNUox4QxgBKsnu3bxsbPTjTNnWqrwrFHNWoB4QxgJIk13Kbm314U9oWLfJm6ocfTv/YQNYQxgBKkoRxua4XL14sheBjjUMozzmArCCMAZQkaaYuVxifckr+PJs3l+ccQFYQxgBKkoTx2LHlOf6ZZ/o2l5NWrizPOYCsIIwBlCQJ45aW8hz/4IO91t3eLi1fXp5zAFlBGAMoyZ49vh03rnznmDnTa8aPPFK+cwBZQBgDKMnevb4tV81Yko4+2ntUP/ZY+c4BZAFhDKAk7e0+pKlc14wl6RWv8O3q1V5DBmoVYQygJMkMXOUM46QTV3e39Oyz5TsPEBthDKAkSRiXs5n6xBN9us19++hRjdpGGAMoSUeHN1OXswNXY6NPi7lvH2sbo7YRxgBK0tHh23LWjCXpsMO8mXrZsvKeB4iJMAZQkiSMy1kzlrypWmLBCNQ2whhASTo7vZm63DXj177Wt9u3+w2oRYQxgJJ0dvq2XHNTJ17/et92ddGJC7WLMAZQklzOa8ZjxpT3POPGSePH+yQjhDFqFWEMoCSVCmNJam31mjFrG6NWEcYASpKEcbmbqSXp+ON9TWN6VKNWNcUuAIDq1NUlNTWVJ4wXLPCgT0yb5ttnnvFhTk28c6HGUDMGUJLu7vLVjNes8Zpwctu2zR/v7JTWrUv/fEBsRYWxmZ1lZsvNbJWZfXKQ5/21mQUzW5JeEQFkVUNDZZqpJam52RenWLGiMucDKmnIMDazRklXSTpb0pGS3mlmRw7wvAmSPijpv9MuJIBsqlQHLkmaPdtrxiyniFpUTM34JEmrQgirQwg5ST+S9OYBnvePkr4qqSPF8gHIsEp14JJ8bePeXukPf6jM+YBKKiaM50h6rmB/fd9j/5+ZHS9pXgjhPwc7kJldambLzGzZli1bhl1YANlSyWbqk0/27eOPSz09lTknUCkj7sBlZg2S/lXSFUM9N4RwTQhhSQhhyYwZM0Z6agCRVbJmfO65vt23j7WNUXuKCeMNkuYV7M/teywxQdLRku43szWSXiHpdjpxAbWvkjXjo4/2IU179rCcImpPMWH8oKRDzWyhmTVLukDS7ckXQwi7QgjTQwitIYRWSUslnRdCYHg+UOMaGirXgctMOvhg78TF5B+oNUOGcQihW9Llku6W9LSkm0MIT5rZF83svHIXEEB2NTRIo0ZV7nzHH+/Xi3//+8qdE6iEouaxCSHcKenOfo997gDPfc3IiwWgGjQ07D9TVrmdfrr0859Ly5f7dJzNzZU7N1BOzMAFoGQNFX4HOf983+ZyHshArSCMAZSskk3UkjRnjjR2LJ24UHsIYwAla2mp/Dlf8hKvGS9dWvlzA+VCGAMo2bhxlT/nKaf44hHf/KZfr25trXwZgLQRxgBKNn585c959tm+nTlTamuT1q6tfBmAtBHGAEoWI4zPOsu3HR3S009X/vxAORDGAEoW45pxMslIe7v05z9X/vxAORDGAEoW45pxortb+uMf450fSBNhDKBkMWrGhR54IO75gbQQxgBKYhY/jFmJFbWCMAZQskotEjGQpiZp79545wfSVNTc1ADQXyVrxgsW7D8HdrK/bl1lzg+UGzVjACWrVBivWeMTfSS3NWukk06Sensrc36g3AhjACUx83miYznjjPz9zs545QDSQBgDKImZNHp0vPMnKzhJLBqB6kcYAyhZzPWEp06VJk/2+8uWxSsHkAbCGEBJzOKGsSQtXuzbX/0qbjmAkSKMAZQsZjO1lJ+neulSn5ELqFaEMYCSZKFmfOGFvl2/Xho1iiUVUb0IYwAlid2BS5LmzZMmTPAgvu46H/bEkoqoRoQxgJJkoWYs+XXjri7pvvtilwQoHWEMoGRZCOOzz/bt73/PJCCoXoQxgJJkoZlakv7mb3zb1iatWhW3LECpCGMAJclKM3VrqzR+vLRnj/TII7FLA5SGMAZQkqzUjCW/bpzLSffeG7skQGkIYwDDklyXzUrNWMqPN77//qjFAEpGGAMYllzOtw0N2QnjZLzx9u1xywGUijAGMCzJCklZqhkvXCiNG+fXjYFqRBgDGJaODt9mKYyl/HVjoBoRxgCGJakZNzT4zFdZ8YY35O8z3hjVhjAGMCyFYWwWtyyFLroof//pp+OVAygFYQxgWJJm6oaMvXssWuTzVEvS734XtyzAcGXs5QQg6wprxllz4om+/fnP45YDGK4MvpyAeFpbvek1uVVyOb6Y5x6OLIfx297m20ce8ekxgWqRwZcTEM/atb4MX3Kr5HJ8Mc89HIVDm7Lmb//Wt3v3SkuXxi0LMByEMYBhyeo1Y0lqafFte7v0q1/FLQswHBl8OQHIsqRmPHZs3HIMprdX+sUvvIUBqAaEMYBhqYYwlqStW6WVK2OXAigOYQxgWJIwHj8+bjkGM26ctHu39Ic/xC4JUBzCGMCwJNeMkzG9WXTiiT415s9+FrskQHEIYyCS/kOZFiyIXaLiJDXjiRPjlmMwF1zg2z/9yXtWA1lHGAOR9B/KtGZN7BIVJwnjSZPilmMwF13kvb337JEefDB2aYChEcYAhiVppp46NW45BtPSIs2f70Oc7r03dmmAoRHGAIYlCeMsN1NL0tln+xCnW29lFSdkH2EMZES1jIndt8+3yQQbWXXppb7dskV6/PG4ZQGGQhgDGXDjjdK550qbN8cuydDa232b9TA+7jjv8d3WJt11V+zSAIMjjIHIdu+WvvpV6YknPJBXrIhdosElNePRo+OWoxivepXU1SXddBNN1cg2whiI7NprvbY5fbq0Y4d0/vnSAw/ELtWBJWHc3By3HMVImqqff1566qm4ZQEGQxgDEW3dKl19tc8YJXmnqN7e/OpDWZR04KqGmvE55/i0nbt2HbipulqWrkRtI4yBiK66ymeKGjUq/1hLi9TUFK9MQ6mmmnFDg3TKKfmm6oE6yVXL0pWobYQxENEPfuCh9uc/e1NqEhZZDrpk0o8sl7HQ+9/v2+eek5Yvj1sW4EAIYyCi3l5p0yavHW/cmK+lJTXj7u645RtI0kxdLWH85jdLY8Z4r+pf/jJ2aYCBEcZABEmPaTNp505p9mzp4IOlbdukVavyPX+3bo1WxAPK5XxbLWHc0CCdfLKX+4c/rJ7x3KgvhDEQwXe/69sNG7wj1EEHeSAvWOA1uKQ5NYvjjqupA1ciaap+9lnpmWfilgUYCGEMVNiOHdIdd/j9jg5p7lyvvUk+vOmQQ/KdpDZtilPGwVRbzViS3vKWfFP13XfHLg3wYoQxUGE/+1k+0CZOfPHqR5Mm5XtXZ7FmnJQ9qzXjBQtePFSpoUF6+cu97B/5SHUuXYnaRhgDFdTbK11zjY97laR58zwQurr2X3c3CeN16ypfxqFkvWa8Zs3AQ5X+x//wbS7nc1VX29KVqG2EMVBBS5f6deKdO31/zBgPhD17pMbGfEgnQZfFoMh6GB/IW9/qv29JuvnmuGUB+iOMgQr6/vf9mnFDwStv1y7phBOke+7xNXh37swHXRZrxl1dvs1qM/WBNDZKr3yl37/ppnxHNCALCGOgQjZt8oXu9+6Vpk3zx3I5H1P8L//ivalvu82DORlfvHFjvPIeSBLG1VYzlvx6sSRt3y795jdxywIUIoyBCvnxj70WHII0c6Y/1t4uffzjXiOWvEPXDTdIJ53k+9u2ZWvijxCqt2YsSWee6dtdu6Trr49aFGA/hDFQAV1d3kS9e7f3lk6uXR5xhPTud+//3OZm6b3v9fshZGvij+R6sbT/fNrVIrk80Nsr/e53PgUpkAVFhbGZnWVmy81slZl9coCvf8TMnjKzx83sPjNjsABQ4P77/Y2/p8cn+Ehql1//ul/L7O/YY33b2yu98ELFijmkZF5qyXuBV6uks9zPfx67JIAbMozNrFHSVZLOlnSkpHea2ZH9nvaIpCUhhMWSfiLpa2kXFIhhoDGrpbj6amnLFr+/YoUPrZkyRTrssIGfv2iRbzs6shvG1eyQQ/wSwbXX5qceBWIqpmZ8kqRVIYTVIYScpB9JenPhE0IIvwkhtPftLpU0N91iAnEcaMzqcKxcKf3xj36/tVVavNibpwcbtpQ0p3Z2ZiuMa6UH8oc/7Ns1a6RHH41ZEsAVE8ZzJD1XsL++77EDuVjSgMt4m9mlZrbMzJZtSaoJQI277rr8uOIpU3xM8cUXe2etoXR3+9J/WVErNeP3vEcaO9abqn/4w9ilAVLuwGVmF0paIumfB/p6COGaEMKSEMKSGTNmpHlqIJOSN/tkruneXu/49Hd/V9z39/Zma+KPWgnj0aOl173Or93/5Cc+ZzUQUzFhvEHSvIL9uX2P7cfMXi/p05LOCyHUyEsWGJnbbvPhSUmz85490kUXSVOnFvf9vb3ZmvijVsJYkj77We8HsGOHdOutsUuDeldMGD8o6VAzW2hmzZIukHR74RPM7GWSrpYHcQantgcqr7dX+uY3PYCnT/fHGhqkSy4Z3nHWr0+/bKWqlWvGko/lnjXLh5t961vZGs+N+jNkGIcQuiVdLuluSU9LujmE8KSZfdHMzut72j9LGi/pFjN71MxuP8DhgLrx29/mm5iTST7e/vb8/WJt356doKilmrGZ9IEPeMe8deuYkQtxFXXNOIRwZwjhsBDCS0IIX+p77HMhhNv77r8+hHBQCOG4vtt5gx8RqH3f+pZfM54yxae8lKTLLhv+cULID4uKrRrDuP/wtMIlEy+7TGpp8Q523/rWwM8vdTgbMBzMwAWUwerV0n/9lwfpQQflOwjNLWHQX3d3dtY1rsZm6v7D0wo7xE2ZIp19tk/G8qc/SU88kc5wNmC4CGOgDK691mtbEyb4EJpSZ6tqaMjWWONqrBkP5ctf9h7uO3f6WtNADIQxkLJt23we6mTqy127vPZVipYWwrjcDjvMpx/t7PTe71lphUB9IYyBlH3/+97paswYafx4rxV/8IOlHWvqVA/1rAxvqsUwlrx23NDgw5xuvDF2aVCPCGMgRW1t3hEol/NhM21t0hln+FzIpTj4YB8ilZXrltV4zbgYp58uzZnja01/97s+bzVQSYQxkKIbb/RmzlGjfKlEM+lDHyr9eAsWZKsTUa3WjBsapE9/2u+/8IJ0001xy4P6QxijrrW2HnjYSynf/4EPeGAdfLBP9vGa10iHH15a2RYskG6+2e/fc082htjUahhLvq70pEnemvH1r3stGagUwhh1be3aAw97Ge73/8d/+PXd5mYfMiNJH/lI6WVbs0a6/nq/P2tWNmrHtRzGY8ZI73uf/y03buTaMSqLMAZSkMtJX/yi309qxaedJh3Zf+XvYVq82LchjOw4aenoKH2YVjX4yEd8OFpbm/Sv/+p/R6ASCGMgBXfckV/qMKkVf/SjIz9u0sSdy438WGno7KztMJ4+3VfUCkHatEm64YbYJUK9IIyBEcrlpE99Kt+Eu3u3dOaZ0tFHj/zYLS3eGSwrzcO1XjOWpM98Jn/t+BvfiF0a1AvCGBihH/1IevZZXyNX8rD65CfTO/748b7ubhbs21f7YTxjhq+sldSOgUogjIER+uxnvXZ88MG+/zd/I82fn97xZ8zwjmFZUA9hLElXXilNnpyfU3zXrqjFQR0gjIER2rgxP9uWJP3DP6R7/Llz6cBVaVOnSpdfnt+nuRrlRhgDJUrmMO7ulubN81rj1KnStGnpLr3X2koYx/DRj/rfU/IpTleujFse1DbCGCjR//yfvp082ccWT5jgParTXnqv1Kk0y6Femqkl78T18Y/7/c2bfYaurHwoQu0hjIESrFqVH/YyZ47XGD/xCe/9nLajjkr/mKWqp5qxJL3//b7t6JB++1vpvvvilge1izAGhikEX4Vp927fz+W89vrWt5bnfIVDpPbtK885ilXr44z7S/oBNDf70phXXlm7i2UgLsIYGKb77vPbqFG+39srfe1rUlNTec43b17+/o4d5TlHseotjBPHHed9A1atkq69NnZpUIsIY2CYLrnEQ2nOHN9/5zvz01aWw6hR+THMO3eW7zzFqNcwvvpqryXv2uWLSGzcGLtEqDWEMTBM69ZJ48ZJY8f6/sc+Vv5zTpjg29g141zOlxusN8cdJ73rXX7/hRe8p3Vvb9QiocbU4csKKM1jj/k2BJ/UI5kveuLE8p972jTfxq4Z53L1WTOWpC99ySdgaW/3yxS33BK7RKglhDFQhO5u6cIL/f7s2R5KJ55YufMfdJBvY9eM67WZWvJFJL7yFb9ksG2bz2G9YUPsUqFWEMZAEb75Tempp/z+lCneWeuf/qly50+uT2/ZUrlzDqSrq37DWJIuukg6/nhvot64Ufrwh2muRjoIY2AIq1ZJX/hCfsKH9navFaU1w1Yxkh7VaU0kUooQCOOmJul73/PLBu3t0m9+I910U+xSoRYQxsAgOjqkt7zFF5mfPdsfO+20fGeeSlm40LfJmskxdHd7INdjB65CRx4pff7zPh/59u3S5z4X90MSakOdv6yAwX3sY9483dKS79H89a9XPpCSWvj69ZU9b6Fksot6rhknLrvMP5SFID3/vPTe98afkAXVjTAGDuCuu6RrrvHwWbAg33t6+vTKlyXpwBWzw1Bnp28JY2+u/vd/97/Lvn3SsmW+lCZzV6NUhDEwgE2bfF3iXM6biDs7pQsuiFeeJIxjTsVIGO+vtdVbSSZM8CFnP/iB9JOfxC4VqhVhDPTT3S2dc44PI5o1yx9rbfVVe4ZjwQIPruS2YEHpZZoxI1+2rq7SjzMSyQeBer9mXOiCC/K9qV94QXr72/f/m/dfSrO19cBfQ33jZQUUCEF63/ukhx/2Gs/kyT7T1nXXDX9FpjVr8ssphuD7pUrmwe7q8ikZY0hqxoRxXkODtHev9LKXSY2NvqDEkiX+QW6gpTTXrt3/f4KOX0jwsgIKfPvbHrxNTT6cqKvL5yWePz92yVxPT7yJP2imPrAf/lA6+GC/rPH009LFF+d/X0AxCGOgzz33+JzDPT3SokXeLPuZz0gnnxy7ZHm9vfHDmJrxi730pdL/+T/S1KleU/71r6UPfYgJQVA8XlaAvDZz/vles1m0yGvEb3mL9O53xy7Z/np7481PzTXjwZ1zjnTFFfkOXbfcIv3jP8YuFaoFLyvUvc2bpVe9yms08+f7tbxjj/WFAbLWJJuFmnFjY5zzV4OPf1x64xu9f8G2bdJ3vhO7RKgWhDHq3oknSlu3+jW/UaOkQw6Rrr8+v4ZwloTgvXZjSMI4WToSL5aMPz71VJ+hK5lL/Lbb4pYL2UcYo6r0Hxoy2DCSoWzf7tt163wij5YWae5c74xzoGUR0xyuVKpVqyp/TikfxslMZPWi/998qP+xCRN8vurjj8/3gn//+xmDjME1xS4AMBzJ0JADKbZZedcuH4Ii+aT/kyd755ubbsqvHTyQkQxPSkuyelSlJdeM6y2M+//Ni/kfmzbNrxm/8Y2+DvamTdIHPlCW4qFGUDNG3dm1y8eFPvus70+Z4gFz883eVJ11SbkrLakZT5oU5/zVZvZs6ac/9fvNzfnLC9dfH61IyDDCGHVlwwbpqKM80GbO9MemTfM3zRhNzqXYuzfOeeu1mXokFi3y7SGH5PsgfOIT0lVXMY819kcYo248/LAH8YYNPtfz+PH++M9/Xl3TEiYLVlRa0kxNzXj4br/dl16UvPf+5z7nY9qBBGGMuvCzn0mnnOJN1PPmSePGSUcf7V9LFmGoBqNH+/zUMSaToJm6dIsWSb/4hd8fN847D15zje/HGqqGbCGMUdNCkL78Zemtb/WJPF7yEu/hesop3lmr2kye7DOE7d5d+XMnYXygnuYY3OzZvn3lK/3vuGeP77/hDdLq1dGKhYwgjFGz9u2TzjjDV1tqbPTaSQi+EPz11w9/4YcsmDYt3sQfnZ3ek5hrxiNzyy3+4TDps/DII9Lpp0t33BG3XIiLMEZNevRR75B1331ek5s71wN5zx7pU5/yyRlijRMeiYMO8ppxpafEbG2VvvpV/zBzySXV93tL00jHmo8f74uPfPaz/j/Z3e3Dp8491y8BtLfnnzvSJReH+n6WdMwOwhg15ytf8Vm1tmyR5szxCT0OOsg7am3enN6yhjHMnh1n5aa1a6XLLvPwuP326vu9pSmNpTEbGqTLL5fuvVc6/PB8Z8K2Nul1r5OWL/f9kS65ONT3s6RjdhDGqBnJ+Nsrr/Q3u4ULvcPTuedKv/ylv+lVuwULvJl669bKnztppk6CAyP3mtdId93l02fOmOGPPfig9OpXS9/4RsySodIIY1S9EPy68GGH+f706V4jHj/eJ+r/xjdqp9NR0gkoxixcnZ3+IYcwTtfChd7acOWVvp9MEJLsP/xwvLKhcghjVLX/+i+vLX75y/nVhCZN8lWY7r3Xe6rWkmQY1mOPVf7cHR1eMx43rvLnrnXNzdKHP+z3lyzxD5RdXb5/+uk+UUgylzpqE2GMqvTssz486bWvldavl2bN8tqw5Iu8X3ddvrdqLUl+ppUrK3/uJIzHjKn8uevJPfdIH/uYL+cpeWe9r389Py4+GWKG2kIYo+pccIFPL/jAAz5ec948H27zvvf51884I3vrEKclqRnHqCXt2+e/1ywuLVlLxo71dZHvu8/3Z8/2mvPzz/v+UUf5BCIxJn5B+RDGGVHPQwyGM/xCkn784/xyh1OnSm96k9cmrriiwgWvsAULpJe+1O9v3Fj5/5GODr9m3Nxc2fNWu8KhUMMZBrVwoW9vuEE69lhv/ZGkZ56RzjvPL8vMnJlvzh5uWQYqT+HXh/r/qqb3rGooq4VIs5UvWbIkLFu2LMq5s8hs/4nj++/XssF+9qee8ppAQ4PXBMaP985YY8f6TEaf+EQ+oAY61lDnqjYh+AxiEyf68KZK/SxmvtLVypU+t3etdIjLmgO9Frq6fGje177mQ6l27crPUT5/vvSFL0jveMeLJ7IZyf/7cF9LWX5tZaWsZvZQCGHJQF+jZoxM+v73vXf0UUf5/vjxfk141izprLN8laXrrts/iOuBWX5KzEpLrhlTM668UaN81q7f/176t3+Tjjkmv9znunU+q9zcub5mMmOFqxNhjMx48knpwgv9/sUX+3y9U6b4/sEHS3/3d9KvfiVde620eHG8csY2c2acME7GGRPG8TQ3e5+JBx7wD6ySf0htafGOXt/+to+nf/nLpVtvjVpUDFNT7AKgvm3Y4NvZs/MdVCSfAGHiRH+j+e1vpaVLvUYI78QVY2GB5JpxAx/hoxs1yluIJOk//1P63vekO+/0Gbza2qQ//clr0pJfX/7oR6XTTuNvl2X8aVBRIfgkBpdd5kE7d64/vnWrh23SaeXv/94/2d9/v+8TxHlz58atGSNbjj1W+ta3/HX17W/7cL+5c/NLXf7iFz7T1+TJ0hvfKN122/A6faEyqBmj7J5/3tcTvvVW6b//O790XNIRqa3NlzZ8/eul88/3uXm/8pWoRc602bN9cYFKy+Voos6ySZO8E9c73iGtWiXdfbfPfz17tr/m2tt96s277vLhaS99qXTOOdK73y0demjs0qOuwri1df/ODQsWDD7J+3Cfn+a5KynNsoXgPW7vucdf9A8+6As2DKSry28HHeSrLKUxfjUZmjHY16tdMta40nI5xhhnTTH/7/ff730tfvELf53t2+frYT/2mN++9CUfp3/00f6B+G1v8w5i/Y891PvCUM8f6fvMYN8/3GMP92erhLoa2jTc7u1pdocf6lgxu96Xeu7eXp8J68EHpV//2q9TrVjhL/bkOE1NHrjz5vk0iied5DXfV77Sm6QHeiPJyjCErLrxxnxHt0r+j5j5NI2bN1fmnPWo3P/7bW3+er33Xn/NPvec9wXYs2f/puvmZh8ydfzxPrXsOed44KX5/jncn22w7x/puSr1HjPY0Ka6qhmjNLmch+6KFf5J+k9/8p7Pzz23/wu4sdE7iEya5EORZs/2pQy/8x1vMjv8cDqQpCFWzTgE/n7VbuJEn+v69NN9f/Nmry3/8Y/S737nSzfmcl5zXr3am7tvvtmbuyW/Fn344R7Sktcm58/n/yINhDEkeRPP+vU+ZlHy4RPPPOOBm6wBnGho8E+SjY3evNXS4p+aFy+WTjhBOuIIb/KaOtWf/53v+GNIR8w5t+nAVVtmzpTOPNNvknfSW77cJ9tZtkx66CG/7NTRIW3bJm3a5CMgfv1rf/7Chf5+MGWKt361tnpYJ0MPX3jBR0YQ1kMjjGtUZ6fPX7x1q1+zTW7PP+/B+9xz/sJKruf2nx7ullvyw1jGjvVmqzFj/MV3xBF+TenQQ/37Fi588cw/KJ9YNWOJN9VaN3q0B+nixf6BXPKe++vWSYsWSd/9rvTEE95Cdv/93kM7l/Pm78cf91p2oVmz/H8mmbHttNO8xSxZBOOnP/Wwnj7dt5Mn+6WtelTUj21mZ0n6pqRGSd8LIXyl39dHS/oPSSdI2ibpHSGENekWtfb19HiPx/Z233/iCWnvXr+ek9x2786PJWxr87Ddvt1vO3f6ra1t8JVdkpBNmpUl/2Tb3OwvmpUrfZrJRYt8so2DD/bmqenTeTPOgunT411H59p9/WlszA85fO9784+b5VvUNmzw25o1fjlr1Sq/Nj1lil/K6ujw71m61PuaJP9Hf/3XLz7f2LF+mWvSJL9NnpxvZfvsZ31/wgTfv+OO/JKeTz/tlYKkYtDbW13vV0OGsZk1SrpK0hmS1kt60MxuDyEULm9+saQdIYRDzOwCSV+V9I5yFHggbW3elNrbO/AthPy4zKVL/X6yf999+f3k1t2d//oNN+Qfk3w8X3e335LewIW3XC6/zeX8nzDp0HTqqX4/+cecM8fvJ/v9PxEec8zgP3cSqsnNLD+R/9ix/iJqavIhRFOm+EpHRxzhzUnTp/s/+JQpfv1n48b80nhmvj4wsim5PNDW5jWUWbP875ms55yWzk6/jvgv/5J/7CUvSfccqG4TJ0pHHum3/sy8mXrbNq80HHOMX3/escMD/Atf8I6c69d7BaSrK/8evHevVzzWrds/vP/X/9r/HOeem7/fvwzJ+18yAmD2bH+PGz3a3x9Hj/b95H3vXe/yx5qb87cJE7yclTBkb2ozO1nSF0IIb+jbv1KSQgj/VPCcu/ue84CZNUnaJGlGGOTgafamvvba/T+xxVC4IkjhCkNJSHZ0+Ce25Gt79vg/cvL1HTukadPy+5s3+z9PY2P+zXfaNL/GM3++B+rMmf4Jcty4/bcTJvit2OaecvfgTLPXJNyxx3qzYCKZpjLNa7rJm2Py+58xw9/8rr02vXNgf1n+3097NMpA318YxG1tHtJJ6+Cb3uT/e5s2eUhffbWPzti502vjs2d7cPf0+OW3ZCrd3l5fWGPCBD/fQLfOTq+0FD4m+fvxhg3p9dMYrDd1MWH8VklnhRDe27d/kaSXhxAuL3jOE33PWd+3/0zfc7b2O9alki7t2z1c0vLSfqSBTJkozZ47jG8o+MEP9CcKQQq9++/3FjzW25vf7y14rKdfvTy5dU2VGrb2O1ZGXmpVY7qkrUM+q+Y1Nvi0DY2N+/+vFmN7kzS1yGlDGhr9bbO318+1c4e09rnSy10z+D9MRwV/j2ZSQ78qU//9pH2xocG/FiTt2JViIRaEEGYM9IWKXioPIVwj6ZpKnjNLzGxZCN0DfipCcfx3OPAnSxTHf4cb+R2OAP+H6eD3mFfM5e0NkuYV7M/te2zA5/Q1U0+Sd+QCAABDKCaMH5R0qJktNLNmSRdIur3fc26X9O6++2+V9OvBrhcDAIC8IZupQwjdZna5pLvlQ5u+H0J40sy+KGlZCOF2SddKusHMVknaLg9svFjdNtGniN/hyPE7HDl+h+ng99gn2tzUAADAVdGQaAAAahNhDABAZIRxJGZ2hZkFM5seuyzVxsz+2cz+YmaPm9ltZjY5dpmqhZmdZWbLzWyVmX0ydnmqjZnNM7PfmNlTZvakmX0wdpmqlZk1mtkjZnZH7LJkAWEcgZnNk3SmpHWxy1KlfiXp6BDCYkkrJF0ZuTxVoWBq27MlHSnpnWY2wESGGES3pCtCCEdKeoWk9/M7LNkHJT0duxBZQRjH8b8lfVz7zQKGYoUQ7gkhJDNILZWPfcfQTpK0KoSwOoSQk/QjSW+OXKaqEkJ4PoTwcN/93fIwmRO3VNXHzOZKepOk78UuS1YQxhVmZm+WtCGE8FjsstSIv5d0V+xCVIk5kgqnslwvgqRkZtYq6WWS/jtyUarRN+QVkiKncK19dbpyZHmZ2b2SZg3wpU9L+pS8iRqDGOx3GEL4ed9zPi1vNryxkmUDzGy8pFslfSiE0Ba7PNXEzM6RtDmE8JCZvSZycTKDMC6DEMLrB3rczI6RtFDSY+bL68yV9LCZnRRC2FTBImbegX6HCTN7j6RzJJ3ObG9FK2ZqWwzBzEbJg/jGEMJPY5enCp0q6Twze6OkMZImmtkPQggXRi5XVEz6EZGZrZG0pP/qVhicmZ0l6V8lvTqEsCV2eapF37zxKySdLg/hByW9K4TwZNSCVRHzT9H/V9L2EMKHIhen6vXVjD8aQjgnclGi45oxqtG3JU2Q9Csze9TMvhu7QNWgr9NbMrXt05JuJoiH7VRJF0l6Xd//3qN9NTxgRKgZAwAQGTVjAAAiI4wBAIiMMAYAIDLCGACAyAhjAAAiI4wBAIiMMAYAILL/ByF8iwEjcMfSAAAAAElFTkSuQmCC","text/plain":["
"]},"metadata":{"needs_background":"light"},"output_type":"display_data"}],"source":["model.plot_posterior_predictive()"]}],"metadata":{"kernelspec":{"display_name":"Python 3.9.12 ('hddm39')","language":"python","name":"python3"},"language_info":{"codemirror_mode":{"name":"ipython","version":3},"file_extension":".py","mimetype":"text/x-python","name":"python","nbconvert_exporter":"python","pygments_lexer":"ipython3","version":"3.9.12"},"vscode":{"interpreter":{"hash":"1535ff67e39b8771d6c5590ede7f5f04574f4b65772c76b2832c26ac7497ca55"}}},"nbformat":4,"nbformat_minor":2} diff --git a/pan/SMS_Well_being.csv b/pan/SMS_Well_being.csv new file mode 100644 index 0000000000000000000000000000000000000000..1e61629beffc9d0f45cc40368c0a082493fd78a0 --- /dev/null +++ b/pan/SMS_Well_being.csv @@ -0,0 +1,6906 @@ +uID,variable,factor,.id,source,and1.3_1,and1.3_2,and1.3_3,and1.3_4,and1.3_5,and1.4_1,and1.4_2,and1.4_3,and1.4_4,and1.4_5,and1.4_6,and1.4_7,and1.4_8,and1.4_9,and1.4_10,and1.4_11,and1.4_12,and1.4_13,and1.4_14,and1.4_15,and1.4_16,and1.4_17,and1.4_18,and1.4_19,and1.4_20,and2.3_1,and2.3_2,and2.3_3,and2.3_4,and2.3_5,and2.4_1,and2.4_2,and2.4_3,and2.4_4,and2.4_5,and2.4_6,and2.4_7,and2.4_8,and2.4_9,and2.4_10,and2.4_11,and2.4_12,and2.4_13,and2.4_14,and2.4_15,and2.4_16,and2.4_17,and2.4_18,and2.4_19,and2.4_20,Source.Global,Source.Primary,Source.Secondary,Country,Location,Language,Weird,Execution,SubjectPool,Setting,Tablet,Pencil,StudyOrderN,IDiffOrderN,study.order,analysis.type,subset,case.include +2,-0.366738516932946,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,5,4,4,6,2,3,3,1,3,2,1,1,2,4,1,2,5,1,4,1,4,2,5,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Inbar|Hauser|Graham|Kay|Anderson|Rottenstrich|Ross.Slate1|Critcher|Miyamoto|VanLange|Alter|Huang,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,6,Global,all,TRUE +4,-0.917171837573161,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,3,5,4,2,3,3,2,4,2,3,1,3,2,1,4,2,1,3,2,4,4,2,1,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Bauer|VanLange|Huang|Inbar|Graham|Kay|Anderson|Ross.Slate1|Hauser|Miyamoto|Alter|Critcher,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,8,Global,all,TRUE +6,-0.25759691791551,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,2,6,3,5,5,3,1,1,2,3,2,2,1,2,5,1,3,1,3,1,5,2,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Rottenstrich|Hauser|Kay|VanLange|Alter|Huang|Miyamoto|Bauer|Graham|Anderson|Inbar|Ross.Slate1,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,11,Global,all,TRUE +7,-0.0333923771574696,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,6,7,7,7,6,5,1,1,1,5,1,1,3,3,3,1,4,2,3,1,3,4,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Hauser|Graham|VanLange|Alter|Huang|Critcher|Bauer|Inbar|Kay|Rottenstrich|Ross.Slate1|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,1,Global,all,TRUE +8,0.221128903526981,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,5,6,5,5,6,4,4,3,4,2,1,3,2,3,2,1,2,1,3,2,3,2,3,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Critcher|Ross.Slate1|Kay|Miyamoto|Anderson|Rottenstrich|VanLange|Graham|Huang|Hauser|Inbar|Alter,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,6,Global,all,TRUE +10,-0.578815471532182,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,1,1,2,1,2,4,3,3,3,1,2,3,2,2,4,1,2,3,5,2,1,1,1,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Alter|Ross.Slate1|Hauser|Inbar|Graham|Kay|Rottenstrich|Bauer|Miyamoto|VanLange|Critcher|Huang,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,1,Global,all,TRUE +12,-0.0763566634225152,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Ross.Slate1|Rottenstrich|Alter|Critcher|Miyamoto|Hauser|Huang|Anderson|Graham|Bauer|VanLange|Inbar,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,9,Global,all,TRUE +14,-0.806458937032592,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,5,6,6,6,5,4,2,2,1,3,1,1,4,3,1,1,4,3,4,1,1,3,4,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Alter|Hauser|Anderson|Rottenstrich|Ross.Slate1|Miyamoto|Graham|Huang|VanLange|Kay|Inbar|Critcher,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,4,Global,all,TRUE +15,0.0016677857174087,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,6,5,1,5,7,4,5,1,4,4,4,3,4,4,3,3,4,4,3,2,3,5,5,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Inbar|Alter|Rottenstrich|Ross.Slate1|Graham|VanLange|Kay|Hauser|Anderson|Miyamoto|Huang|Bauer,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,10,Global,all,TRUE +16,-0.239281185716505,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,3,5,5,3,4,4,3,2,4,4,5,1,3,2,2,2,3,3,3,3,3,2,4,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Alter|Anderson|Critcher|Graham|Huang|VanLange|Kay|Rottenstrich|Miyamoto|Bauer|Ross.Slate1|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,3,Global,all,TRUE +20,-0.399553546764989,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,6,5,6,6,6,3,2,1,1,3,2,2,3,2,1,3,2,1,2,1,1,2,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|VanLange|Critcher|Graham|Bauer|Rottenstrich|Anderson|Alter|Miyamoto|Kay|Inbar|Huang|Hauser,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,7,Global,all,TRUE +23,0.230098014714685,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,7,7,7,6,7,5,1,1,2,3,1,2,3,4,3,1,4,3,2,3,2,4,1,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Rottenstrich|Ross.Slate1|Alter|Miyamoto|VanLange|Critcher|Graham|Bauer|Anderson|Hauser|Kay|Inbar,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,10,Global,all,TRUE +24,-0.230312074528801,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,2,7,3,1,2,4,4,1,5,3,3,3,1,3,1,1,5,1,4,3,2,2,5,3,5,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Inbar|Miyamoto|Kay|Critcher|Anderson|Bauer|Alter|Ross.Slate1|Graham|Hauser|Rottenstrich|Huang,ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +26,0.420953919006614,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,1,1,1,1,1,1,5,5,1,1,1,5,1,1,5,1,1,1,5,5,5,1,5,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Miyamoto|Inbar|Alter|VanLange|Graham|Kay|Rottenstrich|Anderson|Hauser|Bauer|Ross.Slate1|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,9,Global,all,TRUE +27,-0.291212357698655,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,4,5,5,6,3,3,2,1,3,3,2,1,3,3,2,1,4,1,5,1,2,2,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|VanLange|Huang|Bauer|Kay|Miyamoto|Alter|Ross.Slate1|Graham|Hauser|Critcher|Inbar|Anderson,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,13,Global,all,TRUE +30,0.36454390192243,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,5,6,5,5,6,4,1,1,1,5,4,1,5,3,3,1,4,1,2,1,5,4,4,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Bauer|Alter|Rottenstrich|Miyamoto|Inbar|Graham|Ross.Slate1|Hauser|VanLange|Critcher|Anderson|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood,12,Global,all,TRUE +31,0.14652973267519,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,4,7,6,5,7,3,1,1,2,5,1,1,4,5,1,1,5,1,3,1,1,4,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Rottenstrich|Bauer|Ross.Slate1|Inbar|Huang|Graham|Alter|Anderson|Kay|Critcher|VanLange|Hauser,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,9,Global,all,TRUE +34,-0.379524062686617,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,3,5,5,3,2,3,1,3,3,2,1,2,2,3,1,1,4,3,3,2,3,1,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Hauser|Critcher|Miyamoto|Inbar|Bauer|Kay|Graham|Anderson|Rottenstrich|Huang|Alter|VanLange,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood,9,Global,all,TRUE +37,0.495033129678572,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,3,3,6,6,6,4,2,1,4,4,1,3,5,4,2,3,4,1,4,3,4,5,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Hauser|VanLange|Ross.Slate1|Huang|Alter|Critcher|Rottenstrich|Kay|Anderson|Bauer|Inbar|Miyamoto,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,10,Global,all,TRUE +39,-0.771258549272079,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,6,7,7,6,5,5,1,2,2,4,2,1,3,3,3,4,4,3,3,1,4,4,5,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Rottenstrich|Kay|Critcher|Inbar|Hauser|Anderson|Ross.Slate1|Huang|Miyamoto|Bauer|VanLange|Graham,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,7,Global,all,TRUE +40,0.327365184436115,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,6,5,3,6,2,4,4,4,2,2,1,4,4,2,2,1,3,4,3,4,3,2,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Bauer|VanLange|Ross.Slate1|Critcher|Miyamoto|Kay|Graham|Inbar|Alter|Hauser|Rottenstrich|Anderson,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood,13,Global,all,TRUE +43,-0.490110384795787,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,4,6,3,5,3,3,1,1,2,3,1,2,3,1,1,1,3,1,3,1,4,3,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Hauser|Huang|Ross.Slate1|Rottenstrich|Miyamoto|Alter|VanLange|Critcher|Kay|Graham|Anderson|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood,12,Global,all,TRUE +45,-0.558254606290342,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,7,6,7,6,7,2,3,2,2,3,1,1,3,3,1,1,3,1,2,1,4,3,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Ross.Slate1|Alter|Kay|Miyamoto|Bauer|VanLange|Huang|Inbar|Rottenstrich|Anderson|Hauser|Critcher,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,11,Global,all,TRUE +47,-0.662383753571676,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,5,7,6,7,7,4,1,3,5,5,1,2,2,3,1,1,5,1,3,1,2,4,3,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Rottenstrich|Huang|Miyamoto|Graham|Bauer|Anderson|Hauser|Kay|VanLange|Critcher|Alter|Inbar,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,7,Global,all,TRUE +49,0.980482929265931,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,3,6,6,5,2,3,2,4,2,1,2,3,1,1,2,2,1,3,2,1,3,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Rottenstrich|Ross.Slate1|Hauser|VanLange|Kay|Bauer|Critcher|Huang|Anderson|Graham|Alter|Inbar,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,10,Global,all,TRUE +51,0.539582363920986,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,3,2,3,5,5,2,3,3,3,1,2,4,1,3,4,3,1,4,2,3,3,2,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Anderson|Kay|Hauser|Ross.Slate1|Huang|Alter|Critcher|Miyamoto|Inbar|Bauer|Rottenstrich|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,2,Global,all,TRUE +53,-0.201186900831326,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,5,7,7,7,7,3,1,1,1,2,1,1,3,3,1,2,3,1,4,1,2,2,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Alter|Critcher|Inbar|Rottenstrich|Graham|Bauer|VanLange|Hauser|Anderson|Ross.Slate1|Huang|Miyamoto,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,10,Global,all,TRUE +56,-0.566830335729613,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,2,2,2,5,2,3,4,3,2,4,1,2,1,1,4,1,4,1,3,1,2,4,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|VanLange|Hauser|Inbar|Miyamoto|Anderson|Huang|Rottenstrich|Ross.Slate1|Alter|Bauer|Critcher|Kay,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,6,Global,all,TRUE +57,-0.267884173763548,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,6,7,5,6,7,3,2,2,3,4,2,2,4,5,3,3,3,2,3,2,4,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Inbar|Anderson|Ross.Slate1|Rottenstrich|Critcher|VanLange|Miyamoto|Bauer|Hauser|Graham|Alter|Huang,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE,3,Global,all,TRUE +58,0.221002325095582,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,5,6,5,6,3,3,1,2,1,4,1,1,4,3,1,1,5,1,1,1,5,4,5,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Miyamoto|Ross.Slate1|Bauer|Hauser|Kay|Alter|Inbar|VanLange|Anderson|Graham|Huang|Rottenstrich,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +59,0.917084356190444,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,2,6,4,5,3,5,4,2,1,1,1,3,2,1,2,1,3,1,2,1,3,2,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Miyamoto|Hauser|Huang|Anderson|Inbar|VanLange|Bauer|Rottenstrich|Alter|Critcher|Ross.Slate1|Kay,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood,5,Global,all,TRUE +60,-0.918223178916461,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,5,7,6,5,3,3,3,3,1,1,2,2,2,3,4,3,3,1,4,1,1,3,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|VanLange|Hauser|Graham|Miyamoto|Rottenstrich|Anderson|Bauer|Kay|Inbar|Ross.Slate1|Alter|Critcher,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,7,Global,all,TRUE +64,-1.13254749202913,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,6,5,7,6,5,5,1,1,1,1,1,1,5,5,1,1,1,1,2,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Huang|VanLange|Anderson|Hauser|Ross.Slate1|Inbar|Bauer|Miyamoto|Alter|Critcher|Kay|Rottenstrich,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +66,-0.202240467645225,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,3,3,3,5,6,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|VanLange|Miyamoto|Hauser|Critcher|Alter|Kay|Anderson|Rottenstrich|Ross.Slate1|Graham|Inbar|Bauer,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,8,Global,all,TRUE +67,-0.473239375688515,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,4,6,5,6,5,2,2,3,2,2,1,2,2,3,3,1,3,1,2,1,2,1,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Miyamoto|Critcher|Kay|Rottenstrich|Inbar|Hauser|Bauer|Ross.Slate1|Alter|Anderson|VanLange|Huang,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,11,Global,all,TRUE +70,0.147316496172056,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,7,4,7,7,7,5,2,4,5,1,1,1,1,1,1,1,5,3,5,2,3,1,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Rottenstrich|Kay|Graham|Inbar|Bauer|Huang|Ross.Slate1|Alter|Anderson|VanLange|Miyamoto|Hauser,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +76,-2.17542139371861,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,3,5,4,6,5,3,2,2,4,3,1,2,3,2,1,2,3,1,4,1,1,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Miyamoto|Anderson|Critcher|Alter|Kay|Rottenstrich|Hauser|VanLange|Graham|Bauer|Inbar|Huang,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing,3,Global,all,TRUE +78,-1.42674800557613,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,5,3,7,6,5,3,3,1,3,2,2,2,1,4,1,1,3,1,4,3,2,1,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Bauer|Rottenstrich|Anderson|Hauser|VanLange|Inbar|Graham|Miyamoto|Alter|Ross.Slate1|Kay|Critcher,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,4,Global,all,TRUE +80,-0.637470621659201,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,4,5,6,4,5,3,2,1,3,5,1,1,3,4,2,1,4,1,3,1,3,3,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Alter|Huang|Rottenstrich|VanLange|Critcher|Kay|Ross.Slate1|Inbar|Miyamoto|Bauer|Graham|Hauser,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing,1,Global,all,TRUE +83,-0.320475530811165,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,5,6,6,4,5,2,1,4,2,3,3,4,1,2,4,1,3,4,3,1,3,1,2,2,5,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Bauer|Graham|Hauser|Alter|Rottenstrich|Critcher|VanLange|Huang|Kay|Miyamoto|Anderson|Inbar,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood,12,Global,all,TRUE +85,0.122403364259581,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,5,5,5,5,1,2,1,1,2,1,1,1,1,3,1,1,3,1,1,1,1,1,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Ross.Slate1|Huang|Bauer|Anderson|Rottenstrich|Hauser|Alter|Critcher|Kay|Graham|Miyamoto|VanLange,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +87,-1.17763033290561,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,4,6,6,5,4,4,3,4,2,4,2,2,4,2,2,2,3,3,3,1,4,3,4,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Graham|Anderson|Alter|Kay|Rottenstrich|Huang|VanLange|Ross.Slate1|Critcher|Bauer|Inbar|Hauser,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,3,Global,all,TRUE +88,0.321174812925314,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,6,5,6,6,6,3,5,2,1,2,1,2,1,1,2,2,1,2,1,3,2,1,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Huang|Anderson|Critcher|Kay|Alter|Ross.Slate1|Inbar|Hauser|VanLange|Graham|Bauer|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,3,Global,all,TRUE +89,-0.289107449541455,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,5,6,5,6,6,4,1,1,1,3,2,1,2,1,1,1,1,1,2,1,1,3,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Huang|Miyamoto|Anderson|Alter|Bauer|Graham|Inbar|Ross.Slate1|Rottenstrich|VanLange|Hauser|Critcher,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,4,Global,all,TRUE +91,0.404476291647774,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,4,3,5,4,1,2,2,2,2,4,1,1,5,3,1,3,4,1,3,1,3,3,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Hauser|Kay|Anderson|Critcher|VanLange|Bauer|Huang|Inbar|Alter|Rottenstrich|Graham|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,4,Global,all,TRUE +92,-0.367269898096415,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,5,5,6,6,6,4,1,1,3,4,1,1,1,3,1,1,2,1,4,1,2,2,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Anderson|Bauer|Huang|Hauser|Rottenstrich|Inbar|Alter|Miyamoto|Ross.Slate1|Critcher|Kay|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,2,Global,all,TRUE +95,-0.580400419509551,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,5,6,6,5,7,2,5,4,4,3,1,5,3,2,4,1,5,2,4,5,4,2,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Inbar|Ross.Slate1|Graham|Rottenstrich|Critcher|Bauer|Anderson|Hauser|VanLange|Huang|Alter|Kay,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,8,Global,all,TRUE +96,0.000349641057074264,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,5,7,6,5,7,2,1,2,2,1,1,1,1,1,2,1,2,2,3,1,3,1,2,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Rottenstrich|Critcher|Huang|Graham|VanLange|Miyamoto|Bauer|Inbar|Anderson|Hauser|Ross.Slate1|Kay,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,10,Global,all,TRUE +97,-0.788394136225786,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,7,7,7,7,6,2,3,4,2,3,1,3,2,2,4,1,3,1,4,3,4,1,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Ross.Slate1|Miyamoto|VanLange|Kay|Critcher|Bauer|Alter|Hauser|Inbar|Rottenstrich|Graham|Anderson,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,13,Global,all,TRUE +98,0.860407535789226,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,3,3,5,6,3,4,1,1,2,3,1,1,4,3,1,4,4,2,5,2,3,3,3,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Rottenstrich|Huang|VanLange|Miyamoto|Inbar|Hauser|Ross.Slate1|Graham|Alter|Bauer|Critcher|Kay,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing,1,Global,all,TRUE +99,0.249987273907422,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,1,4,5,3,1,4,2,1,3,2,2,1,3,2,1,1,3,1,2,1,3,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Bauer|Rottenstrich|Anderson|Critcher|Ross.Slate1|Alter|Graham|Hauser|Miyamoto|Inbar|Kay|Huang,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,4,Global,all,TRUE +100,-0.0718778183204816,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,3,5,4,4,2,1,2,1,2,3,1,2,1,4,3,1,2,1,2,3,4,3,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Bauer|Miyamoto|VanLange|Graham|Inbar|Rottenstrich|Hauser|Kay|Alter|Ross.Slate1|Huang|Anderson,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,13,Global,all,TRUE +104,0.800827622750305,High,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,1,4,2,1,1,3,2,5,4,3,4,2,4,5,4,5,3,5,2,3,5,2,2,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Miyamoto|Ross.Slate1|Rottenstrich|VanLange|Anderson|Graham|Huang|Hauser|Critcher|Kay|Alter|Inbar,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,6,Global,all,TRUE +108,0.833249270833916,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,7,7,7,6,7,4,2,1,4,3,1,1,4,2,1,1,5,1,4,1,1,4,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Critcher|Graham|VanLange|Alter|Bauer|Inbar|Huang|Rottenstrich|Kay|Hauser|Miyamoto|Anderson,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,13,Global,all,TRUE +109,-0.150042492346041,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,5,5,5,5,5,2,2,3,2,1,1,2,1,2,2,1,2,1,2,1,3,2,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Alter|VanLange|Inbar|Hauser|Miyamoto|Critcher|Bauer|Ross.Slate1|Kay|Anderson|Rottenstrich|Huang,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +111,0.977844414474663,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,1,1,1,1,7,2,2,1,4,1,1,1,1,1,1,1,5,1,4,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Bauer|Alter|Inbar|VanLange|Critcher|Hauser|Miyamoto|Huang|Kay|Anderson|Graham|Ross.Slate1,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,11,Global,all,TRUE +119,-0.713261358739927,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,6,7,7,6,4,3,4,4,4,1,2,4,2,3,4,3,4,1,4,4,4,2,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|VanLange|Huang|Kay|Inbar|Ross.Slate1|Rottenstrich|Bauer|Hauser|Alter|Graham|Miyamoto|Anderson,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,13,Global,all,TRUE +121,-0.114322144405696,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,5,6,5,7,4,2,1,1,1,1,1,1,2,3,1,2,3,1,1,1,2,1,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Graham|Rottenstrich|Kay|Alter|Bauer|Inbar|Huang|Critcher|Miyamoto|Hauser|VanLange|Anderson,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,13,Global,all,TRUE +122,1.06339102623996,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,5,7,6,6,6,4,2,1,3,3,1,1,4,4,1,1,4,1,4,1,2,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Bauer|Rottenstrich|Alter|VanLange|Anderson|Huang|Miyamoto|Critcher|Graham|Inbar|Ross.Slate1|Hauser,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,6,Global,all,TRUE +123,-0.764407992695811,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,6,7,6,6,7,3,1,2,3,3,1,1,2,3,2,1,4,1,1,1,1,3,1,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Inbar|Graham|Critcher|VanLange|Hauser|Miyamoto|Alter|Rottenstrich|Anderson|Ross.Slate1|Kay|Bauer,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood,10,Global,all,TRUE +124,0.636989758528051,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,4,6,6,5,4,3,1,1,4,2,1,1,2,4,1,1,4,1,4,1,1,2,4,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|VanLange|Graham|Huang|Hauser|Bauer|Rottenstrich|Kay|Ross.Slate1|Alter|Anderson|Critcher|Inbar,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,11,Global,all,TRUE +125,0.498851789715139,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,5,5,5,5,3,3,2,1,3,1,1,1,3,3,1,1,3,1,3,1,3,1,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Hauser|VanLange|Rottenstrich|Anderson|Miyamoto|Kay|Ross.Slate1|Inbar|Bauer|Critcher|Graham|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,5,Global,all,TRUE +127,0.29824001073864,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,5,6,6,6,5,5,1,2,2,3,1,1,4,4,2,1,3,1,4,1,1,4,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Miyamoto|Ross.Slate1|VanLange|Anderson|Bauer|Alter|Hauser|Graham|Rottenstrich|Huang|Critcher|Kay,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,5,Global,all,TRUE +129,-0.339591672961272,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,5,6,6,6,3,4,1,2,3,5,1,2,3,4,4,1,5,1,4,1,3,3,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Huang|Bauer|Kay|Graham|Inbar|VanLange|Ross.Slate1|Hauser|Anderson|Critcher|Miyamoto|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection,10,Global,all,TRUE +132,0.341204297003686,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,5,6,5,6,5,4,4,3,3,3,1,2,5,2,4,1,3,2,3,2,4,3,3,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Anderson|Huang|Rottenstrich|Hauser|Critcher|Bauer|Inbar|Graham|VanLange|Ross.Slate1|Alter|Miyamoto,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,2,Global,all,TRUE +136,-0.430403893325467,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,3,6,3,4,1,2,3,2,2,2,1,1,1,2,1,1,2,1,4,2,1,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Anderson|Graham|Huang|Miyamoto|Bauer|Alter|Hauser|Critcher|Inbar|VanLange|Kay|Ross.Slate1,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,2,Global,all,TRUE +140,-0.646046351098472,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,4,5,6,6,6,4,1,1,4,4,1,1,3,4,1,1,5,1,4,1,1,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Ross.Slate1|Graham|Huang|Kay|Inbar|Alter|Bauer|Miyamoto|VanLange|Critcher|Rottenstrich|Hauser,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +142,-1.19872703025212,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,2,2,3,2,2,2,4,3,2,2,4,4,2,2,3,3,3,3,3,2,2,2,2,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Rottenstrich|Kay|Bauer|Alter|Critcher|Ross.Slate1|Hauser|Graham|Huang|VanLange|Miyamoto|Anderson,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,13,Global,all,TRUE +143,0.0256561547179827,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,7,7,7,6,6,3,1,1,4,3,1,1,3,3,1,1,3,1,3,1,3,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Hauser|VanLange|Kay|Ross.Slate1|Huang|Inbar|Miyamoto|Rottenstrich|Bauer|Alter|Anderson|Graham,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +144,-0.114322144405696,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,5,7,6,6,2,2,1,1,4,1,1,1,1,1,1,1,2,1,4,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Critcher|Huang|Anderson|Miyamoto|Inbar|Alter|Graham|VanLange|Bauer|Kay|Rottenstrich|Ross.Slate1,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,4,Global,all,TRUE +146,0.607066400350074,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,5,6,6,6,2,2,1,1,2,1,1,1,1,3,1,1,1,1,2,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Graham|Alter|Miyamoto|Rottenstrich|Bauer|Hauser|Inbar|Ross.Slate1|Anderson|Huang|VanLange|Critcher,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five,10,Global,all,TRUE +147,1.11018539352521,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,5,6,6,6,6,5,1,1,5,5,1,1,4,4,2,1,5,1,5,1,2,4,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Kay|Alter|Hauser|Miyamoto|Inbar|Graham|VanLange|Ross.Slate1|Anderson|Bauer|Rottenstrich|Critcher,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +148,-1.0415972722499,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,5,6,6,5,2,3,2,3,1,1,1,2,3,3,3,2,4,2,3,3,3,3,1,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Anderson|Hauser|Alter|Bauer|Inbar|Rottenstrich|VanLange|Miyamoto|Critcher|Kay|Graham|Ross.Slate1,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing,2,Global,all,TRUE +149,-0.782597146463417,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,5,6,7,6,2,3,1,1,2,3,1,1,4,4,2,1,4,1,4,1,2,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Critcher|Ross.Slate1|Rottenstrich|Huang|Graham|Bauer|Alter|Anderson|Kay|Inbar|Hauser|VanLange,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +153,-0.355130890953974,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,7,7,7,5,3,4,2,3,5,4,1,1,3,4,1,1,5,1,5,2,1,4,2,5,3,,,,,,,,,,,,,,,,,,,,,,,,,,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Hauser|Miyamoto|Critcher|Huang|Rottenstrich|Bauer|Inbar|Graham|Alter|VanLange|Anderson|Kay,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing,12,Global,all,TRUE +154,0.496213274923871,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,3,7,5,5,6,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Miyamoto|Ross.Slate1|Rottenstrich|Huang|Alter|VanLange|Bauer|Critcher|Graham|Anderson|Hauser|Inbar,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,11,Global,all,TRUE +156,-0.864847283842578,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,5,6,1,6,3,3,2,1,4,4,1,1,4,4,1,1,4,1,4,1,1,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Miyamoto|Anderson|Rottenstrich|Huang|Critcher|Bauer|Inbar|Ross.Slate1|Hauser|Graham|VanLange|Kay,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,3,Global,all,TRUE +163,0.103160643678075,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,7,7,7,7,7,1,2,1,5,1,1,1,3,5,1,1,5,1,1,1,1,1,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Miyamoto|VanLange|Graham|Hauser|Critcher|Anderson|Rottenstrich|Inbar|Alter|Ross.Slate1|Huang|Kay,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,7,Global,all,TRUE +166,-1.09748732915425,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,5,5,6,3,5,4,2,2,4,4,2,2,4,4,3,1,4,2,4,1,2,4,4,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Graham|Bauer|Huang|Miyamoto|Ross.Slate1|VanLange|Inbar|Alter|Critcher|Rottenstrich|Kay|Anderson,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,13,Global,all,TRUE +167,0.0592693690305282,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,5,6,6,7,5,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Alter|Inbar|Rottenstrich|Critcher|Huang|Hauser|Kay|Miyamoto|Anderson|Ross.Slate1|VanLange|Graham,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,10,Global,all,TRUE +168,-0.112217236248496,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,6,5,3,6,6,4,1,1,5,5,1,1,4,1,1,1,5,1,5,1,2,5,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Rottenstrich|Inbar|Alter|Miyamoto|VanLange|Graham|Hauser|Huang|Anderson|Ross.Slate1|Bauer|Kay,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +169,-0.492217518423586,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,5,6,6,5,3,3,3,3,4,4,2,2,3,4,3,2,4,2,4,2,2,4,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Ross.Slate1|VanLange|Inbar|Huang|Critcher|Rottenstrich|Hauser|Graham|Alter|Kay|Bauer|Miyamoto,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE,1,Global,all,TRUE +173,0.445867050919089,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,1,1,2,2,6,5,3,5,5,5,5,2,5,5,5,5,5,3,5,3,1,5,5,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Huang|Hauser|Alter|Graham|Kay|Anderson|Ross.Slate1|Miyamoto|Rottenstrich|VanLange|Inbar|Bauer,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,7,Global,all,TRUE +174,-1.01484603549726,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,6,6,6,6,7,3,1,1,1,1,1,1,2,3,1,1,4,1,3,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Rottenstrich|Critcher|Graham|Anderson|Kay|Hauser|Huang|VanLange|Ross.Slate1|Alter|Bauer|Miyamoto,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,5,Global,all,TRUE +177,0.212693398973345,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,5,4,5,2,2,5,1,1,5,3,1,1,4,4,1,1,5,1,5,1,1,2,5,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|VanLange|Rottenstrich|Ross.Slate1|Inbar|Kay|Anderson|Bauer|Hauser|Miyamoto|Critcher|Huang|Graham,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +179,0.218363810304314,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,5,6,6,3,5,3,4,3,3,3,4,3,3,3,4,3,2,4,1,3,3,4,4,4,5,,,,,,,,,,,,,,,,,,,,,,,,,,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Bauer|Critcher|Anderson|VanLange|Graham|Alter|Huang|Miyamoto|Rottenstrich|Kay|Ross.Slate1|Hauser,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood,4,Global,all,TRUE +183,0.757329729851191,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,6,7,6,7,6,4,2,1,2,3,1,1,3,5,1,1,4,1,3,2,2,4,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Bauer|Miyamoto|Rottenstrich|VanLange|Inbar|Kay|Graham|Alter|Hauser|Ross.Slate1|Anderson|Critcher,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood,12,Global,all,TRUE +185,0.0408134119458878,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,6,6,6,7,5,2,1,1,3,3,2,2,3,3,3,2,4,1,2,1,1,2,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Ross.Slate1|Anderson|Bauer|VanLange|Miyamoto|Graham|Huang|Kay|Critcher|Inbar|Hauser|Rottenstrich,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,3,Global,all,TRUE +186,-0.63905556963657,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,5,5,5,6,2,4,1,1,3,1,1,1,1,2,1,1,3,1,4,1,2,3,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Miyamoto|Kay|VanLange|Critcher|Anderson|Ross.Slate1|Bauer|Huang|Alter|Hauser|Rottenstrich|Graham,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood,6,Global,all,TRUE +187,-0.148595543783708,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,4,6,6,5,5,1,1,1,3,2,1,1,2,1,2,1,2,1,2,1,1,2,1,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Critcher|Rottenstrich|Anderson|Graham|Bauer|VanLange|Huang|Ross.Slate1|Kay|Inbar|Hauser|Alter,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,4,Global,all,TRUE +190,-0.0747831364287839,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,6,6,6,6,5,3,1,1,4,2,1,1,3,2,1,1,2,1,2,1,1,2,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Anderson|Alter|Kay|Ross.Slate1|Huang|Bauer|VanLange|Inbar|Critcher|Hauser|Rottenstrich|Graham,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +192,-0.713923769275993,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,5,7,4,6,3,2,1,2,4,4,1,1,2,3,1,1,2,1,3,2,1,5,5,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Kay|Hauser|Ross.Slate1|Graham|Huang|VanLange|Anderson|Rottenstrich|Critcher|Miyamoto|Bauer|Alter,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,8,Global,all,TRUE +196,0.714494247488144,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,4,5,5,3,2,4,3,3,4,4,3,3,4,2,4,3,4,3,3,3,3,3,4,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Inbar|Hauser|Alter|Graham|Miyamoto|VanLange|Ross.Slate1|Huang|Rottenstrich|Anderson|Bauer|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,11,Global,all,TRUE +197,0.437824928113886,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,5,5,5,3,3,3,1,2,1,2,1,1,3,2,1,1,3,1,2,1,1,2,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Anderson|VanLange|Critcher|Bauer|Ross.Slate1|Rottenstrich|Graham|Hauser|Kay|Huang|Miyamoto|Inbar,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,2,Global,all,TRUE +198,0.0936715723105393,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,5,6,6,4,2,1,2,4,3,3,2,2,1,3,2,1,4,1,3,1,1,2,1,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Graham|Inbar|Kay|Huang|Alter|Anderson|Rottenstrich|Critcher|Hauser|Bauer|VanLange|Miyamoto,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +202,1.12468469115825,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,5,6,6,6,5,4,1,1,3,4,1,1,4,2,1,1,2,1,3,1,1,4,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Rottenstrich|Kay|Bauer|Anderson|Miyamoto|Hauser|VanLange|Critcher|Inbar|Graham|Huang|Ross.Slate1,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,5,Global,all,TRUE +204,-0.488132055069986,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,5,6,6,6,6,5,1,1,4,3,1,1,2,2,2,1,2,1,4,1,2,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Hauser|Miyamoto|Bauer|Critcher|Alter|VanLange|Graham|Inbar|Huang|Ross.Slate1|Rottenstrich|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,1,Global,all,TRUE +207,0.382595056275,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,4,4,6,5,2,3,2,2,2,3,1,1,2,2,2,1,2,1,2,1,1,1,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Critcher|Alter|Rottenstrich|Inbar|Kay|Anderson|Miyamoto|Hauser|Ross.Slate1|VanLange|Bauer|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,7,Global,all,TRUE +209,0.391157139260035,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,5,6,6,6,6,4,1,1,4,3,1,1,2,2,1,1,4,1,3,1,1,3,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Ross.Slate1|Hauser|Critcher|Graham|Kay|Inbar|Miyamoto|Rottenstrich|Anderson|Huang|VanLange|Alter,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,10,Global,all,TRUE +210,0.525869829784814,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,4,6,6,6,3,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Rottenstrich|Huang|Bauer|Miyamoto|Alter|Graham|Inbar|VanLange|Critcher|Hauser|Kay|Anderson,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,13,Global,all,TRUE +213,0.479609069133633,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,6,6,6,6,2,1,3,3,4,1,1,2,1,1,2,1,1,2,3,1,2,1,1,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Bauer|Critcher|Kay|Alter|Hauser|Miyamoto|Inbar|Huang|Anderson|VanLange|Rottenstrich|Ross.Slate1,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +214,0.615235101586677,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,3,5,3,3,1,2,2,3,1,1,1,2,1,1,3,1,1,1,2,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Hauser|Huang|Bauer|Miyamoto|Critcher|VanLange|Graham|Kay|Anderson|Rottenstrich|Ross.Slate1|Inbar,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,10,Global,all,TRUE +218,-0.00571415202232721,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,4,3,5,5,3,3,1,1,3,1,1,1,1,1,1,1,1,1,3,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Anderson|Huang|Alter|VanLange|Miyamoto|Ross.Slate1|Inbar|Rottenstrich|Kay|Bauer|Hauser|Graham,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,2,Global,all,TRUE +219,-0.0544868490333779,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,3,6,5,4,4,3,1,2,4,1,1,1,2,2,1,2,4,1,4,1,1,3,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Critcher|Ross.Slate1|Hauser|Inbar|Graham|Rottenstrich|Kay|VanLange|Anderson|Huang|Bauer|Alter,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,10,Global,all,TRUE +220,-0.747270180271505,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,6,7,7,7,7,2,1,2,5,3,1,1,2,2,2,1,4,1,4,1,2,2,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Anderson|Critcher|Alter|Rottenstrich|Bauer|Huang|Miyamoto|Inbar|Graham|Kay|Hauser|Ross.Slate1,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,2,Global,all,TRUE +222,0.324726669644847,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,5,6,5,6,2,2,1,1,2,1,1,1,1,1,2,1,2,1,3,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Critcher|Anderson|Huang|Graham|Ross.Slate1|Rottenstrich|Hauser|Miyamoto|Kay|Inbar|Alter|Bauer,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,3,Global,all,TRUE +224,0.37178784024713,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,4,3,5,3,3,5,2,1,4,1,1,2,4,2,1,1,4,1,3,1,1,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|VanLange|Inbar|Ross.Slate1|Alter|Huang|Rottenstrich|Miyamoto|Bauer|Hauser|Kay|Anderson|Critcher,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,12,Global,all,TRUE +226,-0.475217705414316,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,5,5,6,5,2,3,2,1,2,1,1,1,1,1,1,1,1,1,3,1,1,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Graham|Huang|Critcher|Bauer|Kay|VanLange|Ross.Slate1|Anderson|Rottenstrich|Miyamoto|Hauser|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,9,Global,all,TRUE +227,-1.06347850762268,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,5,5,6,5,5,4,1,1,4,4,1,1,4,4,2,1,4,3,4,2,2,5,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Hauser|Inbar|Bauer|Rottenstrich|Ross.Slate1|VanLange|Huang|Kay|Graham|Miyamoto|Critcher|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,13,Global,all,TRUE +229,0.958475115461759,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,2,4,3,2,1,3,2,2,4,2,1,3,3,1,3,1,4,3,2,2,1,2,1,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Miyamoto|Graham|Alter|Anderson|Hauser|Inbar|Bauer|VanLange|Huang|Ross.Slate1|Rottenstrich|Kay,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood,5,Global,all,TRUE +230,1.05825422154306,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,4,6,5,5,3,3,2,3,4,2,1,1,1,2,1,1,1,1,4,1,1,2,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Anderson|Inbar|Hauser|Bauer|Graham|Alter|Rottenstrich|Huang|VanLange|Kay|Miyamoto|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,2,Global,all,TRUE +231,-1.27002527577658,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,6,5,5,5,6,1,1,1,4,1,1,1,1,1,2,1,3,1,3,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Inbar|Rottenstrich|Hauser|Bauer|Critcher|Graham|VanLange|Kay|Alter|Anderson|Huang|Ross.Slate1,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,11,Global,all,TRUE +240,-0.0378826432431398,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,6,6,6,5,3,4,1,1,3,2,1,1,3,4,1,1,4,1,4,1,1,4,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Kay|Ross.Slate1|Miyamoto|Alter|Huang|Critcher|Graham|VanLange|Bauer|Inbar|Rottenstrich|Hauser,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +241,-1.34726518689024,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,3,5,4,5,3,2,1,1,2,1,1,1,1,3,1,1,3,1,4,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Hauser|Critcher|Miyamoto|Inbar|Rottenstrich|Kay|Ross.Slate1|VanLange|Alter|Bauer|Huang|Anderson,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,13,Global,all,TRUE +244,-0.145830450561041,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,5,6,6,6,2,3,1,1,2,2,1,1,4,2,2,1,3,1,3,4,1,3,3,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Huang|Anderson|Kay|Bauer|Inbar|Graham|Ross.Slate1|Critcher|Alter|Miyamoto|Rottenstrich|VanLange,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing,3,Global,all,TRUE +248,-1.05939304426907,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,5,7,6,7,5,1,1,4,5,1,1,3,1,2,5,1,4,4,4,2,1,2,2,1,4,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Alter|Hauser|Ross.Slate1|Anderson|Bauer|Huang|Inbar|Critcher|Rottenstrich|Kay|VanLange|Miyamoto,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing,5,Global,all,TRUE +249,0.519019273208546,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,5,5,6,5,6,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Bauer|Anderson|Inbar|Kay|Miyamoto|Ross.Slate1|Huang|VanLange|Hauser|Graham|Rottenstrich|Alter,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,3,Global,all,TRUE +250,0.317609309751545,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,6,6,6,5,6,5,3,5,5,5,1,2,5,5,4,1,5,1,4,2,3,5,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|Critcher|Alter|Graham|VanLange|Huang|Ross.Slate1|Kay|Rottenstrich|Anderson|Bauer|Inbar,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,11,Global,all,TRUE +251,-1.66308013249297,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,7,7,7,7,7,5,1,1,5,5,1,1,4,3,1,1,5,1,5,1,1,5,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Bauer|VanLange|Miyamoto|Critcher|Ross.Slate1|Huang|Inbar|Rottenstrich|Kay|Alter|Hauser|Graham,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,1,Global,all,TRUE +256,0.911020563111042,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,5,6,7,6,7,4,1,1,3,2,1,1,1,4,1,1,4,1,4,1,1,3,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Rottenstrich|Huang|Graham|Critcher|Miyamoto|Hauser|Kay|Anderson|Inbar|Ross.Slate1|Alter|VanLange,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +257,0.346748129903256,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,4,5,4,5,3,4,2,1,2,2,1,2,3,2,1,1,4,1,3,1,2,3,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Huang|Graham|Hauser|Kay|Rottenstrich|VanLange|Miyamoto|Bauer|Inbar|Ross.Slate1|Alter|Critcher,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing,1,Global,all,TRUE +260,0.880703823184632,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,7,2,1,4,2,1,2,3,1,1,5,5,1,1,2,4,2,4,2,3,2,1,2,1,4,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Inbar|Rottenstrich|Graham|Anderson|Huang|VanLange|Bauer|Ross.Slate1|Miyamoto|Kay|Hauser|Critcher,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,5,Global,all,TRUE +264,-0.750035273494172,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,2,6,4,2,2,2,5,4,2,1,1,5,2,2,2,2,3,2,3,2,1,1,2,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Graham|Ross.Slate1|Hauser|Miyamoto|Kay|Inbar|Anderson|VanLange|Bauer|Alter|Huang|Rottenstrich,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +265,-0.738174490652402,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,4,6,6,5,4,3,2,1,4,3,1,1,4,2,1,2,4,1,4,1,1,3,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Miyamoto|Ross.Slate1|Kay|Hauser|Alter|Bauer|Rottenstrich|Anderson|Inbar|Huang|VanLange|Critcher,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,9,Global,all,TRUE +266,-1.03237722967,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,3,3,6,5,2,4,2,2,1,3,1,1,4,2,1,1,4,1,3,1,3,3,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Alter|Kay|Inbar|Ross.Slate1|Miyamoto|Huang|Bauer|Anderson|VanLange|Hauser|Rottenstrich|Graham,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +273,0.14968820764629,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,5,6,5,6,2,3,2,2,3,2,1,1,2,3,3,1,2,1,3,1,1,2,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Graham|Alter|Rottenstrich|Bauer|Ross.Slate1|Huang|Hauser|Kay|Critcher|Inbar|Anderson|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing,12,Global,all,TRUE +274,-0.607153881732791,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,6,6,5,7,5,3,1,3,4,1,1,1,2,1,1,1,2,1,4,1,1,2,1,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Rottenstrich|Inbar|Bauer|Anderson|Miyamoto|Alter|VanLange|Kay|Hauser|Graham|Ross.Slate1|Huang,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing,5,Global,all,TRUE +277,-0.289765409136322,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,7,6,6,7,3,4,3,4,4,4,2,2,5,3,2,1,4,1,4,1,1,4,5,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Rottenstrich|Hauser|Ross.Slate1|Bauer|Alter|Huang|Critcher|Miyamoto|VanLange|Kay|Graham|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,1,Global,all,TRUE +284,0.157070145386026,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,5,6,6,6,1,4,3,2,5,4,3,3,4,4,3,4,5,1,3,2,2,4,5,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Miyamoto|VanLange|Kay|Critcher|Anderson|Huang|Hauser|Ross.Slate1|Graham|Alter|Rottenstrich|Inbar,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,6,Global,all,TRUE +287,0.338172400463985,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,5,6,5,6,4,3,1,1,5,2,1,2,4,4,2,1,4,1,5,1,1,3,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Rottenstrich|Miyamoto|Alter|Ross.Slate1|Inbar|Kay|VanLange|Bauer|Critcher|Huang|Anderson|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,12,Global,all,TRUE +288,0.14203946658952,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,5,7,7,5,2,4,2,1,4,4,1,1,5,2,2,1,5,1,5,1,2,3,5,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Bauer|Kay|Rottenstrich|Alter|Critcher|Graham|Anderson|Hauser|Inbar|Miyamoto|Huang|Ross.Slate1,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,8,Global,all,TRUE +290,0.656359057540957,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,4,4,5,3,3,4,1,4,2,3,2,1,1,1,2,3,1,2,3,1,1,2,2,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Graham|VanLange|Kay|Ross.Slate1|Miyamoto|Inbar|Bauer|Alter|Rottenstrich|Huang|Hauser|Critcher,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,1,Global,all,TRUE +291,-0.370428373067514,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,1,3,3,3,2,3,1,3,3,1,1,1,3,3,1,1,4,1,3,1,1,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|VanLange|Graham|Kay|Rottenstrich|Hauser|Inbar|Miyamoto|Critcher|Anderson|Huang|Bauer|Alter,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,10,Global,all,TRUE +298,-0.48629172475922,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,5,7,6,5,6,1,1,1,2,5,1,1,1,5,1,1,1,1,3,1,1,3,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Bauer|VanLange|Miyamoto|Kay|Graham|Alter|Rottenstrich|Inbar|Huang|Ross.Slate1|Anderson|Critcher,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,12,Global,all,TRUE +302,0.057951224370194,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,6,7,5,6,7,2,2,2,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Miyamoto|Huang|Graham|Critcher|Inbar|Hauser|Ross.Slate1|Anderson|Bauer|Rottenstrich|Kay|Alter,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,9,Global,all,TRUE +304,1.14116231851709,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,1,3,2,1,3,1,1,3,4,3,2,3,2,1,2,2,3,1,2,1,2,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Kay|Miyamoto|Rottenstrich|Alter|Huang|Anderson|Bauer|Inbar|Hauser|Graham|Critcher|VanLange,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,7,Global,all,TRUE +305,-0.0240435306755688,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,5,6,6,5,3,5,1,1,4,2,1,1,2,3,1,1,2,1,4,1,1,2,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Ross.Slate1|Anderson|Alter|Critcher|Huang|Graham|Kay|Hauser|Inbar|VanLange|Bauer|Rottenstrich,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE,3,Global,all,TRUE +306,-0.0559337975957106,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,2,3,5,4,1,2,1,3,4,1,2,1,1,3,3,3,4,1,2,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Critcher|Alter|VanLange|Huang|Bauer|Rottenstrich|Ross.Slate1|Kay|Hauser|Anderson|Graham|Inbar,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,11,Global,all,TRUE +308,-0.0569873644096103,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,4,5,4,5,4,3,3,1,3,3,1,3,1,3,1,1,2,1,3,3,3,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Anderson|Critcher|VanLange|Miyamoto|Huang|Ross.Slate1|Inbar|Graham|Hauser|Kay|Bauer|Rottenstrich,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,2,Global,all,TRUE +310,-0.413266080901161,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,3,6,5,6,1,3,1,2,2,2,1,1,1,1,1,1,2,1,3,1,1,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Ross.Slate1|Huang|Bauer|Anderson|Alter|Hauser|Critcher|Rottenstrich|Graham|Kay|VanLange|Inbar,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection,5,Global,all,TRUE +311,-0.259715472526946,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,4,1,1,1,1,1,5,3,1,1,1,4,1,1,1,1,2,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Rottenstrich|Miyamoto|Inbar|Hauser|Critcher|Ross.Slate1|Graham|Bauer|Alter|Kay|Anderson|Huang,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,12,Global,all,TRUE +313,-0.970687957532679,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,2,3,2,2,2,2,2,5,2,1,2,5,1,1,5,5,1,5,2,1,2,1,1,1,5,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Bauer|Alter|Kay|Rottenstrich|Hauser|Anderson|Ross.Slate1|VanLange|Inbar|Miyamoto|Graham|Huang,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,7,Global,all,TRUE +314,-1.17525862143138,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,5,6,5,6,2,3,1,2,5,3,2,2,4,3,2,1,3,3,3,1,1,4,4,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Miyamoto|Critcher|Hauser|Graham|Ross.Slate1|Anderson|VanLange|Inbar|Bauer|Rottenstrich|Kay|Alter,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,7,Global,all,TRUE +316,-0.503024734451457,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,5,6,5,4,6,5,1,1,4,2,1,2,1,1,1,1,1,1,4,1,1,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Miyamoto|Critcher|Graham|Kay|Alter|Bauer|Hauser|VanLange|Huang|Anderson|Rottenstrich|Ross.Slate1,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,11,Global,all,TRUE +318,-0.635756869779835,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,7,6,6,5,3,4,2,2,2,3,1,1,2,4,1,1,3,1,3,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Bauer|Kay|Inbar|Alter|Critcher|Graham|Anderson|Huang|VanLange|Ross.Slate1|Miyamoto|Rottenstrich,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing,8,Global,all,TRUE +319,-0.359494578608245,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,3,4,4,2,1,1,3,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Alter|Huang|Bauer|Inbar|Hauser|Ross.Slate1|Rottenstrich|VanLange|Critcher|Graham|Miyamoto|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood,13,Global,all,TRUE +320,-0.417489543669798,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,6,6,6,6,2,4,1,1,1,1,1,1,1,3,1,1,4,1,4,1,1,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Anderson|Kay|Rottenstrich|Bauer|Miyamoto|Huang|VanLange|Graham|Critcher|Hauser|Inbar|Alter,ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,2,Global,all,TRUE +322,0.800827622750305,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,4,3,5,4,1,4,1,1,3,1,1,1,4,2,3,1,3,1,4,1,1,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Kay|Critcher|Alter|Bauer|Inbar|Rottenstrich|VanLange|Ross.Slate1|Graham|Huang|Hauser|Anderson,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,13,Global,all,TRUE +323,-0.893970232069453,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,1,5,4,5,3,4,2,4,2,1,1,1,1,3,1,1,3,1,4,1,2,4,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Miyamoto|Rottenstrich|Bauer|Inbar|Critcher|Anderson|Kay|Ross.Slate1|Graham|Huang|VanLange|Hauser,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +325,-1.47933936262375,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,7,7,6,6,5,4,1,3,1,3,1,1,3,4,1,1,4,1,5,1,1,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Critcher|VanLange|Alter|Bauer|Huang|Graham|Ross.Slate1|Miyamoto|Rottenstrich|Anderson|Kay|Hauser,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +326,0.485012677147568,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,1,4,1,4,1,1,1,2,1,1,1,1,1,1,1,1,1,1,3,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Ross.Slate1|Rottenstrich|VanLange|Huang|Hauser|Graham|Critcher|Inbar|Kay|Alter|Anderson|Miyamoto,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,12,Global,all,TRUE +327,-0.104566269721126,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,6,7,7,6,6,5,2,1,3,2,1,1,4,4,1,1,4,1,5,1,1,3,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Alter|Critcher|VanLange|Kay|Miyamoto|Inbar|Graham|Ross.Slate1|Hauser|Bauer|Anderson|Huang,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +328,-0.454656840172476,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,2,2,2,3,2,1,5,4,4,1,3,3,2,4,5,4,3,2,2,3,3,2,3,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Hauser|Kay|Critcher|VanLange|Ross.Slate1|Huang|Alter|Miyamoto|Inbar|Graham|Rottenstrich|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,1,Global,all,TRUE +329,0.36862936527603,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,2,3,3,3,1,3,4,1,3,2,2,1,3,5,1,1,2,1,1,1,1,2,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Alter|Graham|Critcher|Miyamoto|Inbar|Hauser|Kay|Rottenstrich|Bauer|Huang|Ross.Slate1|Anderson,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,13,Global,all,TRUE +331,0.263179847863762,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,3,4,4,4,2,4,2,3,5,3,1,2,4,4,3,1,4,2,4,1,1,2,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Kay|Rottenstrich|VanLange|Alter|Huang|Anderson|Miyamoto|Hauser|Critcher|Bauer|Inbar|Ross.Slate1,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,7,Global,all,TRUE +333,-1.25486801854867,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,2,1,1,1,1,2,1,1,1,2,1,1,3,1,3,2,3,1,4,1,4,2,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Graham|Ross.Slate1|VanLange|Hauser|Anderson|Bauer|Rottenstrich|Inbar|Kay|Critcher|Huang|Alter,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,6,Global,all,TRUE +334,0.579388175214932,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,3,7,7,5,1,4,1,3,5,1,1,2,1,5,1,1,5,1,5,2,3,2,1,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Hauser|Critcher|Kay|Bauer|Anderson|Alter|Huang|VanLange|Miyamoto|Graham|Rottenstrich|Ross.Slate1,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +336,0.670464973425562,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,4,7,6,5,2,4,3,1,3,3,1,1,4,3,2,3,3,1,2,1,2,3,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Kay|Miyamoto|Bauer|Hauser|Anderson|Ross.Slate1|Inbar|Critcher|VanLange|Graham|Rottenstrich|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,6,Global,all,TRUE +338,-0.47548450873135,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,6,5,5,6,6,4,1,3,5,5,2,2,4,4,3,2,4,4,4,4,3,5,4,5,4,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Kay|Rottenstrich|Alter|Huang|Critcher|Miyamoto|Bauer|Hauser|Ross.Slate1|Anderson|Inbar|Graham,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,11,Global,all,TRUE +340,-1.22230614557943,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,3,4,3,5,3,1,4,4,4,4,4,4,3,1,4,4,3,3,3,4,4,1,3,1,4,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Ross.Slate1|Alter|Huang|Kay|Inbar|VanLange|Critcher|Hauser|Graham|Miyamoto|Bauer|Anderson,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,13,Global,all,TRUE +341,-0.794457929305187,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,6,6,6,6,6,3,1,1,4,2,3,1,3,4,1,1,3,1,4,1,1,3,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Kay|Bauer|Ross.Slate1|Alter|Miyamoto|VanLange|Critcher|Hauser|Inbar|Anderson|Huang|Rottenstrich,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +344,-0.0472314897250406,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,3,5,5,4,3,5,1,1,3,2,1,1,4,4,1,1,4,1,3,1,2,2,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|Critcher|VanLange|Graham|Huang|Anderson|Alter|Kay|Rottenstrich|Bauer|Inbar|Ross.Slate1,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,7,Global,all,TRUE +345,0.354650027822824,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,6,6,6,5,3,5,1,4,3,3,4,3,4,4,4,1,5,1,5,3,2,5,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Hauser|Rottenstrich|Kay|Miyamoto|Anderson|Graham|VanLange|Critcher|Bauer|Alter|Huang|Inbar,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,6,Global,all,TRUE +347,-0.584092501114719,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,5,5,6,5,5,3,2,1,3,3,1,1,3,4,1,1,4,1,3,1,1,3,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Kay|Huang|Bauer|Hauser|VanLange|Critcher|Rottenstrich|Anderson|Ross.Slate1|Graham|Alter|Miyamoto,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +350,-0.560499739333177,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,5,5,6,5,6,4,1,1,3,2,2,1,3,1,1,1,2,1,4,1,3,3,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Rottenstrich|Kay|Inbar|Anderson|Miyamoto|Huang|VanLange|Graham|Critcher|Bauer|Ross.Slate1|Alter,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +353,-0.732770882638467,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,1,3,2,1,1,1,3,1,2,1,1,3,1,2,1,1,1,1,3,1,1,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Rottenstrich|Graham|Critcher|Bauer|Anderson|Alter|Hauser|Miyamoto|Inbar|Huang|Kay|Ross.Slate1,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,6,Global,all,TRUE +356,-0.657904908469643,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,5,6,5,5,6,4,1,1,3,1,1,1,2,4,2,4,4,2,3,2,1,1,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Rottenstrich|Anderson|Kay|Huang|Inbar|Critcher|Graham|Bauer|VanLange|Miyamoto|Alter|Ross.Slate1,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,3,Global,all,TRUE +357,0.00086960123690627,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,3,6,6,5,4,3,2,1,4,2,1,1,1,3,2,1,4,1,4,1,1,1,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Anderson|Huang|Ross.Slate1|Rottenstrich|Bauer|Kay|Inbar|Critcher|Graham|Alter|Hauser|VanLange,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,2,Global,all,TRUE +358,0.985886537279866,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,1,2,3,2,3,1,2,1,2,1,1,2,1,1,2,1,1,3,2,2,1,1,1,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Miyamoto|Graham|Alter|Anderson|Hauser|Inbar|Bauer|Ross.Slate1|Rottenstrich|VanLange|Huang|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five,5,Global,all,TRUE +363,0.459832741918059,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,3,6,5,7,2,3,2,2,1,1,1,1,1,1,2,1,4,1,4,1,2,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Huang|Graham|Kay|Miyamoto|Critcher|Inbar|Rottenstrich|Hauser|Ross.Slate1|Alter|Bauer|Anderson,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,13,Global,all,TRUE +365,0.219543955549612,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,5,5,5,5,1,4,2,1,4,3,1,1,4,2,1,1,4,1,4,1,2,3,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|VanLange|Kay|Ross.Slate1|Alter|Inbar|Bauer|Critcher|Miyamoto|Anderson|Graham|Rottenstrich|Huang,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +366,-0.00874604856202836,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,5,7,7,6,2,4,1,1,4,4,1,1,4,4,1,1,4,1,5,1,2,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Miyamoto|Anderson|Ross.Slate1|Alter|Critcher|Kay|Inbar|Rottenstrich|Hauser|VanLange|Bauer|Huang,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +369,0.0549193278304931,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,4,5,5,6,3,4,1,2,2,3,1,1,1,1,3,1,3,1,2,1,3,2,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Alter|Miyamoto|Anderson|Kay|VanLange|Ross.Slate1|Critcher|Bauer|Inbar|Graham|Hauser|Huang,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing,4,Global,all,TRUE +370,0.496213274923871,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,2,6,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,3,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Huang|Rottenstrich|Miyamoto|Alter|Ross.Slate1|Inbar|Anderson|Critcher|Kay|VanLange|Hauser|Graham,ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,8,Global,all,TRUE +371,-1.15969433600081,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,3,5,4,4,1,3,1,2,4,2,1,1,1,3,1,1,3,1,4,1,1,2,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Anderson|Kay|Critcher|Huang|Miyamoto|Inbar|Graham|Alter|Rottenstrich|Hauser|VanLange|Bauer,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,2,Global,all,TRUE +376,-0.0552736125302436,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,7,7,7,7,7,4,1,1,1,2,1,1,3,3,1,1,3,1,4,1,1,4,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|VanLange|Inbar|Kay|Bauer|Alter|Rottenstrich|Huang|Critcher|Anderson|Graham|Miyamoto|Ross.Slate1,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,10,Global,all,TRUE +380,-0.0824318774855542,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,6,3,6,6,3,4,2,2,4,2,1,1,1,3,2,1,3,3,4,1,2,1,1,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Inbar|Rottenstrich|Miyamoto|Graham|Alter|VanLange|Huang|Kay|Hauser|Critcher|Anderson|Bauer,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,12,Global,all,TRUE +383,-0.718931770070896,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,4,5,6,7,2,1,3,1,4,1,5,5,1,1,5,1,1,1,3,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Ross.Slate1|Huang|Kay|Critcher|Rottenstrich|VanLange|Bauer|Graham|Anderson|Hauser|Inbar|Miyamoto,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,10,Global,all,TRUE +384,-0.216599540392628,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,2,4,5,5,2,3,3,3,4,1,2,2,3,1,2,2,2,1,4,1,2,4,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Kay|Graham|Alter|Rottenstrich|Critcher|Anderson|VanLange|Bauer|Inbar|Ross.Slate1|Huang|Miyamoto,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood,7,Global,all,TRUE +385,-0.431061852920335,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,4,6,5,5,3,2,2,2,1,1,1,1,4,3,1,1,3,1,4,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Miyamoto|Hauser|Bauer|Kay|Alter|Huang|Rottenstrich|Ross.Slate1|VanLange|Graham|Anderson|Critcher,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,12,Global,all,TRUE +386,-0.545073453317638,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,6,6,7,6,4,4,1,1,5,1,1,1,3,3,1,2,4,1,4,1,1,3,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|VanLange|Huang|Hauser|Critcher|Alter|Inbar|Miyamoto|Rottenstrich|Kay|Graham|Anderson|Bauer,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,12,Global,all,TRUE +389,-0.769151415644279,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,2,5,3,5,3,3,1,4,5,1,1,4,2,2,1,1,3,1,4,2,1,2,2,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Alter|Inbar|Hauser|Critcher|Graham|Anderson|Bauer|Huang|Miyamoto|VanLange|Kay|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,7,Global,all,TRUE +390,-0.0075659033167295,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,4,5,6,4,1,4,1,2,2,3,1,1,4,4,1,1,5,3,3,1,1,4,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Graham|Kay|Ross.Slate1|Critcher|Huang|Alter|Anderson|Rottenstrich|Hauser|VanLange|Miyamoto|Inbar,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,8,Global,all,TRUE +395,-0.718400388907428,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,3,3,5,3,3,5,1,1,4,1,1,1,1,1,2,1,1,1,5,1,3,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Hauser|Anderson|Ross.Slate1|Miyamoto|Alter|VanLange|Critcher|Inbar|Huang|Graham|Rottenstrich|Bauer,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +397,0.105658933583708,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,6,6,7,5,7,4,1,1,3,3,1,1,4,5,1,1,5,1,4,1,2,5,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Anderson|Huang|Alter|Critcher|VanLange|Graham|Bauer|Inbar|Miyamoto|Ross.Slate1|Hauser|Kay,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,2,Global,all,TRUE +398,-0.135809998030037,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,3,6,3,4,2,2,1,1,2,1,1,1,2,2,1,1,3,1,2,1,1,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Kay|Rottenstrich|Inbar|Hauser|Miyamoto|VanLange|Huang|Anderson|Alter|Ross.Slate1|Bauer|Critcher,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +402,-0.459793644869377,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,5,7,5,5,4,2,3,2,3,1,1,2,2,3,2,1,2,1,3,1,3,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Kay|Hauser|VanLange|Alter|Ross.Slate1|Huang|Graham|Critcher|Miyamoto|Anderson|Inbar|Rottenstrich,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing,11,Global,all,TRUE +404,-0.00781906017952757,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,2,1,4,5,3,4,3,1,3,4,2,3,4,4,1,3,2,2,2,3,3,4,5,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Rottenstrich|Huang|Critcher|Anderson|Kay|Ross.Slate1|Graham|Bauer|Hauser|Alter|Miyamoto|Inbar,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,5,Global,all,TRUE +408,-0.602548458199359,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,4,4,5,3,5,1,1,1,3,1,1,1,1,1,1,1,1,1,3,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Huang|Kay|Miyamoto|Hauser|Ross.Slate1|VanLange|Critcher|Graham|Inbar|Anderson|Bauer|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,11,Global,all,TRUE +409,0.0663867289238298,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,3,6,6,6,7,4,1,1,1,1,2,1,3,2,1,2,3,2,3,1,2,2,2,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Critcher|Bauer|Miyamoto|Huang|Alter|Inbar|Kay|VanLange|Hauser|Graham|Ross.Slate1|Rottenstrich,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,1,Global,all,TRUE +412,0.512297520534277,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,1,5,2,3,1,3,4,1,1,4,4,4,1,2,2,3,2,4,3,4,1,2,3,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Anderson|Graham|Inbar|Miyamoto|Bauer|VanLange|Kay|Alter|Critcher|Hauser|Rottenstrich|Ross.Slate1,ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,2,Global,all,TRUE +415,-0.50025741575819,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,5,7,6,5,6,2,1,2,3,1,1,1,1,2,1,1,2,1,3,1,1,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|Graham|Kay|Ross.Slate1|Alter|Rottenstrich|Inbar|Bauer|Huang|VanLange|Anderson|Critcher,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +418,0.66229627218896,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,4,5,5,4,5,3,2,1,4,3,1,1,1,2,3,1,2,1,4,1,1,1,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Graham|Bauer|Huang|Alter|Anderson|Rottenstrich|VanLange|Miyamoto|Kay|Ross.Slate1|Inbar|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,6,Global,all,TRUE +419,-0.883036437610184,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,1,5,1,5,3,4,1,4,1,1,1,1,2,1,1,1,2,1,3,1,1,1,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|VanLange|Hauser|Rottenstrich|Graham|Inbar|Alter|Huang|Kay|Critcher|Ross.Slate1|Anderson|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,12,Global,all,TRUE +422,-0.471261045962714,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,5,5,5,5,6,4,3,3,3,2,2,2,3,2,4,2,3,3,3,2,3,2,2,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Critcher|Rottenstrich|Inbar|Graham|Kay|Alter|Hauser|Bauer|VanLange|Huang|Anderson|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five,12,Global,all,TRUE +427,0.315771204911379,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,3,4,5,3,2,3,1,1,2,2,1,1,2,1,2,1,2,1,3,1,1,3,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Rottenstrich|Bauer|VanLange|Ross.Slate1|Huang|Miyamoto|Kay|Graham|Alter|Inbar|Anderson|Hauser,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing,12,Global,all,TRUE +428,-0.113001774274762,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,4,6,6,7,2,1,1,1,1,1,1,1,1,3,1,1,1,1,2,1,1,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Kay|Critcher|Miyamoto|Graham|Ross.Slate1|Hauser|Bauer|Rottenstrich|Alter|Anderson|VanLange|Huang,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +430,0.34503437802389,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,5,3,5,6,2,4,1,1,3,2,1,1,1,1,1,1,2,1,2,1,1,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Critcher|Ross.Slate1|Anderson|Alter|Rottenstrich|Inbar|Miyamoto|VanLange|Kay|Huang|Hauser|Graham,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,4,Global,all,TRUE +431,0.717652722459244,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,2,7,1,3,1,4,2,1,5,2,1,1,1,3,1,1,2,1,5,1,5,4,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Graham|Ross.Slate1|Huang|Anderson|VanLange|Bauer|Rottenstrich|Inbar|Kay|Critcher|Alter|Miyamoto,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing,5,Global,all,TRUE +433,-0.796171681184554,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,4,5,6,3,1,2,2,1,4,1,1,2,1,5,1,4,3,1,2,1,1,1,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Alter|Hauser|Ross.Slate1|Critcher|Huang|VanLange|Kay|Inbar|Bauer|Anderson|Graham|Miyamoto,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,11,Global,all,TRUE +434,-1.17367144798341,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,5,5,6,6,5,2,3,3,3,2,3,3,3,3,3,3,3,1,3,3,3,2,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Graham|Hauser|Critcher|Ross.Slate1|Rottenstrich|Alter|Bauer|Miyamoto|Kay|Huang|VanLange|Anderson,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +435,-0.243757805347939,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,3,3,4,5,2,3,3,4,3,1,3,4,1,2,3,1,2,3,4,3,2,2,2,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Kay|Anderson|VanLange|Graham|Inbar|Ross.Slate1|Miyamoto|Hauser|Alter|Rottenstrich|Huang|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,3,Global,all,TRUE +438,0.698143198560704,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,6,7,6,5,1,2,3,4,4,4,4,4,4,3,4,4,4,4,5,2,3,2,2,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Alter|Bauer|Kay|Critcher|Graham|Huang|Inbar|Anderson|Miyamoto|Ross.Slate1|Rottenstrich|VanLange,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +439,0.315111019845912,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,4,5,5,6,6,3,2,3,3,4,1,2,4,3,4,1,4,1,4,2,1,4,2,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Graham|Kay|Rottenstrich|Miyamoto|Ross.Slate1|Critcher|Hauser|Bauer|Inbar|Anderson|Alter|Huang,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing,11,Global,all,TRUE +440,0.129125116933851,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,5,5,6,6,2,3,2,4,2,4,1,2,4,4,2,1,5,2,3,2,2,4,4,5,3,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Alter|Anderson|Inbar|Critcher|Ross.Slate1|Hauser|Miyamoto|Rottenstrich|Kay|Huang|Graham|Bauer,ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,3,Global,all,TRUE +442,-0.0710910548236159,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,6,6,6,6,5,3,1,1,2,3,1,1,2,3,1,1,3,1,2,1,2,2,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Anderson|Miyamoto|Hauser|Kay|Ross.Slate1|Bauer|Alter|Inbar|Rottenstrich|Huang|Critcher|VanLange,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,2,Global,all,TRUE +443,-0.678201195865049,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,6,6,6,6,7,1,2,4,2,1,1,1,1,3,1,1,2,1,2,1,1,1,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Alter|Graham|Hauser|Miyamoto|Kay|Anderson|Rottenstrich|Bauer|Ross.Slate1|VanLange|Huang|Inbar,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five,7,Global,all,TRUE +444,0.296655062761272,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,3,4,4,4,3,2,2,1,3,1,1,1,1,1,1,1,2,1,3,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Anderson|Hauser|Huang|Miyamoto|Ross.Slate1|Rottenstrich|Graham|VanLange|Alter|Critcher|Inbar|Bauer,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +445,0.519679458274013,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,3,5,5,4,6,3,1,2,1,3,1,2,3,2,1,2,4,1,1,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Huang|Bauer|Graham|Miyamoto|VanLange|Hauser|Alter|Ross.Slate1|Critcher|Inbar|Kay|Anderson,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,13,Global,all,TRUE +447,-0.965677731267177,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,7,7,7,7,7,2,3,1,2,3,1,1,1,2,1,1,2,1,2,1,1,3,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Critcher|VanLange|Rottenstrich|Ross.Slate1|Alter|Huang|Anderson|Bauer|Graham|Miyamoto|Inbar|Kay,ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +449,-0.965284349518744,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,6,7,6,7,5,4,1,1,4,1,1,1,1,2,1,1,3,1,5,1,2,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Bauer|Hauser|Anderson|Inbar|Alter|Huang|VanLange|Rottenstrich|Graham|Ross.Slate1|Kay|Critcher,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,4,Global,all,TRUE +451,0.871874936882563,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,5,5,5,5,3,4,1,4,4,4,1,1,2,3,1,2,3,2,4,1,4,4,3,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Ross.Slate1|Huang|Bauer|Miyamoto|Anderson|Alter|VanLange|Hauser|Inbar|Rottenstrich|Critcher|Kay,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +455,-0.794724732622222,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,5,6,5,3,5,2,2,1,3,3,1,1,3,3,3,2,4,1,3,2,1,3,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|VanLange|Hauser|Rottenstrich|Bauer|Huang|Kay|Anderson|Alter|Critcher|Ross.Slate1|Inbar|Miyamoto,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,8,Global,all,TRUE +456,0.490683088478537,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,5,4,5,2,5,4,1,1,4,4,1,2,4,4,2,1,4,2,4,4,3,4,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Anderson|Critcher|VanLange|Miyamoto|Hauser|Inbar|Rottenstrich|Alter|Bauer|Kay|Huang|Graham,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,2,Global,all,TRUE +457,-0.840720915426968,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,6,6,6,5,5,3,1,1,3,3,2,2,1,3,1,1,2,1,3,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Ross.Slate1|Kay|VanLange|Alter|Inbar|Miyamoto|Anderson|Hauser|Graham|Bauer|Huang|Rottenstrich,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,8,Global,all,TRUE +458,0.35122474953469,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,4,4,6,3,3,4,2,2,3,2,1,1,2,4,4,1,3,1,3,3,2,2,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Bauer|Critcher|Kay|Anderson|Ross.Slate1|Graham|Alter|Hauser|Miyamoto|Huang|Inbar|VanLange,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,5,Global,all,TRUE +460,0.467481482974829,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,6,7,7,6,6,4,1,2,5,4,2,1,3,4,2,3,3,1,5,1,1,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Anderson|Miyamoto|Alter|Critcher|Huang|VanLange|Bauer|Kay|Graham|Inbar|Ross.Slate1|Hauser,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +463,-1.09985904062849,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,5,5,6,6,6,2,2,2,2,2,1,1,2,1,2,2,2,1,4,2,2,2,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Bauer|Graham|Inbar|Anderson|VanLange|Critcher|Miyamoto|Ross.Slate1|Hauser|Alter|Huang|Kay,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood,5,Global,all,TRUE +464,-0.201847085896793,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,3,4,6,5,7,3,1,1,3,4,1,1,4,5,1,1,2,1,3,1,1,2,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Ross.Slate1|Bauer|Alter|Kay|Hauser|Miyamoto|Graham|Inbar|Huang|Anderson|Rottenstrich|VanLange,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,11,Global,all,TRUE +466,-0.36595175343608,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,4,4,4,3,2,3,2,4,1,3,1,1,2,3,1,1,3,1,4,1,3,3,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Huang|Rottenstrich|Graham|Critcher|Alter|Hauser|Kay|Anderson|Miyamoto|Bauer|Inbar|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,9,Global,all,TRUE +467,0.387872085857536,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,3,5,3,3,3,3,2,2,2,1,1,1,1,2,1,1,2,1,3,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Hauser|Graham|Alter|Ross.Slate1|Critcher|VanLange|Bauer|Inbar|Miyamoto|Kay|Rottenstrich|Huang,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,1,Global,all,TRUE +469,-0.0378826432431398,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,6,7,7,7,5,2,1,1,2,2,1,1,2,3,1,1,1,1,3,1,1,3,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Bauer|Graham|Huang|Critcher|Alter|Ross.Slate1|Anderson|Miyamoto|VanLange|Hauser|Rottenstrich|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,8,Global,all,TRUE +470,0.390637179080203,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,3,5,4,3,1,3,1,2,4,3,1,1,2,3,2,1,3,1,4,1,1,2,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Miyamoto|Anderson|Inbar|Rottenstrich|Graham|VanLange|Alter|Bauer|Kay|Ross.Slate1|Hauser|Critcher,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,3,Global,all,TRUE +471,-0.817125928174827,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,3,2,4,3,3,2,1,3,2,2,3,2,2,2,3,2,2,2,2,1,2,2,2,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Miyamoto|VanLange|Ross.Slate1|Hauser|Alter|Bauer|Anderson|Kay|Critcher|Huang|Inbar|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,8,Global,all,TRUE +473,-0.190773066551888,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,5,6,6,4,2,4,2,1,1,3,1,1,1,2,1,1,3,1,2,1,1,3,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|VanLange|Hauser|Graham|Huang|Miyamoto|Inbar|Ross.Slate1|Anderson|Bauer|Rottenstrich|Kay|Critcher,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,9,Global,all,TRUE +474,-0.683604803878984,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,6,6,6,6,7,4,1,1,1,1,1,1,1,1,1,1,1,1,3,1,1,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Ross.Slate1|Anderson|Hauser|Inbar|Kay|Alter|Bauer|Huang|Rottenstrich|Graham|Miyamoto|VanLange,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing,3,Global,all,TRUE +475,0.318536298134046,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,2,4,2,4,2,4,4,5,2,4,3,5,2,1,5,3,4,4,2,1,4,1,1,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Hauser|Critcher|Bauer|Inbar|Rottenstrich|Anderson|Huang|Graham|VanLange|Miyamoto|Alter|Ross.Slate1,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,7,Global,all,TRUE +482,-0.157031048337344,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,1,3,2,1,3,2,1,2,4,1,1,1,1,1,1,1,2,1,4,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Kay|Critcher|Bauer|VanLange|Inbar|Alter|Graham|Ross.Slate1|Hauser|Rottenstrich|Anderson|Miyamoto,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,12,Global,all,TRUE +483,-0.800128340636156,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,5,4,5,3,4,2,4,4,4,1,3,3,1,3,2,4,1,1,3,2,3,2,3,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|Rottenstrich|Critcher|Ross.Slate1|Inbar|Graham|Alter|Huang|Kay|Bauer|VanLange|Anderson,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +486,-1.06506345560004,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,5,6,3,5,4,3,2,1,2,2,1,1,3,3,1,1,3,2,3,3,1,3,2,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Alter|Inbar|Kay|Anderson|Rottenstrich|Critcher|Graham|Ross.Slate1|Hauser|Bauer|Miyamoto|Huang,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,5,Global,all,TRUE +488,-0.172317109467248,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,4,7,7,5,2,4,3,2,3,3,4,2,3,4,4,4,2,3,4,3,3,4,3,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Hauser|Graham|VanLange|Critcher|Miyamoto|Kay|Anderson|Alter|Ross.Slate1|Rottenstrich|Bauer|Inbar,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +489,0.115946189431746,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,2,2,2,4,3,3,1,1,3,2,1,1,3,4,1,1,4,1,3,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Hauser|Bauer|Ross.Slate1|Graham|Critcher|Kay|Anderson|Huang|Miyamoto|Inbar|VanLange|Alter,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,8,Global,all,TRUE +490,-0.184582695041088,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,5,6,6,5,2,2,1,3,3,3,1,1,1,1,2,1,2,1,3,1,1,2,2,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Bauer|VanLange|Graham|Kay|Inbar|Critcher|Huang|Hauser|Rottenstrich|Miyamoto|Ross.Slate1|Alter,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,1,Global,all,TRUE +496,1.0859324466782,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,7,7,7,6,7,5,1,1,4,5,1,1,4,5,1,1,5,1,5,1,4,5,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Ross.Slate1|VanLange|Inbar|Huang|Rottenstrich|Graham|Anderson|Kay|Bauer|Miyamoto|Critcher|Alter,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood,8,Global,all,TRUE +497,-0.60307064384979,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,3,5,5,6,1,2,4,2,2,1,4,4,1,2,5,3,1,1,2,2,2,1,1,1,5,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Kay|Bauer|Alter|Huang|VanLange|Critcher|Miyamoto|Inbar|Hauser|Rottenstrich|Ross.Slate1|Anderson,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,13,Global,all,TRUE +499,-0.0326056136606039,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,3,6,4,5,1,2,1,1,2,1,1,1,2,3,1,1,3,1,3,1,1,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Huang|Miyamoto|Bauer|Kay|Hauser|Alter|Critcher|Ross.Slate1|Inbar|Graham|Rottenstrich|Anderson,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +500,-0.652501300455708,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,5,3,4,1,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Kay|Rottenstrich|Inbar|VanLange|Huang|Alter|Anderson|Bauer|Graham|Critcher|Hauser|Miyamoto,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood,8,Global,all,TRUE +503,0.50083011944094,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,6,6,6,6,2,2,2,3,1,3,1,1,3,2,3,1,3,1,3,4,1,3,5,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Kay|Bauer|Hauser|Ross.Slate1|Huang|Alter|Inbar|VanLange|Graham|Rottenstrich|Critcher|Miyamoto,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,1,Global,all,TRUE +504,0.315377823162946,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,3,6,6,4,1,1,1,2,3,1,1,2,1,3,1,1,4,2,4,1,1,3,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Bauer|Ross.Slate1|Anderson|Rottenstrich|Critcher|Huang|Kay|VanLange|Hauser|Inbar|Graham|Miyamoto,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE,4,Global,all,TRUE +505,0.698143198560704,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,1,6,3,2,1,5,2,1,4,3,1,1,1,1,5,1,3,1,4,1,1,2,2,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Huang|Ross.Slate1|Anderson|Rottenstrich|Bauer|Miyamoto|Kay|Critcher|Hauser|VanLange|Alter|Inbar,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,4,Global,all,TRUE +506,0.783956613643033,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,5,5,6,2,5,4,2,3,2,1,1,1,2,2,1,1,2,1,4,1,1,3,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Bauer|Graham|Anderson|Alter|Hauser|Kay|VanLange|Ross.Slate1|Rottenstrich|Miyamoto|Huang|Critcher,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,4,Global,all,TRUE +509,0.360587242470827,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,2,4,4,6,2,3,1,2,3,2,1,1,1,2,1,1,1,1,4,1,1,3,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Graham|Rottenstrich|Anderson|Ross.Slate1|Huang|Bauer|VanLange|Hauser|Miyamoto|Alter|Kay|Inbar,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,4,Global,all,TRUE +510,-1.25934686365071,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,4,3,3,5,3,4,1,2,3,4,1,3,3,2,2,2,3,2,3,3,1,2,2,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Anderson|Graham|Inbar|Bauer|Hauser|Rottenstrich|Kay|VanLange|Critcher|Huang|Alter|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,2,Global,all,TRUE +511,-1.29638535625139,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,6,4,6,6,6,2,3,2,2,2,1,2,3,2,2,1,2,1,3,2,2,2,2,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Critcher|Ross.Slate1|Anderson|Huang|Miyamoto|Hauser|VanLange|Bauer|Graham|Inbar|Alter|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing,4,Global,all,TRUE +513,-1.71197940793542,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,7,7,7,6,6,5,2,2,4,5,2,1,5,5,2,3,5,2,5,1,3,5,4,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Ross.Slate1|Kay|Anderson|Inbar|Huang|Critcher|Rottenstrich|Bauer|Hauser|Alter|VanLange|Miyamoto,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,4,Global,all,TRUE +514,0.757989914916658,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,5,5,5,5,3,1,1,1,1,2,1,1,1,1,2,1,4,1,2,1,3,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Ross.Slate1|Inbar|VanLange|Hauser|Miyamoto|Kay|Huang|Graham|Alter|Bauer|Critcher|Rottenstrich,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +520,-1.48579653745158,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,6,7,7,6,6,3,1,1,4,3,1,1,4,4,1,1,3,1,3,1,1,3,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Bauer|Huang|Ross.Slate1|Rottenstrich|VanLange|Miyamoto|Inbar|Critcher|Kay|Anderson|Graham|Alter,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,11,Global,all,TRUE +521,0.29929357755254,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,3,5,3,4,2,5,2,1,4,3,1,2,4,5,2,1,5,1,4,2,2,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Rottenstrich|Inbar|Graham|VanLange|Huang|Critcher|Hauser|Ross.Slate1|Miyamoto|Alter|Anderson|Kay,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +522,-0.403512431687191,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,5,6,5,2,6,4,1,1,3,2,1,1,2,4,1,1,3,1,2,1,4,3,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Miyamoto|VanLange|Huang|Ross.Slate1|Inbar|Bauer|Alter|Critcher|Graham|Anderson|Hauser|Kay,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five,11,Global,all,TRUE +523,0.237479952454421,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,6,6,6,6,6,2,1,1,1,2,1,1,2,3,1,1,4,1,3,1,1,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Inbar|Critcher|Alter|Ross.Slate1|Anderson|Rottenstrich|Huang|Kay|Hauser|Bauer|Miyamoto|VanLange,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing,6,Global,all,TRUE +524,0.606673018601641,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,4,4,3,4,2,2,2,5,1,1,1,5,1,3,2,3,1,1,2,3,1,1,2,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Anderson|Ross.Slate1|Rottenstrich|Hauser|Graham|Huang|Kay|Critcher|VanLange|Inbar|Miyamoto|Alter,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,2,Global,all,TRUE +528,-0.396788453542322,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,4,5,5,5,3,4,3,3,2,2,3,2,2,4,2,1,2,1,1,2,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Ross.Slate1|Miyamoto|Hauser|Rottenstrich|Critcher|Inbar|Kay|Alter|Graham|VanLange|Huang|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,13,Global,all,TRUE +529,0.185942162220703,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,4,5,4,7,1,1,1,3,1,1,1,4,1,1,1,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Bauer|Rottenstrich|Alter|Hauser|Huang|Critcher|Inbar|Ross.Slate1|Kay|Graham|Miyamoto|Anderson,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection,13,Global,all,TRUE +530,0.373232563338864,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,5,6,6,5,2,4,3,2,3,4,2,3,2,4,2,1,4,2,2,4,3,4,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Hauser|Anderson|Rottenstrich|Huang|Critcher|Ross.Slate1|VanLange|Kay|Miyamoto|Alter|Inbar|Bauer,ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,3,Global,all,TRUE +531,1.36734518900093,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,5,6,6,6,5,2,3,2,3,1,3,3,3,2,3,3,3,3,3,3,3,3,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Critcher|Rottenstrich|Miyamoto|Bauer|Alter|Kay|Graham|Inbar|Anderson|VanLange|Ross.Slate1|Huang,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,10,Global,all,TRUE +533,0.664667983663194,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,2,5,2,3,2,2,1,2,2,1,1,1,1,1,2,1,1,1,2,1,2,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Hauser|Inbar|Graham|Huang|Rottenstrich|Bauer|Anderson|Kay|VanLange|Ross.Slate1|Miyamoto|Alter,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing,8,Global,all,TRUE +534,-0.367663279844847,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,5,7,6,6,6,4,5,4,3,1,1,4,4,2,4,2,4,1,4,2,3,3,3,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Huang|Kay|Hauser|Rottenstrich|Ross.Slate1|Inbar|Anderson|Bauer|VanLange|Miyamoto|Alter|Critcher,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE,8,Global,all,TRUE +536,-1.92102669146556,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,4,6,2,2,5,2,3,4,2,4,2,4,3,4,4,1,4,4,4,1,2,5,3,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Graham|Alter|Rottenstrich|Huang|Critcher|Kay|Ross.Slate1|Bauer|VanLange|Anderson|Hauser|Inbar,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing,11,Global,all,TRUE +537,0.186335543969136,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,5,5,6,5,5,4,1,2,2,2,1,1,4,3,2,1,4,1,3,3,1,3,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Ross.Slate1|Anderson|Huang|Bauer|Inbar|Kay|Rottenstrich|Hauser|Graham|Alter|VanLange|Miyamoto,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,3,Global,all,TRUE +539,-0.450433377403839,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,4,6,2,5,2,2,4,3,2,1,3,3,2,4,3,2,2,1,4,1,2,2,3,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|VanLange|Hauser|Anderson|Rottenstrich|Kay|Critcher|Ross.Slate1|Bauer|Graham|Alter|Huang|Inbar,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,4,Global,all,TRUE +540,-0.522407679918598,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,7,5,7,7,6,2,3,2,1,2,1,2,1,1,1,1,3,2,2,1,3,1,2,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Alter|Critcher|Anderson|Miyamoto|Bauer|Rottenstrich|Ross.Slate1|Huang|Graham|Inbar|Kay|VanLange,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing,4,Global,all,TRUE +541,0.265551559337996,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,3,3,4,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Miyamoto|Anderson|Kay|VanLange|Rottenstrich|Graham|Hauser|Inbar|Critcher|Bauer|Ross.Slate1|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,3,Global,all,TRUE +542,-1.38430367949092,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,6,7,7,6,3,5,1,1,4,3,1,1,1,3,2,1,4,4,5,1,1,4,4,5,4,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Hauser|Ross.Slate1|Kay|Inbar|Graham|Anderson|Critcher|Bauer|VanLange|Huang|Alter|Rottenstrich,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,7,Global,all,TRUE +546,0.601269410587706,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,6,7,5,7,6,3,1,2,2,4,1,3,2,1,1,1,5,1,2,1,1,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Alter|Critcher|Huang|Rottenstrich|Anderson|Hauser|VanLange|Graham|Kay|Bauer|Miyamoto|Ross.Slate1,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,6,Global,all,TRUE +548,-0.345782044472073,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,4,6,5,6,6,4,4,1,3,3,1,1,3,4,1,1,4,1,4,1,1,2,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|VanLange|Bauer|Graham|Anderson|Ross.Slate1|Critcher|Miyamoto|Alter|Inbar|Kay|Huang|Hauser,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,5,Global,all,TRUE +549,-1.60100192954842,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,3,4,3,3,5,2,3,3,1,2,1,3,2,3,4,1,3,4,3,3,2,3,3,1,4,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Hauser|Graham|Ross.Slate1|VanLange|Huang|Miyamoto|Bauer|Critcher|Alter|Rottenstrich|Inbar|Kay,ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +550,-1.20543513647216,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,5,6,5,7,6,4,3,1,5,3,1,2,2,5,3,1,4,1,3,3,2,4,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Miyamoto|Critcher|Anderson|Inbar|Rottenstrich|Hauser|Kay|Alter|Huang|Graham|Ross.Slate1|VanLange,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +551,-1.0343555593958,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,5,5,5,5,2,4,1,1,5,3,2,2,3,4,2,1,5,2,5,3,1,4,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Alter|Critcher|Kay|Hauser|Rottenstrich|Bauer|Inbar|Ross.Slate1|Graham|VanLange|Anderson|Huang,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +553,-0.0786017964653506,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,5,5,7,7,6,4,1,1,4,3,1,1,4,4,1,1,4,1,4,1,1,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Anderson|Hauser|Alter|Critcher|Inbar|Kay|Huang|VanLange|Miyamoto|Bauer|Rottenstrich|Ross.Slate1,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +556,0.969282331489628,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,5,6,5,5,3,1,4,4,3,3,1,3,2,3,1,1,4,1,3,1,1,2,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Rottenstrich|Graham|Huang|Hauser|Anderson|Miyamoto|Ross.Slate1|Bauer|Kay|Inbar|Critcher|VanLange,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +558,0.0424005853938554,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,5,5,6,6,5,4,2,1,3,3,1,1,3,3,1,1,4,1,2,1,3,3,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Critcher|Inbar|Bauer|Huang|Anderson|VanLange|Kay|Hauser|Miyamoto|Rottenstrich|Alter|Graham,ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,6,Global,all,TRUE +560,-0.7321129230436,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,3,6,3,2,2,3,1,1,4,1,2,2,3,2,1,1,4,1,4,1,1,3,3,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Bauer|Anderson|Alter|Kay|VanLange|Ross.Slate1|Huang|Miyamoto|Hauser|Inbar|Graham|Rottenstrich,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,3,Global,all,TRUE +563,-0.09086738203919,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,2,6,3,3,6,1,2,2,1,1,1,1,1,2,1,1,2,1,2,1,1,4,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Miyamoto|Huang|Alter|Hauser|Rottenstrich|Ross.Slate1|Bauer|Critcher|Anderson|VanLange|Graham|Inbar,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,10,Global,all,TRUE +564,-0.529916196089733,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,1,4,3,2,3,3,3,2,5,2,1,2,1,1,2,2,4,3,4,1,1,2,2,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Kay|VanLange|Inbar|Hauser|Rottenstrich|Huang|Bauer|Graham|Miyamoto|Critcher,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,3,Global,all,TRUE +565,-0.628515156925734,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,3,6,4,6,1,4,1,1,2,1,1,1,1,1,1,1,1,1,4,1,1,3,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Huang|Alter|Critcher|Inbar|VanLange|Anderson|Bauer|Kay|Miyamoto|Ross.Slate1|Rottenstrich|Graham,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,7,Global,all,TRUE +566,-1.16577177553444,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,5,5,5,5,4,3,3,2,3,2,3,2,4,4,3,3,3,3,3,3,3,3,3,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Hauser|Inbar|Rottenstrich|Critcher|VanLange|Huang|Kay|Graham|Miyamoto|Ross.Slate1|Alter|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,13,Global,all,TRUE +570,0.647796974555922,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,2,5,3,5,6,3,1,1,4,1,1,1,1,1,1,1,2,1,4,1,2,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Kay|Hauser|Alter|Rottenstrich|Miyamoto|Anderson|Bauer|Inbar|Graham|Ross.Slate1|VanLange|Huang,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,7,Global,all,TRUE +572,-0.136470183095504,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,5,7,7,4,6,1,2,4,1,1,1,1,2,2,1,1,3,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Rottenstrich|Graham|Bauer|Anderson|VanLange|Miyamoto|Inbar|Alter|Huang|Ross.Slate1|Critcher|Kay,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five,5,Global,all,TRUE +574,0.95478303385659,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,5,6,4,5,1,4,3,1,1,3,1,3,1,3,1,1,3,1,3,2,1,4,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Rottenstrich|Alter|Critcher|Anderson|Hauser|Huang|VanLange|Miyamoto|Graham|Ross.Slate1|Kay|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,5,Global,all,TRUE +576,0.73057849309855,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,5,5,3,6,2,2,3,2,4,1,2,4,1,4,2,2,3,2,2,2,4,4,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Graham|Inbar|Alter|Anderson|Miyamoto|Bauer|Hauser|Ross.Slate1|Rottenstrich|Critcher|VanLange|Kay,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,5,Global,all,TRUE +577,-0.763747807630344,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,5,7,5,7,1,4,1,1,3,3,1,1,2,1,1,1,4,1,4,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Alter|Inbar|Critcher|Rottenstrich|Ross.Slate1|Kay|Anderson|Bauer|Graham|Hauser|Huang|Miyamoto,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,8,Global,all,TRUE +579,0.255264303489958,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,2,5,2,1,2,4,1,5,4,1,3,4,3,1,1,3,2,5,4,1,1,1,1,1,5,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Miyamoto|Alter|Anderson|Ross.Slate1|Hauser|Kay|Huang|Critcher|Rottenstrich|Inbar|VanLange|Graham,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,4,Global,all,TRUE +580,-0.255618588189708,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,7,7,7,7,7,4,1,1,5,4,1,1,4,2,3,1,3,1,5,1,1,4,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Hauser|Alter|Huang|Graham|Ross.Slate1|VanLange|Miyamoto|Kay|Rottenstrich|Bauer|Critcher|Anderson,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,13,Global,all,TRUE +582,-0.586337634157554,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,6,6,6,7,2,4,1,1,3,1,1,1,1,3,1,1,1,1,4,1,1,1,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Ross.Slate1|Anderson|Inbar|Miyamoto|Alter|Bauer|VanLange|Huang|Rottenstrich|Graham|Critcher|Hauser,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,3,Global,all,TRUE +583,-0.252853494967041,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,3,5,4,6,2,4,3,1,2,4,1,4,4,3,1,1,4,1,5,1,1,4,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Alter|Ross.Slate1|Graham|Rottenstrich|Critcher|Anderson|VanLange|Hauser|Bauer|Miyamoto|Huang|Inbar,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,7,Global,all,TRUE +584,-0.182337561998253,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,5,6,6,6,5,2,1,1,4,2,1,1,2,1,1,1,2,1,4,1,1,3,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Anderson|Kay|Critcher|Ross.Slate1|Miyamoto|Bauer|Hauser|Alter|Inbar|VanLange|Graham|Rottenstrich,ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,2,Global,all,TRUE +586,-0.353824167277276,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,2,2,3,3,1,3,3,4,4,2,3,2,3,1,4,4,3,2,3,3,3,2,3,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Critcher|Bauer|Rottenstrich|Graham|Hauser|Huang|VanLange|Alter|Inbar|Kay|Ross.Slate1|Anderson,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,13,Global,all,TRUE +587,-0.0034690189794924,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,3,3,5,5,3,3,1,2,1,1,1,1,1,2,1,1,2,1,2,3,1,1,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Anderson|Alter|Hauser|Kay|Critcher|Miyamoto|Ross.Slate1|Inbar|VanLange|Bauer|Huang|Graham,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing,2,Global,all,TRUE +590,-0.870250891856512,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,6,6,6,6,3,3,1,3,1,1,1,1,2,1,2,1,3,1,1,1,1,3,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Hauser|Kay|Inbar|Alter|Bauer|VanLange|Critcher|Ross.Slate1|Rottenstrich|Miyamoto|Anderson|Huang,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +591,0.0338248559545844,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,6,5,6,6,5,4,2,1,5,4,1,1,3,4,2,1,4,1,3,3,1,4,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Miyamoto|Hauser|Critcher|Alter|Graham|Rottenstrich|Ross.Slate1|Inbar|VanLange|Bauer|Kay|Anderson,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,13,Global,all,TRUE +593,-0.195643067931756,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,5,6,7,6,3,4,1,1,3,4,1,1,3,2,3,1,3,1,5,1,3,3,2,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Hauser|Anderson|Huang|Rottenstrich|Critcher|Alter|Graham|Miyamoto|Kay|Bauer|VanLange|Ross.Slate1,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,3,Global,all,TRUE +594,-0.951447462421773,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,1,1,1,4,3,5,5,3,5,1,4,5,5,4,5,1,4,5,5,3,4,1,3,3,5,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Huang|Hauser|Inbar|Bauer|Critcher|Kay|Alter|Miyamoto|Graham|VanLange|Anderson|Ross.Slate1,ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +596,0.293496587790172,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,4,4,4,2,1,2,3,3,3,1,1,2,1,2,1,1,3,1,3,1,1,1,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Hauser|Inbar|VanLange|Critcher|Ross.Slate1|Miyamoto|Kay|Huang|Bauer|Alter|Rottenstrich|Graham,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,1,Global,all,TRUE +599,-0.859570254260041,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,4,5,3,2,2,4,4,5,3,2,4,4,3,2,2,1,5,4,4,3,5,3,4,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|VanLange|Ross.Slate1|Graham|Huang|Inbar|Critcher|Rottenstrich|Kay|Bauer|Miyamoto|Anderson|Alter,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,12,Global,all,TRUE +601,-0.260628814455211,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,3,5,3,2,3,4,1,2,1,1,1,1,1,1,1,2,2,1,2,1,1,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Alter|Bauer|Graham|Kay|Miyamoto|Huang|Rottenstrich|Hauser|Critcher|Inbar|Anderson|Ross.Slate1,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,12,Global,all,TRUE +604,-0.168765252747715,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,6,3,1,2,2,1,3,5,4,1,4,4,1,1,4,2,1,4,4,2,4,2,1,1,5,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Inbar|Critcher|Hauser|Ross.Slate1|Rottenstrich|Huang|Miyamoto|Alter|VanLange|Anderson|Kay|Graham,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,11,Global,all,TRUE +611,0.177633236098466,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,6,7,7,7,6,5,1,1,3,5,1,1,4,5,1,1,4,1,5,1,2,5,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Anderson|Rottenstrich|Alter|Critcher|Graham|Miyamoto|Ross.Slate1|Hauser|VanLange|Huang|Kay|Inbar,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,2,Global,all,TRUE +612,0.36624400734756,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,3,5,5,5,3,4,1,1,4,1,1,1,1,2,1,1,3,1,4,1,1,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Ross.Slate1|Huang|Miyamoto|Kay|Alter|Rottenstrich|Anderson|VanLange|Inbar|Hauser|Graham|Critcher,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing,8,Global,all,TRUE +616,-0.330484562358533,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,5,6,6,6,6,4,2,2,4,2,1,1,4,3,1,2,3,1,4,1,2,4,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Alter|Critcher|Rottenstrich|Bauer|Inbar|Miyamoto|Huang|Graham|Hauser|Ross.Slate1|VanLange|Kay,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing,1,Global,all,TRUE +618,-0.334974828444203,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,5,7,7,6,5,4,2,1,3,2,3,1,1,4,1,4,4,1,3,1,2,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Critcher|Inbar|Anderson|Bauer|Miyamoto|Ross.Slate1|Alter|Kay|Hauser|Graham|Huang|Rottenstrich,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,4,Global,all,TRUE +619,-0.771258549272079,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,1,7,7,7,1,5,1,1,5,5,1,1,5,5,1,1,5,3,5,1,1,5,5,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Huang|Miyamoto|Graham|Bauer|Anderson|Hauser|Rottenstrich|Critcher|Inbar|VanLange|Kay|Ross.Slate1,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,6,Global,all,TRUE +623,0.100522128886807,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,6,5,5,5,4,2,2,3,2,1,1,1,2,2,2,1,2,1,2,1,1,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Bauer|Critcher|Alter|VanLange|Graham|Anderson|Inbar|Ross.Slate1|Rottenstrich|Hauser|Huang|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,7,Global,all,TRUE +626,-0.98558286238475,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,6,6,6,4,6,4,1,1,1,4,1,2,3,3,2,2,5,1,5,1,2,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Bauer|Alter|VanLange|Hauser|Inbar|Anderson|Critcher|Kay|Graham|Miyamoto|Rottenstrich|Ross.Slate1,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,7,Global,all,TRUE +628,-0.672671009419715,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,3,3,6,2,7,3,1,1,4,1,1,1,1,3,1,1,3,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|VanLange|Kay|Bauer|Rottenstrich|Ross.Slate1|Alter|Critcher|Miyamoto|Graham|Anderson|Huang|Inbar,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,11,Global,all,TRUE +630,0.0852360677569031,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,6,6,6,6,6,3,1,1,4,1,1,1,2,1,1,1,5,1,4,3,2,1,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Kay|Ross.Slate1|Rottenstrich|Hauser|Critcher|Bauer|Inbar|Graham|Alter|VanLange|Huang|Anderson,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +631,0.183430225860835,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,6,7,7,6,6,5,1,1,3,5,1,1,4,5,4,1,5,1,4,1,3,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Anderson|Rottenstrich|Hauser|Graham|Miyamoto|Bauer|Ross.Slate1|Critcher|Alter|VanLange|Kay|Inbar,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,2,Global,all,TRUE +635,-0.0994294650242251,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Rottenstrich|Alter|Kay|Huang|Anderson|Bauer|Critcher|Graham|Miyamoto|VanLange|Hauser|Inbar,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood,6,Global,all,TRUE +637,-0.666607216340313,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,6,6,6,7,6,5,2,3,4,5,2,1,5,4,1,2,5,3,5,1,3,4,5,5,4,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Ross.Slate1|Bauer|Alter|Inbar|VanLange|Miyamoto|Hauser|Huang|Rottenstrich|Kay|Graham|Critcher,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,1,Global,all,TRUE +638,0.316164586659812,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,4,6,6,4,3,3,1,1,4,2,1,1,2,3,1,1,3,2,2,2,1,2,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Kay|Critcher|Anderson|VanLange|Graham|Bauer|Inbar|Alter|Miyamoto|Hauser|Ross.Slate1|Rottenstrich,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,4,Global,all,TRUE +639,0.116999756245646,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,5,6,6,5,4,4,1,1,4,3,1,1,2,2,4,1,3,1,4,1,2,3,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Graham|Huang|Kay|Anderson|Ross.Slate1|Bauer|Miyamoto|VanLange|Critcher|Hauser|Rottenstrich|Alter,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection,5,Global,all,TRUE +640,-0.710889647265693,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,5,6,5,6,1,2,1,1,2,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Critcher|Huang|Ross.Slate1|Rottenstrich|VanLange|Alter|Graham|Anderson|Bauer|Hauser|Miyamoto|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,9,Global,all,TRUE +641,-0.2292607331855,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,6,5,5,4,5,3,4,4,3,3,3,4,2,3,3,2,4,4,4,2,3,4,4,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Anderson|Miyamoto|Ross.Slate1|VanLange|Hauser|Critcher|Kay|Bauer|Huang|Graham|Rottenstrich|Alter,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +643,-1.22851016354446,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,5,6,6,5,5,5,1,1,5,4,1,1,5,5,1,1,5,1,5,4,1,4,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Graham|Miyamoto|Alter|Bauer|Hauser|Rottenstrich|Anderson|Critcher|Ross.Slate1|Huang|Inbar|Kay,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,8,Global,all,TRUE +645,0.534965519403917,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,6,6,6,6,6,1,1,1,1,2,1,1,1,1,1,1,3,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Inbar|Rottenstrich|Kay|Ross.Slate1|Anderson|Alter|Miyamoto|Hauser|VanLange|Graham|Bauer|Critcher,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,6,Global,all,TRUE +647,-0.701135998051723,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,2,2,2,2,2,3,4,4,3,1,4,4,2,3,2,1,3,1,3,3,3,1,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Rottenstrich|Miyamoto|Anderson|Huang|Hauser|Kay|Inbar|Critcher|Alter|VanLange|Bauer|Ross.Slate1,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +648,-0.620599612551929,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,6,7,7,7,6,3,1,1,2,4,1,1,3,5,1,1,5,1,4,1,1,5,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Graham|Rottenstrich|Inbar|VanLange|Hauser|Anderson|Kay|Alter|Huang|Miyamoto|Critcher|Bauer,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,7,Global,all,TRUE +649,-1.36835965876614,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,7,7,7,7,6,4,1,2,3,4,1,1,3,5,1,1,4,1,2,1,2,3,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Bauer|VanLange|Kay|Critcher|Hauser|Inbar|Alter|Graham|Ross.Slate1|Huang|Rottenstrich|Anderson,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five,13,Global,all,TRUE +651,0.545646157000388,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,4,5,5,3,3,2,1,1,3,2,1,1,3,3,2,1,4,3,2,1,1,3,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Inbar|Hauser|Bauer|Miyamoto|Kay|Graham|Ross.Slate1|Critcher|Anderson|Alter|VanLange|Rottenstrich,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +655,0.296655062761272,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,4,2,3,5,1,2,3,4,3,4,1,1,2,3,1,1,2,1,4,3,1,3,2,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|VanLange|Ross.Slate1|Bauer|Anderson|Kay|Alter|Inbar|Hauser|Miyamoto|Rottenstrich|Critcher|Huang,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,5,Global,all,TRUE +656,-0.182464140429651,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,3,2,3,3,2,3,3,3,3,1,1,2,1,1,5,1,3,4,2,1,5,2,1,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Critcher|Graham|Huang|Anderson|Rottenstrich|Ross.Slate1|Inbar|Bauer|Alter|Miyamoto|Kay|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,5,Global,all,TRUE +661,-0.273414360208882,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,1,3,3,2,1,2,5,4,2,2,4,4,2,3,5,4,3,4,2,4,4,1,2,1,4,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Hauser|Kay|Rottenstrich|Graham|Inbar|Huang|Ross.Slate1|Alter|VanLange|Critcher|Bauer|Miyamoto,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,1,Global,all,TRUE +664,-0.508835370668061,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,5,4,4,5,1,4,3,3,3,1,2,3,4,3,3,2,4,1,3,3,3,3,4,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Kay|Bauer|Miyamoto|Inbar|Anderson|Hauser|Ross.Slate1|Alter|Critcher|Huang|Rottenstrich|Graham,ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,6,Global,all,TRUE +666,-0.365684950119047,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,6,6,5,5,3,3,1,1,3,1,1,1,1,1,1,1,1,1,3,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Huang|Bauer|VanLange|Inbar|Ross.Slate1|Hauser|Kay|Rottenstrich|Critcher|Alter|Miyamoto|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood,13,Global,all,TRUE +667,-1.24669931731207,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,4,3,2,5,5,3,1,1,3,1,1,1,1,1,1,1,2,1,3,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|Critcher|Rottenstrich|Kay|Graham|Inbar|Bauer|Alter|Ross.Slate1|Huang|VanLange|Anderson,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +670,0.0268477209469178,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,7,7,7,7,5,3,1,1,2,1,1,1,2,2,1,1,5,1,4,1,1,3,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Inbar|Critcher|Anderson|Ross.Slate1|Huang|Hauser|Alter|Kay|Rottenstrich|Miyamoto|Bauer|VanLange,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,4,Global,all,TRUE +674,-0.318497201085364,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,2,5,4,3,2,4,4,1,4,3,5,5,5,3,5,5,4,3,5,1,5,3,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Hauser|Ross.Slate1|VanLange|Inbar|Kay|Rottenstrich|Miyamoto|Huang|Anderson|Alter|Graham|Critcher,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five,10,Global,all,TRUE +677,0.454836162106793,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,5,7,7,7,5,4,1,1,4,4,1,1,4,4,1,1,4,1,4,1,2,4,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Kay|Inbar|Bauer|Alter|Graham|Huang|Hauser|Miyamoto|Ross.Slate1|Rottenstrich|VanLange|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,1,Global,all,TRUE +678,0.858555784494824,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,5,6,6,6,5,4,1,1,4,2,1,1,2,1,1,1,3,1,4,1,1,3,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|VanLange|Alter|Huang|Bauer|Rottenstrich|Graham|Kay|Miyamoto|Inbar|Ross.Slate1|Critcher|Anderson,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,13,Global,all,TRUE +680,-0.685585359075385,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,5,6,6,7,3,3,2,3,4,1,1,1,3,3,2,2,3,1,4,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Kay|Bauer|Huang|Hauser|VanLange|Critcher|Ross.Slate1|Rottenstrich|Alter|Inbar|Miyamoto|Graham,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,1,Global,all,TRUE +682,-0.20764407565916,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,5,4,5,5,5,2,2,1,3,2,1,1,1,3,1,1,3,1,4,1,1,3,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Bauer|Huang|Critcher|Inbar|Alter|Miyamoto|Ross.Slate1|VanLange|Hauser|Rottenstrich|Graham|Anderson,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +683,0.570952670661297,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,6,7,7,7,7,4,1,1,5,3,2,1,3,5,2,2,4,1,3,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Miyamoto|Bauer|Huang|VanLange|Anderson|Ross.Slate1|Alter|Kay|Rottenstrich|Critcher|Graham|Hauser,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +685,-0.734878016266267,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,2,2,5,2,3,3,3,3,2,2,1,2,2,2,3,2,2,1,2,3,2,3,2,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Miyamoto|Kay|Ross.Slate1|Graham|VanLange|Rottenstrich|Critcher|Inbar|Hauser|Alter|Huang|Bauer,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,1,Global,all,TRUE +686,-0.264852277223847,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,3,6,5,5,5,3,3,5,4,1,4,1,1,1,1,4,3,1,4,1,1,1,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|VanLange|Critcher|Miyamoto|Alter|Graham|Kay|Inbar|Hauser|Rottenstrich|Bauer|Ross.Slate1|Anderson,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +691,-0.241779475622137,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,2,6,5,3,3,3,1,2,2,4,1,1,3,3,1,1,3,1,2,1,1,3,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Ross.Slate1|Inbar|Huang|Alter|Hauser|VanLange|Graham|Kay|Miyamoto|Critcher|Anderson|Bauer,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +694,-0.665415650111378,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,2,3,1,1,1,2,1,2,1,2,1,1,1,1,1,1,3,1,3,1,1,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Alter|Kay|Huang|Rottenstrich|Bauer|Hauser|VanLange|Critcher|Ross.Slate1|Inbar|Miyamoto|Graham,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,1,Global,all,TRUE +695,-0.469282716236912,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,5,5,6,3,3,3,1,1,2,3,1,1,3,4,1,1,3,1,3,1,1,2,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Ross.Slate1|Miyamoto|Rottenstrich|Bauer|VanLange|Critcher|Huang|Anderson|Inbar|Alter|Hauser|Graham,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +699,1.12468469115825,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,3,5,6,4,5,3,1,2,4,5,2,1,1,3,5,2,3,2,4,1,1,3,1,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Ross.Slate1|Anderson|VanLange|Graham|Bauer|Hauser|Alter|Critcher|Inbar|Kay|Rottenstrich|Huang,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,3,Global,all,TRUE +703,-1.02037622194259,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,4,5,5,5,2,3,1,1,4,2,2,1,2,3,1,2,3,1,4,1,1,2,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Miyamoto|Graham|Critcher|Anderson|Alter|Bauer|Inbar|Rottenstrich|Hauser|VanLange|Ross.Slate1|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,5,Global,all,TRUE +704,-1.56144927511727,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,3,5,5,4,5,5,1,2,4,4,1,1,4,3,1,1,3,1,4,1,1,3,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Huang|Ross.Slate1|Hauser|Bauer|VanLange|Rottenstrich|Critcher|Graham|Inbar|Anderson|Miyamoto|Kay,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +705,-0.421434782137763,High,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,5,5,5,6,4,4,2,1,3,2,1,1,2,1,2,1,3,1,4,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Alter|Graham|Hauser|VanLange|Bauer|Rottenstrich|Huang|Anderson|Critcher|Inbar|Ross.Slate1|Miyamoto,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,9,Global,all,TRUE +707,0.830877559359682,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r__For_Andrew_Tang.csv,ouhktab,5,5,5,3,3,4,3,1,2,4,2,3,3,2,2,2,4,2,4,3,4,5,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,ouhk,ouhk,ouhktab,"Hong Kong, China",Open University of Hong Kong,Chinese (traditional),0,illegal,Yes,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Graham|Miyamoto|Bauer|Huang|Rottenstrich|Anderson|Kay|Ross.Slate1|Critcher|Alter|VanLange|Hauser,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,7,Global,all,TRUE +709,0.210981872564577,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r__For_Andrew_Tang.csv,ouhktab,5,6,6,6,6,3,1,1,2,2,1,2,3,2,2,1,4,1,3,1,1,4,4,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,ouhk,ouhk,ouhktab,"Hong Kong, China",Open University of Hong Kong,Chinese (traditional),0,illegal,Yes,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Bauer|Inbar|Hauser|Ross.Slate1|VanLange|Rottenstrich|Graham|Critcher|Miyamoto|Kay|Huang|Alter,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,1,Global,all,TRUE +711,-0.916511652507694,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r__For_Andrew_Tang.csv,ouhktab,3,4,3,3,3,3,2,1,2,4,1,4,2,2,3,1,2,1,3,1,1,4,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ouhk,ouhk,ouhktab,"Hong Kong, China",Open University of Hong Kong,Chinese (traditional),0,illegal,Yes,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Kay|Bauer|Critcher|Hauser|Ross.Slate1|Inbar|Miyamoto|Huang|VanLange|Rottenstrich|Alter|Graham,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,1,Global,all,TRUE +712,0.504128819297675,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r__For_Andrew_Tang.csv,ouhktab,2,4,3,3,2,2,1,1,2,2,2,2,2,2,2,2,1,2,1,1,1,4,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,ouhk,ouhk,ouhktab,"Hong Kong, China",Open University of Hong Kong,Chinese (traditional),0,illegal,Yes,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Critcher|VanLange|Kay|Graham|Bauer|Ross.Slate1|Anderson|Inbar|Rottenstrich|Huang|Alter|Hauser,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood,8,Global,all,TRUE +713,-0.608474251863725,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r__For_Andrew_Tang.csv,ouhktab,3,4,4,4,2,4,3,3,4,4,4,3,3,4,3,3,4,4,3,2,4,4,4,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,ouhk,ouhk,ouhktab,"Hong Kong, China",Open University of Hong Kong,Chinese (traditional),0,illegal,Yes,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Alter|VanLange|Rottenstrich|Ross.Slate1|Hauser|Graham|Inbar|Miyamoto|Huang|Anderson|Critcher|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection,11,Global,all,TRUE +714,-2.39764760475085,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r__For_Andrew_Tang.csv,ouhktab,2,3,4,4,1,1,2,2,1,1,1,4,1,1,2,1,2,1,4,1,3,1,2,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,ouhk,ouhk,ouhktab,"Hong Kong, China",Open University of Hong Kong,Chinese (traditional),0,illegal,Yes,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Bauer|Graham|Kay|Hauser|Inbar|Ross.Slate1|Alter|Rottenstrich|VanLange|Anderson|Critcher|Miyamoto,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,11,Global,all,TRUE +715,-1.93249409255889,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r__For_Andrew_Tang.csv,ouhktab,4,5,5,4,2,4,2,3,2,3,4,3,3,2,5,2,3,2,4,1,3,3,3,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,ouhk,ouhk,ouhktab,"Hong Kong, China",Open University of Hong Kong,Chinese (traditional),0,illegal,Yes,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Graham|Alter|Bauer|Miyamoto|Ross.Slate1|Huang|Hauser|Anderson|Kay|VanLange|Rottenstrich|Inbar,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,9,Global,all,TRUE +717,-0.693487256994952,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r__For_Andrew_Tang.csv,ouhktab,4,4,4,3,1,4,2,3,4,3,2,3,3,3,4,1,3,4,3,1,3,5,4,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,ouhk,ouhk,ouhktab,"Hong Kong, China",Open University of Hong Kong,Chinese (traditional),0,illegal,Yes,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Bauer|Critcher|VanLange|Miyamoto|Rottenstrich|Graham|Ross.Slate1|Alter|Kay|Inbar|Anderson|Hauser,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +718,-0.885143571237983,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r__For_Andrew_Tang.csv,ouhktab,5,5,5,5,4,4,3,1,3,4,3,2,3,3,3,2,3,2,3,3,3,4,4,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,ouhk,ouhk,ouhktab,"Hong Kong, China",Open University of Hong Kong,Chinese (traditional),0,illegal,Yes,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Anderson|Graham|Miyamoto|Kay|Critcher|VanLange|Rottenstrich|Hauser|Bauer|Alter|Inbar|Ross.Slate1,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,2,Global,all,TRUE +719,-1.05886166310561,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r__For_Andrew_Tang.csv,ouhktab,1,3,3,4,2,2,2,1,2,1,2,2,3,1,4,1,1,1,2,2,2,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ouhk,ouhk,ouhktab,"Hong Kong, China",Open University of Hong Kong,Chinese (traditional),0,illegal,Yes,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Critcher|Alter|Miyamoto|Anderson|Hauser|Kay|Bauer|Inbar|Graham|Ross.Slate1|VanLange|Huang,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,5,Global,all,TRUE +721,-0.940500021508267,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r__For_Andrew_Tang.csv,ouhktab,5,4,5,2,2,3,3,1,2,4,1,2,3,1,4,1,3,2,5,1,2,2,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ouhk,ouhk,ouhktab,"Hong Kong, China",Open University of Hong Kong,Chinese (traditional),0,illegal,Yes,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Inbar|Rottenstrich|Critcher|Bauer|VanLange|Graham|Huang|Miyamoto|Alter|Kay|Anderson|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,12,Global,all,TRUE +722,-0.462825541409078,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r__For_Andrew_Tang.csv,ouhktab,5,6,6,5,4,3,3,4,3,3,2,3,3,3,4,3,4,3,4,3,3,3,4,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,ouhk,ouhk,ouhktab,"Hong Kong, China",Open University of Hong Kong,Chinese (traditional),0,illegal,Yes,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Rottenstrich|Ross.Slate1|Miyamoto|Hauser|Critcher|Alter|Kay|Anderson|Bauer|Graham|Huang|Inbar,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,9,Global,all,TRUE +724,-1.52442220350023,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r__For_Andrew_Tang.csv,ouhktab,2,6,6,6,2,3,1,2,1,1,1,1,1,1,3,1,1,1,3,1,1,2,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ouhk,ouhk,ouhktab,"Hong Kong, China",Open University of Hong Kong,Chinese (traditional),0,illegal,Yes,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Graham|Anderson|Ross.Slate1|Kay|Hauser|Huang|Critcher|Rottenstrich|VanLange|Bauer|Miyamoto|Alter,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,3,Global,all,TRUE +725,-0.953945752327406,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r__For_Andrew_Tang.csv,ouhktab,3,3,5,3,1,3,2,1,3,4,2,3,3,4,1,1,3,2,3,1,2,4,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ouhk,ouhk,ouhktab,"Hong Kong, China",Open University of Hong Kong,Chinese (traditional),0,illegal,Yes,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Ross.Slate1|Huang|Kay|Miyamoto|Inbar|Anderson|Graham|Critcher|Alter|Hauser|VanLange|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,7,Global,all,TRUE +727,-1.05306467334324,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r__For_Andrew_Tang.csv,ouhktab,3,4,5,5,1,4,4,3,2,3,2,3,2,4,4,4,3,2,1,1,2,3,3,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,ouhk,ouhk,ouhktab,"Hong Kong, China",Open University of Hong Kong,Chinese (traditional),0,illegal,Yes,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Hauser|Critcher|Graham|Anderson|Miyamoto|Bauer|VanLange|Inbar|Kay|Rottenstrich|Huang|Alter,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,5,Global,all,TRUE +728,-1.56408778990854,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r__For_Andrew_Tang.csv,ouhktab,6,6,7,7,2,4,2,2,3,4,1,2,4,4,4,2,4,2,3,3,4,2,3,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,ouhk,ouhk,ouhktab,"Hong Kong, China",Open University of Hong Kong,Chinese (traditional),0,illegal,Yes,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Kay|Anderson|Rottenstrich|Critcher|Alter|VanLange|Hauser|Inbar|Miyamoto|Graham|Huang|Bauer,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,3,Global,all,TRUE +731,-0.558785987453811,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r__For_Andrew_Tang.csv,ouhktab,5,5,5,5,3,2,1,1,1,1,1,1,2,1,2,1,4,1,5,1,1,1,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ouhk,ouhk,ouhktab,"Hong Kong, China",Open University of Hong Kong,Chinese (traditional),0,illegal,Yes,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Huang|Inbar|Kay|Bauer|Anderson|Hauser|Miyamoto|Critcher|Alter|Graham|VanLange|Rottenstrich,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +732,-0.684925174009918,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r__For_Andrew_Tang.csv,ouhktab,4,4,5,4,4,4,1,1,3,4,1,1,3,4,2,1,4,1,4,1,1,4,4,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,ouhk,ouhk,ouhktab,"Hong Kong, China",Open University of Hong Kong,Chinese (traditional),0,illegal,Yes,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Rottenstrich|Graham|Inbar|Hauser|Huang|Bauer|Miyamoto|Ross.Slate1|VanLange|Critcher|Alter|Anderson,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,13,Global,all,TRUE +733,-0.281456483014085,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r__For_Andrew_Tang.csv,ouhktab,6,5,6,7,2,4,3,2,5,3,3,2,5,4,2,2,4,3,4,1,3,4,3,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,ouhk,ouhk,ouhktab,"Hong Kong, China",Open University of Hong Kong,Chinese (traditional),0,illegal,Yes,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Hauser|Bauer|VanLange|Miyamoto|Ross.Slate1|Huang|Kay|Rottenstrich|Anderson|Inbar|Alter|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,10,Global,all,TRUE +735,-1.00363179126672,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r__For_Andrew_Tang.csv,ouhktab,4,5,5,4,6,2,5,2,1,3,1,5,1,1,3,1,3,2,1,1,1,3,3,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,ouhk,ouhk,ouhktab,"Hong Kong, China",Open University of Hong Kong,Chinese (traditional),0,illegal,Yes,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Huang|Kay|VanLange|Alter|Anderson|Rottenstrich|Inbar|Miyamoto|Graham|Hauser|Ross.Slate1|Bauer,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,6,Global,all,TRUE +736,-1.03698042773283,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r__For_Andrew_Tang.csv,ouhktab,2,2,2,2,2,4,4,4,4,1,3,4,3,2,3,4,3,5,3,4,3,3,4,2,5,,,,,,,,,,,,,,,,,,,,,,,,,,ouhk,ouhk,ouhktab,"Hong Kong, China",Open University of Hong Kong,Chinese (traditional),0,illegal,Yes,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|VanLange|Alter|Inbar|Rottenstrich|Ross.Slate1|Anderson|Critcher|Graham|Miyamoto|Kay|Huang|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection,7,Global,all,TRUE +739,-1.41633417129669,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r__For_Andrew_Tang.csv,ouhktab,5,6,7,6,5,4,1,1,1,3,1,1,3,4,1,1,3,1,4,1,1,2,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,ouhk,ouhk,ouhktab,"Hong Kong, China",Open University of Hong Kong,Chinese (traditional),0,illegal,Yes,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Miyamoto|Hauser|Rottenstrich|Anderson|Critcher|Kay|Huang|Bauer|VanLange|Inbar|Alter|Ross.Slate1,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood,5,Global,all,TRUE +747,0.00430630050867697,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,3,2,3,5,3,3,5,4,4,3,4,4,3,4,4,4,4,4,4,4,3,4,4,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Kay|Inbar|Hauser|Graham|Anderson|Huang|Rottenstrich|VanLange|Alter|Bauer|Ross.Slate1|Miyamoto,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,6,Global,all,TRUE +751,-0.464806096605478,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,5,5,5,4,1,1,1,1,1,1,1,2,1,1,1,1,1,1,2,1,1,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Miyamoto|Rottenstrich|VanLange|Kay|Hauser|Alter|Huang|Graham|Bauer|Ross.Slate1|Critcher|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,1,Global,all,TRUE +753,-0.658298290218076,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,4,5,5,7,4,4,4,3,4,3,2,4,3,2,3,2,3,3,3,4,2,3,3,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Miyamoto|Inbar|Critcher|Huang|Graham|Alter|Kay|Hauser|Anderson|Ross.Slate1|Rottenstrich|Bauer,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood,10,Global,all,TRUE +756,-0.776535578854615,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,5,5,5,5,2,4,3,3,4,4,4,4,2,4,4,3,3,2,4,3,4,3,3,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Graham|Anderson|Critcher|Alter|Inbar|Bauer|Huang|Ross.Slate1|Rottenstrich|Miyamoto|VanLange|Hauser,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,3,Global,all,TRUE +759,-1.0426508390638,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,6,7,7,6,7,4,2,2,4,4,2,2,3,3,3,2,4,3,4,1,3,4,4,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Hauser|Kay|Anderson|Miyamoto|VanLange|Ross.Slate1|Rottenstrich|Critcher|Graham|Alter|Bauer|Huang,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +762,-0.23796081558557,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,3,5,6,3,6,4,4,3,2,4,2,4,3,2,2,2,4,1,4,2,2,3,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Bauer|Hauser|Critcher|Huang|Inbar|Alter|Miyamoto|Kay|VanLange|Rottenstrich|Graham|Anderson,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,13,Global,all,TRUE +766,-0.459006881372511,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,2,5,5,3,6,4,2,1,1,1,1,2,4,1,1,1,1,1,3,1,1,4,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Inbar|Huang|VanLange|Alter|Anderson|Graham|Miyamoto|Critcher|Bauer|Hauser|Kay|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,6,Global,all,TRUE +767,0.403422724833875,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,6,6,6,5,7,2,1,1,1,1,1,1,1,1,1,1,1,1,4,1,1,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Huang|Rottenstrich|Inbar|Ross.Slate1|Miyamoto|Hauser|VanLange|Bauer|Alter|Graham|Kay|Critcher,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing,1,Global,all,TRUE +769,-1.57225649114514,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,3,3,3,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Inbar|Rottenstrich|Alter|Critcher|Bauer|Miyamoto|Hauser|VanLange|Huang|Kay|Graham|Anderson,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,13,Global,all,TRUE +771,0.60060922552224,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,5,5,6,3,2,3,3,2,3,3,2,2,3,2,3,1,2,2,3,3,4,4,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Kay|Rottenstrich|Huang|Anderson|Ross.Slate1|Inbar|Alter|Hauser|VanLange|Miyamoto|Critcher|Graham,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE,5,Global,all,TRUE +775,-1.07442594853618,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,3,4,4,6,3,2,2,2,1,2,2,2,1,2,3,1,1,3,5,4,3,2,1,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Hauser|Anderson|Alter|Ross.Slate1|Rottenstrich|Critcher|Graham|Inbar|Bauer|Kay|Huang|Miyamoto,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,3,Global,all,TRUE +777,-1.69748233577298,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,5,5,6,4,3,1,4,4,3,3,1,4,2,2,2,1,3,1,4,1,3,3,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Inbar|Kay|Bauer|Miyamoto|Hauser|Ross.Slate1|Rottenstrich|Graham|Critcher|Alter|VanLange|Anderson,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,13,Global,all,TRUE +779,-0.741473190509137,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,6,5,4,2,1,1,5,4,5,2,4,5,1,2,5,3,1,4,1,5,3,1,2,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Alter|Rottenstrich|VanLange|Inbar|Graham|Kay|Huang|Anderson|Hauser|Miyamoto|Ross.Slate1|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,9,Global,all,TRUE +781,-0.473632757436948,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,3,3,4,2,2,3,1,1,1,1,1,2,1,1,2,1,1,1,3,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Inbar|Huang|Miyamoto|VanLange|Rottenstrich|Graham|Critcher|Anderson|Kay|Hauser|Ross.Slate1|Bauer,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood,9,Global,all,TRUE +782,0.317876113068579,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,2,2,2,2,1,2,2,3,3,1,3,3,2,2,3,2,2,1,3,1,2,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Bauer|Rottenstrich|Critcher|Kay|Huang|Miyamoto|VanLange|Graham|Alter|Ross.Slate1|Hauser|Anderson,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing,13,Global,all,TRUE +783,-0.242439660687604,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,6,4,6,5,3,2,2,2,3,2,1,3,1,2,3,1,3,1,4,1,1,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Anderson|Kay|Miyamoto|Huang|Graham|Inbar|Ross.Slate1|Alter|Hauser|Bauer|Rottenstrich|VanLange,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,2,Global,all,TRUE +785,0.052674194787658,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,2,4,4,2,1,1,4,1,2,1,1,1,1,2,5,1,5,1,4,1,2,4,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Alter|Hauser|Bauer|Anderson|Inbar|Graham|Kay|Miyamoto|Ross.Slate1|Critcher|VanLange|Rottenstrich,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,5,Global,all,TRUE +787,-0.234004156133968,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,5,6,6,6,4,4,1,1,3,1,1,1,1,1,1,1,1,1,4,1,1,1,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Ross.Slate1|Inbar|Anderson|Rottenstrich|Huang|Hauser|VanLange|Bauer|Critcher|Alter|Miyamoto|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,4,Global,all,TRUE +789,-0.678467999182083,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,2,2,2,3,1,1,2,1,2,2,1,3,1,2,1,1,3,1,3,1,2,2,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Alter|VanLange|Critcher|Inbar|Huang|Hauser|Graham|Bauer|Anderson|Miyamoto|Ross.Slate1|Kay,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,10,Global,all,TRUE +790,-1.51281457752126,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,3,3,4,4,4,3,3,3,4,3,2,3,2,3,3,2,3,3,4,4,4,3,3,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Anderson|VanLange|Critcher|Graham|Kay|Huang|Ross.Slate1|Bauer|Inbar|Miyamoto|Alter|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,2,Global,all,TRUE +791,-1.09761390758565,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,3,4,3,3,1,4,2,2,4,1,2,2,3,2,1,3,4,2,4,2,1,2,4,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Alter|Bauer|Miyamoto|Ross.Slate1|Rottenstrich|Hauser|Graham|Anderson|Critcher|Inbar|Huang|Kay,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,9,Global,all,TRUE +792,0.125041879050849,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,4,5,5,3,4,4,4,3,4,3,3,4,2,2,3,4,4,3,4,2,3,3,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Graham|Hauser|VanLange|Bauer|Miyamoto|Alter|Kay|Ross.Slate1|Rottenstrich|Anderson|Inbar|Huang,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,11,Global,all,TRUE +795,-1.0232793145803,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,3,4,3,3,5,2,3,3,3,1,1,3,3,1,2,3,1,3,1,2,3,2,2,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Alter|Anderson|Inbar|VanLange|Bauer|Graham|Critcher|Miyamoto|Rottenstrich|Huang|Ross.Slate1|Hauser,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,3,Global,all,TRUE +798,-1.08812483621812,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,4,5,5,5,5,4,3,2,3,4,3,3,3,3,2,3,3,3,4,3,3,3,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Alter|Inbar|Huang|Hauser|Bauer|Miyamoto|Kay|VanLange|Anderson|Critcher|Graham|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,10,Global,all,TRUE +800,0.501490304506407,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,2,3,1,3,1,3,5,5,4,3,3,5,3,1,5,2,3,5,5,4,4,1,3,2,5,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Miyamoto|VanLange|Ross.Slate1|Bauer|Graham|Rottenstrich|Anderson|Hauser|Alter|Huang|Inbar|Kay,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,8,Global,all,TRUE +804,-1.26501504951108,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,6,5,6,5,4,5,1,1,3,1,1,1,3,2,1,1,3,1,4,1,2,2,5,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Miyamoto|Alter|Inbar|Huang|Hauser|Kay|Rottenstrich|VanLange|Graham|Critcher|Anderson|Ross.Slate1,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +806,-1.09946565888005,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,2,6,6,5,2,3,1,2,2,2,1,1,2,1,2,1,3,2,3,1,1,2,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Kay|Huang|Rottenstrich|Ross.Slate1|Hauser|Miyamoto|Inbar|VanLange|Anderson|Bauer|Alter|Critcher,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,10,Global,all,TRUE +808,-0.711156450582727,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,3,4,4,3,2,4,2,2,4,3,2,2,2,3,1,2,3,2,4,2,4,2,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Bauer|Alter|Hauser|Miyamoto|Rottenstrich|VanLange|Kay|Ross.Slate1|Anderson|Huang|Graham|Critcher,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,10,Global,all,TRUE +811,-0.578422089783749,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,5,5,6,5,6,3,4,2,3,2,3,4,2,4,4,1,3,4,4,1,3,4,4,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Inbar|Miyamoto|Critcher|Rottenstrich|Anderson|Bauer|Hauser|Ross.Slate1|VanLange|Kay|Huang|Graham,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,6,Global,all,TRUE +812,-0.558785987453811,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,1,7,2,1,1,2,5,3,2,1,3,5,1,2,5,5,1,5,1,2,3,4,1,1,5,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Inbar|Anderson|Graham|Alter|Critcher|Kay|VanLange|Hauser|Huang|Bauer|Rottenstrich|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,3,Global,all,TRUE +814,-0.868270336660112,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,5,6,5,5,2,4,2,1,2,4,3,4,1,3,4,2,4,2,2,1,2,4,3,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Miyamoto|Inbar|Anderson|VanLange|Rottenstrich|Huang|Ross.Slate1|Bauer|Alter|Kay|Critcher|Hauser,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,4,Global,all,TRUE +815,-0.0750499397458179,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,4,5,4,5,3,2,3,1,1,1,1,2,1,1,1,1,2,1,4,1,3,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Graham|Rottenstrich|Kay|Inbar|Huang|Miyamoto|Critcher|VanLange|Alter|Ross.Slate1|Hauser|Anderson,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing,13,Global,all,TRUE +819,-1.03580028248753,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,5,3,5,2,2,2,1,1,1,1,1,1,2,2,1,1,2,1,3,1,2,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Ross.Slate1|VanLange|Critcher|Bauer|Inbar|Graham|Huang|Alter|Kay|Rottenstrich|Hauser|Miyamoto,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood,1,Global,all,TRUE +820,-1.36347601093204,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,3,3,3,4,3,4,4,1,3,3,1,4,3,3,4,3,3,2,4,1,3,3,3,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Alter|Kay|VanLange|Ross.Slate1|Bauer|Rottenstrich|Huang|Miyamoto|Critcher|Inbar|Hauser|Anderson,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,13,Global,all,TRUE +821,-1.66281332917594,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,2,4,2,2,6,4,3,3,1,1,4,3,3,3,2,1,3,1,3,1,1,3,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Critcher|Huang|Ross.Slate1|VanLange|Bauer|Miyamoto|Anderson|Kay|Graham|Alter|Inbar|Hauser,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,8,Global,all,TRUE +823,-0.782065765299949,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,2,4,4,3,2,1,1,1,1,1,1,1,2,2,1,1,2,1,2,1,1,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Anderson|Huang|Miyamoto|Ross.Slate1|Graham|Kay|VanLange|Rottenstrich|Inbar|Critcher|Alter|Hauser,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,2,Global,all,TRUE +826,-0.501971167637557,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Anderson|Critcher|Kay|Graham|Ross.Slate1|Rottenstrich|Huang|Alter|Hauser|Inbar|VanLange|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,2,Global,all,TRUE +827,-0.430137090008433,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,2,5,6,4,2,3,1,1,1,3,1,1,2,4,1,1,4,1,2,1,1,2,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Alter|Graham|VanLange|Ross.Slate1|Critcher|Miyamoto|Bauer|Kay|Hauser|Anderson|Rottenstrich|Inbar,ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +828,-1.34831652823354,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,1,1,2,1,2,4,2,2,3,1,2,4,3,2,2,2,4,2,5,2,2,3,3,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|VanLange|Rottenstrich|Kay|Inbar|Alter|Anderson|Huang|Critcher|Ross.Slate1|Bauer|Hauser|Graham,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,7,Global,all,TRUE +829,-1.06519225950204,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,3,3,5,3,2,3,3,1,1,2,1,4,3,1,4,3,2,4,3,1,3,3,2,1,4,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Alter|Rottenstrich|Kay|Huang|Ross.Slate1|Graham|Bauer|Critcher|Inbar|VanLange|Hauser|Miyamoto,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +830,0.0140621751932467,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,1,1,1,1,2,4,5,5,4,2,1,5,1,2,5,3,5,5,1,1,5,3,4,1,5,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Hauser|Kay|Inbar|Rottenstrich|Bauer|Alter|Miyamoto|Critcher|VanLange|Huang|Anderson|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,12,Global,all,TRUE +833,0.501490304506407,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,4,5,6,3,2,2,3,1,2,3,1,3,4,3,2,1,2,3,4,1,4,2,4,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Graham|Critcher|Alter|Inbar|Kay|Huang|Anderson|Bauer|Ross.Slate1|Miyamoto|Hauser|Rottenstrich,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing,8,Global,all,TRUE +834,0.362298768879594,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,5,5,5,3,2,3,3,1,3,4,1,2,2,4,2,3,4,3,3,2,3,3,5,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Hauser|Critcher|Inbar|Miyamoto|Rottenstrich|Huang|Graham|Anderson|Bauer|VanLange|Ross.Slate1|Alter,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,9,Global,all,TRUE +836,-0.525437350987699,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,3,4,3,4,3,4,2,1,4,2,1,3,3,2,1,1,4,2,4,1,2,3,4,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Anderson|Ross.Slate1|Inbar|Huang|Alter|Rottenstrich|Graham|VanLange|Hauser|Kay|Bauer|Critcher,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,2,Global,all,TRUE +839,-0.454656840172476,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,5,6,6,6,4,3,2,1,1,2,1,2,4,3,2,3,3,1,3,1,2,1,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Huang|Alter|Graham|Bauer|Inbar|Hauser|Kay|Ross.Slate1|Critcher|Anderson|Rottenstrich|Miyamoto,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +840,0.165772453256696,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,6,6,6,2,4,3,2,2,3,4,2,2,3,4,2,3,4,2,3,2,4,5,3,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Critcher|Ross.Slate1|Huang|Graham|Kay|Miyamoto|Bauer|Inbar|VanLange|Hauser|Anderson|Alter,ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,12,Global,all,TRUE +841,-1.24998437071457,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,3,5,5,5,2,1,2,2,4,2,4,4,1,2,5,1,2,4,2,2,2,1,2,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Bauer|Rottenstrich|Alter|Miyamoto|Hauser|Inbar|VanLange|Huang|Anderson|Graham|Critcher|Ross.Slate1,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,10,Global,all,TRUE +842,0.307335700357743,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,6,6,6,7,6,3,2,1,1,2,1,2,3,3,3,1,2,1,3,1,2,3,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Inbar|Critcher|Alter|Graham|Anderson|Hauser|VanLange|Kay|Rottenstrich|Miyamoto|Ross.Slate1|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,6,Global,all,TRUE +845,0.431367753286051,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,5,5,5,3,5,4,1,1,1,1,1,1,1,4,1,2,3,1,4,1,1,2,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Bauer|Kay|Alter|Hauser|VanLange|Critcher|Miyamoto|Anderson|Ross.Slate1|Rottenstrich|Graham|Inbar,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +846,-1.00785525403536,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,5,6,7,6,4,4,3,1,2,4,2,2,3,4,2,1,3,2,4,1,1,4,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Rottenstrich|Miyamoto|Graham|Huang|Alter|Ross.Slate1|VanLange|Kay|Bauer|Hauser|Critcher|Anderson,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,13,Global,all,TRUE +847,0.0143289785102807,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,1,2,2,2,3,3,3,2,2,2,1,4,2,4,1,1,5,1,5,4,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Inbar|Huang|Miyamoto|Hauser|Critcher|VanLange|Graham|Kay|Ross.Slate1|Rottenstrich|Anderson|Alter,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +848,-0.0577719024358771,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,4,5,5,5,6,3,2,2,4,3,3,3,2,4,3,2,4,2,4,3,3,4,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Graham|Rottenstrich|Miyamoto|Critcher|VanLange|Alter|Ross.Slate1|Kay|Hauser|Huang|Inbar|Bauer,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,1,Global,all,TRUE +849,-0.0415610783940718,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,3,3,3,2,5,2,2,3,1,1,1,2,3,1,1,1,2,1,4,1,1,2,1,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Graham|Rottenstrich|Alter|Anderson|Bauer|Hauser|VanLange|Miyamoto|Ross.Slate1|Huang|Inbar|Critcher,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,5,Global,all,TRUE +850,-0.777586920197915,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,4,4,4,4,1,4,1,1,3,4,1,1,4,2,2,1,1,1,1,3,1,3,1,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Graham|VanLange|Hauser|Kay|Inbar|Miyamoto|Bauer|Anderson|Rottenstrich|Ross.Slate1|Critcher|Alter,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +856,0.676008806325132,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkusttab,7,7,7,7,7,4,3,1,3,4,3,3,2,3,3,1,3,2,3,2,3,4,4,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkusttab,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Alter|Inbar|Bauer|Miyamoto|Graham|Anderson|Critcher|Hauser|Ross.Slate1|Rottenstrich|VanLange|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,7,Global,all,TRUE +858,-0.877619183142013,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkusttab,5,5,5,3,2,3,1,1,1,2,1,1,3,2,1,1,4,2,5,1,1,2,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkusttab,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Huang|VanLange|Ross.Slate1|Anderson|Kay|Bauer|Inbar|Miyamoto|Hauser|Alter|Critcher|Graham,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,5,Global,all,TRUE +859,0.130052105316351,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkusttab,2,1,2,3,2,2,2,3,2,2,2,2,3,3,3,3,4,2,4,1,3,2,2,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkusttab,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Miyamoto|Kay|Bauer|VanLange|Hauser|Inbar|Critcher|Ross.Slate1|Rottenstrich|Huang|Alter|Graham,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,1,Global,all,TRUE +861,0.263840032929229,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkusttab,4,3,5,4,5,4,3,3,4,3,2,3,4,3,3,2,4,3,3,2,3,4,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkusttab,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Critcher|Huang|Hauser|Miyamoto|Anderson|Inbar|Bauer|VanLange|Rottenstrich|Ross.Slate1|Graham|Kay,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,6,Global,all,TRUE +862,-0.198674964471457,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkusttab,5,5,5,4,6,2,1,1,2,3,1,1,1,1,4,1,2,1,4,1,2,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkusttab,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Rottenstrich|Inbar|Hauser|Anderson|Alter|Kay|VanLange|Huang|Critcher|Graham|Miyamoto|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,5,Global,all,TRUE +865,-0.0298268739837009,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkusttab,4,3,4,5,5,3,2,1,1,4,1,2,3,1,1,1,2,1,4,1,1,1,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkusttab,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Ross.Slate1|Hauser|Bauer|Rottenstrich|Inbar|Critcher|Alter|Anderson|Graham|Miyamoto|Huang|VanLange,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,9,Global,all,TRUE +867,-1.44638410790607,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkusttab,3,5,3,3,2,4,2,2,1,4,3,1,4,4,2,1,4,1,3,1,1,4,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkusttab,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Inbar|Graham|Ross.Slate1|Hauser|Miyamoto|VanLange|Kay|Bauer|Critcher|Huang|Alter|Rottenstrich,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing,1,Global,all,TRUE +868,-0.179038862141518,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkusttab,5,6,6,7,6,3,2,1,1,4,2,2,4,4,1,3,4,1,3,1,1,3,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkusttab,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Alter|Kay|Graham|Critcher|Hauser|Bauer|Ross.Slate1|Miyamoto|Inbar|Huang|Anderson|VanLange,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,12,Global,all,TRUE +871,-0.922308642270062,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkusttab,5,5,4,3,6,3,1,1,3,1,1,1,3,2,1,1,5,1,4,1,1,3,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkusttab,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|VanLange|Anderson|Hauser|Inbar|Ross.Slate1|Alter|Critcher|Kay|Huang|Rottenstrich|Bauer|Miyamoto,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,3,Global,all,TRUE +874,-0.673317548030946,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkusttab,6,7,7,7,3,5,1,1,3,4,3,1,3,3,2,3,4,1,4,1,1,3,3,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkusttab,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Critcher|Inbar|Kay|Alter|VanLange|Huang|Miyamoto|Anderson|Hauser|Ross.Slate1|Rottenstrich|Bauer,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,9,Global,all,TRUE +875,-0.744364862163203,High,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkusttab,4,6,5,6,3,4,1,2,2,2,1,2,2,2,2,1,3,1,3,2,1,2,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,hkust,hkust,hkusttab,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Anderson|Hauser|Graham|Inbar|Miyamoto|Critcher|Rottenstrich|VanLange|Alter|Bauer|Ross.Slate1|Kay,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing,2,Global,all,TRUE +882,-0.340378436458138,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,5,4,6,5,2,5,1,1,1,5,1,1,3,4,2,1,5,1,5,1,2,4,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Huang|Alter|Ross.Slate1|Rottenstrich|Anderson|Bauer|Graham|Miyamoto|Critcher|VanLange|Kay|Hauser,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,6,Global,all,TRUE +885,-0.0188794330701955,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,5,5,6,7,6,3,1,1,1,3,1,2,4,3,1,1,4,1,3,1,3,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Rottenstrich|VanLange|Huang|Anderson|Kay|Critcher|Graham|Miyamoto|Bauer|Hauser|Inbar|Alter,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,5,Global,all,TRUE +886,-0.558519184136777,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,1,3,2,2,1,4,3,2,3,4,2,3,4,3,4,1,2,4,3,1,3,4,4,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Inbar|Bauer|Ross.Slate1|Huang|Anderson|Critcher|Graham|VanLange|Rottenstrich|Hauser|Alter|Kay,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +887,0.00628685570507755,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,3,4,4,3,3,1,1,1,2,1,1,1,2,1,1,1,3,1,4,2,2,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|Kay|Anderson|Critcher|Bauer|Alter|Graham|VanLange|Ross.Slate1|Rottenstrich|Inbar|Huang,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,4,Global,all,TRUE +889,-0.57275167845278,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,5,3,3,4,2,5,1,2,1,3,1,2,3,2,3,3,2,1,4,2,2,5,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Graham|Kay|Critcher|Anderson|VanLange|Ross.Slate1|Huang|Inbar|Rottenstrich|Hauser|Miyamoto|Bauer,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing,5,Global,all,TRUE +890,-1.22929470157073,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,5,4,5,5,5,4,3,1,2,4,2,2,3,3,2,1,4,1,4,1,3,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Bauer|Huang|Alter|Rottenstrich|VanLange|Kay|Inbar|Critcher|Graham|Anderson|Miyamoto|Ross.Slate1,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,11,Global,all,TRUE +893,-0.365684950119047,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,2,2,4,3,4,2,1,1,3,1,1,1,3,4,1,1,4,1,3,2,2,4,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Critcher|Hauser|Ross.Slate1|Rottenstrich|Bauer|VanLange|Alter|Huang|Miyamoto|Graham|Kay|Inbar,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,1,Global,all,TRUE +894,-1.29717211974825,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,5,2,5,3,3,3,2,1,1,3,3,2,3,3,2,3,3,1,4,1,3,4,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Anderson|Hauser|Graham|Kay|Critcher|Rottenstrich|VanLange|Ross.Slate1|Inbar|Alter|Miyamoto|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,2,Global,all,TRUE +897,0.819943764900412,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,2,2,2,2,1,3,4,1,3,4,2,2,3,4,3,3,3,3,2,2,3,4,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Bauer|Miyamoto|Kay|Graham|Rottenstrich|Alter|Ross.Slate1|Critcher|Inbar|Huang|Hauser|Anderson,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +899,-0.248501228296407,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,1,1,3,2,1,2,1,1,2,1,2,2,1,3,1,2,4,1,4,1,4,2,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Alter|Huang|Miyamoto|Anderson|Graham|Hauser|Rottenstrich|Kay|Inbar|Critcher|Ross.Slate1|VanLange,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,5,Global,all,TRUE +903,-0.106673403348925,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,5,4,6,4,5,3,1,1,1,3,1,1,3,3,1,1,3,1,4,1,1,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Rottenstrich|Inbar|Bauer|Graham|Miyamoto|Alter|Hauser|Huang|Critcher|VanLange|Ross.Slate1|Kay,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five,1,Global,all,TRUE +905,0.482514387241935,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,6,6,6,6,6,4,1,1,3,4,1,1,4,5,1,1,5,1,5,1,4,4,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Kay|VanLange|Miyamoto|Huang|Inbar|Ross.Slate1|Anderson|Graham|Rottenstrich|Hauser|Bauer|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,8,Global,all,TRUE +910,-1.31839317005556,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,1,1,1,1,1,5,5,3,3,5,4,3,3,3,3,4,5,3,5,3,5,5,5,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Rottenstrich|Anderson|Kay|Graham|Alter|Hauser|Ross.Slate1|VanLange|Miyamoto|Critcher|Bauer|Inbar,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing,3,Global,all,TRUE +915,0.0893215311105039,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,2,3,3,2,1,2,2,1,1,3,1,3,3,4,2,2,3,1,4,1,4,4,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|Alter|Bauer|Huang|Inbar|Anderson|Graham|Ross.Slate1|VanLange|Rottenstrich|Kay|Critcher,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +916,-0.81646574310936,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,4,5,5,4,5,2,1,1,2,3,1,1,2,1,1,1,1,1,3,1,1,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Miyamoto|Rottenstrich|Critcher|Graham|Anderson|Ross.Slate1|Huang|VanLange|Kay|Hauser|Inbar|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,6,Global,all,TRUE +917,-0.411678907453194,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,6,5,5,5,4,4,4,1,1,3,1,1,3,3,1,1,5,1,4,1,1,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Alter|Ross.Slate1|Critcher|Huang|VanLange|Hauser|Rottenstrich|Graham|Kay|Inbar|Anderson|Bauer,ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,12,Global,all,TRUE +918,-1.07507248714741,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,4,4,5,3,2,3,1,1,1,2,1,3,2,4,1,1,3,1,4,1,4,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Miyamoto|Critcher|Anderson|Graham|Rottenstrich|VanLange|Inbar|Huang|Alter|Kay|Bauer|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,4,Global,all,TRUE +923,-0.941551362851568,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,1,1,6,7,7,4,1,1,1,4,2,1,3,4,1,2,5,1,5,1,1,4,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|VanLange|Ross.Slate1|Kay|Miyamoto|Rottenstrich|Alter|Bauer|Graham|Anderson|Hauser|Inbar|Huang,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,10,Global,all,TRUE +924,0.248680550230724,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,5,3,5,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Huang|Hauser|Kay|Anderson|Rottenstrich|Bauer|Ross.Slate1|Alter|Graham|Inbar|Critcher|VanLange,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,5,Global,all,TRUE +926,-0.193273581928121,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,2,4,2,2,5,1,3,3,1,1,4,3,3,4,1,2,3,1,4,1,5,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Anderson|Graham|Rottenstrich|Bauer|Hauser|Alter|Miyamoto|Ross.Slate1|Kay|Critcher|Huang|Inbar,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,2,Global,all,TRUE +927,-0.220556199844231,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,2,3,5,2,2,2,1,1,3,1,1,1,1,2,1,1,2,1,2,1,1,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Inbar|Rottenstrich|Critcher|Graham|Alter|Miyamoto|VanLange|Hauser|Anderson|Bauer|Kay|Ross.Slate1,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,10,Global,all,TRUE +932,0.0839179230965688,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,4,3,4,5,1,3,1,1,1,3,1,2,3,2,2,1,4,1,4,1,2,1,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Bauer|Critcher|Anderson|Rottenstrich|Ross.Slate1|Kay|Hauser|Alter|Miyamoto|VanLange|Graham|Inbar,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +936,-0.0945458171901219,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,3,3,4,5,4,4,3,1,3,3,1,1,4,3,2,1,4,1,3,1,3,3,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Bauer|Rottenstrich|Kay|Anderson|Miyamoto|Ross.Slate1|Alter|VanLange|Critcher|Huang|Hauser|Inbar,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,5,Global,all,TRUE +937,0.0669203355578978,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,4,2,5,2,2,2,2,2,1,1,1,4,2,1,3,1,2,4,4,1,2,4,3,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Anderson|Kay|Ross.Slate1|Huang|Miyamoto|Inbar|Graham|Rottenstrich|Critcher|Bauer|Hauser|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,2,Global,all,TRUE +939,-0.530967537433033,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,2,2,2,2,1,4,2,1,3,2,1,2,2,3,3,2,4,1,4,1,2,3,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Rottenstrich|Bauer|Ross.Slate1|Anderson|Alter|Inbar|Huang|Kay|Graham|Critcher|VanLange|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,5,Global,all,TRUE +941,-0.381362167526784,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,1,1,2,2,3,4,1,2,2,3,4,1,4,1,1,1,2,1,5,1,2,4,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Hauser|Miyamoto|Huang|Anderson|Bauer|Alter|Kay|Critcher|Inbar|Rottenstrich|VanLange|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,5,Global,all,TRUE +943,-0.633118354988567,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,3,4,4,5,2,4,1,2,4,4,1,2,4,4,3,1,5,2,4,1,3,4,5,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Anderson|Rottenstrich|Ross.Slate1|Graham|Bauer|Kay|VanLange|Inbar|Huang|Alter|Hauser|Critcher,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,2,Global,all,TRUE +946,0.158657318833994,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,3,4,5,4,3,4,3,1,2,4,3,1,3,3,1,3,4,1,5,1,2,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Ross.Slate1|Hauser|Alter|Kay|VanLange|Critcher|Rottenstrich|Huang|Bauer|Miyamoto|Graham|Anderson,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,13,Global,all,TRUE +947,-0.0698994885946806,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,5,4,4,5,5,4,2,1,2,3,1,1,3,3,1,2,4,1,4,1,2,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Huang|Ross.Slate1|Hauser|Kay|VanLange|Alter|Anderson|Inbar|Critcher|Bauer|Rottenstrich|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,8,Global,all,TRUE +951,-0.514096528325761,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,2,4,5,3,6,5,1,1,1,5,1,1,5,3,1,1,5,1,5,1,2,3,5,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Rottenstrich|Inbar|Kay|Anderson|Graham|Ross.Slate1|Huang|Bauer|Critcher|Alter|Miyamoto|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,5,Global,all,TRUE +954,-0.880917882998748,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,2,5,3,5,1,2,4,2,5,5,1,4,2,3,2,1,3,5,2,2,5,3,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Kay|Graham|Rottenstrich|Bauer|Alter|VanLange|Huang|Hauser|Inbar|Miyamoto|Ross.Slate1|Anderson,ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,13,Global,all,TRUE +955,-0.747663562019938,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,3,2,3,3,2,3,2,3,2,2,2,3,2,3,2,3,3,2,2,3,4,3,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|VanLange|Hauser|Graham|Bauer|Huang|Rottenstrich|Critcher|Alter|Inbar|Miyamoto|Ross.Slate1|Anderson,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE,13,Global,all,TRUE +959,-0.492482096270021,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,5,5,5,3,3,5,1,1,1,4,1,1,4,4,1,1,5,1,4,1,1,5,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Anderson|Graham|Miyamoto|Huang|Hauser|Ross.Slate1|Bauer|Rottenstrich|VanLange|Critcher|Kay|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing,2,Global,all,TRUE +960,-0.434220327891435,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,5,6,7,7,6,3,1,1,1,4,1,2,1,3,1,1,5,1,5,1,1,2,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Hauser|Miyamoto|Rottenstrich|Kay|Inbar|Huang|Critcher|Graham|Bauer|Ross.Slate1|Anderson|VanLange,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing,12,Global,all,TRUE +962,0.0753558401115336,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,4,5,4,5,3,4,2,1,1,2,3,1,3,3,2,1,4,1,3,1,2,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Ross.Slate1|Bauer|Inbar|Alter|Huang|Anderson|Miyamoto|Critcher|Rottenstrich|VanLange|Graham|Kay,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,7,Global,all,TRUE +963,-1.17235330332308,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,3,4,5,5,4,4,1,1,2,3,2,2,3,3,2,1,4,1,5,1,4,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Kay|Bauer|Rottenstrich|Graham|Huang|Inbar|Anderson|Critcher|Miyamoto|VanLange|Hauser,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,9,Global,all,TRUE +965,-1.3328924676886,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,4,4,5,4,3,2,1,1,2,1,1,2,2,2,1,1,4,1,4,1,2,2,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Ross.Slate1|Huang|Critcher|Graham|Inbar|Alter|VanLange|Rottenstrich|Miyamoto|Hauser|Kay|Bauer,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five,1,Global,all,TRUE +968,0.601269410587706,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,2,4,4,6,2,4,1,1,3,1,1,1,2,3,1,2,3,1,5,1,2,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Bauer|Miyamoto|Alter|Ross.Slate1|Anderson|Kay|Hauser|Critcher|Inbar|VanLange|Huang|Graham,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +972,-0.70600599943159,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,6,3,5,4,3,4,1,1,2,3,1,1,3,3,1,1,3,1,4,1,2,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Kay|Hauser|VanLange|Alter|Inbar|Anderson|Bauer|Graham|Rottenstrich|Miyamoto|Critcher|Huang,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,7,Global,all,TRUE +974,-0.437252224431135,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,3,2,5,5,2,2,2,1,1,3,1,1,2,2,1,1,3,1,3,1,2,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Ross.Slate1|Inbar|Kay|Hauser|Miyamoto|Critcher|VanLange|Anderson|Alter|Graham|Rottenstrich|Bauer,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,9,Global,all,TRUE +976,0.891117657464069,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,2,4,5,4,6,4,5,3,4,4,2,4,3,5,3,2,5,3,4,2,1,4,4,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Miyamoto|Kay|Graham|Alter|Inbar|Bauer|VanLange|Critcher|Huang|Rottenstrich|Ross.Slate1|Hauser,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood,1,Global,all,TRUE +977,-0.466908779292079,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,1,1,6,4,1,3,1,3,1,3,2,2,3,2,5,4,5,1,3,4,5,2,2,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Alter|Miyamoto|Inbar|Graham|Rottenstrich|Kay|Critcher|Hauser|Bauer|Huang|Ross.Slate1|Anderson,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,13,Global,all,TRUE +983,0.418849010849413,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,3,4,3,3,1,1,2,3,1,1,2,1,2,2,1,2,1,1,2,1,2,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Miyamoto|Inbar|Hauser|Alter|Huang|Anderson|VanLange|Rottenstrich|Ross.Slate1|Graham|Critcher|Kay,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,7,Global,all,TRUE +984,-0.0894090124932207,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,3,3,4,3,3,4,2,2,2,2,3,2,4,3,4,3,3,1,4,1,4,4,4,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Inbar|Critcher|Anderson|Hauser|Huang|Rottenstrich|Kay|Miyamoto|Alter|Bauer|Graham|Ross.Slate1,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,4,Global,all,TRUE +987,0.673496869965263,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,3,2,6,2,3,3,1,1,1,1,1,1,1,3,1,1,3,1,3,1,3,3,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Anderson|Ross.Slate1|Huang|Kay|Hauser|Rottenstrich|Alter|Miyamoto|VanLange|Graham|Critcher|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,2,Global,all,TRUE +988,0.238800322585355,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,2,2,3,4,2,2,2,1,2,1,3,2,3,2,1,2,2,2,2,2,4,1,2,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Hauser|Kay|Anderson|Rottenstrich|Alter|Bauer|Graham|Ross.Slate1|Miyamoto|Huang|Critcher|Inbar,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,4,Global,all,TRUE +989,-0.110896866117562,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,2,2,5,2,1,4,4,2,4,4,5,4,4,4,3,2,4,2,4,2,2,4,2,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Alter|Huang|Hauser|Ross.Slate1|Critcher|Anderson|Kay|Graham|Miyamoto|Inbar|Rottenstrich|Bauer,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +991,0.0416138218969898,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,3,3,3,4,3,3,2,2,1,3,2,2,1,3,2,2,2,1,3,1,2,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Bauer|VanLange|Miyamoto|Anderson|Huang|Ross.Slate1|Graham|Rottenstrich|Inbar|Critcher|Kay|Alter,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,5,Global,all,TRUE +993,-0.118405382288697,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,6,5,6,6,6,4,1,1,1,1,1,2,2,5,1,1,4,1,4,1,1,2,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Critcher|Hauser|Bauer|Miyamoto|Anderson|Huang|Graham|Rottenstrich|Kay|VanLange|Alter|Ross.Slate1,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +994,-0.453729851789975,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,4,4,6,6,2,4,1,1,1,4,1,1,3,4,1,1,5,1,5,1,2,4,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Ross.Slate1|Rottenstrich|Alter|Anderson|Miyamoto|Graham|Hauser|VanLange|Critcher|Huang|Kay|Inbar,ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,5,Global,all,TRUE +996,-0.278691389791418,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,3,4,5,6,6,4,1,1,1,3,1,3,1,2,2,1,4,1,4,1,1,4,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|VanLange|Anderson|Huang|Graham|Rottenstrich|Alter|Miyamoto|Bauer|Ross.Slate1|Inbar|Critcher|Kay,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,3,Global,all,TRUE +997,-0.45808211846061,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,2,4,5,1,1,4,1,1,1,1,1,1,2,1,1,1,1,1,4,1,2,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Critcher|Hauser|Ross.Slate1|Alter|Anderson|VanLange|Rottenstrich|Graham|Inbar|Miyamoto|Bauer|Huang,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,6,Global,all,TRUE +1001,0.183570450746469,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,2,1,2,2,1,4,2,1,2,4,4,3,4,1,2,3,2,1,4,2,2,1,4,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Ross.Slate1|Anderson|Rottenstrich|Alter|Bauer|Miyamoto|Hauser|Kay|VanLange|Critcher|Inbar|Graham,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,3,Global,all,TRUE +1006,-0.51766203149953,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,2,3,2,1,1,3,4,4,2,4,4,4,3,4,2,4,4,4,4,2,1,4,4,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Kay|Graham|Hauser|Critcher|Bauer|VanLange|Rottenstrich|Anderson|Huang|Ross.Slate1|Alter|Miyamoto,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,9,Global,all,TRUE +1011,-1.01536377020649,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,2,1,2,2,1,1,1,1,1,1,1,1,1,3,1,1,1,1,3,1,1,3,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Hauser|Critcher|Bauer|Miyamoto|Anderson|Graham|Kay|Alter|Inbar|Ross.Slate1|VanLange|Rottenstrich,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five,6,Global,all,TRUE +1012,-1.22573142386756,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,1,4,4,1,1,4,2,1,2,5,1,2,4,1,1,1,5,1,5,1,2,5,5,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Ross.Slate1|Alter|Rottenstrich|Bauer|VanLange|Critcher|Anderson|Huang|Graham|Hauser|Kay|Miyamoto,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,8,Global,all,TRUE +1013,0.287699598027804,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,5,2,6,7,6,5,2,1,1,3,1,1,3,3,1,1,5,1,4,1,2,5,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Kay|Rottenstrich|Graham|Huang|Inbar|Critcher|Miyamoto|Hauser|Bauer|Anderson|VanLange|Ross.Slate1,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood,11,Global,all,TRUE +1015,0.321174812925314,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,3,2,2,5,3,4,4,4,4,4,4,4,3,4,4,4,4,4,3,2,4,4,4,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Ross.Slate1|Kay|Inbar|Huang|Miyamoto|Alter|Rottenstrich|Critcher|Hauser|Anderson|VanLange|Graham,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,11,Global,all,TRUE +1018,0.442835154379388,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,1,1,2,1,1,2,4,3,2,2,3,2,2,1,2,3,3,1,2,2,2,4,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Graham|Ross.Slate1|Anderson|Inbar|Huang|VanLange|Kay|Miyamoto|Alter|Critcher|Bauer|Hauser,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,4,Global,all,TRUE +1019,-0.0753030966086156,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,1,2,2,5,1,3,4,5,4,2,4,4,3,2,3,4,2,3,2,4,3,4,2,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Inbar|Huang|Hauser|Bauer|Graham|Anderson|Alter|Kay|Rottenstrich|Critcher|Ross.Slate1|VanLange,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,7,Global,all,TRUE +1021,-0.166126737956447,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,3,4,5,5,3,3,3,1,4,3,2,2,4,4,3,2,4,2,4,2,2,4,4,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Anderson|Ross.Slate1|Hauser|Miyamoto|Alter|Huang|Rottenstrich|Critcher|VanLange|Graham|Bauer|Kay,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,2,Global,all,TRUE +1023,-0.215026013398897,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,6,2,6,2,3,5,3,1,4,3,2,3,2,3,1,2,2,1,2,1,1,2,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Huang|Ross.Slate1|Inbar|Rottenstrich|Kay|Bauer|Miyamoto|Hauser|Critcher|VanLange|Alter|Graham,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,1,Global,all,TRUE +1024,-0.622704520709129,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,3,3,3,3,5,2,5,4,4,3,5,4,2,2,4,5,2,4,1,3,4,3,2,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Ross.Slate1|Kay|Miyamoto|Huang|Anderson|Graham|VanLange|Critcher|Bauer|Rottenstrich|Hauser|Alter,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection,6,Global,all,TRUE +1026,-0.573945470152315,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,2,1,2,1,2,4,3,2,2,3,1,3,2,3,3,1,5,2,5,2,2,4,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Hauser|Miyamoto|Rottenstrich|Huang|Graham|Alter|Inbar|VanLange|Ross.Slate1|Kay|Bauer|Critcher,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +1030,-1.01431242886319,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,2,4,6,2,2,5,2,1,3,2,2,2,3,3,3,2,4,1,2,1,1,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Miyamoto|Anderson|Critcher|Graham|Ross.Slate1|Rottenstrich|Kay|Alter|Hauser|Bauer|VanLange|Huang,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,3,Global,all,TRUE +1032,-0.648938022752538,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,2,2,5,2,1,4,4,3,5,4,2,4,4,1,4,2,2,3,2,2,3,4,4,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Miyamoto|Critcher|Anderson|Ross.Slate1|Kay|Rottenstrich|VanLange|Hauser|Graham|Bauer|Inbar|Alter,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,4,Global,all,TRUE +1034,-0.850334339755304,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,6,5,5,5,3,5,3,2,3,4,2,2,3,2,2,2,3,2,3,2,2,5,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Bauer|Anderson|Critcher|Kay|Miyamoto|Inbar|Ross.Slate1|Huang|VanLange|Alter|Graham|Rottenstrich,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,3,Global,all,TRUE +1039,-0.686369897101651,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,5,4,5,3,6,5,2,2,2,4,2,3,3,2,2,3,4,2,4,2,2,4,4,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|VanLange|Kay|Rottenstrich|Miyamoto|Hauser|Anderson|Inbar|Alter|Bauer|Critcher|Huang|Ross.Slate1,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,7,Global,all,TRUE +1041,-0.386768001011318,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,2,3,4,2,1,2,2,3,2,2,2,4,1,4,2,3,3,2,2,1,1,2,3,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Inbar|Critcher|Huang|Graham|Kay|Rottenstrich|Bauer|Alter|Anderson|VanLange|Miyamoto|Ross.Slate1,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,10,Global,all,TRUE +1043,0.669804788360095,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,4,3,5,2,5,3,1,1,2,2,2,3,3,4,2,2,4,1,4,1,1,3,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Bauer|Anderson|Critcher|Ross.Slate1|Inbar|Huang|VanLange|Rottenstrich|Kay|Graham|Miyamoto|Alter,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,3,Global,all,TRUE +1044,-0.912554993056091,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,3,4,5,4,1,4,2,1,3,4,2,2,3,1,1,2,3,1,1,1,1,4,4,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Ross.Slate1|Alter|Critcher|Kay|Huang|Graham|VanLange|Miyamoto|Anderson|Inbar|Bauer|Rottenstrich,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,10,Global,all,TRUE +1045,-1.07599947552991,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,6,6,6,6,6,4,2,1,2,3,3,2,3,3,3,2,4,2,4,2,2,4,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Alter|Bauer|Miyamoto|Rottenstrich|Hauser|Kay|Critcher|Anderson|VanLange|Ross.Slate1|Huang|Inbar,ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,9,Global,all,TRUE +1046,-0.00755225686249339,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,5,5,4,3,2,4,3,1,1,2,1,1,5,2,2,2,4,1,3,1,1,3,1,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Rottenstrich|Kay|Graham|VanLange|Anderson|Huang|Miyamoto|Hauser|Critcher|Alter|Inbar|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,6,Global,all,TRUE +1050,-1.0456827356035,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,3,4,3,3,3,1,2,2,1,1,2,2,2,3,1,1,2,1,2,1,2,1,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Ross.Slate1|Hauser|Rottenstrich|Graham|VanLange|Alter|Kay|Inbar|Anderson|Critcher|Huang|Miyamoto,ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,10,Global,all,TRUE +1051,-0.956977648867107,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,2,5,6,2,1,5,1,1,1,5,1,1,5,5,1,1,5,1,5,1,1,5,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Hauser|Ross.Slate1|Critcher|Huang|Alter|Rottenstrich|Inbar|Miyamoto|VanLange|Kay|Graham|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood,1,Global,all,TRUE +1054,-0.536637948764002,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,4,5,5,4,4,4,3,2,2,4,2,3,4,3,4,2,3,1,4,2,3,5,5,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Bauer|VanLange|Miyamoto|Inbar|Hauser|Anderson|Rottenstrich|Alter|Huang|Graham|Ross.Slate1|Kay,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,7,Global,all,TRUE +1056,-0.298200913689958,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,5,3,5,4,3,5,1,2,2,4,2,2,3,3,1,1,2,2,3,3,1,5,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Alter|Rottenstrich|Bauer|Hauser|Critcher|Ross.Slate1|Graham|Anderson|Inbar|Miyamoto|VanLange|Kay,ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood,9,Global,all,TRUE +1061,0.232469726188919,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,4,6,6,5,5,5,4,3,3,5,2,4,4,2,4,2,4,3,3,3,2,4,4,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Huang|Kay|Graham|Critcher|Alter|VanLange|Ross.Slate1|Inbar|Hauser|Rottenstrich|Bauer|Anderson,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,13,Global,all,TRUE +1067,-0.510673475508227,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,2,2,3,2,4,3,4,3,4,3,4,3,3,3,4,2,3,4,3,2,3,2,2,1,4,,,,,,,,,,,,,,,,,,,,,,,,,,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Kay|Graham|Huang|Ross.Slate1|VanLange|Miyamoto|Anderson|Critcher|Rottenstrich|Bauer|Hauser|Alter,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +1069,0.285061083236536,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,6,6,6,5,5,4,2,2,2,4,2,2,4,4,2,2,4,2,4,2,2,4,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Miyamoto|Anderson|VanLange|Critcher|Bauer|Inbar|Hauser|Rottenstrich|Ross.Slate1|Kay|Huang|Graham,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,3,Global,all,TRUE +1071,0.727939978307282,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,6,6,6,6,6,4,1,1,1,4,1,1,2,3,1,1,3,1,5,1,1,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Inbar|Hauser|Alter|Bauer|Huang|Kay|Ross.Slate1|Rottenstrich|Miyamoto|Graham|Anderson|VanLange,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,12,Global,all,TRUE +1074,-0.528989207707232,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,5,4,6,4,3,3,2,2,3,2,1,2,2,1,2,1,3,1,3,1,2,2,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Kay|Hauser|Huang|Graham|Miyamoto|Anderson|Inbar|Rottenstrich|Critcher|Ross.Slate1|Alter|Bauer,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +1077,-0.693487256994952,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,7,4,7,5,7,5,1,1,1,1,1,2,1,3,1,2,4,1,4,1,1,1,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Kay|Huang|Hauser|Ross.Slate1|Graham|VanLange|Anderson|Bauer|Critcher|Inbar|Alter|Miyamoto,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,8,Global,all,TRUE +1078,-0.522532032879397,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,4,6,5,5,4,3,2,1,1,3,2,1,2,2,1,2,1,1,2,1,2,4,3,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Bauer|Anderson|Kay|VanLange|Alter|Miyamoto|Graham|Critcher|Huang|Inbar|Ross.Slate1|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing,3,Global,all,TRUE +1080,-0.944189877642836,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,4,3,5,1,2,2,3,1,2,4,1,2,3,3,2,1,5,1,3,1,1,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Alter|Inbar|Anderson|Ross.Slate1|VanLange|Kay|Miyamoto|Critcher|Bauer|Huang|Rottenstrich|Hauser,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,4,Global,all,TRUE +1081,-0.535319804103668,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,6,6,7,2,5,4,1,2,3,5,2,2,4,3,3,2,4,2,4,2,1,2,4,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|VanLange|Ross.Slate1|Anderson|Kay|Critcher|Inbar|Alter|Bauer|Huang|Graham|Hauser|Rottenstrich,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,4,Global,all,TRUE +1083,-0.642874229673137,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,3,5,3,1,1,3,2,2,5,2,2,4,1,2,4,3,1,3,3,1,1,4,2,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Ross.Slate1|VanLange|Critcher|Anderson|Bauer|Kay|Alter|Graham|Inbar|Miyamoto|Rottenstrich|Hauser,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +1084,-0.588695699177552,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,5,5,6,6,3,4,2,1,2,3,1,2,4,3,1,1,4,1,3,1,1,4,4,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|VanLange|Ross.Slate1|Hauser|Alter|Rottenstrich|Bauer|Huang|Critcher|Kay|Anderson|Inbar|Graham,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,11,Global,all,TRUE +1085,0.33831262534962,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,5,5,6,4,3,2,3,1,2,2,2,2,3,2,3,2,2,2,2,1,2,2,2,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Graham|Critcher|Miyamoto|Hauser|Huang|Ross.Slate1|Bauer|Kay|Alter|VanLange|Inbar|Rottenstrich,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,1,Global,all,TRUE +1087,0.528901726324515,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,2,2,2,2,2,1,4,1,1,1,2,2,2,3,2,3,4,1,3,1,1,1,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Alter|Ross.Slate1|Miyamoto|Huang|Hauser|Bauer|Rottenstrich|Inbar|VanLange|Critcher|Kay|Graham,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,1,Global,all,TRUE +1088,0.319069904768114,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,4,4,5,6,3,4,2,1,2,4,1,2,2,1,3,1,4,1,4,1,2,3,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Kay|Hauser|Ross.Slate1|Alter|Anderson|Critcher|VanLange|Bauer|Rottenstrich|Inbar|Huang|Graham,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,6,Global,all,TRUE +1089,-0.883163016041583,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,2,1,2,5,2,4,4,3,3,4,2,2,3,3,2,2,4,2,4,3,3,2,3,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Bauer|Miyamoto|Huang|Kay|Inbar|Alter|Graham|Rottenstrich|Ross.Slate1|VanLange|Anderson|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,12,Global,all,TRUE +1090,-0.61492920122096,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,5,5,5,5,6,4,3,3,3,4,3,3,4,4,3,3,4,3,4,3,4,4,4,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Alter|Critcher|Ross.Slate1|Huang|Kay|Inbar|Bauer|Miyamoto|Rottenstrich|Graham|Anderson|VanLange,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing,12,Global,all,TRUE +1092,0.122276785828182,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,6,6,7,7,6,5,1,1,1,4,1,1,4,4,1,1,5,1,4,1,1,5,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Kay|Graham|Inbar|Anderson|Miyamoto|Alter|Huang|Ross.Slate1|Critcher|Rottenstrich|Hauser|Bauer,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,5,Global,all,TRUE +1094,-0.593047965848187,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,4,5,5,5,5,3,3,1,1,3,3,1,3,1,2,1,3,1,3,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Kay|Inbar|Huang|VanLange|Rottenstrich|Critcher|Alter|Miyamoto|Anderson|Ross.Slate1|Graham|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing,10,Global,all,TRUE +1095,0.371394458498697,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,3,2,4,2,5,2,2,1,2,4,1,4,3,4,2,1,3,3,3,1,1,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Graham|Anderson|VanLange|Kay|Huang|Critcher|Inbar|Bauer|Miyamoto|Hauser|Ross.Slate1|Rottenstrich,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE,3,Global,all,TRUE +1098,-0.263393907677878,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,6,6,5,2,1,4,2,2,2,2,4,3,4,4,3,4,5,2,4,2,2,3,4,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Miyamoto|Bauer|Hauser|Inbar|VanLange|Critcher|Anderson|Ross.Slate1|Kay|Graham|Alter|Huang,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,8,Global,all,TRUE +1100,-0.163881604913612,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,4,4,5,4,5,3,3,1,1,4,1,2,3,2,1,1,2,1,3,2,1,3,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Anderson|Graham|Inbar|Hauser|Ross.Slate1|Alter|Critcher|Miyamoto|Rottenstrich|Huang|Bauer|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,2,Global,all,TRUE +1103,-0.337473118349836,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,1,3,1,4,1,3,3,2,2,2,1,3,1,2,3,3,1,3,3,1,1,3,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Bauer|Ross.Slate1|Miyamoto|VanLange|Kay|Graham|Huang|Critcher|Inbar|Hauser|Anderson|Alter,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +1106,0.182250080615536,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,5,4,6,5,2,2,2,3,1,2,1,2,2,2,2,1,3,1,3,1,2,2,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Huang|Anderson|Graham|Rottenstrich|Critcher|Miyamoto|Bauer|Hauser|Ross.Slate1|Kay|VanLange|Alter,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood,3,Global,all,TRUE +1109,-0.186156222034819,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,4,5,5,5,5,3,1,1,4,4,1,3,3,2,3,1,4,1,4,1,3,4,1,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Inbar|Rottenstrich|Miyamoto|Alter|Hauser|VanLange|Bauer|Graham|Ross.Slate1|Anderson|Critcher|Huang,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,11,Global,all,TRUE +1110,-0.202367046076625,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,4,4,5,3,1,4,2,1,3,4,1,2,3,4,3,1,4,3,4,1,2,3,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Rottenstrich|Critcher|Graham|Kay|Anderson|Huang|Miyamoto|Ross.Slate1|VanLange|Bauer|Hauser|Alter,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,6,Global,all,TRUE +1111,-0.882896212724549,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,5,5,5,5,2,2,1,1,2,3,2,4,4,3,4,3,2,2,3,2,2,4,4,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Huang|Bauer|Inbar|Rottenstrich|Miyamoto|Hauser|Anderson|Kay|VanLange|Critcher|Alter|Graham,ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +1115,-0.385981237514452,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,3,3,3,3,3,4,4,3,3,3,4,3,4,3,3,3,4,3,4,3,2,4,4,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Graham|Bauer|VanLange|Huang|Hauser|Alter|Critcher|Anderson|Ross.Slate1|Rottenstrich|Kay|Miyamoto,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,9,Global,all,TRUE +1116,-0.884216582855483,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,4,2,7,6,5,5,1,1,1,5,1,1,3,4,1,1,5,1,5,1,1,5,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Kay|Critcher|Rottenstrich|Bauer|Miyamoto|Anderson|Hauser|Huang|Alter|Graham|Inbar|Ross.Slate1,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,7,Global,all,TRUE +1118,0.306675515292276,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,4,3,5,6,3,3,2,1,1,1,1,2,3,1,1,1,3,1,3,1,1,3,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Ross.Slate1|Kay|Inbar|Critcher|Hauser|Miyamoto|Bauer|Alter|Anderson|Graham|Rottenstrich|Huang,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection,10,Global,all,TRUE +1120,-0.268010752194947,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,4,4,6,5,4,4,1,1,1,4,1,1,2,4,1,1,4,1,4,1,1,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|VanLange|Kay|Miyamoto|Critcher|Inbar|Huang|Bauer|Anderson|Hauser|Alter|Ross.Slate1|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,9,Global,all,TRUE +1125,0.55170995007979,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,4,4,6,3,3,3,3,1,1,3,2,3,2,2,3,1,5,3,5,1,1,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Huang|Kay|Alter|Hauser|Miyamoto|Ross.Slate1|Rottenstrich|Bauer|Inbar|Critcher|VanLange|Graham,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +1126,-0.376618744578315,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,5,5,6,5,3,4,2,1,4,1,2,2,3,1,4,2,4,1,4,2,4,2,4,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Critcher|Kay|Rottenstrich|Ross.Slate1|Miyamoto|Anderson|Inbar|Hauser|Huang|Alter|Bauer|Graham,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,7,Global,all,TRUE +1131,-0.584485882863151,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,6,5,4,4,3,5,1,3,2,3,1,5,1,2,3,1,2,1,3,4,4,3,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Graham|Rottenstrich|Miyamoto|Kay|Huang|Ross.Slate1|Anderson|Bauer|Hauser|Alter|VanLange|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection,8,Global,all,TRUE +1132,-0.243491002030904,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,2,1,3,1,1,4,2,4,2,2,4,4,2,2,3,4,1,1,2,1,2,2,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Alter|Miyamoto|Anderson|Graham|Hauser|Ross.Slate1|Rottenstrich|Bauer|Huang|Critcher|Inbar|VanLange,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +1136,-0.559699329382075,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,3,5,3,3,5,4,4,2,2,3,2,2,2,3,2,2,3,2,2,2,2,4,4,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Alter|Rottenstrich|Critcher|Ross.Slate1|Miyamoto|Huang|Anderson|Inbar|Kay|VanLange|Graham|Bauer,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,8,Global,all,TRUE +1137,-0.3321960887673,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,3,4,5,3,4,4,2,1,2,3,1,2,3,3,2,1,4,1,4,2,1,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Ross.Slate1|Critcher|Hauser|Bauer|Alter|Anderson|Inbar|Rottenstrich|Miyamoto|Huang|Kay|VanLange,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,7,Global,all,TRUE +1139,0.263053269432363,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,2,4,2,1,1,3,1,1,1,2,1,2,3,4,1,5,4,1,3,1,1,4,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Rottenstrich|Graham|Anderson|Bauer|Hauser|Critcher|Kay|Alter|Inbar|Ross.Slate1|Huang|VanLange,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,4,Global,all,TRUE +1144,-0.44055092428787,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,2,1,3,1,2,1,2,3,3,3,2,4,3,3,3,4,3,1,4,1,3,4,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Anderson|Ross.Slate1|Graham|Alter|Miyamoto|VanLange|Bauer|Rottenstrich|Critcher|Inbar|Kay|Hauser,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,2,Global,all,TRUE +1146,-1.39220780288108,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,4,4,6,4,6,4,1,1,3,3,2,1,3,3,2,1,3,1,4,1,1,5,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Anderson|Huang|Inbar|Alter|Hauser|Graham|VanLange|Ross.Slate1|Critcher|Miyamoto|Rottenstrich|Bauer,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +1149,-1.30323591282765,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,1,1,4,1,2,3,2,2,2,3,2,3,3,3,3,1,3,2,3,2,2,3,3,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Kay|Critcher|Inbar|Alter|Hauser|Ross.Slate1|Graham|Rottenstrich|Huang|Anderson|Miyamoto|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,11,Global,all,TRUE +1151,-0.964486165038242,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,4,3,5,4,7,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Anderson|Bauer|Huang|Critcher|Rottenstrich|Kay|Ross.Slate1|Alter|Graham|Inbar|Hauser|VanLange,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,2,Global,all,TRUE +1152,0.459439360169626,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,2,1,5,2,5,1,3,1,1,1,2,3,1,1,1,2,1,2,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Critcher|VanLange|Graham|Inbar|Miyamoto|Huang|Alter|Hauser|Rottenstrich|Ross.Slate1|Bauer|Kay,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +1153,0.231542737806418,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,2,1,2,1,2,3,2,2,2,3,2,2,3,2,2,2,5,2,3,1,1,3,4,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Hauser|Miyamoto|Huang|Rottenstrich|Inbar|Kay|VanLange|Critcher|Bauer|Graham|Ross.Slate1|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing,1,Global,all,TRUE +1156,-0.862602150799742,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,4,4,4,6,3,2,2,2,4,3,1,2,1,2,3,3,4,1,4,2,1,3,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Rottenstrich|Alter|Hauser|Bauer|Miyamoto|Kay|VanLange|Graham|Huang|Ross.Slate1|Inbar|Anderson,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,13,Global,all,TRUE +1158,0.21283362385898,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,2,2,6,1,6,3,2,1,4,3,2,2,2,3,3,1,4,2,4,1,1,4,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Hauser|Bauer|Alter|Huang|Critcher|Anderson|Kay|Inbar|VanLange|Miyamoto|Ross.Slate1|Graham,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,7,Global,all,TRUE +1160,-0.840060730361501,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,6,6,6,4,6,1,1,3,2,2,2,3,2,2,1,2,2,3,3,3,3,1,1,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Ross.Slate1|Huang|Anderson|VanLange|Kay|Graham|Bauer|Miyamoto|Rottenstrich|Alter|Critcher|Inbar,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,4,Global,all,TRUE +1166,0.537210652446752,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,2,2,3,2,1,4,1,1,1,3,1,1,3,4,1,1,3,1,4,1,1,3,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Bauer|Ross.Slate1|VanLange|Critcher|Huang|Hauser|Kay|Graham|Alter|Anderson|Inbar|Rottenstrich,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing,11,Global,all,TRUE +1171,-0.465590634631745,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,5,5,6,5,6,4,2,1,1,4,1,2,3,4,3,1,4,1,3,2,1,5,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Rottenstrich|Alter|Graham|Bauer|Inbar|Huang|Ross.Slate1|Kay|Critcher|Hauser|Miyamoto|Anderson,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +1172,-0.495907374558155,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,2,2,2,2,6,2,2,2,3,2,3,2,2,3,2,3,3,2,3,2,3,2,2,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Bauer|Alter|Hauser|Miyamoto|Huang|Graham|Anderson|Kay|Critcher|Ross.Slate1|Rottenstrich|VanLange,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,8,Global,all,TRUE +1173,-0.582240749820316,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,5,4,4,2,4,3,4,4,2,3,4,4,3,3,4,3,3,3,2,4,3,3,2,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Graham|Rottenstrich|Hauser|Inbar|Huang|Miyamoto|VanLange|Kay|Bauer|Alter|Ross.Slate1|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,1,Global,all,TRUE +1174,-0.915980271344225,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,3,2,4,6,1,3,2,2,1,2,2,3,4,2,1,1,3,4,3,3,1,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Graham|Critcher|Rottenstrich|Inbar|VanLange|Kay|Anderson|Alter|Ross.Slate1|Bauer|Hauser|Miyamoto,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,8,Global,all,TRUE +1177,-0.437912409496603,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,3,1,4,4,1,3,3,1,2,2,2,2,3,1,1,3,2,2,3,2,2,2,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Rottenstrich|Hauser|Critcher|Inbar|Kay|Ross.Slate1|Graham|VanLange|Anderson|Huang|Alter|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,10,Global,all,TRUE +1178,-0.621779757797228,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,3,3,3,2,6,4,2,1,1,1,1,2,2,1,2,1,2,1,2,1,2,2,2,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Inbar|Alter|Huang|Anderson|Critcher|VanLange|Ross.Slate1|Miyamoto|Graham|Rottenstrich|Hauser|Kay,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,5,Global,all,TRUE +1185,-1.01971603687713,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,5,3,3,1,2,5,4,1,4,4,2,2,4,4,3,1,5,1,4,2,2,4,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Huang|Inbar|Graham|Rottenstrich|Anderson|Hauser|Ross.Slate1|VanLange|Alter|Miyamoto|Critcher|Kay,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,6,Global,all,TRUE +1186,0.76194879983886,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Critcher|Graham|Bauer|VanLange|Inbar|Hauser|Huang|Ross.Slate1|Miyamoto|Rottenstrich|Kay|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,13,Global,all,TRUE +1187,0.0969702721672742,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,3,3,3,2,1,2,3,2,4,2,2,4,2,2,5,2,3,2,3,1,5,4,3,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Hauser|Inbar|Rottenstrich|Anderson|VanLange|Alter|Kay|Miyamoto|Bauer|Critcher|Graham|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,5,Global,all,TRUE +1189,-0.578155286466716,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,5,4,4,3,1,4,2,2,4,3,3,3,1,3,2,5,3,2,4,5,2,4,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Bauer|Ross.Slate1|Inbar|Miyamoto|Kay|VanLange|Hauser|Anderson|Graham|Critcher|Rottenstrich|Huang,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,9,Global,all,TRUE +1192,-0.853506461180639,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Alter|Critcher|Bauer|Rottenstrich|Hauser|Graham|Miyamoto|Kay|Inbar|Ross.Slate1|Anderson|Huang,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,12,Global,all,TRUE +1194,0.105799158469343,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,2,2,6,4,3,3,3,2,3,3,3,4,2,2,2,3,4,4,5,4,4,4,3,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Hauser|Bauer|VanLange|Miyamoto|Graham|Rottenstrich|Huang|Ross.Slate1|Anderson|Critcher|Kay|Alter,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +1196,0.0638884390181969,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,6,6,6,6,6,4,3,1,1,3,2,2,3,2,2,2,3,1,2,1,1,3,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Critcher|Inbar|Anderson|Rottenstrich|Alter|VanLange|Huang|Hauser|Graham|Miyamoto|Bauer|Ross.Slate1,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +1197,-0.76348100431331,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Kay|Anderson|Graham|Ross.Slate1|Hauser|Rottenstrich|Inbar|VanLange|Miyamoto|Bauer|Huang|Alter,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,3,Global,all,TRUE +1198,-0.465590634631745,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,5,1,6,2,6,4,2,1,4,4,2,3,3,3,1,2,4,2,4,1,1,3,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Graham|Miyamoto|Anderson|Ross.Slate1|Kay|Alter|Hauser|Critcher|Rottenstrich|Huang|Inbar|Bauer,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,4,Global,all,TRUE +1199,-0.865634047339443,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,5,4,6,4,3,4,4,2,4,3,3,3,3,2,4,2,3,2,3,2,2,3,3,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Kay|Huang|VanLange|Hauser|Anderson|Alter|Miyamoto|Critcher|Graham|Inbar|Rottenstrich|Ross.Slate1,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,6,Global,all,TRUE +1201,-1.13873786353993,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,2,3,3,3,1,3,1,2,1,2,3,2,2,2,1,1,3,1,2,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Graham|Critcher|Miyamoto|Hauser|Alter|VanLange|Inbar|Anderson|Bauer|Huang|Rottenstrich|Ross.Slate1,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +1203,-0.870110666970878,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Huang|Ross.Slate1|Critcher|Miyamoto|Graham|VanLange|Bauer|Anderson|Inbar|Hauser|Alter|Kay,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,9,Global,all,TRUE +1204,-1.56105589336884,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,3,4,4,2,2,5,3,1,2,5,2,2,2,3,4,1,5,1,3,1,1,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Inbar|Critcher|Anderson|Ross.Slate1|Rottenstrich|Miyamoto|Kay|Graham|Alter|VanLange|Bauer|Huang,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection,4,Global,all,TRUE +1207,-0.850867946389371,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,5,5,4,6,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Inbar|Critcher|Hauser|Alter|VanLange|Bauer|Rottenstrich|Ross.Slate1|Kay|Huang|Anderson|Graham,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,12,Global,all,TRUE +1209,-0.450824533681673,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,2,2,5,2,3,3,3,1,1,3,1,2,3,1,1,1,2,1,4,1,2,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Huang|Miyamoto|Alter|Rottenstrich|Anderson|Kay|Graham|Hauser|VanLange|Ross.Slate1|Inbar|Critcher,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +1211,-0.367131898681379,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,3,3,3,2,3,4,3,4,3,4,2,4,3,2,3,3,4,3,4,4,3,4,4,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|VanLange|Alter|Huang|Hauser|Ross.Slate1|Inbar|Graham|Rottenstrich|Critcher|Miyamoto|Anderson|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection,12,Global,all,TRUE +1212,0.279657475222601,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,4,4,4,2,4,2,5,3,3,3,1,3,2,3,2,2,5,2,3,1,1,5,5,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Huang|Alter|Kay|Bauer|Anderson|Inbar|Ross.Slate1|Critcher|Graham|Miyamoto|Rottenstrich|Hauser,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,6,Global,all,TRUE +1214,-0.823849906319696,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,3,4,3,4,6,4,2,1,3,4,1,2,4,4,3,1,4,1,3,5,3,4,5,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Anderson|Inbar|Huang|Rottenstrich|Kay|VanLange|Graham|Ross.Slate1|Critcher|Miyamoto|Alter|Hauser,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +1217,-0.0894090124932207,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,2,3,4,2,2,4,2,2,2,2,3,4,3,1,2,4,2,2,2,2,2,4,4,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Ross.Slate1|Miyamoto|Kay|VanLange|Huang|Critcher|Inbar|Graham|Anderson|Hauser|Rottenstrich|Bauer,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,10,Global,all,TRUE +1218,-1.27858958423221,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,2,4,3,2,2,4,2,2,2,4,2,2,2,4,2,2,3,2,3,2,2,4,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Anderson|Critcher|Alter|Kay|Bauer|Rottenstrich|VanLange|Graham|Inbar|Hauser|Huang|Miyamoto,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,2,Global,all,TRUE +1221,-1.38127178295121,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,2,1,4,2,1,3,4,1,2,3,2,3,3,4,4,2,3,1,3,1,2,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Inbar|Critcher|Miyamoto|VanLange|Kay|Anderson|Hauser|Huang|Rottenstrich|Bauer|Graham,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,8,Global,all,TRUE +1223,-0.934169425111832,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,6,3,6,2,7,5,1,1,1,5,1,1,4,1,1,1,3,1,5,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Kay|Alter|Huang|Bauer|Critcher|Rottenstrich|Anderson|VanLange|Graham|Ross.Slate1|Miyamoto|Hauser,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,8,Global,all,TRUE +1225,-1.16088590222974,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,4,4,5,5,4,3,3,3,3,1,3,3,4,5,2,1,4,1,4,3,1,3,4,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Hauser|Ross.Slate1|Graham|Bauer|Inbar|Anderson|Kay|Miyamoto|Huang|Alter|VanLange|Critcher,ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing,7,Global,all,TRUE +1226,-0.0473580681564398,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,6,6,6,2,1,5,1,1,1,2,1,2,5,3,2,1,4,1,4,1,2,5,5,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|VanLange|Bauer|Graham|Miyamoto|Anderson|Ross.Slate1|Huang|Inbar|Critcher|Kay|Rottenstrich|Alter,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,6,Global,all,TRUE +1230,-0.471261045962714,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,4,4,4,5,2,3,2,2,4,3,2,2,4,4,3,2,3,2,4,1,3,4,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Hauser|Graham|Ross.Slate1|Anderson|Kay|Alter|Critcher|Huang|Rottenstrich|Miyamoto|Inbar|Bauer,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,5,Global,all,TRUE +1231,-0.55429572136814,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,4,3,3,6,1,3,4,2,4,1,1,3,1,2,4,2,3,1,4,3,4,4,2,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Rottenstrich|Inbar|Anderson|Critcher|Graham|VanLange|Miyamoto|Huang|Bauer|Hauser|Alter|Kay,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,4,Global,all,TRUE +1232,-0.781138776917448,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,4,2,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Critcher|Miyamoto|Hauser|VanLange|Kay|Anderson|Inbar|Bauer|Alter|Graham|Huang|Rottenstrich,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,7,Global,all,TRUE +1233,-2.02608282712939,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,1,2,4,2,1,4,2,1,3,3,4,3,4,5,3,1,5,1,2,2,2,4,5,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Critcher|Bauer|Huang|Kay|Anderson|Alter|Inbar|Rottenstrich|Hauser|Graham|Miyamoto|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,6,Global,all,TRUE +1235,-0.670692679693914,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,3,5,4,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,3,1,1,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Miyamoto|Anderson|Ross.Slate1|Alter|Huang|Kay|Critcher|Rottenstrich|Bauer|Hauser|Graham|Inbar,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,3,Global,all,TRUE +1236,-0.280531720102184,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Huang|Bauer|Graham|Rottenstrich|Alter|Kay|Hauser|Ross.Slate1|Anderson|VanLange|Critcher|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,10,Global,all,TRUE +1238,0.578601411718067,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,2,2,6,5,5,4,2,2,3,4,2,3,2,2,2,2,2,2,4,2,2,4,4,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|VanLange|Hauser|Critcher|Inbar|Anderson|Alter|Graham|Bauer|Ross.Slate1|Kay|Miyamoto|Rottenstrich,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood,6,Global,all,TRUE +1239,-1.31325636535866,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,5,4,5,6,4,2,3,4,3,4,4,3,3,4,2,4,4,4,4,3,4,4,3,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Graham|Bauer|Kay|Huang|Miyamoto|Rottenstrich|Hauser|Anderson|Ross.Slate1|Inbar|VanLange|Critcher,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,9,Global,all,TRUE +1242,-1.66293990760734,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,5,5,6,4,3,3,2,2,2,2,3,4,3,2,2,3,2,2,3,2,3,3,2,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Bauer|Graham|Hauser|Alter|Rottenstrich|Anderson|Miyamoto|VanLange|Huang|Critcher|Inbar|Kay,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +1243,-0.647617652621605,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,4,4,2,2,4,3,4,3,3,3,4,3,5,3,4,4,5,3,4,3,4,3,3,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Huang|Miyamoto|Ross.Slate1|Graham|VanLange|Anderson|Critcher|Hauser|Rottenstrich|Kay|Alter|Inbar,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,7,Global,all,TRUE +1244,0.299166999121141,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,5,3,3,2,2,5,2,2,3,2,2,2,4,2,3,2,4,3,3,2,2,4,3,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Kay|Anderson|Rottenstrich|Ross.Slate1|Graham|Miyamoto|Alter|Huang|Hauser|Critcher|Inbar|VanLange,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +1247,-0.16967859467598,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,4,2,3,5,2,4,1,2,3,4,3,2,5,3,2,2,4,2,4,2,2,5,5,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Inbar|Bauer|Rottenstrich|Hauser|Anderson|Kay|Miyamoto|VanLange|Ross.Slate1|Alter|Huang|Critcher,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,6,Global,all,TRUE +1248,-1.25499459698007,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,3,3,5,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Hauser|Kay|Miyamoto|Rottenstrich|Inbar|Alter|Graham|Ross.Slate1|VanLange|Anderson|Critcher|Bauer,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,11,Global,all,TRUE +1249,0.435453216639652,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,5,5,6,6,6,3,1,3,3,3,3,1,3,3,1,1,3,1,3,3,3,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Anderson|Miyamoto|Critcher|Rottenstrich|Alter|VanLange|Huang|Graham|Hauser|Ross.Slate1|Kay|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,2,Global,all,TRUE +1253,-1.15508891246737,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,6,5,4,2,4,3,4,2,1,3,2,4,2,3,3,2,3,2,3,1,4,4,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Ross.Slate1|Miyamoto|Alter|Rottenstrich|Graham|Kay|Critcher|Anderson|Hauser|VanLange|Inbar|Huang,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,9,Global,all,TRUE +1254,0.410540084727176,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,5,3,6,3,5,4,2,2,2,4,2,2,4,1,2,2,3,2,3,2,2,4,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Anderson|Alter|Graham|VanLange|Ross.Slate1|Huang|Miyamoto|Bauer|Hauser|Critcher|Rottenstrich|Inbar,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,2,Global,all,TRUE +1255,1.06642292277966,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,5,3,5,2,4,3,2,4,2,4,2,2,2,3,4,3,2,3,3,1,2,3,3,1,4,,,,,,,,,,,,,,,,,,,,,,,,,,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|VanLange|Miyamoto|Hauser|Anderson|Bauer|Kay|Graham|Critcher|Alter|Huang|Ross.Slate1|Rottenstrich,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,5,Global,all,TRUE +1258,-0.124469175368099,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,henan,1,2,4,7,1,4,2,2,2,3,2,2,2,1,5,3,4,1,4,1,2,1,4,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,henan,henan,henan,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Online (at home),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Miyamoto|Ross.Slate1|Huang|Graham|Hauser|Alter|Inbar|Rottenstrich|Bauer|Critcher|Kay|VanLange,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,1,Global,all,TRUE +1259,-0.462038777912212,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,henan,2,1,3,1,2,5,3,1,2,4,1,2,2,3,2,2,3,1,4,1,4,4,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,henan,henan,henan,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Online (at home),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Hauser|VanLange|Rottenstrich|Kay|Bauer|Graham|Anderson|Ross.Slate1|Alter|Critcher|Huang|Inbar,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,8,Global,all,TRUE +1262,0.119764849468313,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,henan,6,2,6,3,3,5,3,2,3,5,3,5,4,4,3,3,4,1,3,2,2,4,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,henan,henan,henan,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Online (at home),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Ross.Slate1|Graham|Anderson|Miyamoto|Rottenstrich|Hauser|Alter|VanLange|Critcher|Inbar|Bauer|Kay,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +1264,0.161155608739627,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,henan,3,3,3,3,1,2,1,1,1,1,2,1,2,1,1,1,2,1,2,1,2,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,henan,henan,henan,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Online (at home),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Bauer|Graham|Rottenstrich|Miyamoto|Critcher|Alter|Hauser|VanLange|Huang|Ross.Slate1|Kay|Anderson,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,13,Global,all,TRUE +1265,0.230491396463118,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,henan,5,3,3,2,5,1,5,4,1,1,2,4,1,1,1,2,2,1,2,1,2,1,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,henan,henan,henan,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Online (at home),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Ross.Slate1|Kay|Alter|Critcher|Rottenstrich|Huang|Anderson|VanLange|Graham|Hauser|Bauer|Miyamoto,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +1266,0.0446457184366906,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,henan,2,1,4,1,3,2,2,3,2,4,4,3,4,3,4,2,3,3,3,1,4,2,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,henan,henan,henan,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Online (at home),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Bauer|Graham|VanLange|Miyamoto|Ross.Slate1|Rottenstrich|Anderson|Kay|Inbar|Hauser|Huang|Alter,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,8,Global,all,TRUE +1267,-0.210015787133395,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,henan,4,3,5,3,3,5,3,2,1,4,1,3,3,3,3,2,3,1,3,1,2,5,5,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,henan,henan,henan,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Online (at home),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Huang|Ross.Slate1|Bauer|Rottenstrich|Hauser|Graham|Kay|Inbar|Critcher|VanLange|Anderson|Miyamoto,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five,12,Global,all,TRUE +1275,0.37178784024713,High,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,1,4,4,1,1,1,5,4,5,3,5,5,2,1,5,5,1,4,1,5,5,1,2,1,5,,,,,,,,,,,,,,,,,,,,,,,,,,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Graham|Kay|Critcher|Alter|Inbar|Miyamoto|Hauser|Bauer|VanLange|Anderson|Ross.Slate1|Huang,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +1276,0.814273353569443,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,2,4,5,3,2,3,1,2,2,1,1,1,3,3,3,1,4,1,3,1,1,2,2,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|VanLange|Inbar|Miyamoto|Kay|Graham|Bauer|Alter|Critcher|Rottenstrich|Ross.Slate1|Hauser|Anderson,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection,13,Global,all,TRUE +1280,1.12744978438091,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,4,4,4,5,3,1,1,1,2,1,1,1,1,1,1,1,3,1,1,1,1,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Graham|Inbar|Alter|VanLange|Rottenstrich|Kay|Hauser|Ross.Slate1|Miyamoto|Critcher|Bauer|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five,13,Global,all,TRUE +1281,0.304570607135076,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,4,3,5,5,1,4,1,2,1,2,3,1,2,1,3,1,3,1,3,1,1,3,3,1,4,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Ross.Slate1|Hauser|Miyamoto|Critcher|Anderson|Bauer|Graham|Inbar|Huang|Alter|Rottenstrich|Kay,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,6,Global,all,TRUE +1287,-0.437252224431135,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,3,6,6,6,5,4,1,2,4,1,1,1,3,3,1,1,4,1,4,1,1,3,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Critcher|Bauer|Rottenstrich|Inbar|Huang|Kay|Graham|VanLange|Hauser|Anderson|Miyamoto|Alter,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +1293,0.540635930734886,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,3,4,5,5,3,3,1,1,3,1,3,3,4,2,3,1,4,2,3,1,3,3,2,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|VanLange|Critcher|Bauer|Hauser|Alter|Miyamoto|Graham|Kay|Anderson|Huang|Ross.Slate1|Rottenstrich,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +1294,-0.744111705300405,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,3,5,6,5,5,4,1,1,4,3,1,4,1,3,2,1,4,3,5,1,1,3,3,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Inbar|Anderson|Huang|Kay|Ross.Slate1|Alter|Bauer|Critcher|VanLange|Rottenstrich|Miyamoto|Graham,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +1295,0.625522357434715,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,3,6,6,5,7,4,1,1,4,2,2,1,2,3,2,1,4,1,5,1,1,2,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Hauser|VanLange|Ross.Slate1|Anderson|Kay|Inbar|Miyamoto|Huang|Alter|Graham|Rottenstrich|Bauer,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,5,Global,all,TRUE +1296,0.214013769104278,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,1,5,1,1,1,3,3,4,2,1,1,1,1,1,4,1,5,1,5,1,1,2,1,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Critcher|Kay|Inbar|Graham|Alter|Bauer|VanLange|Miyamoto|Ross.Slate1|Huang|Hauser|Rottenstrich,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,1,Global,all,TRUE +1297,-0.379257259369583,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,3,4,4,3,3,3,1,2,1,3,1,1,2,3,1,1,2,1,4,1,1,3,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Bauer|Huang|Ross.Slate1|Inbar|Hauser|Critcher|Graham|Kay|Rottenstrich|VanLange|Miyamoto|Anderson,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,13,Global,all,TRUE +1298,-0.34854713769474,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,4,6,5,6,3,4,1,1,1,2,1,1,3,4,1,1,4,1,4,1,1,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Critcher|Bauer|Miyamoto|Rottenstrich|VanLange|Anderson|Huang|Ross.Slate1|Hauser|Alter|Inbar|Kay,ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection,7,Global,all,TRUE +1299,0.673496869965263,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,6,6,6,5,5,4,1,1,4,2,1,1,3,3,1,1,3,1,4,1,1,3,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Anderson|Inbar|Critcher|Graham|Rottenstrich|Bauer|Miyamoto|VanLange|Hauser|Alter|Ross.Slate1|Huang,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,2,Global,all,TRUE +1301,0.385626952814701,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,7,5,5,4,4,3,1,1,3,1,1,1,3,2,1,1,3,1,3,1,1,1,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Critcher|Graham|VanLange|Rottenstrich|Kay|Ross.Slate1|Inbar|Bauer|Huang|Alter|Anderson|Miyamoto,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +1302,-0.113268577591796,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,6,6,4,5,4,4,1,1,4,3,1,1,2,1,1,1,4,1,5,1,1,3,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Kay|Anderson|Ross.Slate1|Graham|Rottenstrich|Miyamoto|Hauser|Huang|Alter|Inbar|Critcher|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,3,Global,all,TRUE +1303,-0.797883207593321,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,3,3,4,6,1,4,3,2,4,3,2,2,4,2,3,1,3,1,4,1,3,4,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|VanLange|Kay|Graham|Alter|Critcher|Huang|Inbar|Ross.Slate1|Hauser|Bauer|Anderson|Rottenstrich,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,12,Global,all,TRUE +1304,0.0224976797468825,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,5,6,6,3,7,2,2,1,2,3,2,1,1,2,1,1,1,1,2,1,1,2,4,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Anderson|Bauer|Miyamoto|Hauser|Alter|Kay|Ross.Slate1|Critcher|Rottenstrich|Graham|Inbar|VanLange,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE,2,Global,all,TRUE +1310,-0.838880585116203,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,3,4,5,6,7,4,1,2,1,3,3,2,3,4,1,1,4,1,4,1,1,2,1,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Rottenstrich|Inbar|Alter|Graham|Ross.Slate1|Anderson|Huang|Bauer|Kay|Hauser|Critcher|Miyamoto,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +1311,0.255137725058559,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,3,2,5,4,3,5,1,1,4,1,2,1,4,4,2,1,4,1,5,1,2,3,4,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Inbar|Critcher|Hauser|Miyamoto|Anderson|VanLange|Ross.Slate1|Rottenstrich|Alter|Huang|Graham|Kay,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +1312,-0.198548386040058,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,3,6,6,5,2,4,1,2,2,3,1,3,4,2,2,1,3,2,2,1,1,3,3,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Graham|Huang|Kay|Critcher|Rottenstrich|Ross.Slate1|Hauser|Bauer|VanLange|Inbar|Alter|Miyamoto,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,1,Global,all,TRUE +1313,-0.361726065196845,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,4,4,3,5,4,4,1,1,4,2,1,2,2,2,3,1,3,1,4,1,1,2,4,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Ross.Slate1|Alter|Huang|Miyamoto|Hauser|Bauer|Inbar|Graham|Anderson|Critcher|VanLange|Rottenstrich,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,10,Global,all,TRUE +1314,0.568314155870028,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,4,5,6,3,3,2,1,1,2,1,1,1,2,3,2,1,2,1,3,1,1,3,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Inbar|Rottenstrich|Kay|Huang|Hauser|Alter|Bauer|Ross.Slate1|Anderson|Miyamoto|VanLange|Critcher,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,10,Global,all,TRUE +1315,0.911413944859475,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,5,2,5,4,1,4,2,3,1,2,1,1,2,2,1,1,4,1,2,2,3,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Huang|Ross.Slate1|Critcher|Anderson|Miyamoto|Hauser|Bauer|Kay|Alter|Graham|Rottenstrich|VanLange,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +1318,0.415943692741112,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,4,4,3,3,1,3,1,2,3,3,3,5,1,1,3,1,5,1,3,1,1,3,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Rottenstrich|Inbar|VanLange|Graham|Alter|Bauer|Ross.Slate1|Anderson|Kay|Critcher|Hauser|Huang,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,9,Global,all,TRUE +1319,0.235361397842985,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,3,3,5,5,3,2,1,1,1,1,1,2,4,1,2,1,1,2,1,1,1,1,1,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Critcher|Kay|Hauser|Huang|Inbar|Graham|VanLange|Miyamoto|Anderson|Rottenstrich|Bauer,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,11,Global,all,TRUE +1320,-0.362386250262311,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,6,6,7,2,7,4,1,1,1,1,1,1,3,5,1,1,3,1,5,1,1,3,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Graham|Inbar|Rottenstrich|Huang|Bauer|VanLange|Kay|Miyamoto|Anderson|Ross.Slate1|Alter|Critcher,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,10,Global,all,TRUE +1321,0.65043548934719,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,2,5,5,5,1,2,3,1,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Critcher|Bauer|VanLange|Kay|Ross.Slate1|Inbar|Graham|Hauser|Rottenstrich|Alter|Miyamoto|Anderson,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,13,Global,all,TRUE +1322,0.329877120795984,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,2,6,5,3,2,3,1,1,2,3,1,2,2,4,1,1,2,1,3,1,1,3,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Alter|VanLange|Miyamoto|Huang|Hauser|Anderson|Bauer|Kay|Critcher|Ross.Slate1|Inbar|Graham,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,7,Global,all,TRUE +1324,0.872801925265064,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,3,3,5,4,1,5,2,5,3,3,5,3,4,1,5,1,5,5,3,1,5,5,3,2,5,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Kay|Graham|Anderson|VanLange|Alter|Critcher|Rottenstrich|Bauer|Miyamoto|Hauser|Inbar|Ross.Slate1,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood,4,Global,all,TRUE +1331,0.258296200029659,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,6,7,7,5,6,4,2,1,3,2,1,1,4,3,1,1,4,1,4,1,1,3,3,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|VanLange|Inbar|Bauer|Huang|Critcher|Alter|Hauser|Rottenstrich|Anderson|Kay|Graham|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five,10,Global,all,TRUE +1334,-0.639322372953603,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,1,3,3,1,1,3,1,1,3,2,1,1,1,2,1,1,2,1,3,1,1,2,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Hauser|Critcher|Bauer|Ross.Slate1|VanLange|Kay|Miyamoto|Alter|Graham|Anderson|Inbar|Rottenstrich,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +1336,-0.0157346045533318,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,6,6,6,2,6,3,5,3,3,3,5,3,2,5,3,3,5,5,3,5,3,5,3,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Bauer|Miyamoto|Anderson|Graham|Kay|Huang|VanLange|Hauser|Ross.Slate1|Critcher|Inbar|Rottenstrich,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,4,Global,all,TRUE +1337,0.396700972159605,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,5,5,5,5,4,4,1,1,3,3,1,3,3,2,2,1,4,1,4,1,1,1,5,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|VanLange|Inbar|Ross.Slate1|Miyamoto|Anderson|Hauser|Rottenstrich|Alter|Graham|Huang|Bauer|Kay,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,6,Global,all,TRUE +1340,-0.199868756170991,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,3,4,6,5,5,4,2,1,3,1,1,1,3,4,1,1,3,1,5,1,1,2,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Rottenstrich|Ross.Slate1|Alter|Bauer|Critcher|Hauser|VanLange|Inbar|Graham|Huang|Miyamoto|Anderson,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +1344,-1.00113350136109,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,6,6,6,4,6,4,1,1,4,2,1,1,3,3,1,1,4,1,4,1,1,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Graham|Inbar|Huang|Ross.Slate1|Rottenstrich|VanLange|Kay|Bauer|Hauser|Anderson|Miyamoto|Alter,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection,11,Global,all,TRUE +1345,0.4823741623563,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,1,4,5,5,3,2,1,1,2,1,4,1,1,2,3,1,2,1,4,1,1,2,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Rottenstrich|Inbar|VanLange|Hauser|Kay|Ross.Slate1|Bauer|Miyamoto|Graham|Anderson|Critcher|Alter,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,11,Global,all,TRUE +1350,0.133744186921519,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,2,4,3,5,2,5,2,1,3,1,1,1,4,3,2,1,4,1,3,1,2,2,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Rottenstrich|Huang|Graham|Inbar|Anderson|VanLange|Miyamoto|Ross.Slate1|Bauer|Kay|Alter|Hauser,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,6,Global,all,TRUE +1351,0.138754413187021,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,3,5,4,3,3,4,1,1,4,3,1,1,1,4,1,1,5,1,4,1,1,4,5,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Huang|VanLange|Kay|Miyamoto|Rottenstrich|Inbar|Critcher|Hauser|Bauer|Anderson|Alter|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,11,Global,all,TRUE +1353,0.122276785828182,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,5,5,6,6,3,4,1,1,4,1,1,1,1,1,2,1,4,1,4,1,2,3,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Rottenstrich|Hauser|Huang|Alter|Anderson|Ross.Slate1|Inbar|VanLange|Bauer|Kay|Critcher|Graham,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,6,Global,all,TRUE +1354,-0.332729695401368,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,4,6,5,5,4,4,2,1,2,3,2,1,3,2,3,2,2,1,4,1,1,1,1,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Bauer|Rottenstrich|Graham|Critcher|Kay|Inbar|Alter|Ross.Slate1|Anderson|Miyamoto|VanLange|Huang,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,10,Global,all,TRUE +1355,-1.02499306645966,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,6,6,7,5,3,4,1,1,1,2,1,2,1,3,1,1,3,1,4,1,1,3,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Huang|Anderson|Alter|Inbar|Ross.Slate1|Hauser|Rottenstrich|Kay|Graham|Miyamoto|Bauer|VanLange,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +1357,-0.778106880377747,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,3,3,4,5,2,4,1,1,2,1,2,1,2,3,1,1,3,1,4,1,1,2,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Alter|Huang|Inbar|Anderson|Ross.Slate1|Critcher|Hauser|Graham|Kay|Bauer|VanLange|Rottenstrich,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,5,Global,all,TRUE +1358,-0.0572519422560451,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,3,7,5,3,2,2,3,1,1,1,1,1,2,4,1,1,3,1,3,1,1,1,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Critcher|Alter|Rottenstrich|Inbar|Bauer|Kay|Anderson|Miyamoto|Hauser|VanLange|Ross.Slate1|Graham,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,8,Global,all,TRUE +1359,0.144158021200956,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,3,5,7,3,1,5,1,1,5,1,4,1,5,4,1,1,5,1,5,2,1,3,2,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Alter|Critcher|Bauer|Graham|Ross.Slate1|Miyamoto|Huang|Hauser|Anderson|Inbar|Kay|VanLange,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +1362,0.244063705713655,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,5,5,5,6,4,4,2,1,4,2,2,2,3,4,2,1,4,1,4,1,2,3,3,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Anderson|Critcher|Bauer|Inbar|Ross.Slate1|Kay|Rottenstrich|Miyamoto|VanLange|Huang|Alter|Graham,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,2,Global,all,TRUE +1363,0.736768864609351,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,6,6,6,5,3,4,1,1,5,3,1,1,4,4,1,1,3,1,5,1,1,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Miyamoto|Rottenstrich|Hauser|Huang|Kay|Alter|Critcher|Inbar|VanLange|Anderson|Ross.Slate1|Graham,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,11,Global,all,TRUE +1364,-0.257203536167077,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,4,6,5,5,1,4,1,1,1,1,1,1,2,1,2,1,1,1,4,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Bauer|Hauser|VanLange|Huang|Graham|Alter|Rottenstrich|Ross.Slate1|Inbar|Critcher|Kay|Anderson,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,13,Global,all,TRUE +1365,-0.14595702899244,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,6,5,6,5,3,3,2,1,3,1,2,1,2,2,2,1,2,1,3,2,2,1,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Kay|Graham|Rottenstrich|Hauser|Critcher|Huang|Miyamoto|Alter|Inbar|Anderson|Bauer|Ross.Slate1,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,11,Global,all,TRUE +1368,0.481980780607867,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,6,6,7,6,6,5,1,1,4,1,1,3,4,3,4,1,3,1,2,1,3,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Ross.Slate1|Huang|Bauer|Hauser|Graham|Kay|VanLange|Alter|Miyamoto|Inbar|Critcher|Anderson,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,13,Global,all,TRUE +1370,0.296261681012839,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,5,5,4,5,3,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Anderson|Huang|Hauser|Kay|Critcher|Rottenstrich|VanLange|Bauer|Inbar|Graham|Alter|Miyamoto,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +1373,0.554475043302457,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,3,6,4,3,3,4,2,3,3,1,1,2,3,2,1,2,2,3,4,1,3,1,2,2,5,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Hauser|Miyamoto|Inbar|Bauer|Critcher|Kay|Anderson|Rottenstrich|Ross.Slate1|Alter|Graham|Huang,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,8,Global,all,TRUE +1376,-0.658960700754142,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,6,6,7,4,5,2,1,2,1,1,1,1,2,1,1,1,1,1,3,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Kay|Graham|Alter|Inbar|Miyamoto|Critcher|Bauer|VanLange|Ross.Slate1|Rottenstrich|Hauser|Anderson,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,13,Global,all,TRUE +1377,-1.29440702652558,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,3,2,2,4,2,4,2,4,4,3,1,2,4,4,3,4,4,1,4,3,4,3,2,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Bauer|Miyamoto|Inbar|VanLange|Rottenstrich|Anderson|Critcher|Graham|Hauser|Alter|Ross.Slate1|Kay,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,7,Global,all,TRUE +1379,-0.221356609795332,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,4,5,5,3,7,4,1,1,4,1,1,1,1,1,1,1,3,1,4,1,1,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Anderson|Rottenstrich|Critcher|Alter|Bauer|Miyamoto|Kay|Inbar|Graham|Huang|VanLange|Ross.Slate1,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +1382,0.324333287896414,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,4,5,5,5,5,3,1,1,1,1,1,1,2,4,2,1,3,1,5,1,2,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Bauer|Ross.Slate1|Anderson|Critcher|Miyamoto|Inbar|Huang|Graham|Hauser|Rottenstrich|Alter|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,4,Global,all,TRUE +1383,0.828505847885448,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,3,5,5,5,2,4,1,1,2,1,1,2,3,4,2,2,4,2,2,1,2,4,2,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Anderson|Ross.Slate1|Bauer|Inbar|Hauser|VanLange|Kay|Miyamoto|Alter|Huang|Rottenstrich|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing,2,Global,all,TRUE +1384,0.653860767635323,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,5,5,5,6,3,2,1,1,2,1,1,1,1,1,2,1,2,1,4,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Miyamoto|Graham|Huang|Bauer|Anderson|Hauser|Kay|Ross.Slate1|VanLange|Rottenstrich|Inbar|Alter,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,6,Global,all,TRUE +1385,0.676135384756531,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,4,5,5,7,2,3,1,1,4,1,2,1,2,4,1,1,4,1,3,1,1,3,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Kay|Inbar|Huang|Critcher|Graham|Alter|VanLange|Bauer|Hauser|Anderson|Miyamoto|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,11,Global,all,TRUE +1388,-0.706146224317225,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,5,5,7,5,6,4,1,1,3,4,3,2,4,4,3,1,4,1,4,1,1,4,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Alter|Critcher|Huang|Kay|Miyamoto|Inbar|Rottenstrich|Ross.Slate1|Hauser|Bauer|VanLange|Graham,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing,1,Global,all,TRUE +1390,0.232989686368751,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,2,1,3,5,3,2,2,2,2,2,1,1,4,4,2,1,2,1,2,1,1,3,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|VanLange|Bauer|Alter|Miyamoto|Inbar|Graham|Hauser|Huang|Ross.Slate1|Critcher|Anderson|Kay,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +1392,0.0168272684159134,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,6,3,5,5,5,4,1,1,2,1,1,1,4,4,1,1,5,1,5,1,1,2,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Hauser|Anderson|Rottenstrich|Huang|Kay|Critcher|VanLange|Alter|Bauer|Ross.Slate1|Graham|Inbar,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five,3,Global,all,TRUE +1393,-0.325347757661632,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,6,7,7,5,7,3,2,1,2,1,1,3,3,3,2,1,3,1,4,1,1,1,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Hauser|Huang|Kay|Alter|Rottenstrich|Ross.Slate1|VanLange|Graham|Anderson|Miyamoto|Critcher|Inbar,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,10,Global,all,TRUE +1394,0.415943692741112,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,4,5,6,6,3,3,1,1,2,3,1,2,1,2,1,1,2,1,4,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Critcher|Ross.Slate1|Kay|Huang|Hauser|Bauer|Inbar|Miyamoto|Anderson|Graham|VanLange|Rottenstrich,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,10,Global,all,TRUE +1397,0.348586234743423,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,4,4,5,5,4,4,1,1,1,1,1,1,4,4,1,1,4,1,3,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Kay|Graham|Rottenstrich|Inbar|Critcher|Hauser|Alter|Bauer|Huang|Ross.Slate1|VanLange|Anderson,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing,13,Global,all,TRUE +1398,-0.391384845528387,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,6,4,6,5,6,3,1,1,3,1,1,1,3,2,1,1,3,1,3,1,1,3,1,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Anderson|Bauer|Alter|Graham|Miyamoto|Kay|Inbar|VanLange|Ross.Slate1|Critcher|Rottenstrich|Huang,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,2,Global,all,TRUE +1400,-0.060017035478712,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,2,4,3,5,3,4,3,1,4,2,2,3,3,4,2,3,4,2,3,1,3,3,3,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Anderson|Huang|Critcher|Miyamoto|Rottenstrich|Graham|Alter|Ross.Slate1|Kay|Hauser|VanLange|Inbar,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +1403,0.248680550230724,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,5,6,6,6,4,4,1,1,3,1,3,2,3,4,2,2,4,1,4,1,1,4,4,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Bauer|Miyamoto|Anderson|Hauser|Kay|Huang|VanLange|Rottenstrich|Critcher|Ross.Slate1|Alter|Inbar,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,4,Global,all,TRUE +1405,0.413305177949843,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,6,5,5,5,5,2,2,2,2,1,2,2,2,1,2,1,3,2,2,1,2,2,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|VanLange|Anderson|Ross.Slate1|Graham|Rottenstrich|Alter|Hauser|Miyamoto|Huang|Inbar|Kay|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,3,Global,all,TRUE +1407,-1.09985904062849,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,5,6,6,3,4,3,1,1,4,1,1,2,1,3,2,1,3,1,4,1,2,1,4,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Inbar|Kay|Rottenstrich|VanLange|Miyamoto|Bauer|Hauser|Huang|Critcher|Ross.Slate1|Anderson|Graham,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,12,Global,all,TRUE +1408,0.194110863457305,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,4,5,5,3,3,4,2,2,3,3,1,2,3,3,4,1,3,2,4,1,4,3,4,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|Ross.Slate1|Inbar|Huang|Alter|Critcher|Graham|Kay|Bauer|Rottenstrich|VanLange|Anderson,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,13,Global,all,TRUE +1410,0.210715069247543,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,4,3,6,4,6,3,1,1,2,1,1,1,3,1,1,1,2,1,5,1,1,1,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Graham|Huang|Kay|Inbar|Anderson|Critcher|Alter|Miyamoto|Bauer|Ross.Slate1|VanLange|Hauser,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five,6,Global,all,TRUE +1411,0.168804349796397,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,4,4,5,5,6,4,1,1,1,2,2,1,4,4,1,2,4,1,4,1,1,3,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Anderson|Inbar|Huang|Graham|Kay|Miyamoto|Hauser|Rottenstrich|Ross.Slate1|Bauer|Alter|Critcher,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,2,Global,all,TRUE +1413,-0.971474721029545,High,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,4,6,6,5,5,4,3,1,3,2,2,2,1,4,2,1,3,1,2,1,3,3,1,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Huang|Inbar|Kay|Ross.Slate1|Critcher|Graham|Miyamoto|VanLange|Hauser|Alter|Rottenstrich|Bauer,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,1,Global,all,TRUE +1418,0.141912888158121,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,3,5,6,5,2,4,4,1,4,3,3,1,4,2,3,2,3,3,4,2,3,4,4,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Graham|Anderson|Critcher|Alter|Huang|Hauser|Inbar|Miyamoto|Ross.Slate1|Kay|Bauer|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing,3,Global,all,TRUE +1419,-0.107864969577861,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,2,4,6,6,2,2,2,2,2,2,4,4,3,4,4,4,4,4,3,1,4,3,3,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Bauer|Huang|Kay|Rottenstrich|Ross.Slate1|Critcher|Graham|Inbar|Alter|Miyamoto|Hauser|Anderson,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,13,Global,all,TRUE +1420,-0.00202207041715937,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,6,6,6,6,5,3,1,1,3,3,1,1,4,3,2,1,4,1,4,1,1,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Anderson|VanLange|Graham|Miyamoto|Huang|Kay|Inbar|Alter|Ross.Slate1|Critcher|Hauser|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,2,Global,all,TRUE +1421,0.174334536241731,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,6,6,6,6,5,2,1,1,2,1,1,1,2,4,1,1,4,1,4,1,1,2,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Miyamoto|Huang|Critcher|Kay|Graham|Alter|Inbar|VanLange|Rottenstrich|Bauer|Anderson|Hauser,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,12,Global,all,TRUE +1422,0.919329489233279,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,5,6,6,2,6,3,1,1,4,1,1,1,1,1,1,1,3,1,5,1,1,3,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Rottenstrich|Huang|Bauer|VanLange|Kay|Graham|Hauser|Inbar|Ross.Slate1|Anderson|Critcher|Alter,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +1423,0.601395989019106,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,6,6,7,4,3,4,3,1,4,4,1,1,4,3,3,2,2,1,4,1,2,4,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Kay|Alter|Miyamoto|Huang|Rottenstrich|Inbar|Hauser|Critcher|VanLange|Bauer|Graham|Anderson,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,13,Global,all,TRUE +1424,0.77591449083783,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,3,5,6,5,2,3,2,1,2,4,1,1,1,2,2,1,3,1,2,1,1,4,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Miyamoto|Anderson|Alter|Critcher|Ross.Slate1|Huang|Graham|Hauser|Bauer|Rottenstrich|Kay|Inbar,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,3,Global,all,TRUE +1427,0.45205742242989,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,5,7,7,7,7,4,1,2,1,1,1,1,1,4,2,1,1,1,4,1,1,2,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Inbar|Rottenstrich|VanLange|Anderson|Hauser|Ross.Slate1|Miyamoto|Bauer|Graham|Critcher|Alter|Kay,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,5,Global,all,TRUE +1428,-0.477591642359149,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,5,6,6,3,5,4,2,1,3,3,2,2,3,4,2,2,4,3,2,1,4,4,4,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Rottenstrich|Anderson|Inbar|Kay|Critcher|Graham|Huang|Bauer|Ross.Slate1|Alter|Miyamoto|Hauser,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +1431,0.0356766072489867,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,1,5,6,6,3,3,3,1,3,1,1,1,1,1,1,1,2,1,2,1,5,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Huang|Miyamoto|Hauser|Inbar|Critcher|Alter|VanLange|Rottenstrich|Graham|Bauer|Anderson|Ross.Slate1,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,12,Global,all,TRUE +1432,-0.07135785814065,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,5,5,6,5,5,3,2,2,2,3,1,1,4,4,2,1,4,1,2,1,1,4,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Graham|Ross.Slate1|Anderson|Critcher|Bauer|Hauser|VanLange|Kay|Rottenstrich|Inbar|Alter|Huang,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,4,Global,all,TRUE +1434,-0.537564937146503,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,4,7,7,5,5,3,1,1,3,2,1,1,1,1,2,1,2,1,4,1,1,3,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Huang|Miyamoto|Hauser|Critcher|Alter|Inbar|Ross.Slate1|Bauer|Kay|VanLange|Graham|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,1,Global,all,TRUE +1435,-0.293584069172889,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,5,3,5,5,3,2,2,2,3,1,1,1,1,1,3,1,4,1,2,1,3,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Graham|Bauer|Alter|Rottenstrich|VanLange|Critcher|Huang|Ross.Slate1|Kay|Hauser|Miyamoto|Anderson,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +1437,0.487384388621802,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,1,1,1,5,1,2,5,5,1,1,1,5,1,1,5,1,5,5,1,5,3,1,1,1,5,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Alter|Miyamoto|Graham|VanLange|Rottenstrich|Huang|Anderson|Bauer|Ross.Slate1|Kay|Hauser|Inbar,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,8,Global,all,TRUE +1439,-0.167447108087381,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,6,6,6,5,4,1,1,1,2,1,1,1,1,2,1,1,1,1,4,1,2,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Hauser|VanLange|Graham|Alter|Critcher|Anderson|Inbar|Rottenstrich|Ross.Slate1|Kay|Miyamoto|Huang,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,7,Global,all,TRUE +1440,0.797795726210604,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,7,7,7,7,3,3,1,1,2,1,1,1,1,4,1,1,3,1,4,1,2,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Huang|Graham|Bauer|Miyamoto|Anderson|Rottenstrich|VanLange|Inbar|Kay|Alter|Ross.Slate1|Hauser,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood,6,Global,all,TRUE +1441,-0.385981237514452,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,3,6,5,5,3,4,5,5,3,5,2,5,4,2,5,4,3,5,3,3,4,3,3,2,5,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|VanLange|Critcher|Graham|Inbar|Kay|Hauser|Huang|Anderson|Miyamoto|Alter|Ross.Slate1|Rottenstrich,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,9,Global,all,TRUE +1443,0.0365899491772514,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,2,3,3,5,3,4,3,3,4,1,4,1,3,2,1,2,4,1,3,1,3,3,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Rottenstrich|VanLange|Alter|Ross.Slate1|Inbar|Graham|Bauer|Anderson|Kay|Critcher|Miyamoto|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,9,Global,all,TRUE +1446,-1.0496393950551,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,4,4,5,3,5,4,4,2,2,3,1,1,3,4,2,1,4,2,3,1,2,2,2,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Kay|Alter|Bauer|Hauser|Huang|Inbar|Critcher|Rottenstrich|Miyamoto|Ross.Slate1|Graham|VanLange,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +1447,-2.09053496701878,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,5,6,6,5,6,4,2,1,3,2,1,1,4,4,1,1,4,1,3,1,2,4,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Inbar|Rottenstrich|Huang|Critcher|Bauer|Alter|VanLange|Kay|Ross.Slate1|Hauser|Miyamoto|Anderson,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood,13,Global,all,TRUE +1449,-0.69296729681512,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,5,7,7,4,7,2,1,1,3,1,1,1,1,5,1,1,5,1,3,1,1,2,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Huang|Hauser|VanLange|Ross.Slate1|Critcher|Kay|Graham|Miyamoto|Bauer|Alter|Rottenstrich|Anderson,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +1455,-0.0851969707082212,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,4,3,5,5,3,2,4,4,3,2,4,3,2,2,3,4,3,4,2,4,4,2,2,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Inbar|Alter|Rottenstrich|Graham|Miyamoto|Critcher|Kay|VanLange|Ross.Slate1|Huang|Hauser|Anderson,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood,13,Global,all,TRUE +1460,0.310887557077276,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,6,7,6,5,3,4,3,2,3,3,2,3,3,2,2,4,4,1,4,1,2,3,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Graham|Ross.Slate1|Hauser|Huang|Anderson|Bauer|Miyamoto|Inbar|Critcher|VanLange|Rottenstrich|Alter,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +1464,-0.46783576767458,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,6,6,6,6,4,3,2,1,4,2,1,3,3,3,3,2,4,2,5,3,3,2,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Alter|VanLange|Kay|Graham|Critcher|Hauser|Rottenstrich|Anderson|Bauer|Inbar|Ross.Slate1|Huang,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood,9,Global,all,TRUE +1469,-1.68772646108841,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,5,6,6,7,6,3,1,2,3,4,2,1,2,1,4,1,1,1,4,1,2,4,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Alter|Bauer|VanLange|Rottenstrich|Anderson|Graham|Ross.Slate1|Miyamoto|Hauser|Kay|Inbar|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,6,Global,all,TRUE +1472,-0.418276307166664,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,6,6,6,5,4,3,2,2,1,3,2,2,3,4,2,2,1,1,2,2,3,4,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Miyamoto|Kay|Huang|VanLange|Graham|Hauser|Critcher|Rottenstrich|Inbar|Alter|Bauer|Ross.Slate1,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,1,Global,all,TRUE +1473,0.413305177949843,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,5,6,6,5,2,3,2,1,4,4,1,1,3,2,3,3,4,1,3,1,2,5,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Miyamoto|Inbar|Kay|Rottenstrich|Bauer|VanLange|Ross.Slate1|Alter|Critcher|Graham|Hauser|Huang,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood,1,Global,all,TRUE +1474,0.185281977155237,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,4,4,4,4,4,4,1,1,4,2,1,1,4,3,1,1,4,1,4,1,1,4,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Huang|Bauer|Inbar|Hauser|Alter|VanLange|Rottenstrich|Graham|Miyamoto|Critcher|Ross.Slate1|Kay,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +1477,-0.558252380819743,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,5,5,7,6,6,4,1,1,2,1,1,1,2,3,1,1,3,1,4,1,1,3,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Alter|Rottenstrich|Kay|Huang|Ross.Slate1|Bauer|Anderson|Graham|Hauser|Inbar|Critcher|Miyamoto,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,8,Global,all,TRUE +1478,0.529561911389982,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,5,6,6,6,6,1,1,1,1,1,1,1,1,1,1,1,1,1,3,1,1,1,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|VanLange|Critcher|Graham|Kay|Anderson|Miyamoto|Bauer|Hauser|Inbar|Rottenstrich|Huang,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,7,Global,all,TRUE +1479,0.280050856971034,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,5,6,6,6,6,3,2,1,3,2,2,2,1,2,2,1,2,2,3,1,1,3,2,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Critcher|Graham|Rottenstrich|Ross.Slate1|VanLange|Kay|Bauer|Alter|Inbar|Huang|Anderson|Miyamoto,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,12,Global,all,TRUE +1481,0.393935878936938,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,2,3,5,2,5,2,1,1,1,1,1,1,2,1,1,1,3,1,3,1,1,1,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Inbar|Alter|Graham|Bauer|Huang|Critcher|Hauser|Miyamoto|Rottenstrich|Anderson|Ross.Slate1|Kay,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +1483,0.111469569800312,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,2,3,5,5,2,3,1,1,2,2,2,1,2,2,3,1,2,4,2,1,4,3,3,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Anderson|Graham|Bauer|Critcher|Kay|Rottenstrich|Miyamoto|Alter|VanLange|Huang|Ross.Slate1|Inbar,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +1484,0.617086852881079,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,5,7,7,7,7,2,3,1,1,2,1,1,3,3,1,1,2,1,2,1,1,1,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Hauser|Ross.Slate1|Graham|Inbar|VanLange|Rottenstrich|Anderson|Kay|Huang|Miyamoto|Bauer|Alter,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +1487,-0.0351039035662369,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,5,4,5,4,3,3,2,1,3,3,1,1,2,3,1,1,3,1,4,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Rottenstrich|Hauser|Alter|Ross.Slate1|Graham|Critcher|Bauer|Kay|VanLange|Anderson|Huang|Miyamoto,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +1488,1.03610618285325,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,5,5,5,2,4,3,2,2,3,3,2,2,2,2,5,1,3,5,3,1,4,3,3,1,5,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Anderson|Graham|Alter|VanLange|Rottenstrich|Ross.Slate1|Huang|Miyamoto|Inbar|Kay|Hauser|Bauer,ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +1489,0.164060926847929,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,4,4,6,5,3,4,3,1,4,4,1,2,3,3,3,1,3,1,4,1,4,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Anderson|Huang|Ross.Slate1|Kay|Graham|Bauer|Inbar|Miyamoto|VanLange|Alter|Hauser|Critcher,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection,2,Global,all,TRUE +1490,0.124775075733815,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,5,7,5,2,3,3,1,1,2,1,1,1,3,1,1,1,2,1,4,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Inbar|Miyamoto|Alter|Anderson|Graham|Ross.Slate1|Bauer|Critcher|Rottenstrich|Kay|Hauser|VanLange,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,5,Global,all,TRUE +1491,0.695644908655071,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,5,5,6,5,3,4,1,1,4,2,1,1,3,4,1,1,4,1,4,1,1,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Miyamoto|Rottenstrich|Inbar|Bauer|Graham|Kay|Huang|Alter|Anderson|Critcher|Hauser|VanLange,ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE,10,Global,all,TRUE +1492,-0.485760343595752,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,5,5,5,5,4,3,2,1,4,1,1,1,3,2,2,1,1,1,3,2,1,1,3,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Graham|Ross.Slate1|Rottenstrich|Anderson|Bauer|Huang|Miyamoto|Critcher|VanLange|Alter|Inbar|Kay,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood,5,Global,all,TRUE +1493,-0.0137562748275304,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,4,5,4,5,2,4,4,3,2,2,2,1,2,2,4,1,2,4,2,1,4,2,2,1,4,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|VanLange|Kay|Inbar|Anderson|Huang|Ross.Slate1|Critcher|Graham|Bauer|Rottenstrich|Hauser|Alter,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,5,Global,all,TRUE +1496,-0.145830450561041,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,5,5,4,5,3,4,4,2,2,3,3,2,2,2,4,4,3,4,4,2,3,2,2,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Ross.Slate1|VanLange|Kay|Graham|Critcher|Alter|Miyamoto|Bauer|Anderson|Inbar|Huang|Hauser,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +1498,-0.193018199594723,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,6,5,6,5,3,4,1,2,4,1,2,1,2,3,1,1,4,1,4,1,1,4,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Kay|Miyamoto|Alter|Critcher|Ross.Slate1|Hauser|VanLange|Rottenstrich|Bauer|Anderson|Huang|Inbar,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,11,Global,all,TRUE +1499,0.316164586659812,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,4,5,5,4,5,2,1,1,1,3,1,1,3,1,1,1,1,1,2,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Kay|Critcher|Bauer|VanLange|Rottenstrich|Alter|Ross.Slate1|Inbar|Anderson|Graham|Miyamoto|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,10,Global,all,TRUE +1500,0.883735719724333,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,1,5,5,4,2,1,1,1,2,1,2,1,1,1,2,1,1,1,2,1,2,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Graham|Rottenstrich|Critcher|Kay|Bauer|Huang|Ross.Slate1|Anderson|VanLange|Inbar|Alter|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,9,Global,all,TRUE +1501,1.39871549574124,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,5,6,5,4,2,4,3,4,4,3,2,2,4,4,4,3,4,4,2,2,3,4,1,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Bauer|Anderson|Hauser|Graham|Kay|Ross.Slate1|Alter|Inbar|Critcher|VanLange|Miyamoto|Huang,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,3,Global,all,TRUE +1505,-1.13557938856883,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,5,6,6,5,5,4,2,1,2,1,1,1,2,2,1,1,2,1,4,2,1,3,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Critcher|Huang|Hauser|Miyamoto|Inbar|Ross.Slate1|Anderson|VanLange|Bauer|Alter|Graham|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,8,Global,all,TRUE +1507,-0.149649110597608,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,5,5,5,5,3,4,1,2,4,1,1,1,2,1,1,2,3,1,4,1,1,3,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Huang|Rottenstrich|Ross.Slate1|Bauer|VanLange|Graham|Inbar|Anderson|Kay|Miyamoto|Alter|Critcher,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,9,Global,all,TRUE +1512,0.291378033178736,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,7,6,7,6,6,3,1,1,4,1,2,1,3,1,1,2,3,1,4,1,1,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Ross.Slate1|Bauer|VanLange|Kay|Miyamoto|Anderson|Alter|Critcher|Huang|Inbar|Hauser|Rottenstrich,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +1515,-0.13514981296457,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,4,5,5,5,5,3,3,2,3,3,1,1,4,4,2,1,4,2,3,2,2,3,2,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Ross.Slate1|Anderson|Bauer|Hauser|Critcher|Miyamoto|Alter|Kay|VanLange|Huang|Rottenstrich|Inbar,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,3,Global,all,TRUE +1516,0.645425263081688,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,1,7,3,3,1,3,3,2,4,2,2,1,2,1,3,1,1,2,4,1,1,1,1,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Anderson|VanLange|Ross.Slate1|Miyamoto|Rottenstrich|Hauser|Huang|Alter|Bauer|Kay|Inbar|Critcher,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,2,Global,all,TRUE +1518,0.216385480578513,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,5,4,6,5,2,2,2,1,2,1,1,1,1,2,1,1,1,1,2,1,1,4,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Ross.Slate1|Bauer|Hauser|Miyamoto|Graham|Rottenstrich|Anderson|Critcher|Huang|VanLange|Alter|Kay,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,8,Global,all,TRUE +1523,0.553294898057158,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,3,2,6,7,5,4,1,1,1,1,1,1,4,4,1,1,5,1,3,1,1,3,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Rottenstrich|Bauer|Huang|Critcher|Hauser|Graham|Kay|Inbar|Anderson|Ross.Slate1|Alter|VanLange,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,10,Global,all,TRUE +1524,-1.51426152608359,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,6,7,6,5,6,4,1,1,4,3,1,1,3,3,2,1,3,2,4,1,3,4,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Alter|Ross.Slate1|Huang|Bauer|Miyamoto|Inbar|Hauser|Anderson|Kay|VanLange|Rottenstrich|Critcher,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,9,Global,all,TRUE +1528,0.656892664175025,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,6,6,6,5,5,3,2,2,4,3,2,1,3,4,1,1,4,1,4,1,1,3,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|VanLange|Huang|Miyamoto|Kay|Hauser|Ross.Slate1|Alter|Critcher|Bauer|Inbar|Rottenstrich|Anderson,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,13,Global,all,TRUE +1532,0.0778541300171667,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,3,5,5,2,1,4,3,1,3,4,1,1,5,4,1,1,4,1,5,1,1,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Rottenstrich|Ross.Slate1|Kay|Anderson|VanLange|Critcher|Hauser|Inbar|Huang|Alter|Bauer|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,5,Global,all,TRUE +1534,-0.541648175029504,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,1,1,1,1,1,4,3,1,4,1,1,1,1,1,1,1,3,1,5,1,1,3,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Alter|Hauser|Ross.Slate1|Bauer|Graham|VanLange|Anderson|Critcher|Inbar|Miyamoto|Rottenstrich|Kay,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,8,Global,all,TRUE +1536,-0.206983890593694,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,6,7,7,6,6,3,1,1,1,1,1,1,3,4,1,1,4,1,3,1,1,3,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Ross.Slate1|Inbar|VanLange|Kay|Huang|Critcher|Rottenstrich|Miyamoto|Alter|Graham|Anderson|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,12,Global,all,TRUE +1540,0.783956613643033,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,6,5,6,6,4,4,3,1,4,2,1,2,4,5,2,2,4,1,3,1,1,4,3,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Graham|Anderson|Ross.Slate1|Bauer|Miyamoto|Critcher|Inbar|Rottenstrich|Huang|VanLange|Alter|Kay,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,3,Global,all,TRUE +1548,0.454429133904124,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,5,6,7,5,3,3,2,1,3,1,1,1,1,1,1,1,1,1,4,1,1,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Hauser|Ross.Slate1|Kay|Rottenstrich|Bauer|Inbar|Anderson|Miyamoto|Huang|Alter|Graham|VanLange,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +1550,0.629074214154247,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,5,6,6,4,6,4,1,1,3,1,1,1,3,3,2,1,2,1,3,1,2,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Alter|Hauser|Graham|Anderson|Critcher|Miyamoto|Rottenstrich|Bauer|VanLange|Kay|Ross.Slate1|Inbar,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +1553,0.0275079060123849,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,5,5,5,4,5,3,2,1,2,2,1,1,3,3,2,1,3,1,3,2,2,2,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|VanLange|Hauser|Kay|Alter|Ross.Slate1|Critcher|Graham|Miyamoto|Anderson|Bauer|Inbar|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,10,Global,all,TRUE +1555,1.37380236382876,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,4,6,5,5,4,4,1,1,4,1,1,1,4,3,1,1,4,1,4,1,1,3,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Inbar|Alter|VanLange|Graham|Bauer|Hauser|Ross.Slate1|Critcher|Anderson|Miyamoto|Kay|Rottenstrich,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,10,Global,all,TRUE +1556,0.70026175317214,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,5,3,5,3,3,4,1,1,4,2,1,1,2,2,2,3,2,1,4,1,1,1,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Critcher|Anderson|VanLange|Graham|Bauer|Alter|Huang|Hauser|Ross.Slate1|Kay|Miyamoto|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,3,Global,all,TRUE +1561,0.369022747024463,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,6,7,6,7,5,4,1,1,4,1,1,1,1,3,1,1,2,1,4,1,1,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Graham|Miyamoto|Kay|Bauer|Rottenstrich|Ross.Slate1|VanLange|Critcher|Huang|Anderson|Inbar|Hauser,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing,11,Global,all,TRUE +1565,0.371661261815732,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,3,3,5,6,5,4,2,1,4,1,1,1,3,4,1,1,4,1,4,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Alter|Hauser|VanLange|Graham|Bauer|Inbar|Miyamoto|Anderson|Rottenstrich|Huang|Kay|Ross.Slate1,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,9,Global,all,TRUE +1567,0.088534767613638,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,5,6,6,3,3,4,3,3,1,3,2,1,3,3,2,1,2,3,1,1,5,3,5,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Alter|Hauser|Inbar|Bauer|Kay|VanLange|Anderson|Ross.Slate1|Miyamoto|Rottenstrich|Huang|Graham,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,8,Global,all,TRUE +1569,-0.105226454786593,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,2,2,2,2,3,3,1,1,2,1,1,1,1,3,1,1,1,1,3,2,1,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Bauer|VanLange|Kay|Rottenstrich|Alter|Graham|Critcher|Anderson|Huang|Ross.Slate1|Inbar|Hauser,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,9,Global,all,TRUE +1572,0.304963988883509,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,6,6,6,5,6,4,2,3,1,1,1,1,4,2,1,3,3,1,4,1,2,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Hauser|Miyamoto|Ross.Slate1|Kay|Alter|Critcher|Rottenstrich|Bauer|Inbar|Huang|Anderson|VanLange,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,12,Global,all,TRUE +1574,-0.726049129964198,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,4,6,6,5,4,4,1,1,2,1,2,1,2,1,1,1,4,1,3,1,1,3,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Graham|Alter|Rottenstrich|Critcher|Inbar|VanLange|Hauser|Huang|Anderson|Kay|Bauer|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,10,Global,all,TRUE +1576,0.10856425169201,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,5,7,6,5,3,3,1,1,3,1,1,1,1,3,1,1,1,1,3,1,1,1,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Critcher|Bauer|Kay|Ross.Slate1|Miyamoto|Huang|Rottenstrich|VanLange|Inbar|Anderson|Graham|Alter,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood,11,Global,all,TRUE +1578,-0.597271428616823,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,2,6,4,5,6,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Kay|Hauser|Critcher|Huang|Anderson|Miyamoto|Graham|VanLange|Alter|Inbar|Rottenstrich|Ross.Slate1,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,6,Global,all,TRUE +1580,0.186068740652102,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,4,6,6,6,7,3,2,1,4,1,1,1,3,4,1,1,4,1,5,1,1,3,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Miyamoto|Alter|Critcher|Huang|Hauser|Inbar|Anderson|Rottenstrich|Ross.Slate1|Kay|Bauer|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,8,Global,all,TRUE +1584,0.34911984137749,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,5,6,6,6,3,4,2,1,4,1,2,2,4,5,4,1,4,1,5,2,3,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Anderson|Graham|Bauer|VanLange|Ross.Slate1|Alter|Kay|Inbar|Hauser|Huang|Rottenstrich|Miyamoto,ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,2,Global,all,TRUE +1587,1.02767067829961,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,5,5,6,4,5,2,2,1,2,2,2,3,3,2,1,1,2,1,3,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Graham|Hauser|Miyamoto|Critcher|Alter|Inbar|Bauer|Anderson|Kay|Huang|Ross.Slate1|Rottenstrich,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +1589,0.272008734165831,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,4,6,5,5,4,4,1,1,3,1,1,1,4,1,1,1,4,1,4,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Ross.Slate1|Huang|Critcher|Graham|Anderson|Inbar|Miyamoto|Alter|Rottenstrich|VanLange|Kay|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,6,Global,all,TRUE +1590,-0.725782326647164,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,5,6,6,5,3,2,2,1,3,2,1,1,2,1,1,1,2,1,3,1,1,1,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Anderson|Kay|Alter|Ross.Slate1|Miyamoto|Rottenstrich|Graham|Bauer|Inbar|Hauser|VanLange|Huang,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,2,Global,all,TRUE +1593,0.0728439037516647,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,3,6,6,3,3,4,1,1,4,1,2,1,3,3,1,1,3,1,4,1,1,4,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Critcher|Graham|Ross.Slate1|Huang|Kay|VanLange|Bauer|Hauser|Anderson|Miyamoto|Alter|Inbar,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +1594,-0.492088714521588,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,6,5,6,5,4,5,1,1,3,2,1,2,2,3,4,1,5,1,4,1,1,2,5,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Anderson|Ross.Slate1|Bauer|Huang|Inbar|VanLange|Alter|Rottenstrich|Hauser|Critcher|Miyamoto|Graham,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,2,Global,all,TRUE +1597,-0.121043897079965,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,4,6,5,4,1,5,1,1,3,2,1,1,4,4,2,4,4,2,3,1,2,4,3,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Critcher|VanLange|Hauser|Huang|Alter|Graham|Miyamoto|Rottenstrich|Anderson|Kay|Ross.Slate1|Inbar,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +1603,0.546039538748821,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,4,6,6,6,2,3,4,1,4,4,2,2,5,5,2,1,3,2,3,3,2,4,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Rottenstrich|Hauser|Miyamoto|Graham|Bauer|Huang|Alter|Inbar|Anderson|Ross.Slate1|Critcher|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood,10,Global,all,TRUE +1604,0.61234342993261,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,6,5,5,6,2,3,2,3,4,1,1,3,2,1,1,2,3,4,5,1,2,2,2,1,4,,,,,,,,,,,,,,,,,,,,,,,,,,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Miyamoto|Critcher|Rottenstrich|Inbar|Hauser|Alter|Kay|Huang|Graham|VanLange|Bauer|Anderson,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,13,Global,all,TRUE +1607,0.484886098716169,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,5,6,6,5,5,4,4,1,2,3,1,1,3,3,2,1,3,1,4,1,2,3,5,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Rottenstrich|Anderson|VanLange|Hauser|Miyamoto|Ross.Slate1|Critcher|Kay|Inbar|Bauer|Graham|Alter,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,3,Global,all,TRUE +1608,0.645818644830121,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,3,2,5,6,6,2,4,2,3,1,1,1,2,3,1,1,3,1,4,1,1,2,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Hauser|Kay|Rottenstrich|Huang|Graham|Ross.Slate1|Inbar|VanLange|Miyamoto|Bauer|Anderson|Alter,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,12,Global,all,TRUE +1610,0.280177435402433,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,6,6,6,6,6,4,1,1,2,1,1,1,2,3,1,1,2,1,3,1,1,2,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Critcher|Miyamoto|Ross.Slate1|Anderson|Kay|Huang|Inbar|Bauer|Graham|Rottenstrich|VanLange|Hauser,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood,5,Global,all,TRUE +1611,0.526136633101848,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,3,3,4,5,2,3,2,2,2,1,1,3,1,1,1,1,2,1,3,1,3,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Graham|Alter|Kay|Huang|Bauer|Inbar|Anderson|Ross.Slate1|Hauser|Critcher|Rottenstrich|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,8,Global,all,TRUE +1612,0.23866009769972,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,5,5,6,4,5,4,2,1,4,4,1,1,3,4,2,1,4,1,4,1,1,5,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Huang|Critcher|Graham|Miyamoto|Inbar|VanLange|Ross.Slate1|Rottenstrich|Bauer|Hauser|Anderson|Kay,ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood,12,Global,all,TRUE +1613,-0.0103309965393965,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,4,4,6,4,2,5,1,1,4,3,1,1,4,4,2,1,4,1,5,1,1,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Ross.Slate1|Alter|Critcher|Bauer|VanLange|Inbar|Anderson|Graham|Rottenstrich|Kay|Miyamoto|Huang,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,8,Global,all,TRUE +1618,-0.774948405406647,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,5,7,7,6,5,2,1,1,1,2,2,1,1,1,1,1,2,1,2,2,2,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Critcher|Huang|Anderson|Alter|Hauser|Bauer|VanLange|Miyamoto|Kay|Rottenstrich|Graham|Inbar,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +1621,0.254604118424491,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,6,5,6,6,5,4,1,1,4,1,1,1,3,4,1,1,4,1,3,1,1,1,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Miyamoto|Hauser|Kay|Inbar|Anderson|Critcher|Rottenstrich|Graham|VanLange|Bauer|Huang|Alter,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,6,Global,all,TRUE +1622,0.764447089744493,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,2,2,2,1,2,3,3,4,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Miyamoto|Critcher|Kay|Anderson|Hauser|Inbar|Alter|VanLange|Ross.Slate1|Rottenstrich|Huang|Bauer,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing,5,Global,all,TRUE +1625,0.673496869965263,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,2,3,5,2,3,4,1,1,1,2,1,1,2,2,1,2,3,1,4,1,1,3,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Miyamoto|Huang|VanLange|Graham|Critcher|Inbar|Anderson|Bauer|Rottenstrich|Ross.Slate1|Alter|Hauser,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +1628,-0.237036052673669,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,6,6,7,6,6,3,1,1,3,2,1,1,3,4,1,1,3,1,2,1,1,3,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Hauser|Rottenstrich|Huang|Critcher|Ross.Slate1|Bauer|Miyamoto|VanLange|Alter|Inbar|Anderson|Graham,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,12,Global,all,TRUE +1632,0.54300764220912,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,6,6,7,6,6,1,2,1,3,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Critcher|Inbar|Anderson|Rottenstrich|Alter|Kay|Hauser|VanLange|Miyamoto|Huang|Bauer|Ross.Slate1,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood,4,Global,all,TRUE +1633,-0.747143601840106,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,6,6,6,4,3,5,1,1,3,1,1,1,3,1,1,1,1,1,4,1,1,1,3,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Kay|Miyamoto|Hauser|Ross.Slate1|Huang|VanLange|Critcher|Rottenstrich|Inbar|Graham|Bauer|Alter,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,1,Global,all,TRUE +1634,-0.16862502786208,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,6,6,6,6,6,3,1,1,4,1,1,1,2,1,1,1,1,1,4,1,1,1,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Alter|VanLange|Ross.Slate1|Huang|Graham|Critcher|Hauser|Bauer|Rottenstrich|Miyamoto|Inbar|Anderson,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,13,Global,all,TRUE +1638,0.448238762393323,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,6,7,6,5,6,4,2,1,4,1,1,1,2,2,1,1,1,1,4,1,2,2,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Rottenstrich|Hauser|Inbar|Alter|Critcher|Huang|Graham|Ross.Slate1|Kay|Miyamoto|Anderson|VanLange,ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,12,Global,all,TRUE +1640,-0.444900965487906,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,3,4,5,3,5,3,2,1,3,1,1,1,1,1,1,1,3,1,4,1,1,2,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoventab,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,In a classroom,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Huang|Inbar|Critcher|Kay|Hauser|Bauer|Ross.Slate1|Rottenstrich|Alter|Graham|Anderson|Miyamoto,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,12,Global,all,TRUE +1642,0.21902399536978,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoventab,5,6,7,6,6,3,3,1,4,1,1,1,1,2,1,1,2,1,3,1,4,2,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Kay|Huang|Bauer|Critcher|Inbar|Graham|Rottenstrich|Ross.Slate1|Alter|Anderson|VanLange|Miyamoto,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +1643,0.407774991504509,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,6,6,7,6,5,4,1,1,3,1,1,1,1,4,1,1,4,1,4,1,1,3,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Ross.Slate1|Graham|Inbar|Anderson|Critcher|Rottenstrich|Kay|Alter|VanLange|Huang|Hauser|Miyamoto,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,5,Global,all,TRUE +1644,0.6807522292736,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,5,5,5,4,4,1,1,1,2,1,1,1,1,1,1,1,2,1,3,1,1,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Huang|Hauser|Graham|Kay|VanLange|Critcher|Ross.Slate1|Miyamoto|Inbar|Rottenstrich|Bauer|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection,13,Global,all,TRUE +1645,0.548678053540089,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,3,4,5,3,1,3,1,1,3,2,2,1,2,3,4,1,4,1,3,1,3,1,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Hauser|Critcher|Huang|Ross.Slate1|Anderson|VanLange|Graham|Miyamoto|Inbar|Rottenstrich|Bauer|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,6,Global,all,TRUE +1647,0.216778862326945,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,3,2,6,4,2,5,3,1,4,4,1,1,4,5,1,1,3,1,4,1,1,5,4,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Ross.Slate1|Miyamoto|Critcher|VanLange|Rottenstrich|Hauser|Huang|Graham|Anderson|Bauer|Inbar|Alter,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,10,Global,all,TRUE +1648,0.473812079371265,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,2,2,4,1,1,1,4,4,1,2,3,4,1,3,3,1,1,1,1,1,2,2,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Critcher|Bauer|Inbar|VanLange|Miyamoto|Ross.Slate1|Hauser|Kay|Huang|Graham|Alter|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing,13,Global,all,TRUE +1656,0.93632707677195,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,5,6,7,3,3,4,1,1,4,2,1,1,4,4,1,1,4,1,4,1,1,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Rottenstrich|Huang|Hauser|Critcher|Ross.Slate1|Miyamoto|Graham|Inbar|Kay|VanLange|Bauer|Alter,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,1,Global,all,TRUE +1658,0.16603925657373,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,5,5,5,6,3,4,1,1,3,1,1,1,2,3,1,1,3,1,4,1,1,4,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Anderson|Huang|Rottenstrich|Miyamoto|Alter|Kay|VanLange|Graham|Bauer|Hauser|Ross.Slate1|Critcher,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,2,Global,all,TRUE +1659,-0.161116511690945,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,6,2,6,6,6,3,1,1,3,1,2,1,2,3,1,3,4,2,4,1,1,2,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|VanLange|Ross.Slate1|Kay|Hauser|Bauer|Inbar|Critcher|Graham|Huang|Alter|Rottenstrich|Anderson,ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,13,Global,all,TRUE +1660,0.294016547970004,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,6,6,6,6,5,4,1,1,5,1,1,1,4,4,2,1,4,1,5,1,2,4,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Bauer|Inbar|VanLange|Kay|Anderson|Huang|Rottenstrich|Hauser|Miyamoto|Graham|Ross.Slate1|Alter,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,6,Global,all,TRUE +1663,-0.340111633141105,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,3,5,5,5,3,3,1,1,3,1,1,1,1,2,1,1,1,1,4,1,1,2,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Anderson|Hauser|Rottenstrich|Ross.Slate1|VanLange|Kay|Critcher|Inbar|Miyamoto|Bauer|Huang|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,2,Global,all,TRUE +1664,-0.340111633141105,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,5,5,6,4,6,3,4,1,2,2,1,1,1,4,1,1,4,2,2,1,1,3,2,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Rottenstrich|Inbar|Alter|Huang|Miyamoto|Anderson|Graham|Bauer|Kay|Critcher|Ross.Slate1|VanLange,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,7,Global,all,TRUE +1665,0.100522128886807,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,6,6,5,5,6,5,2,3,1,2,1,3,3,4,1,1,4,1,5,1,1,5,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Miyamoto|Graham|Hauser|Critcher|Huang|Ross.Slate1|Alter|VanLange|Bauer|Inbar|Rottenstrich|Kay,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,1,Global,all,TRUE +1671,-0.218057909938598,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,5,5,6,3,3,4,3,1,3,2,1,1,3,2,2,1,1,1,4,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Inbar|Huang|Critcher|Miyamoto|VanLange|Graham|Bauer|Ross.Slate1|Kay|Rottenstrich|Anderson|Alter,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,12,Global,all,TRUE +1672,0.631586150514117,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,6,6,7,6,5,4,1,1,3,1,1,1,1,2,1,1,3,1,4,1,2,2,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Inbar|Graham|Ross.Slate1|Hauser|Miyamoto|Critcher|Alter|Huang|VanLange|Bauer|Kay|Rottenstrich,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,1,Global,all,TRUE +1673,0.80319933422454,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,6,7,7,6,5,2,2,1,2,1,1,1,3,5,1,1,3,1,2,1,1,1,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Rottenstrich|Alter|Huang|Critcher|Hauser|Anderson|Miyamoto|Kay|VanLange|Graham|Ross.Slate1|Inbar,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +1674,0.302592277409275,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,6,5,6,6,5,4,1,1,4,3,1,1,3,3,1,1,3,1,4,1,1,4,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Critcher|Inbar|Ross.Slate1|Miyamoto|Huang|Graham|Anderson|Rottenstrich|VanLange|Hauser|Alter|Bauer,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,8,Global,all,TRUE +1675,0.0750890367944998,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,5,5,5,4,3,3,1,1,3,1,1,1,3,2,1,1,3,1,3,1,2,2,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Huang|Anderson|Critcher|Rottenstrich|Miyamoto|Bauer|Hauser|Inbar|Ross.Slate1|VanLange|Kay|Graham,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood,3,Global,all,TRUE +1683,0.50398859441204,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,2,5,5,3,3,4,1,1,4,1,1,1,3,3,1,1,2,1,4,1,3,3,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Inbar|VanLange|Kay|Alter|Huang|Hauser|Ross.Slate1|Bauer|Rottenstrich|Anderson|Miyamoto|Critcher,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,11,Global,all,TRUE +1685,-0.342356766183939,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,6,6,6,4,6,4,1,1,4,1,1,1,3,1,1,1,3,1,3,1,1,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Huang|Ross.Slate1|Hauser|Graham|Rottenstrich|Kay|Anderson|VanLange|Miyamoto|Inbar|Bauer|Alter,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood,8,Global,all,TRUE +1687,-0.0573785206874438,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,5,5,5,5,6,3,1,1,3,1,1,1,2,3,1,1,2,1,3,1,2,3,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Alter|Anderson|Rottenstrich|Critcher|Inbar|Huang|Miyamoto|Hauser|Kay|Graham|Ross.Slate1|VanLange,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +1692,-1.06479665228301,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,5,6,6,5,3,4,3,1,3,1,3,1,3,3,3,1,3,3,4,1,1,3,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Ross.Slate1|Alter|Hauser|Rottenstrich|Miyamoto|Anderson|Bauer|Critcher|VanLange|Inbar|Graham|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing,7,Global,all,TRUE +1694,-0.755045499759675,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,6,3,6,6,2,4,4,1,4,1,4,2,2,1,3,4,1,1,4,1,2,1,4,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Graham|Kay|Hauser|Anderson|Huang|Inbar|Critcher|Alter|Rottenstrich|Miyamoto|VanLange|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,5,Global,all,TRUE +1695,0.947007714368421,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,6,6,7,6,6,4,1,1,3,3,1,1,2,4,1,1,4,1,4,1,1,3,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Ross.Slate1|Alter|Critcher|Graham|Miyamoto|Hauser|Rottenstrich|Huang|VanLange|Kay|Inbar|Bauer,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,1,Global,all,TRUE +1696,-0.412872699152729,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,5,5,6,5,6,4,1,1,3,1,1,1,2,3,1,1,4,1,4,1,2,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Ross.Slate1|Graham|Kay|Hauser|Anderson|Bauer|Inbar|Huang|Alter|Miyamoto|Rottenstrich|Critcher,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,6,Global,all,TRUE +1697,0.487777770370235,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,6,5,6,5,5,2,1,1,1,1,1,1,1,1,1,1,2,1,2,1,4,1,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Hauser|Rottenstrich|Inbar|Bauer|Graham|VanLange|Critcher|Alter|Anderson|Ross.Slate1|Miyamoto|Huang,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,10,Global,all,TRUE +1698,-0.135543194713003,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,2,5,6,4,1,5,1,1,5,3,1,1,4,4,1,1,4,1,5,1,2,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Critcher|Hauser|Huang|Ross.Slate1|VanLange|Anderson|Kay|Miyamoto|Rottenstrich|Bauer|Inbar|Graham,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,7,Global,all,TRUE +1700,0.114361241454378,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,7,7,7,7,7,3,1,1,4,2,1,1,4,4,3,1,4,1,3,1,2,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Ross.Slate1|Alter|Anderson|Bauer|VanLange|Critcher|Kay|Inbar|Rottenstrich|Hauser|Huang|Miyamoto,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,4,Global,all,TRUE +1702,0.332501989133016,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,6,6,6,6,6,3,1,1,3,1,1,1,2,3,2,1,1,1,4,1,1,2,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Ross.Slate1|Inbar|Anderson|Huang|Hauser|Miyamoto|VanLange|Bauer|Critcher|Kay|Rottenstrich|Graham,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +1704,0.565549062647361,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,7,7,7,6,7,4,3,1,4,1,1,2,2,3,1,1,2,1,4,1,1,3,3,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Bauer|Miyamoto|Kay|Graham|Inbar|Rottenstrich|Ross.Slate1|Alter|Critcher|Huang|VanLange|Hauser,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,1,Global,all,TRUE +1706,0.66229627218896,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,5,6,6,6,3,4,2,1,4,1,1,1,2,3,1,1,4,1,4,1,2,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Inbar|Huang|Graham|Rottenstrich|Anderson|Ross.Slate1|VanLange|Miyamoto|Bauer|Kay|Alter|Hauser,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,6,Global,all,TRUE +1707,0.426750908768982,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,7,7,7,7,4,3,1,1,3,1,1,1,1,5,1,1,3,1,3,1,1,2,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|VanLange|Graham|Critcher|Hauser|Huang|Rottenstrich|Kay|Inbar|Ross.Slate1|Anderson|Bauer|Miyamoto,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,11,Global,all,TRUE +1709,0.529561911389982,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,4,5,5,3,3,2,2,1,1,1,1,1,1,3,1,1,1,2,1,1,1,2,2,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Kay|Huang|Miyamoto|Rottenstrich|Bauer|Alter|Inbar|Anderson|Ross.Slate1|Hauser|Graham|Critcher,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,9,Global,all,TRUE +1711,0.116732952928612,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,5,5,6,3,5,3,1,2,2,4,1,1,2,1,1,1,1,1,2,2,2,3,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Kay|Huang|Miyamoto|Inbar|Bauer|Hauser|Graham|Ross.Slate1|Critcher|Alter|Anderson|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five,12,Global,all,TRUE +1714,0.287826176459203,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,5,6,6,5,3,5,1,1,4,4,1,1,4,4,3,1,4,1,4,1,2,3,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoventab,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,In a classroom,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Anderson|Ross.Slate1|Graham|Miyamoto|Hauser|Huang|VanLange|Kay|Bauer|Rottenstrich|Critcher|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,2,Global,all,TRUE +1715,0.56462207426486,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,6,5,7,6,7,4,1,1,4,3,1,2,2,2,1,1,3,1,4,1,1,4,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Graham|Inbar|Critcher|Alter|Hauser|Rottenstrich|Kay|VanLange|Huang|Bauer|Miyamoto|Ross.Slate1,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,1,Global,all,TRUE +1716,-1.15614025381067,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,5,4,6,6,6,4,1,1,4,4,1,1,3,4,1,1,4,1,4,1,1,4,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Miyamoto|Kay|Ross.Slate1|Anderson|VanLange|Huang|Graham|Bauer|Critcher|Alter|Rottenstrich|Hauser,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,5,Global,all,TRUE +1717,1.09133605469213,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,5,5,6,4,2,3,3,1,4,1,1,1,1,3,3,1,3,1,4,1,2,3,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Hauser|Huang|Kay|Graham|Critcher|VanLange|Bauer|Alter|Anderson|Ross.Slate1|Inbar|Miyamoto,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,10,Global,all,TRUE +1718,0.590195391242802,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,5,6,6,4,5,4,1,1,4,4,1,1,4,4,2,2,4,1,3,1,1,4,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Ross.Slate1|Hauser|Graham|Anderson|Kay|Huang|Alter|Critcher|Bauer|Miyamoto|Inbar|VanLange,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,5,Global,all,TRUE +1725,0.866204525551594,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,5,3,7,6,4,4,2,1,1,2,1,2,4,2,2,1,3,1,4,2,1,3,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Huang|Inbar|Anderson|Rottenstrich|Miyamoto|VanLange|Alter|Bauer|Graham|Kay|Critcher|Ross.Slate1,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,4,Global,all,TRUE +1726,0.651222252844056,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,5,6,7,6,2,4,1,1,4,4,1,1,4,4,1,1,4,1,4,1,1,5,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Anderson|Rottenstrich|Huang|Critcher|Kay|Alter|Graham|Hauser|Ross.Slate1|Inbar|Bauer|Miyamoto,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,2,Global,all,TRUE +1728,-0.0710910548236159,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,6,6,6,6,7,4,3,1,3,3,1,1,3,4,1,1,4,1,3,1,2,4,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Ross.Slate1|Rottenstrich|Kay|Inbar|Graham|Bauer|Anderson|Alter|Hauser|VanLange|Huang|Critcher,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +1729,0.0191989798901478,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,5,5,6,4,4,4,2,1,2,2,2,1,3,4,2,1,3,1,3,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Alter|Bauer|Hauser|Miyamoto|Critcher|VanLange|Huang|Rottenstrich|Anderson|Kay|Graham|Ross.Slate1,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,10,Global,all,TRUE +1731,0.546039538748821,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,6,6,7,6,3,4,1,1,3,1,1,1,3,3,1,1,3,1,3,1,1,3,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Graham|Critcher|Ross.Slate1|Hauser|Anderson|Bauer|Miyamoto|Inbar|Kay|Huang|Alter|VanLange,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +1732,0.238266715951287,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,5,7,6,5,3,2,1,1,3,1,1,1,2,3,1,1,1,1,3,1,1,2,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Hauser|Anderson|Kay|Inbar|Alter|Critcher|VanLange|Graham|Miyamoto|Huang|Bauer|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing,3,Global,all,TRUE +1737,-0.132511298173302,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,5,5,5,6,6,3,4,3,3,1,1,1,4,3,1,1,3,1,3,4,1,1,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Graham|Kay|VanLange|Huang|Rottenstrich|Ross.Slate1|Alter|Anderson|Inbar|Miyamoto|Bauer|Critcher,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,9,Global,all,TRUE +1738,1.12744978438091,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,5,6,6,5,5,4,3,1,4,4,2,1,3,4,3,1,3,2,4,1,2,4,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Inbar|Huang|Graham|Rottenstrich|Critcher|Bauer|VanLange|Hauser|Miyamoto|Ross.Slate1|Anderson|Alter,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,12,Global,all,TRUE +1739,0.841951578704586,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,5,6,6,3,4,2,2,1,2,2,1,1,2,3,1,1,2,1,2,1,1,3,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Rottenstrich|VanLange|Ross.Slate1|Bauer|Anderson|Alter|Graham|Critcher|Inbar|Kay|Miyamoto|Huang,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +1740,-0.201706861011158,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,6,4,6,5,3,3,3,1,3,1,1,2,2,2,2,1,3,1,3,2,2,3,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Ross.Slate1|Bauer|Alter|VanLange|Huang|Critcher|Graham|Inbar|Anderson|Hauser|Miyamoto|Kay,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE,10,Global,all,TRUE +1741,0.149828432531925,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,3,2,2,3,2,4,5,1,4,1,4,1,3,2,4,2,2,2,4,1,4,1,2,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Rottenstrich|Kay|Miyamoto|Inbar|Anderson|VanLange|Bauer|Critcher|Graham|Alter|Ross.Slate1|Huang,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +1743,0.546039538748821,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,5,6,5,4,3,2,1,1,4,1,1,1,1,1,4,1,2,1,4,1,1,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Rottenstrich|Miyamoto|Hauser|Alter|Critcher|Graham|Huang|Anderson|Inbar|Bauer|VanLange|Kay,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,9,Global,all,TRUE +1744,1.0798686535988,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,4,6,6,5,4,4,3,1,4,4,3,2,4,3,3,2,5,2,4,3,5,4,5,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Ross.Slate1|Rottenstrich|Graham|Miyamoto|VanLange|Anderson|Critcher|Inbar|Hauser|Bauer|Kay|Alter,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,7,Global,all,TRUE +1745,0.748236265702688,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,5,5,6,5,2,5,1,1,4,1,1,1,4,5,1,1,1,1,4,1,1,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Huang|Alter|Critcher|Bauer|Kay|Miyamoto|Rottenstrich|VanLange|Ross.Slate1|Anderson|Inbar|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,11,Global,all,TRUE +1746,1.15236291629339,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,3,6,6,5,5,4,4,1,4,3,2,3,4,5,3,2,4,3,4,3,2,5,4,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Kay|Ross.Slate1|Inbar|Miyamoto|Anderson|Bauer|Huang|Rottenstrich|Alter|Hauser|VanLange|Critcher,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE,6,Global,all,TRUE +1752,0.390637179080203,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,3,3,5,3,2,4,2,1,4,2,1,1,2,3,2,1,3,1,5,1,1,2,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Bauer|Critcher|Graham|Anderson|Miyamoto|Rottenstrich|Kay|Ross.Slate1|Huang|VanLange|Inbar|Hauser,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,5,Global,all,TRUE +1757,0.523764921627614,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,5,7,6,6,6,4,2,1,4,1,1,1,3,1,1,1,3,1,4,1,1,3,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|VanLange|Bauer|Graham|Hauser|Huang|Ross.Slate1|Inbar|Critcher|Anderson|Miyamoto|Alter|Kay,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE,10,Global,all,TRUE +1758,-0.444900965487906,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,5,5,5,1,2,4,2,1,4,4,1,1,3,4,1,1,4,1,3,1,3,3,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Inbar|Huang|Hauser|Anderson|Rottenstrich|VanLange|Alter|Miyamoto|Ross.Slate1|Bauer|Graham|Kay,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,5,Global,all,TRUE +1761,0.398679301885407,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,3,5,6,2,2,3,3,2,4,1,2,2,4,4,2,3,4,1,3,4,4,3,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Bauer|Rottenstrich|Miyamoto|Anderson|Ross.Slate1|Graham|Alter|Inbar|VanLange|Huang|Critcher|Kay,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +1762,0.623544027708914,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,5,7,6,7,6,4,2,1,3,3,1,2,2,4,2,1,4,1,3,1,1,3,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Rottenstrich|Graham|Critcher|VanLange|Inbar|Alter|Kay|Hauser|Miyamoto|Ross.Slate1|Anderson|Huang,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood,12,Global,all,TRUE +1763,-0.38307591940615,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,3,3,3,2,1,5,3,1,3,3,2,2,4,2,1,1,3,4,4,2,1,3,3,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Huang|Miyamoto|Alter|Bauer|Inbar|Anderson|VanLange|Ross.Slate1|Critcher|Hauser|Graham|Kay,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +1767,0.786328325117268,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,5,6,6,5,5,2,1,1,2,1,1,1,1,1,1,1,2,1,2,1,1,3,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Inbar|Kay|Alter|Huang|Graham|Bauer|VanLange|Hauser|Ross.Slate1|Rottenstrich|Critcher|Miyamoto,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +1768,-0.558519184136777,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,5,7,6,2,5,3,2,2,4,3,2,2,2,4,2,3,4,2,3,3,4,3,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoventab,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,In a classroom,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|VanLange|Hauser|Huang|Bauer|Inbar|Rottenstrich|Ross.Slate1|Alter|Miyamoto|Graham|Anderson|Kay,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,12,Global,all,TRUE +1770,-0.518842176744829,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,7,7,6,5,5,5,5,1,3,3,1,2,3,4,3,1,4,2,5,2,4,5,4,5,4,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Anderson|Alter|Ross.Slate1|Huang|Hauser|Inbar|Bauer|Critcher|Miyamoto|Kay|Rottenstrich|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,2,Global,all,TRUE +1771,0.22679931485795,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,5,6,5,3,3,1,3,1,1,1,1,1,1,1,2,1,1,1,4,1,1,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Inbar|Alter|Miyamoto|Anderson|Critcher|Ross.Slate1|Graham|Bauer|VanLange|Kay|Huang|Hauser,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,5,Global,all,TRUE +1774,-0.241652897190738,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,5,6,7,4,6,2,3,1,2,1,1,1,3,3,1,1,4,1,3,1,4,2,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|VanLange|Huang|Alter|Anderson|Kay|Graham|Rottenstrich|Bauer|Ross.Slate1|Miyamoto|Critcher|Hauser,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,5,Global,all,TRUE +1776,0.991556948610835,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,6,7,6,2,5,3,1,1,1,2,1,1,2,4,1,1,4,1,3,1,2,2,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoventab,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,In a classroom,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Critcher|Kay|Inbar|Anderson|Graham|VanLange|Miyamoto|Hauser|Rottenstrich|Alter|Huang|Ross.Slate1,ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,5,Global,all,TRUE +1778,-0.00189549198576056,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,4,5,5,5,4,4,3,4,5,4,3,3,2,4,3,4,4,1,4,3,4,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoventab,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,In a classroom,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Bauer|Ross.Slate1|VanLange|Critcher|Huang|Rottenstrich|Kay|Hauser|Anderson|Miyamoto|Alter|Graham,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,10,Global,all,TRUE +1779,0.108831055009044,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,7,7,7,7,1,5,2,1,5,5,2,1,5,5,1,1,5,1,5,1,2,5,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoventab,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,In a classroom,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Alter|VanLange|Bauer|Kay|Critcher|Anderson|Hauser|Graham|Huang|Rottenstrich|Inbar|Ross.Slate1,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,7,Global,all,TRUE +1781,0.349639801557322,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,5,3,7,6,2,3,4,2,3,1,1,1,2,3,1,1,3,1,3,1,1,2,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Ross.Slate1|Bauer|Graham|Anderson|VanLange|Huang|Kay|Hauser|Rottenstrich|Inbar|Miyamoto|Alter,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +1782,0.266605126151896,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,5,6,7,7,4,3,3,1,4,1,1,1,3,2,1,1,4,1,4,1,1,3,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Graham|Critcher|Anderson|Inbar|Miyamoto|Hauser|Kay|Ross.Slate1|Huang|Alter|Rottenstrich|Bauer,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +1783,0.186068740652102,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,5,5,5,3,6,3,1,1,2,1,1,1,1,2,2,2,2,1,4,1,1,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Critcher|Rottenstrich|Alter|Kay|Anderson|Bauer|Ross.Slate1|VanLange|Graham|Hauser|Inbar|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,6,Global,all,TRUE +1790,-0.354610930774142,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,6,6,7,6,6,3,1,1,3,1,1,1,1,4,1,1,1,1,3,1,1,2,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Inbar|Miyamoto|Hauser|Alter|Rottenstrich|Bauer|Huang|Ross.Slate1|Anderson|Graham|Kay|Critcher,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,10,Global,all,TRUE +1791,0.19186573041447,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,4,4,6,5,6,2,2,1,3,1,1,1,1,2,1,1,2,1,4,1,1,1,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Graham|Alter|Bauer|Critcher|Ross.Slate1|Miyamoto|Inbar|VanLange|Rottenstrich|Hauser|Anderson|Kay,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,12,Global,all,TRUE +1797,0.645818644830121,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,6,6,6,5,6,3,2,1,3,3,2,1,2,4,1,1,4,1,3,1,1,4,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Kay|Ross.Slate1|Miyamoto|Bauer|Graham|Huang|VanLange|Inbar|Anderson|Critcher|Hauser|Rottenstrich,ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing,10,Global,all,TRUE +1801,-0.95210542201664,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,6,7,7,7,5,4,1,1,4,3,1,1,3,4,1,3,2,1,4,1,1,4,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoventab,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,In a classroom,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Kay|Critcher|Ross.Slate1|Anderson|Inbar|Hauser|Alter|Miyamoto|Graham|VanLange|Huang|Rottenstrich,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,5,Global,all,TRUE +1803,1.05495552168632,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,5,6,6,5,5,4,3,1,4,3,1,1,4,4,2,1,4,1,4,1,1,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoventab,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,In a classroom,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Miyamoto|Anderson|Alter|Graham|Ross.Slate1|Huang|Hauser|VanLange|Kay|Critcher|Rottenstrich|Inbar,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,3,Global,all,TRUE +1804,-0.840327533678535,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,7,7,7,6,7,4,1,1,3,3,1,1,4,4,1,1,4,1,4,1,2,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoventab,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,In a classroom,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Inbar|Ross.Slate1|Miyamoto|Rottenstrich|Critcher|Huang|Bauer|Graham|Kay|Alter|VanLange|Anderson,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE,13,Global,all,TRUE +1807,0.830484177611249,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,6,6,6,6,6,2,1,1,3,1,1,1,1,1,1,1,1,1,4,1,1,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoventab,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,In a classroom,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Huang|VanLange|Kay|Inbar|Miyamoto|Ross.Slate1|Rottenstrich|Bauer|Anderson|Hauser|Critcher|Graham,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +1812,0.122009982511148,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,4,5,5,5,5,3,3,2,3,1,1,3,1,2,1,2,3,4,3,1,1,3,1,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoventab,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,In a classroom,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Hauser|VanLange|Inbar|Rottenstrich|Miyamoto|Alter|Critcher|Huang|Bauer|Graham|Kay|Ross.Slate1,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,1,Global,all,TRUE +1813,0.532073847749851,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoventab,6,6,6,6,5,4,4,2,4,1,1,1,4,1,2,5,4,4,4,2,3,3,4,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoventab,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,In a classroom,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Hauser|Inbar|Graham|Miyamoto|Anderson|Kay|Critcher|Alter|Ross.Slate1|Huang|VanLange|Rottenstrich,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,6,Global,all,TRUE +1814,-0.190112881486422,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,2,4,5,3,2,4,2,1,4,1,1,1,2,3,1,1,3,1,4,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Inbar|Rottenstrich|Critcher|Graham|Hauser|Miyamoto|Anderson|VanLange|Ross.Slate1|Bauer|Alter|Kay,ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood,8,Global,all,TRUE +1816,0.6818057960875,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,5,6,6,5,2,4,3,1,4,1,1,1,1,3,1,1,4,1,4,3,3,1,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Critcher|Ross.Slate1|Graham|Kay|Anderson|Bauer|Inbar|Alter|Miyamoto|Rottenstrich|VanLange|Hauser,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,6,Global,all,TRUE +1817,1.0941011479148,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,5,6,6,4,1,3,3,1,4,2,1,1,3,3,2,1,3,1,3,1,2,3,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Kay|Alter|VanLange|Huang|Miyamoto|Rottenstrich|Anderson|Ross.Slate1|Inbar|Critcher|Graham|Bauer,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood,8,Global,all,TRUE +1818,-0.796424838047352,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,6,7,6,7,5,5,2,1,3,5,1,2,5,5,3,3,4,1,3,2,4,5,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Hauser|Huang|Inbar|Rottenstrich|Graham|Kay|Bauer|Miyamoto|Critcher|Ross.Slate1|Anderson|Alter,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +1819,0.0505692866304577,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,5,6,6,6,6,4,2,1,4,2,1,1,3,1,2,1,5,1,3,1,2,3,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Huang|Critcher|Anderson|Alter|Bauer|Inbar|VanLange|Hauser|Graham|Rottenstrich|Ross.Slate1|Miyamoto,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,4,Global,all,TRUE +1823,0.0919600459017718,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,6,6,6,6,5,4,4,1,4,3,2,1,4,3,2,1,3,2,4,1,1,4,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Anderson|Miyamoto|Rottenstrich|Ross.Slate1|Alter|VanLange|Hauser|Graham|Huang|Kay|Inbar|Critcher,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,2,Global,all,TRUE +1827,0.534572137655484,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,6,7,7,6,6,4,1,1,3,4,1,1,4,4,3,1,4,1,4,1,3,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoventab,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,In a classroom,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Anderson|VanLange|Hauser|Bauer|Critcher|Inbar|Rottenstrich|Huang|Miyamoto|Graham|Kay|Ross.Slate1,ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,2,Global,all,TRUE +1829,0.484745873830534,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,6,5,6,6,4,4,1,1,4,1,1,1,4,3,1,1,4,1,4,1,2,4,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoventab,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,In a classroom,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Alter|Miyamoto|Rottenstrich|Hauser|Kay|Critcher|Bauer|Huang|Ross.Slate1|VanLange|Anderson|Graham,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,12,Global,all,TRUE +1830,0.333035595767084,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,2,2,3,3,4,3,3,3,3,1,1,3,1,2,2,1,2,2,3,2,2,2,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoventab,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,In a classroom,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Anderson|Kay|Miyamoto|Hauser|Alter|Rottenstrich|Bauer|VanLange|Ross.Slate1|Graham|Inbar|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood,2,Global,all,TRUE +1832,0.459312781738227,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,4,6,6,6,3,3,2,2,4,2,2,2,3,3,2,2,3,2,3,2,2,3,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoventab,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,In a classroom,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Kay|Hauser|Ross.Slate1|Miyamoto|Critcher|Anderson|Inbar|Graham|Rottenstrich|Huang|Bauer|Alter,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood,7,Global,all,TRUE +1833,0.119638271036914,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,7,6,6,7,7,4,1,1,4,2,1,1,3,3,1,1,2,1,3,1,1,2,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoventab,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,In a classroom,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Inbar|Huang|Rottenstrich|Kay|Hauser|Anderson|Ross.Slate1|Bauer|Alter|Graham|Miyamoto|Critcher,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing,7,Global,all,TRUE +1836,0.178026617846899,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,6,7,6,5,4,4,2,1,2,3,3,1,4,4,3,3,4,1,4,1,2,4,4,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Ross.Slate1|Inbar|Rottenstrich|VanLange|Critcher|Anderson|Huang|Graham|Alter|Miyamoto|Bauer|Kay,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +1837,0.210588490816144,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,6,7,7,5,6,4,2,1,4,2,2,1,4,4,1,1,4,1,4,2,2,3,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Ross.Slate1|Graham|Bauer|Anderson|Critcher|Hauser|Alter|Rottenstrich|Kay|Inbar|Huang|VanLange,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,5,Global,all,TRUE +1840,0.293623166221571,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,5,7,7,6,6,4,2,1,3,2,1,1,3,3,2,2,2,1,5,2,4,2,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Huang|Bauer|Anderson|Graham|Kay|Miyamoto|VanLange|Rottenstrich|Ross.Slate1|Inbar|Hauser|Alter,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,4,Global,all,TRUE +1849,0.772489212549696,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,7,6,7,6,7,4,1,1,3,2,1,1,4,3,1,1,3,1,5,1,1,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoventab,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,In a classroom,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Huang|Miyamoto|Graham|Kay|Anderson|Hauser|Rottenstrich|Alter|Inbar|VanLange|Critcher|Ross.Slate1,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,6,Global,all,TRUE +1852,0.615108523155277,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,2,2,1,2,3,2,4,4,4,2,4,3,2,1,4,4,2,4,2,1,4,1,2,1,4,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoventab,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,In a classroom,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Kay|Critcher|Inbar|Huang|Ross.Slate1|VanLange|Alter|Hauser|Rottenstrich|Bauer|Graham|Miyamoto,ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +1855,0.101840273547141,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoventab,6,6,6,6,5,4,2,1,4,1,1,1,3,4,1,1,4,1,4,1,1,2,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoventab,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,In a classroom,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Ross.Slate1|Critcher|Huang|Alter|VanLange|Anderson|Rottenstrich|Graham|Bauer|Kay|Inbar|Hauser,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,7,Global,all,TRUE +1856,0.650828871095623,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,6,6,6,6,6,4,2,2,4,3,2,2,3,3,2,2,4,2,3,2,2,4,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Inbar|Miyamoto|VanLange|Kay|Anderson|Graham|Alter|Rottenstrich|Hauser|Critcher|Huang|Bauer,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood,6,Global,all,TRUE +1857,0.891777842529536,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,7,7,7,7,6,5,1,1,1,4,1,1,2,4,1,1,2,1,4,1,2,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Graham|Huang|Kay|Inbar|Miyamoto|Anderson|Critcher|Alter|Bauer|VanLange|Rottenstrich|Hauser,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,7,Global,all,TRUE +1858,0.277018960431333,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,6,6,6,6,6,2,1,1,2,1,1,1,1,1,1,1,1,1,3,1,1,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoventab,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,In a classroom,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Graham|Kay|Rottenstrich|Bauer|Anderson|Critcher|Hauser|Inbar|VanLange|Ross.Slate1|Huang|Miyamoto,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,6,Global,all,TRUE +1859,-0.0418278817111058,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,2,5,5,2,2,4,2,1,4,2,1,1,2,4,1,4,2,1,4,2,2,3,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Rottenstrich|Critcher|Ross.Slate1|Kay|Anderson|VanLange|Bauer|Alter|Graham|Miyamoto|Hauser|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,6,Global,all,TRUE +1860,0.321834997990781,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,3,5,5,5,2,4,3,1,4,1,1,1,1,2,1,1,3,1,4,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|VanLange|Ross.Slate1|Alter|Hauser|Bauer|Kay|Graham|Anderson|Miyamoto|Rottenstrich|Inbar|Huang,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,9,Global,all,TRUE +1863,0.456280885198526,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,5,5,5,5,4,2,4,4,1,1,1,1,1,3,1,4,2,1,2,1,4,1,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Kay|Huang|Critcher|Ross.Slate1|Miyamoto|Hauser|Anderson|Alter|Graham|Bauer|Rottenstrich|VanLange,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing,8,Global,all,TRUE +1865,1.19348687224767,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,2,5,6,5,3,2,5,5,2,1,1,5,1,3,3,1,2,5,2,1,5,1,5,3,5,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Anderson|Ross.Slate1|Bauer|Graham|Rottenstrich|VanLange|Inbar|Alter|Critcher|Kay|Hauser|Huang,ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,2,Global,all,TRUE +1867,0.783956613643033,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,2,6,7,2,5,3,4,1,3,2,1,1,2,3,2,3,3,1,2,1,2,2,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Anderson|Hauser|Huang|Bauer|Critcher|Inbar|Alter|Rottenstrich|Graham|Kay|VanLange|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,2,Global,all,TRUE +1868,-0.215292816715931,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,5,6,5,5,3,4,4,1,5,3,1,2,2,3,2,1,4,2,4,2,3,3,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Hauser|Alter|Bauer|Huang|Inbar|Anderson|Ross.Slate1|VanLange|Critcher|Kay|Miyamoto|Rottenstrich,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,7,Global,all,TRUE +1869,0.424379197294748,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,6,5,6,5,6,3,2,2,3,1,1,1,3,2,1,2,4,1,1,2,4,3,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Kay|Graham|VanLange|Miyamoto|Alter|Inbar|Rottenstrich|Bauer|Ross.Slate1|Critcher|Anderson|Huang,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,12,Global,all,TRUE +1871,0.13888099161842,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoventab,7,7,7,5,5,4,1,1,4,1,1,1,4,2,1,1,3,1,4,2,1,4,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoventab,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,In a classroom,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Anderson|Inbar|VanLange|Huang|Kay|Rottenstrich|Bauer|Graham|Miyamoto|Ross.Slate1|Alter|Hauser,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,2,Global,all,TRUE +1873,0.269243640943164,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,3,2,4,5,3,3,4,1,3,2,3,2,1,2,2,1,2,1,2,1,1,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Hauser|Miyamoto|Ross.Slate1|VanLange|Graham|Critcher|Huang|Anderson|Rottenstrich|Kay|Inbar|Bauer,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,9,Global,all,TRUE +1874,0.384966767749234,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,5,5,5,6,3,3,2,1,2,1,1,1,3,3,1,1,4,2,1,1,1,3,3,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Inbar|Graham|Rottenstrich|Miyamoto|Hauser|VanLange|Kay|Bauer|Critcher|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing,3,Global,all,TRUE +1875,0.202813171327976,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,6,6,6,6,6,2,1,1,1,1,1,1,1,3,2,1,3,1,3,1,1,2,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|VanLange|Huang|Critcher|Inbar|Rottenstrich|Miyamoto|Bauer|Graham|Ross.Slate1|Anderson|Hauser|Alter,ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE,11,Global,all,TRUE +1877,0.839313063913317,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,6,6,7,6,6,3,1,1,4,2,1,1,1,4,2,1,4,1,4,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|VanLange|Miyamoto|Kay|Anderson|Huang|Alter|Graham|Rottenstrich|Hauser|Ross.Slate1|Critcher|Bauer,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,5,Global,all,TRUE +1882,0.521126406836346,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,6,7,6,5,6,5,2,1,5,4,1,1,4,4,1,1,3,1,5,1,2,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Huang|Critcher|Alter|Rottenstrich|Anderson|Miyamoto|Kay|Bauer|Inbar|Ross.Slate1|Graham|VanLange,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,6,Global,all,TRUE +1884,-0.339985054709705,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,3,5,6,4,2,3,3,1,3,2,1,1,1,2,1,1,3,1,3,1,1,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Inbar|Kay|Miyamoto|Anderson|Critcher|Ross.Slate1|Hauser|Huang|Graham|Bauer|Alter|VanLange,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing,5,Global,all,TRUE +1885,0.507287294268775,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,6,5,6,6,6,3,4,1,2,2,1,3,2,2,2,1,2,1,3,1,2,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoventab,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,In a classroom,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Ross.Slate1|Rottenstrich|VanLange|Miyamoto|Alter|Kay|Graham|Anderson|Critcher|Hauser|Huang|Inbar,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,9,Global,all,TRUE +1886,0.515455995505377,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,5,6,6,3,3,4,1,2,4,3,1,1,3,1,4,2,4,1,5,1,2,4,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Huang|Miyamoto|Rottenstrich|Inbar|Anderson|Bauer|Critcher|VanLange|Ross.Slate1|Hauser|Alter|Kay,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,6,Global,all,TRUE +1887,0.734130349818083,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,5,5,6,2,2,3,1,1,3,1,1,1,3,4,1,1,2,1,4,1,2,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Inbar|Huang|Graham|Kay|Anderson|Hauser|Miyamoto|VanLange|Bauer|Critcher|Rottenstrich,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +1888,0.820070343331812,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,5,5,6,3,5,5,1,1,3,2,2,1,4,4,2,1,5,2,4,1,4,4,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoventab,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,In a classroom,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Alter|Ross.Slate1|VanLange|Miyamoto|Graham|Huang|Inbar|Bauer|Rottenstrich|Kay|Hauser|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing,1,Global,all,TRUE +1889,-0.170338779741447,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,3,6,7,5,2,2,1,1,4,1,1,1,2,3,1,1,4,1,4,1,1,2,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoventab,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,In a classroom,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Bauer|Hauser|Miyamoto|VanLange|Critcher|Inbar|Anderson|Huang|Graham|Kay|Rottenstrich|Alter,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +1890,0.637383140276485,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,6,7,7,7,5,3,1,1,4,1,1,1,3,4,1,1,3,1,4,1,1,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoventab,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,In a classroom,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Critcher|Rottenstrich|Huang|Alter|VanLange|Ross.Slate1|Inbar|Hauser|Graham|Miyamoto|Kay|Anderson,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,13,Global,all,TRUE +1891,-0.713387937171326,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoventab,6,7,6,6,6,3,1,1,4,3,1,1,5,4,2,1,4,1,2,1,2,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoventab,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,In a classroom,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Alter|Inbar|Ross.Slate1|Bauer|Critcher|Kay|Hauser|Rottenstrich|Graham|Huang|VanLange|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,13,Global,all,TRUE +1894,0.556453373028259,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,3,6,6,7,3,5,1,1,5,3,1,2,4,3,1,1,3,1,4,1,5,2,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoventab,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,In a classroom,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Hauser|Anderson|Rottenstrich|Kay|Inbar|Graham|Ross.Slate1|Huang|Critcher|VanLange|Alter|Bauer,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +1898,0.593100709351104,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,6,6,6,6,5,4,2,1,3,1,1,1,4,4,1,1,4,1,4,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,eindhoven,eindhoven,eindhoventab,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,In a classroom,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Anderson|Graham|VanLange|Kay|Critcher|Huang|Rottenstrich|Hauser|Inbar|Bauer|Miyamoto|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,2,Global,all,TRUE +1904,0.196875956679972,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,5,6,5,3,6,3,1,1,3,4,1,1,1,5,4,2,4,3,1,1,1,2,2,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Graham|Bauer|Anderson|VanLange|Ross.Slate1|Alter|Critcher|Inbar|Rottenstrich|Hauser|Miyamoto|Kay,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,4,Global,all,TRUE +1905,0.190952388486205,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,6,6,6,6,4,4,5,1,4,4,3,3,3,4,1,2,3,2,4,3,4,4,2,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Hauser|Alter|Bauer|Anderson|Huang|Inbar|Rottenstrich|Ross.Slate1|Kay|VanLange|Critcher|Miyamoto,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,5,Global,all,TRUE +1906,0.435186413322618,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,2,2,3,4,2,4,1,1,1,1,3,1,1,1,2,1,1,1,3,1,1,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Bauer|Alter|Miyamoto|Inbar|Ross.Slate1|Kay|Anderson|Critcher|Hauser|Rottenstrich|Huang|Graham,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,8,Global,all,TRUE +1914,0.448632144141756,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,3,4,5,5,2,2,3,1,2,2,1,1,1,2,1,1,2,1,3,2,1,1,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Kay|Huang|Inbar|Miyamoto|Bauer|Hauser|Critcher|Anderson|Graham|VanLange|Alter|Rottenstrich,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,9,Global,all,TRUE +1917,-0.0323388103435696,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,5,6,7,5,5,3,1,1,3,1,1,1,3,4,1,1,3,1,3,1,2,2,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Critcher|Hauser|Alter|Inbar|Miyamoto|Ross.Slate1|VanLange|Rottenstrich|Kay|Graham|Bauer|Anderson,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,13,Global,all,TRUE +1919,1.39871549574124,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,2,7,7,7,5,5,2,4,1,3,3,2,4,4,4,1,4,4,1,1,3,2,2,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Alter|Inbar|Rottenstrich|Anderson|Hauser|Graham|Ross.Slate1|VanLange|Huang|Kay|Critcher|Miyamoto,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,5,Global,all,TRUE +1921,0.335407307241318,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,7,7,7,6,6,4,1,1,5,4,1,1,3,5,3,1,5,4,4,1,1,5,5,5,4,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Rottenstrich|Bauer|Kay|Anderson|Miyamoto|Alter|Graham|Huang|Critcher|VanLange|Inbar|Hauser,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,5,Global,all,TRUE +1922,0.772489212549696,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,5,5,5,6,4,2,1,1,2,1,1,2,1,1,1,1,1,1,1,1,2,1,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Inbar|Graham|VanLange|Critcher|Anderson|Kay|Hauser|Rottenstrich|Huang|Alter|Miyamoto|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,6,Global,all,TRUE +1923,0.274380445640065,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,6,6,7,7,7,3,3,1,1,1,1,1,4,5,1,1,3,1,4,1,4,5,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Rottenstrich|Hauser|Kay|Graham|Critcher|Alter|VanLange|Inbar|Anderson|Huang|Ross.Slate1|Bauer,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five,10,Global,all,TRUE +1924,0.0915530176991029,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,5,6,6,5,6,3,3,1,3,1,2,1,3,4,4,2,3,1,4,1,3,3,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|Graham|Ross.Slate1|Inbar|Critcher|Alter|Anderson|Huang|Bauer|VanLange|Kay|Rottenstrich,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,8,Global,all,TRUE +1926,-0.551670853031108,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,5,6,6,3,3,5,4,1,3,1,1,1,5,3,1,1,5,2,3,1,1,3,2,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Graham|Miyamoto|Kay|Bauer|Hauser|Ross.Slate1|Rottenstrich|Alter|Anderson|Critcher|Huang|VanLange,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,10,Global,all,TRUE +1927,-0.971083564751711,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,3,6,7,4,7,3,1,1,4,2,1,1,2,1,1,1,2,1,5,1,1,3,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Rottenstrich|Critcher|Inbar|Kay|Hauser|Graham|VanLange|Ross.Slate1|Miyamoto|Huang|Anderson|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,12,Global,all,TRUE +1928,0.778553005629098,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,6,6,6,5,2,4,4,1,2,1,1,1,3,4,1,1,3,1,3,4,4,2,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Ross.Slate1|Alter|Anderson|VanLange|Inbar|Huang|Critcher|Graham|Miyamoto|Kay|Bauer|Hauser,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,4,Global,all,TRUE +1932,-0.280011759922352,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,6,5,6,6,5,2,2,1,4,2,1,1,2,4,1,1,4,1,4,2,1,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Anderson|Critcher|Kay|Huang|Rottenstrich|Ross.Slate1|VanLange|Hauser|Inbar|Bauer|Graham|Miyamoto,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five,2,Global,all,TRUE +1933,0.0865564378878369,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,6,5,6,4,5,1,1,1,4,1,1,1,1,4,1,1,4,1,4,1,1,1,1,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|VanLange|Miyamoto|Inbar|Huang|Anderson|Ross.Slate1|Bauer|Kay|Alter|Rottenstrich|Hauser|Graham,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,6,Global,all,TRUE +1934,0.800827622750305,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,5,6,6,5,5,3,2,2,3,1,1,2,4,2,1,1,3,1,4,1,3,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Rottenstrich|Critcher|Alter|Anderson|Inbar|Graham|Miyamoto|Ross.Slate1|VanLange|Hauser|Bauer|Huang,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,5,Global,all,TRUE +1936,0.32961031747895,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,5,6,6,7,4,4,3,1,4,2,1,3,3,2,4,3,4,4,4,1,4,3,4,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Hauser|Rottenstrich|Alter|Graham|Huang|VanLange|Inbar|Critcher|Ross.Slate1|Kay|Miyamoto|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,1,Global,all,TRUE +1937,0.56251716610766,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,5,5,6,5,6,4,3,1,2,2,1,1,2,3,2,1,3,1,4,1,3,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Rottenstrich|Miyamoto|Critcher|VanLange|Ross.Slate1|Kay|Hauser|Anderson|Alter|Inbar|Bauer|Huang,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,9,Global,all,TRUE +1939,0.113701056388911,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,5,5,5,5,5,4,2,1,3,1,1,1,3,4,1,1,4,1,4,1,3,3,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Huang|Graham|VanLange|Hauser|Anderson|Rottenstrich|Ross.Slate1|Alter|Critcher|Miyamoto|Bauer|Kay,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,6,Global,all,TRUE +1941,-0.747663562019938,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,4,6,6,5,3,4,2,1,4,3,2,1,4,3,1,1,4,1,4,1,2,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Huang|Miyamoto|Critcher|Inbar|Bauer|Anderson|Alter|Hauser|Kay|Rottenstrich|VanLange|Graham,ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,7,Global,all,TRUE +1943,0.154965237228826,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,3,4,6,2,3,4,3,1,2,1,3,2,4,3,1,4,3,1,4,1,2,4,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|VanLange|Graham|Rottenstrich|Huang|Ross.Slate1|Kay|Anderson|Inbar|Miyamoto|Hauser|Critcher|Alter,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,8,Global,all,TRUE +1945,0.27213531259723,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,5,3,6,6,7,4,3,1,1,3,1,2,4,2,4,1,5,4,2,1,4,4,3,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Rottenstrich|Critcher|Miyamoto|Graham|Anderson|VanLange|Alter|Inbar|Bauer|Hauser|Ross.Slate1|Huang,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,6,Global,all,TRUE +1946,0.534572137655484,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,5,6,7,6,6,4,3,1,4,1,1,3,3,4,3,1,3,1,4,1,2,4,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Graham|Hauser|Miyamoto|Anderson|Rottenstrich|Bauer|Huang|VanLange|Critcher|Ross.Slate1|Alter|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,5,Global,all,TRUE +1947,0.523764921627614,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,6,6,6,6,5,4,2,1,4,3,1,1,3,4,1,1,4,1,4,1,2,3,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Hauser|Inbar|Rottenstrich|Critcher|Miyamoto|Graham|Bauer|Alter|VanLange|Anderson|Huang|Kay,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood,11,Global,all,TRUE +1950,0.831144362676716,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,3,2,3,1,1,3,4,2,4,2,3,4,2,4,4,1,4,2,4,4,2,2,5,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|VanLange|Anderson|Ross.Slate1|Hauser|Alter|Kay|Huang|Bauer|Miyamoto|Inbar|Graham|Critcher,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,3,Global,all,TRUE +1953,0.177633236098466,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,3,3,5,3,3,4,4,2,4,2,2,3,4,3,3,1,5,2,1,1,4,3,1,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Rottenstrich|Inbar|VanLange|Alter|Anderson|Graham|Huang|Kay|Critcher|Hauser|Miyamoto|Bauer,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,6,Global,all,TRUE +1954,-0.310188274963127,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,6,7,6,4,5,4,4,1,2,1,1,1,2,3,1,1,1,1,1,1,1,2,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Ross.Slate1|Rottenstrich|Kay|Hauser|Critcher|Anderson|Huang|Bauer|Graham|Miyamoto|Inbar|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,7,Global,all,TRUE +1957,0.741779090874853,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,7,7,6,7,7,3,3,1,3,1,1,1,2,1,1,1,4,1,3,1,4,2,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Alter|Kay|Miyamoto|Rottenstrich|Ross.Slate1|Anderson|VanLange|Inbar|Graham|Critcher|Huang|Bauer,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +1958,1.27666177253873,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,5,6,5,3,5,5,1,1,4,2,1,1,2,2,2,1,3,1,4,1,2,4,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Bauer|Ross.Slate1|Alter|Huang|Kay|Critcher|Anderson|Hauser|Rottenstrich|Miyamoto|VanLange|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,8,Global,all,TRUE +1959,-1.49924226827072,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,5,6,5,6,3,4,2,1,4,1,1,1,1,2,1,1,3,1,3,1,1,3,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Miyamoto|Bauer|VanLange|Huang|Alter|Kay|Graham|Hauser|Rottenstrich|Ross.Slate1|Critcher|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,1,Global,all,TRUE +1963,-0.635759095250434,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,6,7,5,6,3,4,4,1,4,4,1,1,3,3,1,1,3,1,4,1,1,3,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Graham|Ross.Slate1|Alter|Rottenstrich|Miyamoto|Huang|Bauer|Anderson|Critcher|VanLange|Inbar|Kay,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,9,Global,all,TRUE +1966,0.722662948724746,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,5,5,5,4,5,3,1,1,4,2,1,1,1,3,1,1,2,1,3,1,1,2,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Huang|Critcher|Bauer|Inbar|Alter|Anderson|Graham|Rottenstrich|Miyamoto|Kay|Ross.Slate1|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,7,Global,all,TRUE +1970,0.484745873830534,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,6,6,7,6,5,4,2,1,4,3,4,2,5,4,3,1,4,3,4,2,2,5,4,5,4,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Ross.Slate1|Rottenstrich|Kay|Inbar|Critcher|Bauer|Alter|Hauser|VanLange|Graham|Huang|Miyamoto,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,1,Global,all,TRUE +1971,0.53220042618125,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,5,6,5,5,4,4,4,1,3,2,1,1,3,3,3,1,4,1,3,1,4,1,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Bauer|Rottenstrich|Anderson|Ross.Slate1|Graham|Critcher|Alter|Huang|Inbar|Miyamoto|VanLange|Hauser,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +1976,1.02226707028568,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,6,6,6,6,3,4,1,1,3,2,1,1,2,4,1,1,3,1,4,1,2,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Alter|Inbar|Graham|Huang|Bauer|Rottenstrich|Hauser|Kay|Critcher|VanLange|Ross.Slate1|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,13,Global,all,TRUE +1977,0.185015173838203,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,7,7,7,7,7,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Kay|Miyamoto|Huang|Hauser|Anderson|Inbar|Alter|Critcher|VanLange|Bauer|Rottenstrich|Ross.Slate1,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +1979,0.492661418204338,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,5,5,6,4,6,3,2,1,3,1,1,1,4,2,2,1,2,1,3,1,1,3,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Hauser|Ross.Slate1|Miyamoto|Inbar|Huang|Rottenstrich|Alter|Bauer|VanLange|Anderson|Critcher|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,11,Global,all,TRUE +1980,-0.0275953873951014,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,5,5,6,6,5,3,1,1,4,1,1,1,2,2,1,1,3,1,4,1,1,1,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Rottenstrich|Graham|Critcher|Anderson|Inbar|Miyamoto|Hauser|Alter|VanLange|Huang|Ross.Slate1|Bauer,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +1981,0.991556948610835,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,5,6,6,5,3,1,2,1,4,1,1,1,1,3,2,1,4,1,4,1,2,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Graham|Huang|Anderson|Alter|Kay|Bauer|VanLange|Critcher|Miyamoto|Inbar|Ross.Slate1|Hauser,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,4,Global,all,TRUE +1982,0.378776396238434,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,5,6,6,4,5,4,1,1,4,1,1,1,2,3,1,1,2,1,4,1,1,4,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Huang|Critcher|Hauser|Anderson|Miyamoto|Ross.Slate1|Graham|Bauer|VanLange|Kay|Rottenstrich|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,5,Global,all,TRUE +1983,-0.151360637006376,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,5,5,7,7,3,3,1,1,4,2,1,1,2,3,2,1,3,1,3,1,1,2,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Inbar|Anderson|Graham|Ross.Slate1|VanLange|Miyamoto|Critcher|Kay|Bauer|Huang|Alter|Hauser,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,3,Global,all,TRUE +1984,-2.30657080654022,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,6,6,6,7,1,4,1,1,4,1,1,1,1,4,1,1,4,1,3,1,3,2,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Huang|Inbar|Ross.Slate1|Rottenstrich|Graham|Anderson|Critcher|Alter|Bauer|VanLange|Kay|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,7,Global,all,TRUE +1986,-0.4307972750739,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,5,7,6,5,6,4,1,1,4,2,1,1,3,4,1,2,4,1,4,1,1,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Anderson|Miyamoto|Ross.Slate1|Rottenstrich|Critcher|VanLange|Bauer|Huang|Kay|Hauser|Graham|Alter,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,2,Global,all,TRUE +1989,-0.0863771159535197,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,5,6,6,6,2,4,2,1,4,2,1,1,3,3,2,2,1,1,4,1,2,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Huang|Anderson|Alter|Graham|Miyamoto|Ross.Slate1|Critcher|Rottenstrich|Kay|Bauer|Inbar|VanLange,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,3,Global,all,TRUE +1990,0.10856425169201,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,5,5,6,5,6,4,1,1,4,2,1,1,2,3,3,1,2,2,4,1,1,2,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Huang|Anderson|Hauser|VanLange|Miyamoto|Ross.Slate1|Inbar|Bauer|Rottenstrich|Graham|Critcher|Alter,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE,3,Global,all,TRUE +1991,0.789753603405401,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,5,6,5,4,3,4,4,2,3,1,1,3,2,1,3,2,3,1,1,1,4,2,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|VanLange|Bauer|Critcher|Hauser|Kay|Graham|Huang|Ross.Slate1|Inbar|Anderson|Rottenstrich|Miyamoto,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +1993,-0.48734529157312,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,5,5,6,2,2,2,4,1,3,1,1,4,2,4,1,1,2,1,4,1,2,2,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Bauer|VanLange|Rottenstrich|Critcher|Miyamoto|Anderson|Kay|Huang|Alter|Inbar|Hauser|Graham,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,7,Global,all,TRUE +1995,0.319069904768114,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,6,7,6,6,5,3,4,1,4,1,2,2,3,4,3,2,5,1,4,1,4,2,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Graham|Hauser|Kay|Miyamoto|Ross.Slate1|Bauer|Alter|Huang|Inbar|VanLange|Anderson|Critcher,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,12,Global,all,TRUE +1999,0.217703625238847,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,5,6,6,6,5,3,2,1,3,3,1,1,3,2,2,1,4,2,4,1,1,3,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Graham|Anderson|Miyamoto|Bauer|VanLange|Critcher|Inbar|Huang|Rottenstrich|Hauser|Ross.Slate1|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,3,Global,all,TRUE +2001,0.0919600459017718,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,1,1,1,4,4,3,3,3,3,1,1,1,2,2,4,1,3,2,3,1,2,1,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Inbar|Kay|Huang|Graham|Anderson|Alter|Ross.Slate1|Hauser|Critcher|Bauer|Rottenstrich|Miyamoto,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,6,Global,all,TRUE +2004,-0.0447331998194076,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,6,6,5,2,1,3,2,1,3,1,2,1,2,2,1,1,2,1,3,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|VanLange|Bauer|Ross.Slate1|Anderson|Inbar|Miyamoto|Rottenstrich|Graham|Kay|Huang|Hauser|Critcher,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,5,Global,all,TRUE +2006,0.844590093495853,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,5,5,6,5,2,3,4,2,4,1,1,2,1,2,1,1,1,1,4,1,1,3,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Ross.Slate1|Bauer|Hauser|Inbar|Rottenstrich|Graham|Huang|Critcher|VanLange|Miyamoto|Kay|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,13,Global,all,TRUE +2007,0.202279564693907,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,4,5,5,3,4,4,1,1,3,4,2,1,4,4,2,1,3,3,3,1,2,3,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|VanLange|Graham|Critcher|Kay|Hauser|Rottenstrich|Ross.Slate1|Anderson|Huang|Alter|Bauer|Inbar,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,9,Global,all,TRUE +2010,0.198194101340307,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,6,7,7,5,7,4,4,1,4,5,1,1,3,4,2,2,4,1,4,1,1,4,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Huang|Inbar|Graham|Kay|Critcher|Ross.Slate1|Hauser|Alter|Anderson|VanLange|Rottenstrich|Miyamoto,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +2011,0.0752156152258989,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,5,3,7,6,6,3,1,1,3,3,1,1,3,4,1,1,4,1,4,1,1,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|VanLange|Alter|Miyamoto|Anderson|Inbar|Ross.Slate1|Critcher|Huang|Hauser|Bauer|Kay|Graham,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood,5,Global,all,TRUE +2013,0.747576080637221,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,4,6,5,5,3,5,1,3,3,4,4,4,4,3,5,4,2,4,2,1,5,3,3,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Hauser|Huang|Graham|Anderson|Kay|Critcher|VanLange|Rottenstrich|Alter|Miyamoto|Ross.Slate1|Inbar,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,5,Global,all,TRUE +2015,0.415283507675645,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,5,5,6,6,2,4,1,1,3,3,1,1,4,3,2,1,4,1,4,1,2,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Miyamoto|Anderson|Alter|Critcher|Bauer|VanLange|Inbar|Huang|Ross.Slate1|Hauser|Graham|Rottenstrich,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,3,Global,all,TRUE +2017,-0.834137162167735,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,6,5,6,5,5,3,4,3,3,3,1,1,2,4,2,1,3,1,3,2,3,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Miyamoto|Kay|Inbar|Ross.Slate1|Critcher|VanLange|Alter|Bauer|Anderson|Graham|Hauser|Huang,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +2018,0.460099545235092,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,5,5,5,5,3,2,1,1,2,2,1,1,2,3,1,1,3,1,3,1,2,1,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Hauser|Rottenstrich|Kay|Anderson|VanLange|Huang|Inbar|Bauer|Miyamoto|Graham|Critcher,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,6,Global,all,TRUE +2020,0.728066556738681,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,5,6,6,5,6,4,4,2,4,3,2,1,4,4,3,1,3,1,4,3,4,3,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Miyamoto|Inbar|Graham|Anderson|Alter|Bauer|Critcher|VanLange|Hauser|Kay|Huang|Ross.Slate1,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +2021,-0.0167881713672315,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,6,6,6,4,6,4,2,1,4,3,1,2,4,4,2,1,2,1,4,1,2,3,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Kay|Critcher|Graham|Huang|Anderson|Miyamoto|VanLange|Hauser|Alter|Inbar|Ross.Slate1|Rottenstrich,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,6,Global,all,TRUE +2023,0.13888099161842,High,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,6,6,6,5,3,4,1,1,4,3,1,1,3,4,1,1,4,1,4,1,1,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Kay|Hauser|Miyamoto|Huang|VanLange|Rottenstrich|Ross.Slate1|Bauer|Critcher|Graham|Alter|Anderson,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,13,Global,all,TRUE +2025,0.108297448374976,High,ML2_Slate1_EngSpain_Inlab_execution_illegal__navarra_r.csv,navarra,5,6,6,6,6,2,2,3,2,4,1,1,1,3,1,1,3,1,3,1,1,4,4,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,navarra,navarra,navarra,Spain,"University of Navarra, Spain",English,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Rottenstrich|Hauser|Graham|Kay|Anderson|Huang|Alter|Critcher|Ross.Slate1|Inbar|VanLange|Miyamoto,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,6,Global,all,TRUE +2026,-0.0191598828414656,High,ML2_Slate1_EngSpain_Inlab_execution_illegal__navarra_r.csv,navarra,6,7,7,6,7,5,1,3,2,4,1,2,4,4,3,1,4,1,4,1,4,4,4,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,navarra,navarra,navarra,Spain,"University of Navarra, Spain",English,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Hauser|VanLange|Graham|Alter|Anderson|Miyamoto|Kay|Ross.Slate1|Bauer|Critcher|Inbar|Huang,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,6,Global,all,TRUE +2028,0.134795528264819,High,ML2_Slate1_EngSpain_Inlab_execution_illegal__navarra_r.csv,navarra,3,4,3,4,2,3,3,2,4,3,2,3,3,3,4,2,4,3,2,4,4,2,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,navarra,navarra,navarra,Spain,"University of Navarra, Spain",English,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Huang|Alter|Bauer|Graham|VanLange|Miyamoto|Rottenstrich|Inbar|Hauser|Anderson|Critcher|Kay,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,11,Global,all,TRUE +2030,0.39907268363384,High,ML2_Slate1_EngSpain_Inlab_execution_illegal__navarra_r.csv,navarra,7,7,7,7,7,2,1,3,3,4,1,2,4,3,1,2,4,1,3,4,3,5,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,navarra,navarra,navarra,Spain,"University of Navarra, Spain",English,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Ross.Slate1|Anderson|Rottenstrich|Bauer|Kay|VanLange|Hauser|Huang|Critcher|Alter|Graham|Inbar,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE,3,Global,all,TRUE +2032,0.258827581193127,High,ML2_Slate1_EngSpain_Inlab_execution_illegal__navarra_r.csv,navarra,6,7,5,6,5,4,3,2,3,1,4,3,2,4,2,2,3,4,2,2,3,2,3,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,navarra,navarra,navarra,Spain,"University of Navarra, Spain",English,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Bauer|Rottenstrich|Hauser|Anderson|Kay|Alter|Miyamoto|Inbar|Huang|Critcher|VanLange|Graham,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,5,Global,all,TRUE +2034,0.251712446770425,High,ML2_Slate1_EngSpain_Inlab_execution_illegal__navarra_r.csv,navarra,4,6,5,4,3,4,3,3,4,2,1,2,4,2,4,3,3,2,4,2,3,3,4,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,navarra,navarra,navarra,Spain,"University of Navarra, Spain",English,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Inbar|Rottenstrich|Anderson|Bauer|Hauser|Huang|Miyamoto|Kay|Ross.Slate1|VanLange|Alter|Critcher,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,4,Global,all,TRUE +2036,-0.592921387416787,High,ML2_Slate1_EngSpain_Inlab_execution_illegal__navarra_r.csv,navarra,5,7,6,5,5,4,1,3,4,4,1,2,4,4,3,2,4,2,3,2,2,4,3,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,navarra,navarra,navarra,Spain,"University of Navarra, Spain",English,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Ross.Slate1|Huang|Inbar|Graham|Anderson|VanLange|Alter|Bauer|Hauser|Critcher|Miyamoto|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,6,Global,all,TRUE +2038,0.9882582487541,High,ML2_Slate1_EngSpain_Inlab_execution_illegal__navarra_r.csv,navarra,5,6,6,5,6,3,1,2,3,2,1,1,3,4,1,1,5,1,3,1,1,3,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,navarra,navarra,navarra,Spain,"University of Navarra, Spain",English,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Huang|Anderson|Alter|Kay|Critcher|Miyamoto|Rottenstrich|Graham|Bauer|Ross.Slate1|VanLange|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,3,Global,all,TRUE +2039,-0.377939114709249,High,ML2_Slate1_EngSpain_Inlab_execution_illegal__navarra_r.csv,navarra,5,3,6,2,2,1,1,4,1,1,4,4,1,1,1,4,1,4,1,1,3,1,1,1,4,,,,,,,,,,,,,,,,,,,,,,,,,,navarra,navarra,navarra,Spain,"University of Navarra, Spain",English,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Hauser|Ross.Slate1|Huang|Bauer|Inbar|Critcher|VanLange|Rottenstrich|Alter|Graham|Miyamoto|Anderson,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing,13,Global,all,TRUE +2041,0.281369001631368,High,ML2_Slate1_EngSpain_Inlab_execution_illegal__navarra_r.csv,navarra,6,6,5,7,6,3,1,3,3,5,1,1,3,3,4,1,4,4,3,1,1,3,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,navarra,navarra,navarra,Spain,"University of Navarra, Spain",English,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Kay|Inbar|Miyamoto|Rottenstrich|Critcher|Bauer|Hauser|Anderson|Huang|Graham|Ross.Slate1|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,9,Global,all,TRUE +2042,-0.348027177514908,High,ML2_Slate1_EngSpain_Inlab_execution_illegal__navarra_r.csv,navarra,4,5,4,3,1,4,1,1,4,4,2,1,4,3,2,2,3,2,3,1,1,4,5,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,navarra,navarra,navarra,Spain,"University of Navarra, Spain",English,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Inbar|Critcher|Anderson|Miyamoto|Rottenstrich|Ross.Slate1|Graham|VanLange|Bauer|Alter|Hauser|Huang,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood,4,Global,all,TRUE +2043,0.161029030308228,High,ML2_Slate1_EngSpain_Inlab_execution_illegal__navarra_r.csv,navarra,4,6,5,4,3,2,3,2,1,2,1,2,1,4,4,1,4,1,4,1,2,2,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,navarra,navarra,navarra,Spain,"University of Navarra, Spain",English,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Ross.Slate1|Inbar|VanLange|Bauer|Graham|Critcher|Anderson|Hauser|Kay|Alter|Huang|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood,8,Global,all,TRUE +2045,-0.890280375934884,High,ML2_Slate1_EngSpain_Inlab_execution_illegal__navarra_r.csv,navarra,6,6,6,6,6,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,navarra,navarra,navarra,Spain,"University of Navarra, Spain",English,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Anderson|Rottenstrich|Hauser|Bauer|Alter|Miyamoto|Kay|Ross.Slate1|Critcher|Graham|Inbar|Huang,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,2,Global,all,TRUE +2046,0.360713820902226,High,ML2_Slate1_EngSpain_Inlab_execution_illegal__navarra_r.csv,navarra,4,5,4,5,3,4,4,2,4,4,2,2,4,3,4,2,3,3,3,2,1,3,3,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,navarra,navarra,navarra,Spain,"University of Navarra, Spain",English,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|VanLange|Inbar|Ross.Slate1|Bauer|Kay|Miyamoto|Anderson|Rottenstrich|Critcher|Graham|Hauser|Alter,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,8,Global,all,TRUE +2048,0.0670469139892968,High,ML2_Slate1_EngSpain_Inlab_execution_illegal__navarra_r.csv,navarra,3,6,5,3,3,4,1,4,4,4,1,1,4,4,1,2,4,2,4,1,3,4,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,navarra,navarra,navarra,Spain,"University of Navarra, Spain",English,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Anderson|Hauser|Huang|Bauer|Miyamoto|Ross.Slate1|Inbar|Graham|VanLange|Alter|Rottenstrich|Critcher,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +2051,0.348853038060456,High,ML2_Slate1_EngSpain_Inlab_execution_illegal__navarra_r.csv,navarra,5,7,5,6,2,2,1,4,1,1,4,2,1,1,4,4,3,4,4,1,3,2,1,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,navarra,navarra,navarra,Spain,"University of Navarra, Spain",English,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Rottenstrich|Miyamoto|Alter|Critcher|Anderson|Kay|VanLange|Graham|Inbar|Bauer|Ross.Slate1|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,6,Global,all,TRUE +2057,0.407508188187475,High,ML2_Slate1_EngSpain_Inlab_execution_illegal__navarra_r.csv,navarra,7,6,6,5,6,3,4,1,2,2,2,2,3,3,4,1,4,1,3,1,3,2,2,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,navarra,navarra,navarra,Spain,"University of Navarra, Spain",English,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Huang|Critcher|Kay|Bauer|Hauser|Ross.Slate1|Inbar|Alter|VanLange|Graham|Anderson|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,12,Global,all,TRUE +2061,0.706185321365907,High,ML2_Slate1_EngSpain_Inlab_execution_illegal__navarra_r.csv,navarra,5,5,5,5,3,3,3,1,3,1,2,2,2,1,3,1,4,2,3,2,2,1,2,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,navarra,navarra,navarra,Spain,"University of Navarra, Spain",English,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Ross.Slate1|Rottenstrich|Inbar|Graham|VanLange|Anderson|Hauser|Critcher|Kay|Miyamoto|Bauer|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood,7,Global,all,TRUE +2065,0.517040943482745,High,ML2_Slate1_EngSpain_Inlab_execution_illegal__navarra_r.csv,navarra,2,5,5,5,2,3,4,1,3,1,1,1,1,1,3,1,3,1,2,1,1,1,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,navarra,navarra,navarra,Spain,"University of Navarra, Spain",English,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Miyamoto|VanLange|Critcher|Rottenstrich|Inbar|Alter|Bauer|Kay|Anderson|Hauser|Huang|Ross.Slate1,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing,10,Global,all,TRUE +2066,-0.339591672961272,High,ML2_Slate1_EngSpain_Inlab_execution_illegal__navarra_r.csv,navarra,4,4,4,3,4,3,3,3,3,3,3,2,3,3,3,2,3,3,2,3,3,3,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,navarra,navarra,navarra,Spain,"University of Navarra, Spain",English,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Critcher|Huang|Bauer|Kay|VanLange|Anderson|Ross.Slate1|Miyamoto|Alter|Rottenstrich|Graham|Hauser,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five,7,Global,all,TRUE +2067,-0.237174052088705,High,ML2_Slate1_EngSpain_Inlab_execution_illegal__navarra_r.csv,navarra,6,7,6,5,6,3,3,2,3,3,2,2,4,3,4,1,4,4,3,3,3,3,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,navarra,navarra,navarra,Spain,"University of Navarra, Spain",English,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Alter|Huang|Miyamoto|Graham|Inbar|Bauer|Critcher|Rottenstrich|Ross.Slate1|VanLange|Kay|Anderson,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +2068,0.701048516669006,High,ML2_Slate1_EngSpain_Inlab_execution_illegal__navarra_r.csv,navarra,6,6,7,6,7,5,2,4,4,5,2,2,4,5,3,2,2,2,5,3,2,5,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,navarra,navarra,navarra,Spain,"University of Navarra, Spain",English,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Inbar|Critcher|Hauser|Bauer|VanLange|Alter|Huang|Kay|Ross.Slate1|Anderson|Graham|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,11,Global,all,TRUE +2069,-0.506588012154626,High,ML2_Slate1_EngSpain_Inlab_execution_illegal__navarra_r.csv,navarra,6,6,6,6,6,3,2,3,2,4,3,3,4,4,4,2,2,2,3,2,3,4,4,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,navarra,navarra,navarra,Spain,"University of Navarra, Spain",English,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Miyamoto|Hauser|Bauer|Critcher|Anderson|Rottenstrich|Inbar|Ross.Slate1|VanLange|Kay|Huang|Graham,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,6,Global,all,TRUE +2070,0.224820985132149,High,ML2_Slate1_EngSpain_Inlab_execution_illegal__navarra_r.csv,navarra,6,6,6,5,5,3,3,1,4,4,1,3,4,3,4,1,4,3,4,1,3,4,4,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,navarra,navarra,navarra,Spain,"University of Navarra, Spain",English,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Ross.Slate1|Rottenstrich|Graham|Huang|Miyamoto|Kay|Anderson|Critcher|Bauer|VanLange|Alter|Inbar,ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing,8,Global,all,TRUE +2071,0.38813888917457,High,ML2_Slate1_EngSpain_Inlab_execution_illegal__navarra_r.csv,navarra,3,6,5,4,4,3,2,3,4,2,1,2,4,2,3,1,3,2,3,2,4,3,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,navarra,navarra,navarra,Spain,"University of Navarra, Spain",English,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Ross.Slate1|Alter|Miyamoto|VanLange|Hauser|Bauer|Rottenstrich|Graham|Kay|Inbar|Critcher|Huang,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,1,Global,all,TRUE +2072,0.659657757397692,High,ML2_Slate1_EngSpain_Inlab_execution_illegal__navarra_r.csv,navarra,6,6,6,6,3,1,3,1,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,navarra,navarra,navarra,Spain,"University of Navarra, Spain",English,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|VanLange|Critcher|Anderson|Rottenstrich|Inbar|Ross.Slate1|Hauser|Kay|Huang|Bauer|Miyamoto|Alter,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,4,Global,all,TRUE +2074,-1.31694844696383,High,ML2_Slate1_EngSpain_Inlab_execution_illegal__navarra_r.csv,navarra,3,7,6,3,3,3,1,1,1,3,1,1,3,4,1,3,4,1,3,1,1,3,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,navarra,navarra,navarra,Spain,"University of Navarra, Spain",English,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Hauser|Miyamoto|Alter|Ross.Slate1|Graham|Huang|Bauer|VanLange|Critcher|Anderson|Kay|Inbar,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,11,Global,all,TRUE +2076,-0.528075865778967,High,ML2_Slate1_EngSpain_Inlab_execution_illegal__navarra_r.csv,navarra,5,5,6,5,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,navarra,navarra,navarra,Spain,"University of Navarra, Spain",English,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Miyamoto|Anderson|Hauser|Ross.Slate1|Alter|Graham|Kay|Critcher|Rottenstrich|Bauer|Huang|VanLange,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +2079,0.201619379628441,High,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,5,5,5,5,6,4,1,1,1,3,1,1,2,2,1,1,2,1,4,1,2,3,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Kay|Miyamoto|Rottenstrich|Anderson|Huang|Inbar|Bauer|Graham|Alter|VanLange|Critcher|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,5,Global,all,TRUE +2080,0.216245255692877,High,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,3,6,5,5,3,3,1,1,2,2,1,1,3,2,2,1,5,1,3,1,2,3,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Bauer|Alter|Inbar|Kay|Graham|Huang|Rottenstrich|Hauser|Miyamoto|Critcher|Ross.Slate1|Anderson,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five,13,Global,all,TRUE +2082,0.582026690006201,High,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,6,7,6,6,7,4,2,1,1,2,2,1,4,4,3,2,4,1,3,1,2,4,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Inbar|Graham|Anderson|Ross.Slate1|Hauser|Huang|Bauer|VanLange|Rottenstrich|Miyamoto|Kay|Critcher,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing,4,Global,all,TRUE +2084,-0.361992868513879,High,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,2,7,2,6,7,2,1,1,1,1,1,1,3,3,2,1,2,1,3,3,1,2,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Ross.Slate1|Rottenstrich|Anderson|Critcher|VanLange|Huang|Alter|Graham|Miyamoto|Inbar|Kay|Hauser,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,4,Global,all,TRUE +2085,-0.0299670988693358,High,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,5,6,5,6,5,3,2,2,2,3,1,2,3,4,3,1,4,3,4,2,4,3,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Anderson|Kay|Rottenstrich|VanLange|Ross.Slate1|Huang|Alter|Miyamoto|Hauser|Inbar|Critcher|Graham,ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,2,Global,all,TRUE +2097,-0.134756431216137,High,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,6,6,6,5,6,3,2,1,1,1,1,2,3,2,1,1,4,1,2,1,1,3,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Kay|Huang|Critcher|Bauer|Anderson|Graham|Rottenstrich|Hauser|VanLange|Alter|Miyamoto|Inbar,ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +2098,-0.164148408230646,High,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,4,6,6,5,7,2,2,1,1,1,1,1,1,3,2,1,5,1,3,3,1,2,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Hauser|Bauer|Anderson|Alter|Critcher|Inbar|Huang|Kay|VanLange|Rottenstrich|Ross.Slate1|Miyamoto,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,4,Global,all,TRUE +2102,-0.0542222711869432,High,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,6,7,6,7,6,3,1,1,3,1,1,1,2,3,1,1,2,1,3,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Huang|Rottenstrich|Kay|Hauser|VanLange|Alter|Graham|Inbar|Anderson|Critcher|Miyamoto|Ross.Slate1,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,10,Global,all,TRUE +2104,-0.666733794771712,High,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,4,6,5,4,4,2,1,1,2,2,1,1,2,3,2,2,3,1,3,1,1,3,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Critcher|Anderson|Inbar|VanLange|Bauer|Ross.Slate1|Hauser|Huang|Rottenstrich|Miyamoto|Kay|Alter,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +2105,-0.135416616281604,High,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,5,4,5,5,3,3,1,1,1,3,1,1,3,3,1,2,3,1,3,3,1,3,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Bauer|Alter|Huang|Kay|VanLange|Graham|Rottenstrich|Inbar|Critcher|Ross.Slate1|Anderson|Hauser,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,12,Global,all,TRUE +2106,0.439536454522653,High,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,5,6,7,6,7,3,1,1,2,1,1,2,2,4,1,1,3,1,3,1,2,2,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Miyamoto|Ross.Slate1|Kay|Hauser|Critcher|Graham|Rottenstrich|Huang|Alter|Anderson|Bauer|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five,11,Global,all,TRUE +2109,0.506893912520342,High,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,6,5,6,6,6,3,2,1,1,3,1,1,2,3,1,1,2,1,4,1,2,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Hauser|Miyamoto|VanLange|Rottenstrich|Graham|Alter|Bauer|Ross.Slate1|Inbar|Anderson|Critcher|Huang,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,11,Global,all,TRUE +2111,0.0391018855371205,High,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,4,4,4,5,4,1,1,1,1,1,1,1,3,3,1,1,2,1,3,1,2,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Hauser|Huang|Anderson|Alter|Miyamoto|Bauer|Graham|Kay|Rottenstrich|VanLange|Critcher|Ross.Slate1,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood,4,Global,all,TRUE +2114,0.550782961697289,High,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,4,5,5,3,3,3,2,1,1,1,1,1,1,1,3,1,4,1,3,1,1,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Hauser|Anderson|Ross.Slate1|Graham|Miyamoto|Bauer|Huang|Rottenstrich|Inbar|Alter|Critcher|VanLange,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +2118,-0.670032494628447,High,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,5,7,6,4,2,4,1,1,1,2,2,2,4,4,1,1,4,1,4,1,3,4,4,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Graham|Hauser|Miyamoto|Anderson|Bauer|Alter|Huang|Kay|VanLange|Rottenstrich|Inbar|Ross.Slate1,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing,5,Global,all,TRUE +2122,-0.556807657728009,High,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,2,4,3,3,2,2,2,2,2,2,2,2,4,2,2,3,2,2,2,2,2,3,3,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Kay|Miyamoto|Inbar|Ross.Slate1|Bauer|Alter|Critcher|Hauser|Rottenstrich|Anderson|Huang|VanLange,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,11,Global,all,TRUE +2123,0.485012677147568,High,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,5,6,6,5,5,2,2,1,1,2,1,1,2,3,1,1,2,1,2,1,1,1,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Critcher|Miyamoto|Huang|Alter|Graham|Rottenstrich|Kay|Ross.Slate1|Hauser|VanLange|Inbar|Bauer,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing,1,Global,all,TRUE +2124,0.609704915141343,High,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,6,6,6,5,5,2,1,2,1,4,1,3,3,3,3,1,3,1,4,1,3,4,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Hauser|Anderson|Ross.Slate1|Inbar|Critcher|Kay|VanLange|Rottenstrich|Bauer|Huang|Graham|Miyamoto,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,3,Global,all,TRUE +2132,-0.00808586349656156,High,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,7,7,7,6,6,4,1,1,1,2,1,1,4,4,2,1,3,1,3,2,3,4,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|VanLange|Anderson|Kay|Alter|Huang|Miyamoto|Rottenstrich|Bauer|Hauser|Critcher|Inbar|Graham,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +2133,0.560005229747791,High,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,6,7,6,5,6,2,1,1,1,4,1,1,3,1,1,2,3,1,2,1,1,4,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Inbar|Anderson|Huang|Miyamoto|Alter|Bauer|Critcher|Rottenstrich|Kay|Hauser|VanLange|Ross.Slate1,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,3,Global,all,TRUE +2135,0.571079249092695,High,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,6,7,7,6,7,4,1,1,1,3,1,1,4,3,1,1,4,1,4,1,1,3,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Critcher|Graham|Alter|Rottenstrich|Hauser|Bauer|Miyamoto|Huang|VanLange|Inbar|Anderson|Kay,ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,12,Global,all,TRUE +2137,-0.223728321269567,High,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,4,5,5,6,4,2,1,2,1,2,1,1,1,2,2,1,2,1,3,1,3,3,3,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Inbar|Huang|Bauer|Ross.Slate1|Miyamoto|Rottenstrich|VanLange|Hauser|Kay|Critcher|Graham|Anderson,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,13,Global,all,TRUE +2138,0.191612573551672,High,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,5,5,5,5,3,3,2,1,2,2,1,2,2,3,2,1,3,2,3,1,2,3,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|VanLange|Hauser|Alter|Inbar|Huang|Bauer|Anderson|Miyamoto|Critcher|Kay|Ross.Slate1|Rottenstrich,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,8,Global,all,TRUE +2142,-0.189721725208588,High,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,4,3,5,4,4,4,2,1,2,2,1,1,3,3,3,1,3,1,4,2,2,2,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|VanLange|Inbar|Hauser|Graham|Huang|Alter|Anderson|Bauer|Ross.Slate1|Rottenstrich|Miyamoto|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing,8,Global,all,TRUE +2144,0.163527320213861,High,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,3,6,5,5,4,1,1,1,1,5,1,1,2,2,4,1,3,3,4,1,4,3,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Critcher|Inbar|VanLange|Ross.Slate1|Hauser|Anderson|Huang|Bauer|Kay|Graham|Rottenstrich|Miyamoto,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,7,Global,all,TRUE +2145,-0.0299670988693358,High,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,6,5,7,5,3,5,1,1,1,2,1,1,4,3,1,2,5,1,4,1,1,4,2,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Alter|Bauer|Inbar|Ross.Slate1|Anderson|Kay|VanLange|Miyamoto|Rottenstrich|Critcher|Huang|Graham,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,6,Global,all,TRUE +2146,0.902318255240372,High,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,2,6,2,4,1,2,3,3,2,2,4,2,1,1,4,3,1,1,2,1,3,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Critcher|Rottenstrich|Huang|Miyamoto|Ross.Slate1|Alter|Anderson|Bauer|Inbar|Graham|Hauser|VanLange,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,8,Global,all,TRUE +2147,0.490809666909936,High,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,5,5,5,7,7,4,2,1,1,3,1,1,3,3,2,1,3,2,4,1,2,4,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Huang|Bauer|VanLange|Graham|Critcher|Inbar|Miyamoto|Rottenstrich|Hauser|Kay,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood,3,Global,all,TRUE +2149,0.274507024071464,High,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,4,6,6,5,4,1,5,1,1,1,1,3,2,5,1,1,3,1,5,2,1,1,5,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Kay|Inbar|Critcher|Bauer|Anderson|Rottenstrich|Miyamoto|Huang|Alter|Ross.Slate1|Graham|Hauser,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,6,Global,all,TRUE +2150,-0.143585317518206,High,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,6,1,1,5,1,3,1,1,2,1,1,1,1,1,1,1,1,1,3,2,1,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Kay|Bauer|Alter|Ross.Slate1|Inbar|Hauser|Rottenstrich|Huang|Anderson|Graham|Critcher|Miyamoto,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,10,Global,all,TRUE +2154,0.569632300530362,High,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,6,6,7,5,7,4,2,1,3,3,1,1,3,3,1,1,4,1,4,1,4,2,5,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Bauer|Critcher|VanLange|Kay|Anderson|Miyamoto|Ross.Slate1|Graham|Inbar|Hauser|Huang|Alter,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,6,Global,all,TRUE +2155,-0.0941524354416891,High,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,5,6,5,6,3,3,1,1,2,1,1,1,4,4,3,1,4,1,3,1,1,2,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Rottenstrich|Kay|Graham|Critcher|Huang|Alter|Miyamoto|Inbar|VanLange|Hauser|Bauer|Ross.Slate1,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing,1,Global,all,TRUE +2157,-1.02248113009979,High,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,6,6,6,5,7,4,1,1,1,2,1,1,3,2,1,1,3,1,4,1,1,4,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Huang|VanLange|Ross.Slate1|Rottenstrich|Anderson|Miyamoto|Bauer|Critcher|Graham|Hauser|Alter|Inbar,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,6,Global,all,TRUE +2158,0.0949919424414727,High,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,5,7,5,7,5,3,1,1,3,3,1,1,2,3,1,1,4,1,5,1,2,4,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Critcher|Alter|Hauser|Bauer|Inbar|Kay|Rottenstrich|VanLange|Huang|Anderson|Graham|Miyamoto,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,11,Global,all,TRUE +2163,0.0948517175558379,High,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,5,4,5,6,4,4,2,2,1,2,1,2,3,3,3,1,4,2,2,1,1,3,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Bauer|Hauser|Anderson|Alter|Critcher|Kay|Inbar|Miyamoto|VanLange|Graham|Rottenstrich|Huang,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,4,Global,all,TRUE +2164,0.0505692866304577,High,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,1,4,2,3,1,4,1,5,2,3,5,5,4,2,5,3,3,5,4,4,4,4,4,1,5,,,,,,,,,,,,,,,,,,,,,,,,,,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Alter|Rottenstrich|Hauser|Ross.Slate1|Miyamoto|VanLange|Inbar|Anderson|Bauer|Graham|Huang|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,9,Global,all,TRUE +2165,0.282549146876667,High,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,5,6,6,6,4,3,1,1,4,4,2,1,4,3,2,2,4,1,4,1,1,4,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Hauser|Huang|Inbar|Ross.Slate1|VanLange|Graham|Bauer|Miyamoto|Rottenstrich|Alter|Anderson|Critcher,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing,12,Global,all,TRUE +2167,-0.394023360319655,High,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,4,6,6,5,4,3,1,1,1,1,1,1,3,3,1,2,3,1,4,1,1,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Rottenstrich|Hauser|Graham|Anderson|Miyamoto|Alter|Kay|Huang|VanLange|Bauer|Ross.Slate1|Inbar,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing,5,Global,all,TRUE +2170,-1.83799201606013,High,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,1,4,1,3,2,2,2,5,5,1,1,2,1,4,5,3,1,5,1,3,5,1,1,1,5,,,,,,,,,,,,,,,,,,,,,,,,,,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Graham|Rottenstrich|VanLange|Bauer|Alter|Kay|Inbar|Miyamoto|Huang|Hauser|Anderson|Critcher,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,12,Global,all,TRUE +2171,0.295868299264406,High,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,7,6,7,7,5,4,1,1,1,3,1,1,5,1,5,1,3,1,5,1,3,5,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Miyamoto|Huang|Alter|Ross.Slate1|Kay|Inbar|Critcher|VanLange|Bauer|Rottenstrich|Hauser|Anderson,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,13,Global,all,TRUE +2174,-1.81545059562189,High,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,6,7,7,6,6,4,1,1,1,2,1,1,3,3,1,1,3,1,4,1,2,4,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Bauer|Miyamoto|Huang|Critcher|Hauser|Kay|Rottenstrich|Graham|VanLange|Anderson|Alter|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,11,Global,all,TRUE +2177,0.198460904657341,High,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,5,6,6,6,6,3,2,1,2,1,1,1,1,2,1,1,3,1,2,1,1,2,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Graham|Huang|Rottenstrich|VanLange|Critcher|Bauer|Ross.Slate1|Alter|Inbar|Miyamoto|Kay|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,13,Global,all,TRUE +2178,0.692879815432404,High,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,6,7,6,5,5,3,3,1,2,1,2,1,2,1,3,1,1,1,4,1,2,2,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Kay|Critcher|Alter|Ross.Slate1|Miyamoto|Anderson|VanLange|Graham|Hauser|Inbar|Huang|Rottenstrich,ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,7,Global,all,TRUE +2179,-0.38756618549182,High,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,5,6,7,6,6,4,1,1,2,4,1,1,2,3,2,2,3,1,4,1,2,4,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Inbar|Hauser|Rottenstrich|Critcher|Ross.Slate1|VanLange|Kay|Graham|Huang|Anderson|Alter|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,11,Global,all,TRUE +2181,0.22995778982905,High,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,7,7,6,7,7,4,2,1,2,1,2,2,4,3,3,3,4,4,4,1,4,3,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Anderson|Rottenstrich|Graham|Huang|Ross.Slate1|Miyamoto|Bauer|VanLange|Inbar|Hauser|Critcher|Kay,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,2,Global,all,TRUE +2186,-0.123808990302632,High,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,6,4,5,3,2,4,1,1,1,2,1,1,3,2,3,1,3,2,4,1,2,4,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Bauer|Inbar|Rottenstrich|Kay|Anderson|Miyamoto|Graham|Hauser|VanLange|Alter|Ross.Slate1|Critcher,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE,6,Global,all,TRUE +2189,0.648583738052788,High,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,3,5,2,4,4,2,4,3,1,1,2,2,1,2,2,2,1,1,3,3,2,1,2,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Inbar|Miyamoto|Huang|Critcher|VanLange|Graham|Anderson|Rottenstrich|Ross.Slate1|Alter|Bauer|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,8,Global,all,TRUE +2194,1.01040628744391,High,ML2_Slate1_French_Inlab_execution_illegal_pencilpaper_r.csv,poitiers,5,6,6,5,4,2,4,4,1,1,1,1,3,2,3,1,3,1,2,1,2,1,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,poitiers,poitiers,poitiers,France,"Université de Poitiers, France",French,1,illegal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Ross.Slate1|Alter|Kay|Hauser|VanLange|Anderson|Huang|Bauer|Miyamoto|Inbar|Rottenstrich|Graham,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing,7,Global,all,TRUE +2195,-0.19578329281739,High,ML2_Slate1_French_Inlab_execution_illegal_pencilpaper_r.csv,poitiers,6,6,5,6,6,4,1,1,1,3,1,1,3,4,1,1,5,1,4,1,1,3,3,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,poitiers,poitiers,poitiers,France,"Université de Poitiers, France",French,1,illegal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Hauser|Miyamoto|Inbar|Kay|Anderson|VanLange|Graham|Ross.Slate1|Alter|Rottenstrich|Critcher|Bauer,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,6,Global,all,TRUE +2197,1.01383156573204,High,ML2_Slate1_French_Inlab_execution_illegal_pencilpaper_r.csv,poitiers,6,6,6,5,5,5,3,1,3,3,3,3,3,3,3,1,5,1,4,1,3,4,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,poitiers,poitiers,poitiers,France,"Université de Poitiers, France",French,1,illegal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Alter|VanLange|Inbar|Rottenstrich|Ross.Slate1|Kay|Bauer|Hauser|Miyamoto|Critcher|Anderson|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,12,Global,all,TRUE +2199,0.00246819566851061,High,ML2_Slate1_French_Inlab_execution_illegal_pencilpaper_r.csv,poitiers,6,5,6,6,2,4,2,1,2,1,1,1,3,4,1,1,5,1,5,1,1,3,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,poitiers,poitiers,poitiers,France,"Université de Poitiers, France",French,1,illegal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Rottenstrich|Hauser|Graham|Critcher|Miyamoto|Anderson|Inbar|Bauer|VanLange|Huang|Ross.Slate1|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,7,Global,all,TRUE +2201,0.460099545235092,High,ML2_Slate1_French_Inlab_execution_illegal_pencilpaper_r.csv,poitiers,4,4,5,2,3,2,2,1,1,1,1,1,2,2,1,1,3,1,3,1,1,2,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,poitiers,poitiers,poitiers,France,"Université de Poitiers, France",French,1,illegal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Ross.Slate1|Alter|VanLange|Huang|Critcher|Anderson|Graham|Bauer|Hauser|Miyamoto|Inbar|Rottenstrich,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,7,Global,all,TRUE +2202,0.598237514048005,High,ML2_Slate1_French_Inlab_execution_illegal_pencilpaper_r.csv,poitiers,4,4,6,4,4,5,1,1,1,2,1,1,4,3,1,1,3,1,4,1,1,5,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,poitiers,poitiers,poitiers,France,"Université de Poitiers, France",French,1,illegal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Kay|Huang|Ross.Slate1|Anderson|Critcher|Alter|VanLange|Miyamoto|Rottenstrich|Hauser|Bauer|Graham,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing,5,Global,all,TRUE +2203,0.557240136525124,High,ML2_Slate1_French_Inlab_execution_illegal_pencilpaper_r.csv,poitiers,2,6,4,5,1,3,3,1,1,2,2,2,3,2,2,2,2,2,3,1,1,1,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,poitiers,poitiers,poitiers,France,"Université de Poitiers, France",French,1,illegal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Inbar|Kay|Critcher|Alter|Anderson|VanLange|Ross.Slate1|Miyamoto|Graham|Huang|Rottenstrich|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,6,Global,all,TRUE +2207,-0.00610753377076027,High,ML2_Slate1_French_Inlab_execution_illegal_pencilpaper_r.csv,poitiers,3,5,5,5,2,4,4,2,2,4,2,3,3,2,4,3,3,3,4,2,4,4,4,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,poitiers,poitiers,poitiers,France,"Université de Poitiers, France",French,1,illegal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Inbar|Kay|Graham|Huang|Miyamoto|Rottenstrich|Alter|Bauer|Ross.Slate1|VanLange|Hauser|Critcher,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five,1,Global,all,TRUE +2208,0.349639801557322,High,ML2_Slate1_French_Inlab_execution_illegal_pencilpaper_r.csv,poitiers,4,5,6,6,7,2,2,1,2,1,1,1,1,4,1,1,3,1,4,2,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,poitiers,poitiers,poitiers,France,"Université de Poitiers, France",French,1,illegal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Kay|VanLange|Anderson|Ross.Slate1|Critcher|Graham|Huang|Bauer|Alter|Inbar|Hauser|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing,4,Global,all,TRUE +2209,-0.00307563723105956,High,ML2_Slate1_French_Inlab_execution_illegal_pencilpaper_r.csv,poitiers,6,6,5,7,5,4,1,1,3,1,1,1,2,3,1,1,4,1,3,2,2,3,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,poitiers,poitiers,poitiers,France,"Université de Poitiers, France",French,1,illegal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Rottenstrich|Graham|Alter|Anderson|Ross.Slate1|Critcher|Huang|VanLange|Miyamoto|Kay|Inbar|Hauser,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood,5,Global,all,TRUE +2210,0.0906396757708381,High,ML2_Slate1_French_Inlab_execution_illegal_pencilpaper_r.csv,poitiers,6,7,7,7,5,5,1,1,5,4,1,1,4,4,1,1,5,1,5,1,3,5,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,poitiers,poitiers,poitiers,France,"Université de Poitiers, France",French,1,illegal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Graham|Huang|Ross.Slate1|Kay|Critcher|Bauer|Rottenstrich|Inbar|Alter|VanLange|Hauser|Miyamoto,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +2213,0.529168529641549,High,ML2_Slate1_French_Inlab_execution_illegal_pencilpaper_r.csv,poitiers,4,4,7,4,4,5,1,1,1,1,1,1,5,5,1,1,5,1,4,1,1,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,poitiers,poitiers,poitiers,France,"Université de Poitiers, France",French,1,illegal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Ross.Slate1|Hauser|Alter|Graham|Critcher|Kay|Rottenstrich|Anderson|Inbar|Miyamoto|VanLange|Bauer,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing,9,Global,all,TRUE +2215,0.0990751803244743,High,ML2_Slate1_French_Inlab_execution_illegal_pencilpaper_r.csv,poitiers,5,6,6,2,2,4,3,1,3,3,1,3,1,5,1,1,3,1,3,3,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,poitiers,poitiers,poitiers,France,"Université de Poitiers, France",French,1,illegal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Miyamoto|Ross.Slate1|Kay|VanLange|Huang|Rottenstrich|Bauer|Hauser|Anderson|Inbar|Alter|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing,10,Global,all,TRUE +2216,-0.109843299303662,High,ML2_Slate1_French_Inlab_execution_illegal_pencilpaper_r.csv,poitiers,5,6,7,5,5,4,3,3,3,3,3,3,4,4,3,3,4,3,5,4,3,5,3,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,poitiers,poitiers,poitiers,France,"Université de Poitiers, France",French,1,illegal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Bauer|Rottenstrich|Ross.Slate1|Graham|Huang|VanLange|Kay|Hauser|Critcher|Inbar|Anderson|Miyamoto,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,12,Global,all,TRUE +2218,0.645818644830121,High,ML2_Slate1_French_Inlab_execution_illegal_pencilpaper_r.csv,poitiers,6,6,6,5,4,4,1,1,1,1,1,1,2,1,1,1,4,1,4,1,1,2,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,poitiers,poitiers,poitiers,France,"Université de Poitiers, France",French,1,illegal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Kay|Alter|Huang|Miyamoto|Hauser|Ross.Slate1|Bauer|Inbar|Critcher|Anderson|VanLange|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,11,Global,all,TRUE +2219,0.454302555472725,High,ML2_Slate1_French_Inlab_execution_illegal_pencilpaper_r.csv,poitiers,6,5,6,4,4,3,2,1,1,1,1,1,4,4,1,1,3,1,4,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,poitiers,poitiers,poitiers,France,"Université de Poitiers, France",French,1,illegal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Miyamoto|VanLange|Kay|Inbar|Huang|Ross.Slate1|Rottenstrich|Bauer|Anderson|Hauser|Critcher|Alter,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE,10,Global,all,TRUE +2220,-0.551530628145473,High,ML2_Slate1_French_Inlab_execution_illegal_pencilpaper_r.csv,poitiers,6,6,5,5,3,3,1,1,2,1,1,1,2,1,1,1,2,1,4,2,1,2,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,poitiers,poitiers,poitiers,France,"Université de Poitiers, France",French,1,illegal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|VanLange|Rottenstrich|Critcher|Ross.Slate1|Hauser|Inbar|Miyamoto|Huang|Bauer|Graham|Alter|Kay,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,1,Global,all,TRUE +2221,0.586896691386068,High,ML2_Slate1_French_Inlab_execution_illegal_pencilpaper_r.csv,poitiers,6,6,7,6,7,3,2,1,3,3,1,2,3,4,1,1,4,1,3,1,1,3,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,poitiers,poitiers,poitiers,France,"Université de Poitiers, France",French,1,illegal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Inbar|Hauser|Miyamoto|Rottenstrich|Critcher|Alter|Graham|Huang|Bauer|VanLange|Ross.Slate1|Anderson,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,13,Global,all,TRUE +2223,1.22407041549111,High,ML2_Slate1_French_Inlab_execution_illegal_pencilpaper_r.csv,poitiers,7,7,6,7,7,3,1,1,2,1,2,1,2,3,2,1,3,1,3,2,1,4,2,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,poitiers,poitiers,poitiers,France,"Université de Poitiers, France",French,1,illegal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Anderson|Ross.Slate1|Critcher|Graham|Miyamoto|Alter|Inbar|Huang|Bauer|Rottenstrich|Hauser|VanLange,ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,2,Global,all,TRUE +2226,-0.719200798858529,High,ML2_Slate1_French_Inlab_execution_illegal_pencilpaper_r.csv,poitiers,6,6,6,1,6,2,1,1,1,3,1,1,2,2,3,1,2,1,2,1,1,4,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,poitiers,poitiers,poitiers,France,"Université de Poitiers, France",French,1,illegal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Huang|Kay|Inbar|Anderson|Critcher|Ross.Slate1|Alter|Miyamoto|Rottenstrich|Hauser|VanLange|Bauer,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,5,Global,all,TRUE +2227,0.853418979797923,High,ML2_Slate1_French_Inlab_execution_illegal_pencilpaper_r.csv,poitiers,6,5,6,3,6,1,1,1,1,1,1,1,2,1,1,1,2,1,4,1,1,2,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,poitiers,poitiers,poitiers,France,"Université de Poitiers, France",French,1,illegal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Critcher|Ross.Slate1|Miyamoto|Rottenstrich|Alter|Bauer|Graham|Huang|Kay|Anderson|VanLange|Hauser,ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,11,Global,all,TRUE +2229,1.41795821632274,High,ML2_Slate1_French_Inlab_execution_illegal_pencilpaper_r.csv,poitiers,7,5,6,5,7,4,1,1,1,4,1,1,4,4,1,1,3,1,4,1,2,5,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,poitiers,poitiers,poitiers,France,"Université de Poitiers, France",French,1,illegal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Anderson|Inbar|Critcher|Ross.Slate1|Hauser|Miyamoto|VanLange|Graham|Huang|Kay|Bauer|Rottenstrich,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,2,Global,all,TRUE +2233,-0.364757961736546,High,ML2_Slate1_French_Inlab_execution_illegal_pencilpaper_r.csv,poitiers,3,4,3,3,2,3,2,1,1,1,1,1,3,1,1,1,1,1,3,1,1,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,poitiers,poitiers,poitiers,France,"Université de Poitiers, France",French,1,illegal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Huang|Kay|Ross.Slate1|Miyamoto|VanLange|Anderson|Bauer|Inbar|Critcher|Rottenstrich|Alter|Graham,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood,7,Global,all,TRUE +2234,0.266211744403463,High,ML2_Slate1_French_Inlab_execution_illegal_pencilpaper_r.csv,poitiers,3,5,4,4,1,2,1,1,1,2,2,1,1,2,1,1,1,1,4,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,poitiers,poitiers,poitiers,France,"Université de Poitiers, France",French,1,illegal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Bauer|Rottenstrich|Alter|VanLange|Hauser|Graham|Critcher|Inbar|Ross.Slate1|Miyamoto|Anderson|Kay,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,12,Global,all,TRUE +2238,0.786861931751335,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,6,6,6,6,5,4,1,1,2,3,1,1,3,3,1,1,3,1,4,1,1,2,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Alter|Graham|Kay|Ross.Slate1|VanLange|Rottenstrich|Critcher|Inbar|Miyamoto|Anderson|Bauer|Huang,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood,11,Global,all,TRUE +2242,-1.00587692430956,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,4,5,3,3,2,4,4,1,1,1,1,1,4,1,3,2,4,5,3,4,3,2,3,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Graham|Inbar|Bauer|Critcher|Rottenstrich|Miyamoto|Ross.Slate1|Alter|Hauser|Kay|VanLange|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,13,Global,all,TRUE +2247,-0.917312062458796,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,5,5,6,6,5,3,1,1,2,1,1,1,4,3,1,1,4,1,5,1,2,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Critcher|Inbar|Rottenstrich|Graham|Alter|Kay|VanLange|Anderson|Hauser|Ross.Slate1|Bauer|Huang,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,9,Global,all,TRUE +2251,-1.10829454518212,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,6,7,7,4,7,5,1,1,3,5,1,1,5,5,1,2,5,1,5,1,1,5,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Critcher|Miyamoto|Kay|Anderson|Bauer|Hauser|Alter|Huang|Graham|Rottenstrich|Ross.Slate1|VanLange,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing,5,Global,all,TRUE +2253,0.607066400350074,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,4,5,6,5,3,4,1,1,1,1,1,1,2,3,1,1,2,1,2,1,1,2,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Huang|VanLange|Ross.Slate1|Graham|Anderson|Critcher|Miyamoto|Alter|Kay|Hauser|Bauer|Rottenstrich,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,6,Global,all,TRUE +2254,0.741512287557819,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,5,6,6,7,6,4,2,1,3,1,1,1,4,5,1,1,4,1,3,1,2,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Bauer|Alter|Critcher|Hauser|VanLange|Ross.Slate1|Rottenstrich|Kay|Anderson|Graham|Huang|Miyamoto,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,10,Global,all,TRUE +2255,-0.94235177280267,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,6,6,6,5,6,3,2,1,2,2,1,2,2,4,4,4,4,1,3,3,4,1,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Alter|Huang|Bauer|Inbar|Miyamoto|Ross.Slate1|Graham|Hauser|Anderson|Critcher|Rottenstrich|VanLange,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,10,Global,all,TRUE +2256,0.639754851750719,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,4,6,4,5,1,2,3,3,3,1,1,2,1,2,2,3,2,3,3,1,3,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Graham|Critcher|Alter|Inbar|Miyamoto|Bauer|VanLange|Anderson|Kay|Huang|Hauser|Ross.Slate1,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,9,Global,all,TRUE +2258,-0.204485600688061,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,4,6,5,5,5,4,2,2,3,2,1,1,3,3,1,1,4,1,4,1,1,4,3,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Anderson|Ross.Slate1|Inbar|Bauer|Kay|Huang|VanLange|Rottenstrich|Critcher|Miyamoto|Alter|Hauser,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood,2,Global,all,TRUE +2259,0.412518414452978,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,6,7,5,6,2,5,1,1,4,3,1,1,2,3,2,1,3,1,4,1,2,4,2,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Alter|VanLange|Miyamoto|Ross.Slate1|Bauer|Graham|Huang|Rottenstrich|Anderson|Hauser|Critcher|Kay,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +2260,0.158123712199926,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,7,7,7,7,3,1,4,1,1,1,1,1,1,4,1,1,3,1,1,1,5,1,1,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Critcher|Huang|Hauser|VanLange|Miyamoto|Kay|Inbar|Rottenstrich|Alter|Ross.Slate1|Bauer|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood,13,Global,all,TRUE +2264,0.127806972273516,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,6,6,7,6,1,4,1,1,4,2,1,1,5,3,1,1,4,1,5,1,1,5,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Graham|Huang|Hauser|Rottenstrich|Ross.Slate1|Anderson|Alter|Critcher|Inbar|Miyamoto|Bauer|VanLange,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,7,Global,all,TRUE +2267,0.714887629236577,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,6,5,5,6,7,3,3,2,3,2,1,4,3,3,2,2,3,2,3,3,4,1,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Bauer|Miyamoto|Ross.Slate1|Kay|Inbar|Rottenstrich|Hauser|Critcher|VanLange|Graham|Alter|Huang,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,1,Global,all,TRUE +2274,0.21915057380118,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,4,5,6,6,3,5,1,1,3,4,1,1,4,4,1,1,4,1,5,1,1,5,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Inbar|Alter|Kay|Bauer|Anderson|Hauser|Huang|Critcher|Rottenstrich|Ross.Slate1|Miyamoto|VanLange,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +2276,-0.596613469021955,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,6,6,6,7,7,5,1,1,2,3,1,1,5,4,2,1,4,1,4,1,2,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Hauser|Miyamoto|Kay|Alter|Anderson|Rottenstrich|Critcher|Ross.Slate1|VanLange|Bauer|Inbar|Huang,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,6,Global,all,TRUE +2278,0.376924644944031,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,6,5,6,6,2,4,2,1,1,3,1,1,4,3,1,3,2,2,5,1,3,4,1,1,4,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Anderson|Rottenstrich|Kay|Huang|Miyamoto|Bauer|Hauser|Critcher|Ross.Slate1|Inbar|Alter|Graham,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,2,Global,all,TRUE +2279,0.200048078105309,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,6,3,6,7,5,5,2,1,3,1,2,1,5,5,1,1,4,1,4,1,2,5,5,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Critcher|Miyamoto|Bauer|Huang|Inbar|Hauser|Kay|Alter|Anderson|Graham|VanLange|Ross.Slate1,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,10,Global,all,TRUE +2280,0.664667983663194,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,4,5,5,5,3,3,2,1,2,3,1,1,4,4,1,1,4,1,4,1,2,4,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Miyamoto|VanLange|Bauer|Kay|Hauser|Graham|Huang|Anderson|Alter|Rottenstrich|Critcher|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,9,Global,all,TRUE +2281,0.196215771614505,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,5,4,5,4,3,3,2,1,3,1,1,1,3,3,1,1,3,1,4,1,2,3,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Rottenstrich|VanLange|Alter|Huang|Hauser|Bauer|Kay|Inbar|Graham|Anderson|Critcher|Miyamoto,ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,11,Global,all,TRUE +2282,0.319196483199513,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,5,7,6,5,2,3,2,1,4,1,3,3,4,4,2,2,4,2,3,1,2,4,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Critcher|Rottenstrich|Alter|Kay|Huang|VanLange|Ross.Slate1|Hauser|Bauer|Anderson|Graham|Inbar,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,11,Global,all,TRUE +2283,0.357555345931126,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,5,5,4,3,2,2,3,1,2,2,1,1,2,3,1,1,3,1,3,2,1,1,2,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Bauer|Huang|Kay|VanLange|Hauser|Inbar|Critcher|Miyamoto|Rottenstrich|Anderson|Graham,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +2284,-1.23878377293827,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,3,7,5,7,4,5,2,1,5,3,1,1,3,3,1,1,3,2,4,1,1,3,3,1,4,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Alter|Bauer|Graham|VanLange|Ross.Slate1|Huang|Anderson|Kay|Critcher|Miyamoto|Rottenstrich|Hauser,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,8,Global,all,TRUE +2285,0.0329115140263197,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,5,7,7,6,5,4,4,1,3,3,1,1,5,3,1,4,3,1,4,1,4,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Critcher|Alter|Huang|Bauer|Anderson|Rottenstrich|Hauser|Inbar|Ross.Slate1|Graham|VanLange|Kay,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,6,Global,all,TRUE +2289,0.126753405459616,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,7,7,6,6,5,3,1,1,3,2,1,1,4,4,1,1,4,1,4,1,3,3,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Huang|Inbar|Ross.Slate1|Critcher|Bauer|Alter|Anderson|Miyamoto|Hauser|Graham|Rottenstrich|Kay,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,8,Global,all,TRUE +2290,0.770117501075462,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,5,7,5,4,5,5,1,1,3,3,1,1,4,2,1,1,3,1,4,1,1,4,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Bauer|Hauser|VanLange|Anderson|Inbar|Critcher|Kay|Miyamoto|Huang|Rottenstrich|Alter|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,5,Global,all,TRUE +2293,1.18544474944247,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,5,2,6,6,7,5,1,1,4,2,1,1,5,4,2,1,5,1,4,1,1,4,4,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Inbar|Kay|Miyamoto|Anderson|VanLange|Alter|Critcher|Ross.Slate1|Bauer|Hauser|Huang|Graham,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +2294,-0.00202207041715937,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,3,3,5,5,4,4,3,1,3,2,1,1,3,3,1,1,4,1,3,1,1,3,3,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Rottenstrich|Anderson|Inbar|Ross.Slate1|Huang|Miyamoto|Bauer|Alter|VanLange|Kay|Graham|Hauser,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +2297,0.582153268437599,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,5,5,6,5,5,4,1,1,3,3,1,1,3,3,1,1,4,1,3,1,1,4,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Kay|Alter|Miyamoto|Critcher|Bauer|Ross.Slate1|Graham|Rottenstrich|Hauser|Huang|Inbar|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,1,Global,all,TRUE +2298,0.634224665305385,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,6,7,6,7,5,5,2,1,4,4,1,1,5,5,1,2,5,1,5,1,3,5,5,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Kay|Hauser|Graham|Critcher|Rottenstrich|Alter|Inbar|Ross.Slate1|VanLange|Bauer|Anderson|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,12,Global,all,TRUE +2299,0.420560537258181,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,6,6,5,6,5,3,3,1,3,2,1,2,4,4,2,2,4,1,4,2,2,3,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Ross.Slate1|Alter|Anderson|Hauser|Graham|Inbar|Kay|Bauer|Huang|Critcher|Miyamoto|Rottenstrich,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,4,Global,all,TRUE +2300,0.626449345817215,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,6,6,6,6,6,4,3,1,3,2,1,1,4,3,1,1,3,1,4,1,1,2,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Huang|Miyamoto|Ross.Slate1|Inbar|Kay|Alter|Anderson|Hauser|Critcher|VanLange|Rottenstrich|Graham,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,8,Global,all,TRUE +2302,0.115819611000347,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,5,6,6,5,6,5,1,1,3,3,1,1,3,2,2,1,3,1,5,1,3,4,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Miyamoto|Ross.Slate1|VanLange|Inbar|Graham|Huang|Rottenstrich|Kay|Anderson|Alter|Critcher|Hauser,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,10,Global,all,TRUE +2305,0.390637179080203,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,6,7,6,6,5,5,2,2,5,4,1,2,4,3,2,2,4,1,5,2,2,4,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Huang|Kay|Anderson|VanLange|Critcher|Miyamoto|Graham|Rottenstrich|Hauser|Bauer|Alter|Ross.Slate1,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,4,Global,all,TRUE +2306,-0.223854899700966,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,2,3,4,5,3,4,2,1,4,3,1,1,3,3,1,1,2,1,4,1,2,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Graham|VanLange|Anderson|Huang|Miyamoto|Rottenstrich|Ross.Slate1|Inbar|Critcher|Alter|Bauer|Kay,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE,4,Global,all,TRUE +2307,0.0285614728262845,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,6,7,6,6,5,3,2,1,2,2,1,1,4,4,2,1,3,1,3,1,2,3,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Kay|Anderson|Alter|Huang|Inbar|Ross.Slate1|Rottenstrich|Graham|Bauer|VanLange|Miyamoto|Critcher,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +2308,0.897574832291904,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,6,7,6,6,4,3,3,1,2,1,1,1,4,3,2,3,3,2,3,1,3,2,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Ross.Slate1|Inbar|VanLange|Miyamoto|Rottenstrich|Anderson|Bauer|Kay|Hauser|Graham|Huang|Alter,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +2311,-0.230185496097401,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,5,7,6,6,6,4,1,1,4,4,1,1,2,3,1,1,3,1,4,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Huang|Kay|Anderson|Critcher|VanLange|Bauer|Graham|Inbar|Ross.Slate1|Miyamoto|Alter|Hauser,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +2312,0.556986979662326,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,6,5,5,5,6,4,2,1,3,1,1,2,3,4,2,3,2,1,4,1,3,2,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Kay|Hauser|Inbar|Rottenstrich|Bauer|VanLange|Huang|Alter|Graham|Anderson|Miyamoto|Ross.Slate1,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,11,Global,all,TRUE +2314,0.202939749759374,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,6,6,6,5,5,5,1,1,4,2,1,1,4,4,1,1,4,1,5,2,2,4,4,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Bauer|Anderson|Hauser|Miyamoto|Ross.Slate1|Rottenstrich|VanLange|Graham|Alter|Critcher|Inbar|Huang,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,3,Global,all,TRUE +2315,0.667826458634294,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,7,6,7,7,5,4,2,1,3,3,1,1,3,3,1,1,4,2,4,1,2,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Huang|VanLange|Rottenstrich|Inbar|Bauer|Ross.Slate1|Critcher|Miyamoto|Kay|Alter|Graham|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,1,Global,all,TRUE +2316,-0.802893433858823,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,2,3,5,5,3,5,2,2,2,3,2,3,4,4,3,3,4,1,4,1,2,5,3,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Miyamoto|VanLange|Huang|Hauser|Kay|Critcher|Graham|Bauer|Inbar|Anderson|Alter|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing,11,Global,all,TRUE +2318,1.21326319946324,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,7,6,6,7,6,4,2,3,1,2,1,2,3,4,4,1,2,2,4,2,3,3,1,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Hauser|Alter|Kay|Critcher|Miyamoto|Anderson|VanLange|Huang|Inbar|Bauer|Ross.Slate1|Rottenstrich,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +2319,0.658604190583792,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,4,5,6,5,3,2,4,3,2,1,4,4,2,1,4,3,2,4,2,2,4,2,2,1,4,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Anderson|Huang|Alter|Bauer|Miyamoto|Inbar|Ross.Slate1|Critcher|Kay|Graham|Hauser|VanLange,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,2,Global,all,TRUE +2326,0.155358618977259,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,6,6,6,7,6,5,2,1,3,1,1,1,4,3,1,1,3,1,5,1,1,4,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Kay|Critcher|Alter|Inbar|Bauer|Miyamoto|VanLange|Ross.Slate1|Huang|Hauser|Rottenstrich|Graham,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,1,Global,all,TRUE +2327,0.565549062647361,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,3,5,5,6,2,5,2,1,4,3,1,1,3,2,1,1,4,1,4,1,1,4,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Graham|Critcher|Inbar|Rottenstrich|Kay|Bauer|VanLange|Anderson|Ross.Slate1|Miyamoto|Huang|Alter,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,9,Global,all,TRUE +2328,-1.15943895366741,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,7,6,6,7,7,3,3,1,3,2,1,3,3,4,2,2,4,1,3,1,2,3,2,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Inbar|Anderson|VanLange|Rottenstrich|Miyamoto|Graham|Hauser|Kay|Ross.Slate1|Huang|Critcher|Bauer,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,3,Global,all,TRUE +2329,-0.556274051093941,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,5,2,6,3,5,5,4,1,3,3,1,1,3,2,3,1,4,1,5,1,4,2,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|Kay|Anderson|Bauer|Ross.Slate1|Alter|Graham|Critcher|VanLange|Rottenstrich|Inbar|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,4,Global,all,TRUE +2331,0.761021811456359,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,7,7,7,7,5,5,1,1,4,3,1,1,5,4,1,1,5,1,5,1,1,4,4,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Huang|VanLange|Anderson|Inbar|Graham|Miyamoto|Bauer|Hauser|Kay|Alter|Critcher|Ross.Slate1,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE,4,Global,all,TRUE +2332,-1.5433981207647,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,6,6,6,7,6,4,2,1,3,1,1,1,2,2,2,1,3,1,2,1,1,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Kay|Inbar|Ross.Slate1|Rottenstrich|Graham|Hauser|Critcher|Bauer|VanLange|Huang|Alter|Anderson,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing,13,Global,all,TRUE +2333,-0.146884017374941,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,6,5,7,6,5,4,2,1,4,3,1,1,4,4,2,1,5,1,4,1,2,3,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Ross.Slate1|Bauer|Kay|Alter|Graham|Miyamoto|Inbar|Rottenstrich|VanLange|Hauser|Anderson|Huang,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +2335,0.955569797353456,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,5,5,3,6,5,3,4,2,2,1,1,4,2,3,2,3,1,1,4,2,1,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Bauer|Huang|Anderson|Ross.Slate1|Critcher|Rottenstrich|Alter|Kay|Inbar|Graham|Miyamoto|Hauser,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,4,Global,all,TRUE +2337,0.778553005629098,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,4,5,4,5,3,2,1,1,3,2,1,3,2,2,2,1,2,1,3,1,1,3,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|VanLange|Hauser|Huang|Bauer|Inbar|Graham|Kay|Critcher|Anderson|Rottenstrich|Alter|Ross.Slate1,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,10,Global,all,TRUE +2338,1.02767067829961,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,3,6,5,2,2,5,2,1,5,3,1,1,5,4,2,2,4,1,5,1,2,4,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Anderson|Graham|VanLange|Inbar|Rottenstrich|Bauer|Miyamoto|Critcher|Kay|Alter|Hauser|Ross.Slate1,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +2339,-0.0377446438281042,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,5,3,5,6,5,4,1,1,3,1,1,1,3,3,2,2,3,1,5,1,1,3,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Miyamoto|Huang|VanLange|Hauser|Rottenstrich|Alter|Ross.Slate1|Kay|Critcher|Graham|Bauer|Anderson,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,13,Global,all,TRUE +2340,-0.460453829934843,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,6,4,6,6,6,4,1,1,2,2,1,1,3,4,1,2,2,1,4,1,1,3,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Inbar|Critcher|Graham|Rottenstrich|Anderson|Bauer|Kay|Hauser|Huang|Ross.Slate1|VanLange|Alter,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,6,Global,all,TRUE +2341,0.443621917876254,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,5,5,6,5,5,4,2,1,4,2,1,2,4,4,2,1,4,2,4,1,2,4,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Miyamoto|Bauer|Kay|Huang|Rottenstrich|Hauser|Graham|Ross.Slate1|Alter|Critcher|VanLange|Inbar,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,1,Global,all,TRUE +2344,-0.352239219299908,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,6,6,7,4,6,4,1,1,3,4,1,1,3,2,1,1,3,1,4,1,1,4,4,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|VanLange|Anderson|Critcher|Hauser|Alter|Bauer|Miyamoto|Huang|Graham|Ross.Slate1|Kay|Rottenstrich,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,3,Global,all,TRUE +2345,0.435059834891219,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,6,7,6,3,4,3,3,1,3,2,1,2,3,2,2,1,3,1,4,1,2,3,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Ross.Slate1|Kay|Rottenstrich|Inbar|Hauser|Bauer|Alter|Huang|Critcher|VanLange|Graham|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,13,Global,all,TRUE +2346,0.781318098851766,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,5,4,7,7,7,5,1,2,2,3,1,2,5,3,1,1,4,1,5,1,4,3,2,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Anderson|Hauser|Alter|Inbar|Rottenstrich|Miyamoto|Bauer|VanLange|Huang|Graham|Ross.Slate1|Kay,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,2,Global,all,TRUE +2348,0.709484021222642,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,5,5,5,5,1,2,3,2,2,1,2,2,3,2,2,1,2,2,3,2,2,1,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Bauer|Critcher|Miyamoto|Alter|Hauser|Inbar|Huang|Anderson|Graham|VanLange|Kay|Rottenstrich,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,9,Global,all,TRUE +2350,0.72608822701288,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,7,7,6,7,6,4,1,1,4,2,1,1,3,4,1,1,4,1,4,1,1,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Graham|Inbar|Ross.Slate1|VanLange|Huang|Miyamoto|Hauser|Critcher|Rottenstrich|Anderson|Bauer|Alter,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +2353,-0.902672539940123,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,5,5,6,5,4,4,2,1,4,4,1,1,5,4,3,2,5,1,4,1,2,4,4,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Miyamoto|Huang|Bauer|Graham|Inbar|Critcher|Hauser|Anderson|Kay|Ross.Slate1|Rottenstrich|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood,9,Global,all,TRUE +2354,-0.910450084898891,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,6,7,6,7,7,5,1,1,4,4,1,2,5,4,1,1,5,1,5,1,1,5,5,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Alter|Hauser|Miyamoto|Critcher|Inbar|Rottenstrich|Bauer|VanLange|Huang|Ross.Slate1|Graham|Anderson,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +2364,-0.188527933509054,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,5,5,5,6,5,5,2,2,3,4,2,2,5,4,2,2,5,1,4,1,3,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Hauser|Miyamoto|Huang|Graham|Kay|Ross.Slate1|Alter|Critcher|VanLange|Rottenstrich|Inbar|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,1,Global,all,TRUE +2367,0.770117501075462,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,6,5,6,6,6,5,1,1,5,2,1,1,5,3,1,1,3,1,5,1,1,4,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Rottenstrich|Huang|Miyamoto|Kay|Graham|VanLange|Inbar|Ross.Slate1|Alter|Anderson|Hauser|Critcher,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing,11,Global,all,TRUE +2369,-0.362386250262311,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,6,7,5,7,3,5,4,1,3,3,2,1,3,4,4,1,3,2,3,2,4,4,3,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Alter|Rottenstrich|Critcher|Kay|Huang|VanLange|Ross.Slate1|Hauser|Miyamoto|Inbar|Bauer|Anderson,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,13,Global,all,TRUE +2370,-0.174028635876016,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,3,5,5,4,3,3,1,1,4,1,2,1,2,3,2,2,5,1,4,1,2,1,3,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Bauer|Hauser|Inbar|Ross.Slate1|Rottenstrich|Graham|Kay|VanLange|Anderson|Huang|Alter|Miyamoto,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five,10,Global,all,TRUE +2373,0.238800322585355,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,6,7,6,6,6,4,5,1,4,3,3,3,4,4,1,1,5,1,5,2,1,3,5,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Miyamoto|Huang|Inbar|Alter|Anderson|Graham|Ross.Slate1|Kay|Hauser|Bauer|VanLange|Critcher,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,6,Global,all,TRUE +2376,0.0144555569416795,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,6,5,5,5,3,3,1,1,2,3,1,1,4,1,1,1,2,1,3,1,1,2,2,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Rottenstrich|Bauer|Graham|Alter|VanLange|Inbar|Hauser|Huang|Kay|Miyamoto|Ross.Slate1|Critcher,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,1,Global,all,TRUE +2385,0.8833423379759,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,6,5,5,6,3,2,3,2,1,1,1,2,2,2,3,1,3,2,2,4,3,2,1,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Inbar|Critcher|Alter|Anderson|Ross.Slate1|Rottenstrich|Huang|Kay|Bauer|Hauser|Graham|VanLange,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood,5,Global,all,TRUE +2387,-0.564582977216178,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,1,4,2,5,1,5,1,5,4,1,1,3,5,2,5,2,5,4,4,1,4,1,4,1,5,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Bauer|Huang|VanLange|Kay|Hauser|Graham|Anderson|Critcher|Ross.Slate1|Alter|Miyamoto|Inbar,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,8,Global,all,TRUE +2389,-0.0270617807610338,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,6,5,5,7,7,4,4,3,5,3,1,4,3,5,3,1,3,1,4,2,4,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Alter|Inbar|Miyamoto|Hauser|VanLange|Ross.Slate1|Anderson|Graham|Kay|Bauer|Critcher|Rottenstrich,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,8,Global,all,TRUE +2392,0.7867217068657,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,6,7,5,7,6,5,2,1,3,4,1,1,5,4,1,1,4,1,5,1,1,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Hauser|Rottenstrich|Anderson|Inbar|Graham|Kay|Miyamoto|Bauer|Critcher|VanLange|Ross.Slate1|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,4,Global,all,TRUE +2395,-0.758864159796241,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,7,7,7,7,6,3,4,1,3,1,1,3,5,3,2,2,4,3,3,1,4,2,3,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Anderson|Inbar|Graham|Critcher|Bauer|Hauser|Alter|Miyamoto|Ross.Slate1|Huang|VanLange|Kay,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +2402,-0.543095123591837,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,7,7,7,7,7,2,3,1,2,1,1,3,1,4,3,1,4,1,4,3,2,2,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Graham|Alter|VanLange|Inbar|Huang|Anderson|Critcher|Ross.Slate1|Miyamoto|Hauser|Kay|Rottenstrich,ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,7,Global,all,TRUE +2409,-0.648151259255673,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,6,6,7,6,7,4,3,4,3,5,4,4,5,3,3,5,4,3,4,1,3,4,3,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Huang|Hauser|Kay|Anderson|Miyamoto|Alter|Graham|Bauer|Ross.Slate1|Rottenstrich|Critcher|Inbar,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,5,Global,all,TRUE +2411,0.287559373142169,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,3,4,5,3,3,4,1,1,4,3,1,1,3,3,1,1,4,1,3,1,1,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Kay|Alter|Ross.Slate1|Bauer|Critcher|Miyamoto|Graham|Hauser|Inbar|Huang|Anderson|VanLange,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,12,Global,all,TRUE +2414,-1.06150017789687,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,4,5,5,4,3,3,5,2,3,2,1,3,5,2,4,3,3,1,3,4,4,3,2,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Ross.Slate1|Critcher|Kay|Hauser|Bauer|Anderson|VanLange|Huang|Miyamoto|Alter|Rottenstrich|Inbar,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,7,Global,all,TRUE +2416,0.435326638208253,High,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,6,6,7,7,6,2,1,1,4,1,1,1,4,4,1,1,2,1,4,1,1,3,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Rottenstrich|Ross.Slate1|Hauser|Anderson|Alter|Critcher|Kay|Miyamoto|VanLange|Inbar|Graham|Huang,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +2420,1.03874469764452,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,5,6,6,5,3,1,1,4,1,1,3,3,4,1,1,4,3,4,3,3,4,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2421,0.61234342993261,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,6,7,7,6,5,1,1,5,5,1,1,5,5,1,1,5,1,5,3,1,5,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2422,0.369022747024463,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,7,2,7,5,7,5,1,1,5,5,1,1,5,5,1,1,5,3,5,5,1,5,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2428,0.582026690006201,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,7,7,7,7,6,5,4,3,3,5,3,2,4,5,4,1,4,4,5,2,3,2,5,5,4,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2431,0.736768864609351,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,5,5,6,5,5,4,2,2,4,4,3,3,3,3,2,2,4,2,4,1,1,4,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2432,0.477895317254266,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,6,6,5,6,3,2,3,5,4,1,3,4,2,2,3,4,4,4,3,3,4,5,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2434,-0.147937584188841,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,5,5,6,6,5,3,2,1,2,2,1,1,2,3,2,1,3,1,3,1,2,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2437,0.277018960431333,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,5,4,4,7,2,5,5,3,4,4,3,4,3,2,3,3,5,3,2,4,4,3,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2438,0.700781713351972,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,5,5,5,5,5,5,1,1,4,4,1,1,4,4,1,1,5,1,4,3,2,4,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2439,0.609831493572742,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,1,4,4,3,1,4,1,2,4,2,1,1,2,3,1,1,2,2,4,1,1,4,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2442,1.13008829917218,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,5,6,5,4,4,1,1,4,2,1,1,4,4,1,1,4,1,4,1,1,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2443,0.0244760094726839,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,5,6,6,7,5,3,4,2,3,4,2,2,3,3,4,4,3,3,3,3,5,4,2,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2447,0.201886182945475,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,3,3,4,4,2,4,1,1,5,3,1,1,3,4,1,1,5,1,5,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2449,0.0230312863809505,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,7,4,7,7,5,1,1,5,5,1,1,5,5,1,1,5,1,5,1,1,5,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2450,0.399339486950873,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,7,6,5,6,5,2,4,3,5,1,2,4,5,1,3,3,1,4,3,2,5,3,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2456,0.238926901016754,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,4,5,4,7,6,4,3,2,4,4,2,2,5,1,3,2,4,3,4,3,4,5,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2457,0.737162246357784,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,5,5,6,6,5,5,1,1,5,5,1,1,5,4,2,1,5,1,5,1,1,5,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2459,0.722662948724746,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,5,3,3,3,1,3,2,2,3,3,2,2,4,3,2,2,3,2,3,2,2,4,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2462,-1.32577733326589,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,4,5,5,6,4,5,1,1,5,5,1,1,5,5,1,1,5,1,5,1,1,5,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2465,-0.195518714970956,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,5,6,6,6,4,4,2,2,5,4,3,2,5,4,2,2,4,1,4,4,2,4,5,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2466,1.15460804933622,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,5,6,6,7,2,5,2,2,4,4,2,2,4,4,4,1,5,5,3,3,4,4,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2467,1.42086353443104,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,7,7,7,7,1,5,1,1,5,5,1,1,5,5,1,1,5,1,5,1,1,5,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2469,-0.300968232383225,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,5,5,6,5,5,4,1,1,4,4,1,1,4,4,1,1,5,1,5,1,1,5,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2470,0.963878723475693,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,5,1,2,1,1,4,1,1,5,2,1,2,1,4,1,1,2,1,5,3,1,2,5,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2471,0.314984441414513,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,6,6,6,4,4,2,2,4,4,2,2,4,4,2,2,4,2,4,2,2,4,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2473,0.774860924023931,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,3,3,5,5,4,4,2,2,3,4,1,1,4,3,3,2,4,1,4,2,2,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2477,-0.316912253107996,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,6,7,6,7,5,2,1,4,5,1,1,4,4,1,1,5,1,4,2,2,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2478,0.63752336516212,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,5,6,5,6,5,4,1,1,4,5,2,1,4,5,1,2,4,2,4,4,1,4,4,5,4,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2480,0.384180004252368,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,1,1,2,2,1,2,3,3,3,2,1,2,2,3,3,4,3,3,2,1,1,2,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2481,-0.636419280315901,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,6,5,6,3,5,4,2,5,2,1,3,4,3,1,1,3,2,5,2,1,2,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2483,-0.753994158416374,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,3,6,5,1,5,1,1,1,5,1,1,4,5,1,4,5,1,5,1,1,5,4,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2484,-0.0600192609493112,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,5,4,6,5,3,4,2,2,3,3,2,2,3,4,2,2,3,2,3,2,2,4,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2485,0.905616955097107,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,4,5,5,5,5,5,1,1,5,4,1,1,5,4,1,1,4,1,5,4,5,5,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2487,0.043451926737156,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,4,5,5,6,5,5,1,3,5,3,1,4,4,3,3,1,5,2,5,3,3,4,4,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2488,1.22407041549111,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,6,3,4,2,4,1,1,4,5,1,1,5,4,2,1,5,1,5,1,2,5,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2489,0.703293649711841,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,3,4,4,3,2,5,1,1,5,5,1,1,5,4,1,1,5,1,5,1,1,5,5,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2490,0.380096766369367,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,2,2,2,2,1,5,1,1,5,5,1,1,5,5,1,1,5,1,5,5,1,5,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2491,0.224301024952317,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,7,7,7,7,7,5,1,1,5,5,1,1,5,5,1,1,5,1,5,1,1,5,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2493,0.0848426860084702,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,7,4,6,5,5,4,2,3,5,4,2,2,4,4,2,3,5,3,5,4,4,4,3,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2494,0.742706079257354,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,5,6,5,3,5,1,4,5,4,3,1,4,4,1,2,3,1,5,2,1,4,5,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2495,1.03874469764452,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,4,4,5,4,4,4,1,1,5,3,1,1,4,3,1,1,3,1,5,4,1,4,5,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2498,0.983514825805632,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,5,6,6,6,7,5,1,1,5,5,1,1,5,4,4,1,5,1,5,1,1,5,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2499,-0.438965976310502,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,7,6,5,3,2,1,5,4,3,2,2,2,2,5,2,1,4,4,1,3,3,3,1,2,5,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2501,-0.724997788620898,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,6,6,6,5,5,1,1,5,5,1,1,5,5,1,1,5,1,5,1,1,5,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2505,0.245915457008057,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,6,6,6,4,5,1,1,5,3,1,1,4,5,1,1,5,1,5,1,1,5,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2510,-0.329697798861667,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,5,6,6,2,4,1,1,2,3,1,1,2,4,2,1,4,2,3,1,2,2,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2514,1.10531539214534,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,7,7,7,7,7,5,2,4,5,5,3,4,5,5,3,2,5,3,5,1,2,5,5,5,3,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2516,-0.661065608911342,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,5,5,5,6,5,5,2,3,5,4,2,1,4,4,3,3,5,2,5,3,3,4,5,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2517,0.774734345592531,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,7,7,7,7,7,5,1,1,5,5,1,1,5,5,1,1,5,1,5,1,1,3,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2519,0.844983475244287,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,3,3,3,4,4,4,3,2,3,4,4,3,2,3,3,3,3,3,3,3,3,3,2,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2520,-0.271169227166047,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,2,5,6,5,2,4,3,1,5,5,1,1,5,5,1,1,3,4,5,1,3,4,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2521,0.249605313142626,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,3,3,2,7,3,2,3,5,3,1,1,4,4,4,1,4,4,3,5,3,5,5,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2522,0.41752864071848,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,5,7,7,7,7,4,1,1,2,4,1,4,4,5,1,1,4,1,4,3,1,4,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2523,0.459972966803694,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,4,4,6,5,3,4,1,3,4,3,1,2,4,4,2,2,4,2,4,3,3,4,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2527,0.900480150400206,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,4,4,5,6,2,5,1,1,5,3,1,1,5,5,1,1,5,1,5,1,1,5,5,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2531,-0.664237730336678,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,6,6,6,6,4,1,1,4,3,1,1,4,4,4,1,4,1,4,1,1,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2532,0.611023059801677,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,5,5,6,4,5,4,1,1,4,4,1,1,4,4,3,1,4,1,5,2,3,4,4,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2533,1.64506807518908,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,1,3,5,2,2,4,3,2,4,1,1,2,2,2,2,1,3,1,4,1,2,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2535,0.77591449083783,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,6,6,6,5,5,3,2,4,4,2,2,5,2,3,2,4,3,4,3,2,4,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2536,-0.548767760393405,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,7,6,6,6,5,5,1,2,5,5,2,1,5,5,2,1,4,2,4,3,2,5,5,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2537,1.14683272984805,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,4,2,2,2,2,3,1,1,5,2,3,2,3,2,2,2,5,3,4,2,2,3,4,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2538,0.453909173724292,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,5,6,5,5,5,1,1,5,2,1,1,3,4,1,1,3,1,5,1,2,4,5,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2540,1.65047168320302,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,3,1,2,2,1,3,3,1,4,3,1,4,4,4,2,1,4,3,4,4,3,4,4,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2541,0.482514387241935,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,6,6,5,5,4,4,2,3,3,4,4,5,3,5,4,2,3,4,4,4,4,4,3,5,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2542,1.73641167671675,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,5,5,5,5,5,4,1,1,4,4,1,1,3,5,1,1,4,1,4,1,1,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2543,0.529435332958583,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,5,5,5,5,5,4,1,1,4,4,1,1,4,4,2,1,4,1,4,1,1,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2544,0.199907853219673,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,6,7,7,7,5,1,1,5,5,1,1,5,5,1,5,5,1,5,1,1,5,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2548,-0.209357827538527,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,7,7,6,5,4,1,1,4,4,1,1,4,5,2,1,1,2,4,2,1,3,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2549,-0.557987802973308,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,5,7,6,6,4,2,2,2,4,2,2,4,4,2,3,2,2,3,3,2,4,4,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2551,0.850653886575256,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,5,4,3,2,3,4,2,1,4,3,1,1,3,3,1,1,3,1,4,1,2,4,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2552,0.63092596544865,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,5,3,5,5,3,4,2,3,4,4,2,4,2,3,2,3,4,2,4,2,2,4,4,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2553,0.205184882802209,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,1,4,3,3,4,4,3,1,3,2,1,2,2,4,1,1,3,1,5,1,2,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2554,0.669284828180263,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,3,2,4,4,5,3,4,4,2,2,1,2,2,3,1,2,3,2,3,1,1,2,2,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2557,0.766692222787328,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,6,6,5,3,4,1,1,5,4,1,1,4,4,1,1,4,1,5,1,1,4,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Rottenstrich|Miyamoto|Hauser|Kay|Alter|Inbar|Anderson|VanLange|Bauer|Critcher|Huang|Ross.Slate1,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,8,Global,all,TRUE +2559,0.107650909763745,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,5,5,4,5,3,3,2,2,4,3,1,1,2,2,2,1,3,1,4,2,2,3,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Critcher|Bauer|Alter|Huang|Inbar|Miyamoto|Hauser|VanLange|Graham|Anderson|Ross.Slate1|Kay,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,11,Global,all,TRUE +2560,-0.329700024332266,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,4,5,5,4,6,5,1,1,5,4,1,1,5,5,1,2,5,1,5,2,2,4,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Hauser|Huang|Alter|Inbar|Anderson|Ross.Slate1|VanLange|Graham|Critcher|Miyamoto|Kay|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,6,Global,all,TRUE +2565,0.0181454130762481,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,3,4,4,3,3,5,1,1,5,5,1,1,5,5,1,1,5,1,5,1,1,5,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Miyamoto|Hauser|Graham|Alter|Huang|Ross.Slate1|VanLange|Inbar|Kay|Bauer|Anderson|Critcher,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,12,Global,all,TRUE +2566,1.30697851246514,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,5,6,6,5,1,4,1,1,4,2,1,1,4,2,1,1,5,1,4,1,1,4,5,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Huang|VanLange|Rottenstrich|Alter|Kay|Anderson|Bauer|Critcher|Hauser|Miyamoto|Inbar|Ross.Slate1,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,7,Global,all,TRUE +2568,1.52604624852628,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,4,5,5,6,5,3,3,4,4,4,4,3,2,4,3,4,3,4,3,3,4,4,3,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|VanLange|Graham|Bauer|Alter|Miyamoto|Hauser|Kay|Rottenstrich|Critcher|Inbar|Huang|Anderson,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,13,Global,all,TRUE +2571,-0.0395827486682704,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,7,6,5,4,5,1,1,5,3,1,1,3,4,1,1,4,1,5,1,1,2,5,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Anderson|VanLange|Inbar|Ross.Slate1|Graham|Bauer|Alter|Huang|Critcher|Rottenstrich|Kay|Hauser,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +2578,0.0893215311105039,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,5,5,6,6,7,5,1,3,2,1,1,1,1,5,1,5,2,1,3,1,3,1,1,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Anderson|Miyamoto|Ross.Slate1|Hauser|Alter|Inbar|Rottenstrich|Kay|VanLange|Graham|Huang|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,2,Global,all,TRUE +2579,0.0811506044033023,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,7,6,5,6,5,3,4,5,3,5,3,4,4,4,2,5,4,3,4,5,4,3,3,5,4,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Critcher|Hauser|Huang|Rottenstrich|Miyamoto|Ross.Slate1|Graham|Bauer|Inbar|Alter|Kay|VanLange,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +2582,0.337779018715552,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,5,5,6,6,4,4,2,1,4,3,2,1,3,4,2,2,4,2,5,2,3,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Rottenstrich|Bauer|Miyamoto|Kay|Alter|Graham|Ross.Slate1|Hauser|VanLange|Huang|Anderson|Inbar,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood,12,Global,all,TRUE +2583,-0.461505171278144,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,5,6,6,6,5,5,1,1,3,4,1,1,4,4,1,1,4,1,5,1,1,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Inbar|Huang|Rottenstrich|VanLange|Hauser|Bauer|Kay|Critcher|Alter|Graham|Anderson|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing,12,Global,all,TRUE +2585,-0.383609526040218,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,2,1,1,1,1,5,2,2,5,1,2,5,2,3,4,4,2,2,5,4,3,3,5,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Anderson|Bauer|Huang|Alter|Rottenstrich|VanLange|Kay|Miyamoto|Hauser|Graham|Critcher|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection,2,Global,all,TRUE +2587,0.609845140026978,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,5,5,6,5,2,5,1,1,5,4,1,1,4,4,1,1,3,1,4,1,2,3,5,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Bauer|Huang|Ross.Slate1|Anderson|VanLange|Rottenstrich|Critcher|Alter|Hauser|Inbar|Graham|Kay,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,5,Global,all,TRUE +2591,1.73641167671675,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,6,6,5,4,4,1,2,4,4,2,1,4,4,1,3,4,4,4,3,3,4,4,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Rottenstrich|Graham|Critcher|Hauser|Huang|Alter|Kay|Miyamoto|Inbar|Anderson|Ross.Slate1|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood,11,Global,all,TRUE +2593,0.792532343082304,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,7,6,6,6,6,5,1,1,4,4,5,4,5,4,5,4,5,4,5,4,1,5,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Miyamoto|VanLange|Anderson|Rottenstrich|Alter|Critcher|Kay|Bauer|Inbar|Huang|Graham|Hauser,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +2595,0.484619295399135,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,4,2,4,3,2,4,1,1,4,4,1,1,5,3,2,1,5,2,3,4,2,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Ross.Slate1|Hauser|Huang|Rottenstrich|Inbar|Kay|Graham|Bauer|Critcher|Anderson|VanLange|Miyamoto,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +2596,0.725441688401649,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,4,3,5,5,5,3,2,2,2,3,2,2,3,3,2,2,4,2,4,3,2,3,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Ross.Slate1|Kay|Miyamoto|Alter|Graham|Anderson|Hauser|Huang|Critcher|Rottenstrich|Inbar|VanLange,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,7,Global,all,TRUE +2598,-0.0449863566822056,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,5,5,5,5,5,4,1,2,4,4,1,1,3,4,1,1,4,1,4,1,1,3,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Rottenstrich|Huang|Inbar|Ross.Slate1|Miyamoto|Anderson|Bauer|Critcher|Kay|Graham|Hauser|Alter,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five,7,Global,all,TRUE +2599,-0.34854936316534,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,3,2,2,2,1,5,1,1,5,3,1,1,5,5,1,1,5,1,5,5,1,5,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Huang|Inbar|Alter|Anderson|Ross.Slate1|Graham|Critcher|Miyamoto|Kay|VanLange|Rottenstrich|Hauser,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +2601,1.03334108963058,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,4,5,5,3,2,4,1,1,5,3,1,1,3,4,1,1,5,1,5,1,1,4,5,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Bauer|Kay|Alter|Rottenstrich|Graham|Critcher|Huang|Miyamoto|Hauser|Anderson|Inbar|Ross.Slate1,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,11,Global,all,TRUE +2602,-0.701922761548588,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,6,6,6,6,4,1,2,4,4,1,1,4,4,1,1,3,2,4,2,2,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Critcher|Bauer|Ross.Slate1|Anderson|Alter|Miyamoto|Kay|VanLange|Inbar|Hauser|Huang|Graham,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,5,Global,all,TRUE +2603,0.648063777872956,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,4,4,4,5,3,5,3,4,5,3,2,2,5,5,4,3,2,2,4,4,3,3,4,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Graham|Ross.Slate1|Huang|Hauser|Miyamoto|VanLange|Kay|Alter|Anderson|Critcher|Bauer|Rottenstrich,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +2605,-0.238356422804603,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,4,5,4,3,2,3,1,1,4,4,1,1,3,5,1,1,4,1,4,1,1,4,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Huang|Kay|Anderson|Graham|Critcher|Bauer|Inbar|VanLange|Rottenstrich|Hauser|Ross.Slate1|Miyamoto,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,4,Global,all,TRUE +2607,0.296795287646907,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,4,3,6,2,1,5,1,1,5,5,1,1,5,5,1,1,5,1,5,1,1,5,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Anderson|Hauser|Graham|Rottenstrich|Kay|Inbar|Huang|Bauer|Alter|Ross.Slate1|Critcher|VanLange,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,2,Global,all,TRUE +2608,0.217577046807448,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,7,6,6,5,5,2,3,5,4,5,4,4,5,5,4,5,3,2,5,5,5,5,4,5,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Hauser|Miyamoto|Inbar|Anderson|Rottenstrich|Alter|Ross.Slate1|Huang|Kay|Bauer|VanLange|Critcher,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,5,Global,all,TRUE +2616,1.15223633786199,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,6,6,6,4,5,1,1,5,4,1,1,5,4,1,1,5,1,5,1,1,5,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Ross.Slate1|Huang|Miyamoto|VanLange|Hauser|Anderson|Critcher|Kay|Graham|Alter|Inbar|Rottenstrich,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood,7,Global,all,TRUE +2618,1.68382031966913,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,4,4,4,4,2,4,3,3,4,4,1,3,4,4,3,2,4,3,4,2,2,4,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Anderson|Huang|Rottenstrich|Bauer|Hauser|Graham|Inbar|VanLange|Alter|Ross.Slate1|Critcher|Miyamoto,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five,2,Global,all,TRUE +2620,0.198727707974375,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,4,5,5,4,5,5,4,2,5,5,1,1,4,5,3,1,5,1,5,4,1,5,5,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Huang|Hauser|Rottenstrich|Graham|VanLange|Inbar|Alter|Anderson|Critcher|Bauer|Ross.Slate1|Kay,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +2625,1.22986740525348,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,4,5,5,5,2,4,1,1,4,3,1,1,4,4,1,1,4,1,4,1,1,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|VanLange|Inbar|Anderson|Ross.Slate1|Rottenstrich|Critcher|Alter|Graham|Bauer|Miyamoto|Kay|Huang,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,4,Global,all,TRUE +2626,0.43809173143092,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,5,4,4,4,5,4,1,1,4,4,1,2,4,4,2,1,4,2,4,2,2,4,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Inbar|Graham|Ross.Slate1|Anderson|Critcher|Hauser|Huang|Kay|Rottenstrich|Alter|Bauer|Miyamoto,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,5,Global,all,TRUE +2628,0.689974497324102,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,5,7,6,5,3,2,3,5,4,3,2,5,5,4,3,3,4,2,3,4,4,3,4,5,3,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|VanLange|Miyamoto|Alter|Anderson|Huang|Graham|Rottenstrich|Hauser|Bauer|Ross.Slate1|Critcher|Inbar,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,5,Global,all,TRUE +2629,1.73641167671675,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,6,7,2,6,1,1,4,4,4,3,4,4,4,4,1,4,1,4,4,1,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Anderson|Hauser|Rottenstrich|Ross.Slate1|Miyamoto|Alter|Huang|Bauer|Critcher|Graham|VanLange|Kay,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,2,Global,all,TRUE +2630,0.645425263081688,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,7,6,7,6,6,5,1,1,5,5,1,2,4,5,2,1,4,1,5,1,1,5,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|VanLange|Rottenstrich|Graham|Critcher|Anderson|Inbar|Kay|Ross.Slate1|Miyamoto|Hauser|Alter|Huang,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five,6,Global,all,TRUE +2632,-0.71049626551726,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,6,7,6,6,5,1,1,5,5,1,1,5,5,1,1,4,1,4,1,1,5,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Critcher|Huang|Anderson|Rottenstrich|Hauser|VanLange|Kay|Bauer|Alter|Inbar|Miyamoto|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,4,Global,all,TRUE +2634,0.764713893061528,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,6,6,6,5,5,1,1,5,2,1,1,4,4,1,1,4,1,5,1,3,4,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Rottenstrich|Bauer|Huang|Alter|Critcher|Miyamoto|Inbar|Ross.Slate1|VanLange|Anderson|Graham|Hauser,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +2636,-0.705488264722357,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,6,6,6,5,4,2,2,4,4,2,2,4,4,3,2,4,2,4,3,2,4,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Anderson|Graham|Miyamoto|Alter|Hauser|VanLange|Inbar|Kay|Huang|Ross.Slate1|Bauer|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,2,Global,all,TRUE +2639,-0.0351039035662369,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,1,1,2,1,2,5,1,2,5,3,1,5,4,4,1,2,4,1,5,1,2,3,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Rottenstrich|Kay|Miyamoto|Critcher|Alter|Anderson|Bauer|Hauser|Ross.Slate1|Huang|Graham|Inbar,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +2643,-0.0575050991188429,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,7,7,7,7,7,5,2,5,5,5,1,2,5,5,1,5,5,5,5,4,2,5,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Kay|Rottenstrich|Anderson|VanLange|Bauer|Critcher|Miyamoto|Hauser|Inbar|Alter|Graham|Huang,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,4,Global,all,TRUE +2646,-0.27038468913978,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,6,6,6,6,4,1,1,4,4,1,2,4,4,2,2,4,2,5,2,2,4,5,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Bauer|Ross.Slate1|Rottenstrich|Inbar|Hauser|Graham|Miyamoto|Alter|Huang|Kay|VanLange|Anderson,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,13,Global,all,TRUE +2648,1.37103727060609,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,3,5,1,2,1,5,1,1,5,1,2,2,2,3,1,3,4,1,4,1,1,1,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Bauer|Miyamoto|Anderson|Ross.Slate1|Graham|Kay|Hauser|Critcher|Inbar|Huang|VanLange|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,4,Global,all,TRUE +2649,-0.352492376162706,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,6,6,6,6,4,1,1,4,4,1,1,4,4,2,2,4,1,4,1,2,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|VanLange|Huang|Graham|Hauser|Miyamoto|Alter|Inbar|Critcher|Anderson|Ross.Slate1|Rottenstrich|Bauer,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,10,Global,all,TRUE +2651,0.369554128187932,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,2,5,6,5,7,4,2,1,2,3,1,1,4,2,1,1,2,1,2,1,1,2,4,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Hauser|Huang|Ross.Slate1|Anderson|Graham|Miyamoto|Bauer|Kay|VanLange|Alter|Critcher|Rottenstrich,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +2652,0.850653886575256,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,1,3,2,2,1,3,1,2,3,1,2,2,1,3,1,2,3,1,4,1,1,1,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Rottenstrich|Kay|Miyamoto|Hauser|Alter|Bauer|VanLange|Anderson|Huang|Ross.Slate1|Inbar|Critcher,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,9,Global,all,TRUE +2653,0.290071309502038,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,7,7,5,5,5,1,1,4,4,1,1,5,5,2,2,5,1,4,2,3,5,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Alter|Hauser|Anderson|Graham|Ross.Slate1|Kay|Inbar|VanLange|Bauer|Rottenstrich|Huang|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,4,Global,all,TRUE +2654,0.335674110558352,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,5,4,6,5,4,3,1,1,1,2,1,1,2,4,1,1,4,1,4,1,1,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|Ross.Slate1|Anderson|Huang|Kay|Bauer|Graham|Rottenstrich|Alter|VanLange|Critcher|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,4,Global,all,TRUE +2656,0.666646313388995,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,6,6,6,6,5,1,1,4,5,1,2,5,5,2,1,1,1,5,2,1,4,5,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Ross.Slate1|Hauser|Alter|Graham|Huang|Inbar|Anderson|Bauer|VanLange|Miyamoto|Kay|Critcher,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +2657,0.92236138577298,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,6,6,6,6,3,2,3,4,4,2,2,3,4,3,2,4,2,3,2,2,3,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Bauer|Miyamoto|Ross.Slate1|VanLange|Kay|Graham|Critcher|Rottenstrich|Alter|Inbar|Hauser|Anderson,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,13,Global,all,TRUE +2662,-0.879473159907014,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,5,5,5,5,5,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Huang|Graham|VanLange|Miyamoto|Hauser|Anderson|Critcher|Kay|Alter|Bauer|Ross.Slate1|Rottenstrich,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,7,Global,all,TRUE +2663,-0.541776978931503,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,5,6,6,4,4,1,1,3,2,1,1,3,4,2,1,3,1,4,1,1,3,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Hauser|Alter|Bauer|Anderson|Huang|Ross.Slate1|VanLange|Rottenstrich|Kay|Inbar|Critcher|Graham,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,5,Global,all,TRUE +2667,0.421627750526316,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,6,6,6,6,5,4,2,4,5,2,2,4,4,4,2,4,2,5,4,2,5,4,5,4,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Graham|Critcher|Huang|Rottenstrich|Bauer|VanLange|Miyamoto|Kay|Hauser|Inbar|Alter|Anderson,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +2668,0.121883404079749,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,3,1,1,1,4,1,2,4,1,4,4,4,4,2,4,4,4,4,4,2,4,1,1,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Critcher|Alter|Inbar|Huang|Miyamoto|Ross.Slate1|Kay|Hauser|VanLange|Anderson|Graham|Bauer,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,11,Global,all,TRUE +2669,-0.20975120928696,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,6,6,6,6,4,2,3,4,4,2,2,4,4,2,2,4,2,4,2,3,4,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Critcher|Alter|Ross.Slate1|Anderson|Miyamoto|Inbar|Kay|VanLange|Rottenstrich|Huang|Hauser|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,5,Global,all,TRUE +2670,-0.771258549272079,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,6,6,6,6,5,1,1,5,3,1,1,5,5,1,1,5,1,5,2,1,3,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Huang|Miyamoto|Hauser|Rottenstrich|Anderson|Kay|Bauer|Critcher|Inbar|Graham|VanLange|Alter,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,6,Global,all,TRUE +2671,0.780924717103332,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,7,6,6,7,3,5,1,1,5,5,1,1,5,5,1,1,5,2,5,4,3,5,4,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Anderson|Alter|Graham|Rottenstrich|Huang|Miyamoto|VanLange|Hauser|Bauer|Kay|Ross.Slate1|Inbar,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,2,Global,all,TRUE +2675,0.141123899190656,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,4,3,4,5,5,3,3,4,3,3,2,2,4,3,3,3,4,1,5,3,4,4,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|VanLange|Ross.Slate1|Rottenstrich|Hauser|Bauer|Miyamoto|Critcher|Graham|Alter|Anderson|Kay|Huang,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,11,Global,all,TRUE +2677,0.896521265478004,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,7,7,6,5,5,1,1,5,4,1,1,5,5,1,1,4,1,5,1,1,5,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Ross.Slate1|Huang|Kay|Rottenstrich|Hauser|Anderson|VanLange|Alter|Critcher|Graham|Bauer|Inbar,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,7,Global,all,TRUE +2680,0.129391920250884,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,5,1,3,2,2,5,1,1,5,2,2,1,4,4,1,2,4,1,5,4,1,3,5,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Alter|Miyamoto|Anderson|Hauser|Rottenstrich|Bauer|VanLange|Ross.Slate1|Kay|Inbar|Graham|Huang,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,4,Global,all,TRUE +2685,1.07209333411063,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,3,7,4,5,4,2,3,5,2,1,1,2,3,1,1,2,1,4,1,2,3,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Anderson|Rottenstrich|Graham|Kay|Bauer|VanLange|Inbar|Critcher|Ross.Slate1|Miyamoto|Huang|Hauser,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,2,Global,all,TRUE +2687,0.989058658705202,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,6,6,6,5,5,1,1,4,3,1,1,4,4,1,1,5,1,5,1,1,4,5,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Hauser|Bauer|VanLange|Anderson|Critcher|Rottenstrich|Ross.Slate1|Inbar|Alter|Kay|Graham|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,5,Global,all,TRUE +2688,-0.0778150329684848,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,5,6,5,6,4,2,2,4,4,2,2,4,5,2,3,5,4,5,5,4,5,5,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Critcher|Graham|Kay|Inbar|Alter|Huang|Ross.Slate1|Bauer|VanLange|Rottenstrich|Anderson|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,12,Global,all,TRUE +2691,0.831270941108114,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,5,4,5,5,4,4,4,3,3,2,4,3,3,3,2,4,3,3,2,1,5,2,4,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Alter|Bauer|Hauser|Rottenstrich|Inbar|Huang|VanLange|Anderson|Graham|Kay|Ross.Slate1|Miyamoto,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,9,Global,all,TRUE +2692,1.47345489147866,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,6,7,6,7,5,1,1,5,4,1,1,4,5,2,1,5,1,5,1,4,4,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Miyamoto|Graham|Kay|Critcher|VanLange|Inbar|Bauer|Anderson|Ross.Slate1|Rottenstrich|Alter|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,9,Global,all,TRUE +2693,0.452071068884126,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,7,7,7,6,7,1,2,3,3,5,2,3,5,5,2,2,2,2,2,5,2,5,5,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Bauer|Graham|Hauser|Inbar|Ross.Slate1|Rottenstrich|VanLange|Alter|Huang|Anderson|Kay|Miyamoto,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing,11,Global,all,TRUE +2694,0.178040264301135,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,6,6,6,4,5,1,1,5,5,1,1,5,5,2,1,5,2,5,1,2,5,5,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Rottenstrich|VanLange|Graham|Bauer|Alter|Kay|Anderson|Critcher|Miyamoto|Hauser|Inbar|Ross.Slate1,ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,8,Global,all,TRUE +2697,0.316431389976846,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,4,6,5,2,5,2,2,4,5,1,1,5,3,1,1,5,1,5,2,4,5,5,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Miyamoto|Huang|Inbar|Rottenstrich|VanLange|Hauser|Alter|Anderson|Ross.Slate1|Kay|Graham|Critcher,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +2698,0.80004085925344,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,5,6,7,4,3,4,3,5,3,3,2,2,3,1,3,3,2,5,4,1,2,5,1,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Critcher|Anderson|Huang|Graham|Rottenstrich|Alter|Kay|Ross.Slate1|Hauser|Bauer|VanLange|Miyamoto,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,3,Global,all,TRUE +2699,-0.0546134274647767,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,5,6,6,6,5,4,1,1,4,3,1,1,4,3,1,1,3,1,4,1,1,5,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Critcher|Graham|Hauser|Miyamoto|Bauer|Ross.Slate1|Rottenstrich|Kay|VanLange|Inbar|Anderson|Huang,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection,12,Global,all,TRUE +2700,-0.163490448635779,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,5,5,6,5,4,3,1,1,4,4,3,1,4,5,1,1,3,1,3,1,1,3,5,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Ross.Slate1|Critcher|Hauser|Alter|Rottenstrich|Kay|VanLange|Graham|Anderson|Miyamoto|Huang|Inbar,ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing,10,Global,all,TRUE +2701,0.845123700129922,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,4,5,6,3,5,5,1,1,2,4,1,1,5,4,1,1,5,2,5,5,3,5,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Anderson|Ross.Slate1|Graham|Critcher|Alter|Miyamoto|Rottenstrich|VanLange|Huang|Hauser|Kay|Bauer,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,2,Global,all,TRUE +2703,0.830090795862816,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,6,6,6,5,4,3,4,4,2,4,4,3,4,3,3,4,4,3,4,2,3,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Bauer|Hauser|Graham|Anderson|Critcher|VanLange|Rottenstrich|Kay|Inbar|Huang|Miyamoto|Alter,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,5,Global,all,TRUE +2704,0.800434241001872,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,5,3,5,5,2,5,2,2,4,4,1,2,4,4,1,2,3,2,3,2,2,4,5,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|VanLange|Critcher|Rottenstrich|Huang|Bauer|Ross.Slate1|Anderson|Kay|Inbar|Hauser|Miyamoto|Alter,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,8,Global,all,TRUE +2705,0.0748200080068665,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,7,5,7,7,5,1,1,4,4,1,1,3,3,1,1,4,2,2,1,2,3,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Inbar|Miyamoto|Kay|Ross.Slate1|Critcher|Rottenstrich|Hauser|Huang|Alter|Bauer|VanLange|Graham,ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,1,Global,all,TRUE +2709,0.759183706616193,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,6,7,6,1,5,1,1,1,5,1,1,1,5,1,1,1,1,1,1,1,5,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Inbar|Ross.Slate1|Kay|Hauser|Alter|Bauer|VanLange|Anderson|Huang|Rottenstrich|Graham|Miyamoto,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +2710,-0.290945554381621,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,5,4,3,5,4,1,1,5,5,1,1,5,4,1,1,5,1,4,4,1,4,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Hauser|VanLange|Bauer|Miyamoto|Inbar|Rottenstrich|Critcher|Anderson|Graham|Huang|Kay,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood,10,Global,all,TRUE +2711,-0.771258549272079,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,6,6,6,6,5,1,1,5,5,1,1,5,5,1,1,5,1,5,1,1,5,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Inbar|Kay|Ross.Slate1|Huang|Graham|Hauser|Critcher|Bauer|Rottenstrich|Miyamoto|Anderson|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,12,Global,all,TRUE +2713,1.34309224215392,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,7,7,7,7,7,5,1,1,5,5,1,1,5,5,1,1,5,1,5,1,1,5,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Alter|Kay|Rottenstrich|VanLange|Miyamoto|Hauser|Anderson|Huang|Bauer|Ross.Slate1|Graham|Inbar,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,8,Global,all,TRUE +2716,-0.317839241490496,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,1,4,5,3,1,3,2,2,3,4,3,2,4,2,2,1,4,1,4,4,2,4,2,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Ross.Slate1|Miyamoto|Graham|Alter|Bauer|VanLange|Inbar|Anderson|Critcher|Kay|Rottenstrich|Hauser,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +2717,-0.637203818342167,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,4,5,3,3,1,4,2,3,4,3,1,2,3,5,1,1,1,1,4,2,3,4,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Hauser|Critcher|Bauer|Miyamoto|Rottenstrich|Inbar|Alter|Anderson|Ross.Slate1|Kay|Huang|Graham,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,9,Global,all,TRUE +2719,0.728333360055715,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,7,6,6,3,4,5,1,1,4,5,1,1,5,5,2,1,5,1,5,3,1,5,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Kay|Miyamoto|Rottenstrich|VanLange|Hauser|Graham|Inbar|Anderson|Ross.Slate1|Bauer|Huang|Alter,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,9,Global,all,TRUE +2724,-0.356324682653509,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,5,6,6,5,5,1,4,2,4,2,4,4,3,5,2,2,4,2,4,4,4,3,4,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Kay|Alter|Bauer|Rottenstrich|Huang|Anderson|Critcher|Graham|Miyamoto|Inbar|Ross.Slate1|VanLange,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,7,Global,all,TRUE +2725,0.880970626501666,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,5,6,3,3,4,2,2,4,3,3,3,4,3,4,2,4,4,3,1,2,4,4,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Hauser|Anderson|Huang|Kay|Alter|Bauer|Inbar|Miyamoto|Graham|Critcher|Rottenstrich|VanLange,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,3,Global,all,TRUE +2727,0.775521109089397,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,5,5,6,5,5,3,1,1,4,3,1,1,3,3,1,1,4,1,4,1,1,3,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Miyamoto|Ross.Slate1|Alter|Bauer|Critcher|Kay|Rottenstrich|Anderson|Graham|VanLange|Huang|Hauser,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing,9,Global,all,TRUE +2728,-0.68321364760115,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,1,6,4,3,4,5,1,1,4,3,1,1,3,4,2,1,4,1,4,1,1,5,4,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Critcher|Hauser|Bauer|Graham|Huang|Alter|Inbar|VanLange|Rottenstrich|Ross.Slate1|Miyamoto|Kay,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood,1,Global,all,TRUE +2729,0.886641037832635,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,5,5,6,4,4,5,1,3,5,5,1,1,4,5,2,2,4,3,5,1,3,5,5,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Critcher|Kay|Rottenstrich|Bauer|Alter|Anderson|Graham|VanLange|Miyamoto|Inbar|Huang|Hauser,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,7,Global,all,TRUE +2730,-0.160989933259546,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,1,4,2,5,3,2,3,2,4,2,4,4,5,1,1,3,3,1,3,4,3,5,4,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Miyamoto|Bauer|Rottenstrich|Graham|VanLange|Hauser|Inbar|Ross.Slate1|Critcher|Alter|Huang|Anderson,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,13,Global,all,TRUE +2733,0.206503027462544,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,3,3,4,3,4,5,2,3,4,5,1,3,2,3,2,1,3,2,4,3,3,4,5,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Graham|Critcher|Anderson|Ross.Slate1|Bauer|Alter|VanLange|Inbar|Rottenstrich|Kay|Huang|Miyamoto,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing,4,Global,all,TRUE +2734,-0.317305634856429,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,2,4,6,3,3,4,1,1,3,3,1,2,4,3,2,1,5,2,3,1,1,2,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Inbar|Alter|Hauser|Ross.Slate1|Rottenstrich|Huang|VanLange|Graham|Kay|Critcher|Anderson|Miyamoto,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,12,Global,all,TRUE +2735,0.536943849129718,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,6,6,6,6,2,4,3,4,4,2,2,2,4,2,2,4,2,3,2,3,2,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Huang|Anderson|Ross.Slate1|Miyamoto|Rottenstrich|Bauer|VanLange|Alter|Kay|Inbar|Critcher|Hauser,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,3,Global,all,TRUE +2736,-0.969243234440946,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,2,5,5,5,3,2,3,3,2,2,4,3,2,1,2,1,3,1,3,2,1,2,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Ross.Slate1|Huang|Critcher|VanLange|Rottenstrich|Bauer|Kay|Anderson|Graham|Miyamoto|Alter|Inbar,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,9,Global,all,TRUE +2737,0.459045978421193,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,4,3,3,4,2,4,1,1,5,4,1,1,4,4,1,1,4,1,4,3,1,4,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Hauser|Bauer|Huang|Anderson|Graham|Critcher|Miyamoto|Kay|Alter|VanLange|Ross.Slate1|Inbar,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,5,Global,all,TRUE +2738,-0.22055842531483,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,6,6,6,6,4,1,1,3,3,1,1,4,4,1,1,4,1,4,1,1,4,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|VanLange|Hauser|Graham|Ross.Slate1|Kay|Inbar|Bauer|Huang|Miyamoto|Alter|Critcher|Anderson,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,13,Global,all,TRUE +2740,-0.277499823562483,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,2,3,1,1,2,3,4,1,1,3,1,2,4,5,1,1,5,1,1,3,3,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Inbar|Hauser|VanLange|Bauer|Critcher|Ross.Slate1|Anderson|Rottenstrich|Miyamoto|Graham|Huang|Alter,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,8,Global,all,TRUE +2741,0.0400266484490223,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,4,5,6,2,1,4,1,2,2,3,1,1,3,4,2,1,1,2,4,1,1,4,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Bauer|Critcher|Huang|Hauser|Kay|Rottenstrich|Alter|Miyamoto|Graham|Ross.Slate1|VanLange|Anderson,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,13,Global,all,TRUE +2742,0.548411250223055,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,7,7,7,7,7,5,1,1,5,5,1,1,5,5,1,1,5,1,5,1,1,5,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Anderson|Bauer|VanLange|Huang|Hauser|Kay|Critcher|Inbar|Rottenstrich|Miyamoto|Alter|Graham,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood,2,Global,all,TRUE +2743,0.576356278675231,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,4,4,4,3,4,1,1,4,4,1,1,5,4,1,3,5,1,4,1,1,4,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Miyamoto|VanLange|Huang|Alter|Bauer|Inbar|Kay|Anderson|Graham|Critcher|Hauser|Ross.Slate1,ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +2744,0.0393686888541545,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,3,5,4,2,4,2,3,4,2,2,3,4,3,3,2,4,2,4,2,3,3,4,4,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Miyamoto|Ross.Slate1|Critcher|Rottenstrich|VanLange|Anderson|Kay|Alter|Graham|Hauser|Inbar|Huang,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,7,Global,all,TRUE +2745,-0.763216426466876,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,4,3,5,5,5,4,1,1,4,4,1,1,4,4,1,1,4,1,4,1,2,4,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Kay|Miyamoto|Inbar|Rottenstrich|Hauser|Graham|Huang|Critcher|Alter|VanLange|Anderson|Bauer,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE,12,Global,all,TRUE +2746,0.728853320235547,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,5,7,7,6,4,5,2,2,5,3,1,2,5,5,1,1,3,3,3,4,4,4,5,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Miyamoto|Huang|Alter|VanLange|Kay|Critcher|Bauer|Rottenstrich|Hauser|Inbar|Anderson|Graham,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,12,Global,all,TRUE +2749,-0.312433408005962,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,3,3,3,3,3,3,2,2,4,3,2,2,3,3,2,1,3,2,4,2,2,3,3,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Hauser|Miyamoto|Inbar|VanLange|Bauer|Huang|Alter|Critcher|Rottenstrich|Graham|Ross.Slate1|Anderson,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,13,Global,all,TRUE +2754,0.556846754776691,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,6,6,5,6,5,1,1,2,4,1,1,4,5,1,1,5,1,5,1,1,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Alter|Huang|Ross.Slate1|Anderson|Critcher|Hauser|Rottenstrich|VanLange|Graham|Kay|Bauer|Inbar,ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,5,Global,all,TRUE +2755,-0.0660808285581139,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,4,4,6,3,1,4,1,1,5,3,1,1,2,4,1,1,5,1,5,1,1,5,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Rottenstrich|Ross.Slate1|Hauser|Huang|Inbar|Kay|Bauer|VanLange|Anderson|Critcher|Miyamoto|Graham,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing,10,Global,all,TRUE +2756,0.0118170421504114,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,6,7,7,5,5,2,3,5,5,2,2,4,5,2,1,4,2,4,3,2,5,5,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Rottenstrich|Miyamoto|Huang|Bauer|Kay|Ross.Slate1|Alter|Hauser|Inbar|Anderson|VanLange|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,11,Global,all,TRUE +2758,-0.336953158170004,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,5,4,6,5,6,5,2,2,4,4,2,2,4,4,4,3,4,4,2,3,3,3,4,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Miyamoto|Rottenstrich|Inbar|Huang|Bauer|Kay|VanLange|Ross.Slate1|Critcher|Hauser|Alter|Anderson,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,13,Global,all,TRUE +2759,0.0338248559545844,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,7,6,7,6,5,4,2,2,3,3,1,3,3,4,2,1,3,1,4,2,3,5,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Kay|Graham|Inbar|Rottenstrich|Hauser|Ross.Slate1|Bauer|Huang|Critcher|VanLange|Anderson|Miyamoto,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,12,Global,all,TRUE +2761,0.297048444509705,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,4,4,6,3,3,2,1,3,4,3,2,3,4,4,1,2,1,1,4,3,1,3,4,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Critcher|Ross.Slate1|Anderson|Inbar|Bauer|Kay|Alter|Hauser|Graham|Rottenstrich|Huang|VanLange,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,4,Global,all,TRUE +2762,0.509925809060043,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,2,3,4,4,3,4,1,2,5,4,2,1,4,4,2,1,4,1,4,3,2,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Critcher|Graham|Alter|Inbar|Anderson|VanLange|Bauer|Kay|Huang|Rottenstrich|Hauser|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,6,Global,all,TRUE +2764,-0.866558810251345,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,7,7,7,7,6,5,1,1,5,5,1,1,5,5,1,1,5,1,5,3,2,5,5,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Graham|Ross.Slate1|Bauer|Inbar|Huang|Hauser|Kay|Anderson|VanLange|Miyamoto|Alter|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood,9,Global,all,TRUE +2768,-0.00781906017952757,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,5,6,5,6,4,1,1,5,4,1,3,5,5,2,1,4,1,4,1,1,5,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Miyamoto|Alter|VanLange|Bauer|Ross.Slate1|Inbar|Kay|Huang|Anderson|Graham|Hauser|Critcher,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,10,Global,all,TRUE +2769,-2.58086841444024,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,5,6,5,5,6,3,1,1,2,2,1,1,3,3,1,2,3,1,3,1,1,2,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Kay|Bauer|Huang|Rottenstrich|Inbar|Critcher|Graham|Ross.Slate1|Miyamoto|VanLange|Alter|Hauser,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing,1,Global,all,TRUE +2771,1.03334108963058,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,7,7,4,6,5,1,1,4,4,1,1,4,5,1,1,4,1,4,5,1,4,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Critcher|Anderson|Hauser|Graham|Inbar|Ross.Slate1|VanLange|Kay|Miyamoto|Rottenstrich|Bauer|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,3,Global,all,TRUE +2774,-0.925213960378364,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,6,6,7,6,5,5,5,5,3,3,3,4,3,5,3,5,4,5,4,3,5,3,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Bauer|Rottenstrich|Huang|Inbar|Critcher|Anderson|Ross.Slate1|Kay|Miyamoto|VanLange|Hauser|Alter,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,7,Global,all,TRUE +2775,-0.370428373067514,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,2,4,4,4,2,3,2,2,4,4,1,1,3,4,1,1,2,1,4,1,2,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Huang|Critcher|Kay|Hauser|Alter|Inbar|Miyamoto|Ross.Slate1|Graham|Rottenstrich|Anderson|Bauer,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +2777,-0.547445164791872,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,5,5,6,6,6,4,5,4,5,4,5,5,4,5,5,3,5,4,3,5,3,4,4,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Inbar|Anderson|Critcher|Graham|Alter|Ross.Slate1|Bauer|Rottenstrich|Huang|Hauser|Kay|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,3,Global,all,TRUE +2778,0.30245205252364,High,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,6,4,6,6,5,4,4,5,4,3,4,5,3,4,4,5,5,4,5,5,3,4,5,5,3,,,,,,,,,,,,,,,,,,,,,,,,,,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Alter|VanLange|Ross.Slate1|Hauser|Miyamoto|Anderson|Rottenstrich|Critcher|Graham|Bauer|Inbar|Huang,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,7,Global,all,TRUE +2782,0.257242633215759,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,6,6,6,6,6,4,2,3,2,4,1,2,4,3,3,1,4,2,4,1,2,4,3,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Hauser|Rottenstrich|VanLange|Huang|Bauer|Inbar|Ross.Slate1|Graham|Miyamoto|Kay|Alter|Anderson,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection,13,Global,all,TRUE +2784,-0.97582698770018,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,6,6,6,7,6,5,1,1,4,5,1,2,5,5,2,2,5,2,4,1,1,4,3,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Critcher|Rottenstrich|Bauer|Inbar|Anderson|Kay|Ross.Slate1|Miyamoto|VanLange|Hauser|Alter|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,6,Global,all,TRUE +2786,-0.0409145397828409,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,6,6,5,5,3,1,2,1,1,1,1,3,1,1,1,1,1,1,1,1,1,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Ross.Slate1|Graham|Rottenstrich|Bauer|Critcher|Huang|Inbar|Kay|Alter|Miyamoto|Anderson|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,12,Global,all,TRUE +2787,-0.625216457068999,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,3,4,4,4,3,2,3,1,3,1,1,1,2,1,3,1,2,1,3,1,1,2,1,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|VanLange|Rottenstrich|Hauser|Alter|Kay|Inbar|Graham|Huang|Miyamoto|Bauer|Ross.Slate1|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,13,Global,all,TRUE +2789,-0.0659542501267147,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,5,6,6,6,6,3,1,1,1,1,1,1,2,1,1,1,1,1,3,1,3,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Huang|Miyamoto|Bauer|Kay|Alter|Anderson|Graham|Inbar|Critcher|VanLange|Hauser|Rottenstrich,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +2790,-0.646566311278304,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,6,7,7,7,5,4,1,1,5,1,1,1,1,1,1,1,1,1,5,1,1,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Bauer|Anderson|Huang|Miyamoto|Alter|Rottenstrich|Kay|Ross.Slate1|Critcher|Hauser|Graham|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,3,Global,all,TRUE +2793,0.526530014850281,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,4,6,4,5,3,5,3,2,3,3,1,3,4,3,4,1,4,2,4,1,2,4,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Critcher|Inbar|Ross.Slate1|Graham|Miyamoto|Bauer|Huang|VanLange|Alter|Kay|Rottenstrich|Hauser,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,1,Global,all,TRUE +2794,0.21915057380118,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,1,5,2,5,1,2,1,3,1,1,1,3,1,4,5,1,4,1,1,1,3,1,2,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Miyamoto|Bauer|Hauser|Anderson|Graham|VanLange|Alter|Huang|Kay|Critcher|Ross.Slate1|Inbar,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,5,Global,all,TRUE +2795,0.404349713216375,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,2,2,5,4,1,4,2,3,3,2,4,2,2,2,5,2,3,2,4,1,4,3,2,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Inbar|Bauer|Kay|Hauser|Alter|VanLange|Huang|Critcher|Graham|Anderson|Miyamoto|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing,11,Global,all,TRUE +2796,0.366117428916161,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,4,5,4,3,3,4,2,2,2,1,1,1,2,2,1,2,2,1,4,1,2,3,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Huang|Inbar|Kay|Alter|Rottenstrich|Miyamoto|Hauser|Bauer|Graham|Anderson|Critcher|Ross.Slate1,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,11,Global,all,TRUE +2797,-0.242046278939171,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,6,6,6,1,7,4,1,1,4,3,1,1,2,3,1,1,3,1,4,1,1,3,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Rottenstrich|Alter|Ross.Slate1|Graham|Miyamoto|Bauer|VanLange|Critcher|Anderson|Inbar|Kay|Hauser,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +2801,-0.21226092017623,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,6,5,5,6,6,5,4,5,3,3,4,5,4,3,5,4,4,5,4,1,2,3,4,1,4,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Hauser|Kay|Bauer|Huang|Rottenstrich|Ross.Slate1|VanLange|Inbar|Anderson|Miyamoto|Alter|Critcher,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,10,Global,all,TRUE +2802,0.443495339444854,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,3,6,2,1,2,5,4,4,2,4,2,3,1,1,4,4,4,3,2,1,4,3,2,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Bauer|Miyamoto|Huang|Rottenstrich|Alter|Inbar|Kay|Critcher|Graham|VanLange|Hauser|Anderson,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood,13,Global,all,TRUE +2803,0.169591113293263,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,6,7,6,6,6,5,1,1,4,1,1,1,4,3,1,1,1,1,5,1,1,1,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Critcher|Inbar|Rottenstrich|Huang|Kay|Bauer|Miyamoto|Ross.Slate1|Anderson|Hauser|Alter|Graham,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,10,Global,all,TRUE +2804,-1.50161397974495,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,4,5,6,7,2,4,1,1,3,1,1,1,1,1,2,1,3,1,3,1,1,3,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Rottenstrich|Hauser|Bauer|Anderson|VanLange|Graham|Miyamoto|Inbar|Huang|Ross.Slate1|Alter|Kay,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,5,Global,all,TRUE +2808,-0.462698962977679,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,3,5,6,5,4,3,1,1,2,3,1,1,2,2,1,2,2,2,4,1,1,4,3,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Graham|Huang|Anderson|Inbar|Bauer|Miyamoto|Critcher|Alter|Kay|Ross.Slate1|Rottenstrich|Hauser,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,4,Global,all,TRUE +2810,0.0670469139892968,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,6,6,6,6,5,2,2,1,1,2,1,1,2,2,1,1,2,1,2,1,2,2,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Miyamoto|Hauser|Inbar|Bauer|Anderson|Critcher|Huang|Graham|Rottenstrich|Kay|Ross.Slate1|Alter,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,6,Global,all,TRUE +2812,0.224820985132149,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,2,2,6,5,7,1,5,5,5,5,1,2,1,1,5,1,1,5,3,3,3,2,2,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Anderson|Miyamoto|Kay|Critcher|Hauser|Rottenstrich|Alter|Graham|Inbar|Huang|VanLange|Ross.Slate1,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,2,Global,all,TRUE +2813,-0.173902057444616,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,5,5,5,6,4,4,2,1,4,4,1,1,5,2,3,2,5,3,2,1,1,4,2,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|VanLange|Alter|Ross.Slate1|Anderson|Inbar|Huang|Rottenstrich|Bauer|Kay|Graham|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,6,Global,all,TRUE +2815,-0.713794965373995,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,7,7,7,7,7,2,1,1,1,1,1,1,1,1,2,1,3,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Alter|Inbar|Critcher|Anderson|Miyamoto|Ross.Slate1|VanLange|Graham|Rottenstrich|Huang|Kay|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,5,Global,all,TRUE +2816,0.557113558093725,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,3,4,6,4,3,5,1,1,1,4,2,1,4,2,2,2,4,1,4,1,1,4,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Critcher|Kay|Inbar|Ross.Slate1|Anderson|Hauser|Graham|Miyamoto|Rottenstrich|Bauer|Huang|VanLange,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +2819,0.413178599518445,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,3,5,5,5,1,4,4,2,2,1,1,2,2,1,1,1,3,1,2,1,1,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Hauser|Huang|Bauer|VanLange|Rottenstrich|Alter|Inbar|Critcher|Ross.Slate1|Anderson|Kay|Miyamoto,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,11,Global,all,TRUE +2823,-0.384000682318051,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,3,5,4,3,5,4,1,1,3,2,1,1,3,1,1,1,2,1,3,1,2,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Bauer|Critcher|Kay|Huang|Rottenstrich|Graham|Ross.Slate1|Miyamoto|VanLange|Hauser|Inbar|Alter,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,1,Global,all,TRUE +2824,-0.569593203481681,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,5,6,6,5,7,4,1,1,3,2,1,1,2,3,1,1,4,1,3,1,1,4,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Inbar|Miyamoto|Bauer|Critcher|VanLange|Kay|Rottenstrich|Ross.Slate1|Graham|Anderson|Alter|Hauser,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,11,Global,all,TRUE +2825,-0.258130524549578,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,5,6,6,6,5,1,1,1,2,4,1,1,1,1,2,1,2,1,1,1,1,3,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Huang|Miyamoto|Anderson|VanLange|Inbar|Ross.Slate1|Kay|Critcher|Hauser|Graham|Bauer|Rottenstrich,ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +2827,0.582026690006201,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,6,6,6,7,5,5,1,1,4,3,1,1,3,2,3,1,3,1,5,1,4,4,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Miyamoto|Rottenstrich|Graham|Anderson|Huang|Hauser|Critcher|Inbar|Kay|Ross.Slate1|Bauer|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood,5,Global,all,TRUE +2829,0.347406089498123,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,6,6,6,6,2,4,1,1,3,1,1,1,2,2,1,1,4,1,4,1,2,3,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Anderson|Kay|Hauser|Huang|Graham|Miyamoto|Bauer|VanLange|Ross.Slate1|Inbar|Alter|Critcher,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection,2,Global,all,TRUE +2830,0.435059834891219,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,1,6,2,5,1,1,2,1,1,1,1,2,4,1,1,1,2,1,2,2,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Miyamoto|Inbar|Bauer|Graham|Anderson|Hauser|Critcher|Alter|VanLange|Huang|Ross.Slate1|Rottenstrich,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +2831,-0.450571376818875,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,4,5,5,5,3,4,4,1,4,3,1,1,5,3,1,3,5,2,3,1,3,5,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Hauser|VanLange|Rottenstrich|Inbar|Critcher|Graham|Bauer|Huang|Kay|Anderson|Ross.Slate1|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,11,Global,all,TRUE +2834,-1.12741068733223,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,3,5,5,6,6,3,2,2,3,4,1,1,3,2,3,1,3,2,4,2,4,3,2,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Rottenstrich|Huang|Kay|Miyamoto|Anderson|Hauser|Alter|Bauer|Critcher|Graham|Inbar|VanLange,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,6,Global,all,TRUE +2840,0.485670636742435,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,5,5,6,5,4,3,2,4,3,2,4,3,4,3,2,2,4,3,3,1,2,3,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Inbar|Hauser|Anderson|Ross.Slate1|Graham|Rottenstrich|Miyamoto|VanLange|Kay|Bauer|Huang|Critcher,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,4,Global,all,TRUE +2845,-0.508692920311826,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,6,6,6,6,6,4,1,1,4,3,1,1,4,3,1,1,4,2,3,1,1,4,3,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Anderson|Ross.Slate1|Alter|Graham|Hauser|Critcher|Kay|Rottenstrich|Inbar|Huang|VanLange|Miyamoto,ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +2846,-1.4487558193803,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,1,3,5,1,4,2,1,2,1,2,1,2,2,2,1,1,4,1,3,1,2,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Anderson|Ross.Slate1|Bauer|Hauser|Kay|Inbar|Huang|Graham|Alter|Rottenstrich|VanLange|Miyamoto,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,2,Global,all,TRUE +2847,0.467481482974829,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,3,4,3,3,1,3,4,2,2,3,2,2,1,1,3,2,3,4,3,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Miyamoto|VanLange|Critcher|Hauser|Bauer|Ross.Slate1|Huang|Anderson|Graham|Rottenstrich|Kay|Inbar,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,9,Global,all,TRUE +2848,-0.589496109128653,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,6,4,6,6,4,3,1,1,3,2,1,1,3,3,1,1,3,1,3,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Huang|Ross.Slate1|Kay|Hauser|VanLange|Critcher|Alter|Anderson|Inbar|Rottenstrich|Graham|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,9,Global,all,TRUE +2850,0.761681996521826,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,5,4,5,5,3,3,2,1,3,2,1,1,2,3,2,1,3,1,3,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|VanLange|Inbar|Ross.Slate1|Miyamoto|Critcher|Huang|Alter|Kay|Hauser|Rottenstrich|Graham|Bauer,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,1,Global,all,TRUE +2852,-0.278817968222817,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,3,5,4,5,3,5,1,1,5,3,1,1,3,4,1,1,4,1,4,1,1,3,4,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Anderson|Bauer|Huang|Inbar|Hauser|Miyamoto|VanLange|Critcher|Rottenstrich|Kay|Ross.Slate1|Graham,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +2853,-0.315325079660028,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,5,6,6,6,5,5,1,1,4,3,1,1,4,4,1,1,4,1,4,3,1,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Rottenstrich|Inbar|Huang|Ross.Slate1|Anderson|Hauser|Alter|Miyamoto|Critcher|VanLange|Kay|Graham,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE,6,Global,all,TRUE +2856,-0.506194630406193,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,4,5,6,6,4,4,2,1,1,2,1,1,3,4,1,1,2,2,3,1,3,3,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Inbar|Anderson|Bauer|Rottenstrich|VanLange|Kay|Graham|Critcher|Alter|Ross.Slate1|Hauser|Miyamoto,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +2860,0.695644908655071,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,5,6,6,5,3,5,4,1,2,4,1,1,4,4,2,2,4,1,4,1,3,4,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Kay|Critcher|Miyamoto|Rottenstrich|Graham|Huang|Bauer|Anderson|Inbar|Hauser|Alter|Ross.Slate1,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,9,Global,all,TRUE +2862,0.565549062647361,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,6,7,7,5,7,4,1,1,1,5,2,1,3,4,1,1,3,2,3,1,1,4,3,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Graham|Hauser|Rottenstrich|Huang|VanLange|Bauer|Ross.Slate1|Anderson|Miyamoto|Alter|Kay|Critcher,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five,9,Global,all,TRUE +2863,0.767478986284194,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,5,4,5,6,3,4,1,1,3,4,1,1,4,3,1,1,4,2,1,1,1,4,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Hauser|Ross.Slate1|Inbar|Critcher|Rottenstrich|Alter|Huang|Anderson|Kay|Bauer|VanLange|Miyamoto,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,9,Global,all,TRUE +2865,0.991556948610835,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,6,6,6,6,5,4,1,1,5,3,1,1,3,2,1,1,5,1,5,1,1,4,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Hauser|Bauer|VanLange|Kay|Miyamoto|Alter|Critcher|Anderson|Rottenstrich|Ross.Slate1|Inbar|Graham,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,9,Global,all,TRUE +2873,1.12468469115825,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,5,6,6,6,6,4,3,3,2,4,1,2,4,3,4,1,4,1,3,3,3,4,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Rottenstrich|Critcher|Ross.Slate1|Inbar|Hauser|VanLange|Bauer|Alter|Miyamoto|Graham|Huang|Anderson,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,13,Global,all,TRUE +2875,-0.446741295798671,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,5,5,5,7,5,2,1,1,2,2,2,1,1,2,3,2,2,1,2,1,3,1,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Alter|Bauer|Miyamoto|Graham|Critcher|Inbar|Kay|Hauser|Rottenstrich|VanLange|Anderson|Ross.Slate1,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +2877,0.200174656536707,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,1,1,2,3,2,4,2,2,1,2,1,1,3,2,1,1,3,1,5,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Kay|Miyamoto|Bauer|Alter|Rottenstrich|Hauser|Ross.Slate1|VanLange|Critcher|Graham|Inbar|Anderson,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,13,Global,all,TRUE +2878,0.720291237250512,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,6,7,6,7,5,4,1,1,4,4,1,1,3,4,1,1,4,1,4,1,1,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Huang|Hauser|Graham|Inbar|Miyamoto|VanLange|Rottenstrich|Critcher|Kay|Anderson|Bauer|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,11,Global,all,TRUE +2879,0.257902818281226,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,5,5,5,5,1,3,2,1,1,1,1,1,2,3,1,1,4,1,3,1,1,3,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Alter|Huang|Hauser|Kay|Ross.Slate1|Anderson|Rottenstrich|VanLange|Critcher|Bauer|Miyamoto|Graham,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,7,Global,all,TRUE +2883,0.528775147893117,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,5,6,4,5,3,4,1,1,3,1,1,2,1,1,2,1,2,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Ross.Slate1|Miyamoto|Inbar|Bauer|Graham|Anderson|Hauser|Kay|Huang|Critcher|Alter|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing,7,Global,all,TRUE +2885,-0.304391285200759,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,5,6,7,5,5,4,1,1,2,2,1,1,2,1,1,1,4,1,2,1,1,3,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Miyamoto|Anderson|Hauser|Bauer|Ross.Slate1|VanLange|Kay|Huang|Inbar|Critcher|Alter|Graham,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood,3,Global,all,TRUE +2887,-1.1262168956327,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,2,3,4,4,1,5,4,2,4,4,1,1,4,3,2,1,3,2,4,1,4,4,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Rottenstrich|Huang|Graham|Inbar|Hauser|Anderson|Ross.Slate1|Kay|Critcher|VanLange|Miyamoto|Bauer,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,7,Global,all,TRUE +2890,-0.651969919292239,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,6,6,6,6,6,4,1,1,3,3,1,1,2,3,1,1,3,1,4,1,1,4,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Huang|Anderson|Ross.Slate1|Hauser|Inbar|Kay|VanLange|Miyamoto|Alter|Bauer|Critcher|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,3,Global,all,TRUE +2891,-0.395608308297023,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,4,4,5,4,6,3,2,1,2,2,1,3,4,3,3,1,4,1,3,1,2,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Inbar|Miyamoto|Huang|Ross.Slate1|Alter|Bauer|Kay|Graham|Anderson|VanLange|Hauser|Rottenstrich,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,10,Global,all,TRUE +2893,0.221395706844015,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,3,4,4,4,1,4,1,2,3,3,1,2,3,3,2,1,4,2,3,1,1,3,3,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Kay|Ross.Slate1|Critcher|Hauser|VanLange|Graham|Anderson|Bauer|Rottenstrich|Alter|Miyamoto|Inbar,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood,8,Global,all,TRUE +2894,-0.647364495758807,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,6,5,6,6,6,3,2,1,3,2,1,1,3,2,1,1,4,1,4,1,1,3,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|VanLange|Graham|Huang|Kay|Inbar|Miyamoto|Rottenstrich|Anderson|Alter|Ross.Slate1|Critcher|Hauser,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood,9,Global,all,TRUE +2895,-0.592921387416787,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,6,6,6,2,6,4,2,1,1,2,2,1,1,4,1,1,4,1,4,2,1,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Rottenstrich|Hauser|Bauer|Critcher|Ross.Slate1|Inbar|Anderson|Miyamoto|Kay|Graham|Huang|Alter,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +2897,-0.760322529342211,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,5,5,6,6,3,3,2,3,3,2,1,1,2,4,4,2,4,1,3,1,2,2,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Anderson|Kay|Hauser|Huang|Rottenstrich|VanLange|Alter|Inbar|Bauer|Critcher|Ross.Slate1|Graham,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,2,Global,all,TRUE +2898,-0.102334783132527,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,5,6,6,6,6,4,3,1,4,3,1,1,1,5,1,2,1,1,4,1,4,2,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Miyamoto|Huang|Bauer|Anderson|VanLange|Ross.Slate1|Critcher|Rottenstrich|Kay|Graham|Inbar|Hauser,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +2899,-1.47063705475308,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,5,6,6,4,3,2,3,2,3,1,2,1,1,1,4,4,3,1,3,3,3,3,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|VanLange|Alter|Kay|Miyamoto|Ross.Slate1|Critcher|Anderson|Hauser|Graham|Bauer|Huang|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,8,Global,all,TRUE +2902,-0.206857312162294,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,1,4,5,6,6,5,1,2,1,1,2,1,3,2,1,2,3,1,4,1,2,4,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Inbar|Bauer|VanLange|Huang|Graham|Ross.Slate1|Miyamoto|Anderson|Critcher|Kay|Alter|Hauser,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,9,Global,all,TRUE +2904,-0.783257331528884,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,3,3,3,4,3,3,1,1,4,2,1,1,1,2,2,1,1,1,3,1,2,3,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Inbar|Critcher|Graham|Alter|Miyamoto|Kay|VanLange|Huang|Ross.Slate1|Bauer|Hauser|Rottenstrich,ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,1,Global,all,TRUE +2906,-0.895683983948819,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,5,7,6,6,3,4,2,3,3,2,2,2,2,2,2,2,5,2,4,1,3,4,4,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Inbar|Rottenstrich|Critcher|Huang|Graham|Bauer|Miyamoto|Ross.Slate1|VanLange|Hauser|Anderson|Alter,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,12,Global,all,TRUE +2907,0.0505692866304577,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,5,5,6,6,5,4,1,1,4,1,1,1,4,4,1,1,4,1,3,1,1,4,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Graham|VanLange|Critcher|Huang|Hauser|Alter|Ross.Slate1|Rottenstrich|Miyamoto|Inbar|Kay|Anderson,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,13,Global,all,TRUE +2909,-0.907289384457192,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,1,1,1,1,1,5,2,2,3,3,3,2,4,3,5,2,2,2,3,1,4,4,3,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Graham|Inbar|Ross.Slate1|Bauer|Hauser|Rottenstrich|Miyamoto|VanLange|Anderson|Critcher|Kay|Alter,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +2915,-0.550350482900174,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,5,5,5,4,2,4,3,2,4,4,1,2,4,4,3,1,3,2,4,2,3,4,3,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Anderson|Hauser|Critcher|Ross.Slate1|Kay|Bauer|Alter|Miyamoto|Rottenstrich|Inbar|Graham|VanLange,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing,2,Global,all,TRUE +2919,-0.143065357338374,High,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,5,5,6,5,5,4,1,3,4,4,1,1,4,5,2,1,4,1,3,1,1,4,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Critcher|Anderson|Inbar|Miyamoto|Kay|Hauser|Alter|Graham|Huang|Rottenstrich|VanLange|Ross.Slate1,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,3,Global,all,TRUE +2921,-0.118152225425899,High,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,5,6,6,3,5,2,1,3,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Hauser|Inbar|Rottenstrich|Miyamoto|Bauer|Kay|Critcher|VanLange|Anderson|Ross.Slate1|Graham|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,10,Global,all,TRUE +2924,-0.781674609022116,High,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,1,2,1,3,3,5,3,5,5,1,5,5,5,3,2,5,5,5,1,2,3,5,2,1,5,,,,,,,,,,,,,,,,,,,,,,,,,,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Kay|Ross.Slate1|Huang|Anderson|Miyamoto|Bauer|Critcher|Graham|Inbar|VanLange|Rottenstrich|Alter,ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,5,Global,all,TRUE +2926,-1.89440203314432,High,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,3,4,5,4,2,3,2,3,3,2,2,1,2,3,1,2,3,2,3,2,2,2,2,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Alter|Bauer|Ross.Slate1|Graham|Huang|Hauser|Miyamoto|VanLange|Critcher|Rottenstrich|Anderson|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,12,Global,all,TRUE +2932,-0.812913886389828,High,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,2,3,3,3,1,1,2,5,1,2,3,3,1,1,2,3,2,1,4,1,2,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Alter|Huang|Bauer|Ross.Slate1|Anderson|Critcher|Kay|Rottenstrich|Hauser|Miyamoto|Inbar|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,6,Global,all,TRUE +2933,-0.948806722159905,High,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,2,5,5,3,3,1,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Anderson|Rottenstrich|VanLange|Hauser|Graham|Ross.Slate1|Critcher|Inbar|Huang|Alter|Bauer|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood,2,Global,all,TRUE +2934,-0.668194389788281,High,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,3,4,4,3,5,2,2,1,1,1,1,1,1,2,1,1,2,1,2,1,2,3,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Miyamoto|Graham|Rottenstrich|Ross.Slate1|Huang|Anderson|Hauser|Kay|Alter|Inbar|Bauer|Critcher,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,7,Global,all,TRUE +2936,-0.276713060065617,High,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,3,7,7,4,5,2,1,2,1,1,2,1,2,1,1,1,2,1,2,1,1,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Critcher|Kay|Ross.Slate1|Inbar|Hauser|Alter|Bauer|Miyamoto|Rottenstrich|Huang|Graham|VanLange,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,1,Global,all,TRUE +2938,-0.18048581070385,High,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,5,6,6,3,5,4,3,1,1,5,2,1,5,5,1,1,1,1,1,1,3,1,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Hauser|Critcher|Rottenstrich|Alter|Bauer|Huang|Inbar|Anderson|Graham|Ross.Slate1|Kay|Miyamoto,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood,9,Global,all,TRUE +2945,-0.710763068834294,High,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,1,5,6,2,3,1,1,1,3,2,1,1,2,1,1,1,2,1,1,1,1,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Inbar|Alter|Graham|Critcher|Hauser|Rottenstrich|Anderson|Kay|VanLange|Huang|Miyamoto|Bauer,ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +2950,-0.838880585116203,High,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,4,4,5,4,2,2,2,1,1,1,1,1,2,1,1,1,3,1,2,1,2,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Graham|Ross.Slate1|Miyamoto|Inbar|Hauser|Anderson|Alter|VanLange|Rottenstrich|Bauer|Kay|Critcher,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,7,Global,all,TRUE +2951,-1.45679794218551,High,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,4,4,3,3,3,1,2,1,1,1,1,1,1,1,1,2,1,1,1,1,3,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Ross.Slate1|Miyamoto|Alter|Kay|Bauer|Rottenstrich|Huang|Critcher|Graham|Inbar|VanLange|Anderson,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,13,Global,all,TRUE +2953,-0.0909939604705893,High,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,1,1,1,1,1,1,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Inbar|Kay|VanLange|Critcher|Huang|Anderson|Bauer|Graham|Rottenstrich|Alter|Hauser|Ross.Slate1,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,7,Global,all,TRUE +2954,-0.564456398784779,High,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,2,2,2,1,2,1,1,1,1,1,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Rottenstrich|Anderson|Alter|Critcher|Inbar|Kay|VanLange|Ross.Slate1|Hauser|Bauer|Miyamoto|Graham,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,3,Global,all,TRUE +2955,-0.237174052088705,High,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,5,5,6,4,5,2,1,2,1,1,1,1,3,1,2,1,1,1,2,1,2,1,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Critcher|VanLange|Anderson|Graham|Ross.Slate1|Kay|Alter|Hauser|Miyamoto|Inbar|Bauer|Rottenstrich,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,4,Global,all,TRUE +2958,-1.33501102230003,High,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,4,5,6,7,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Kay|Inbar|VanLange|Graham|Critcher|Ross.Slate1|Hauser|Rottenstrich|Alter|Anderson|Huang|Miyamoto,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,11,Global,all,TRUE +2960,-0.458613499624078,High,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,1,5,6,2,4,1,1,3,1,1,1,1,1,3,1,2,2,1,1,1,2,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Bauer|Huang|VanLange|Hauser|Anderson|Miyamoto|Inbar|Ross.Slate1|Rottenstrich|Critcher|Kay|Alter,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,6,Global,all,TRUE +2962,-1.58953230298448,High,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,4,2,4,2,2,3,1,2,1,2,1,1,4,1,2,1,1,1,2,1,3,3,1,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Kay|Huang|Bauer|Rottenstrich|VanLange|Alter|Miyamoto|Inbar|Anderson|Graham|Ross.Slate1|Hauser,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,10,Global,all,TRUE +2963,-0.543235348477472,High,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,4,5,5,4,3,2,2,2,2,2,2,1,2,3,1,2,1,1,3,2,3,3,2,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|VanLange|Inbar|Ross.Slate1|Huang|Anderson|Miyamoto|Graham|Rottenstrich|Bauer|Hauser|Critcher|Kay,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,6,Global,all,TRUE +2964,-1.14151660321684,High,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,6,6,6,6,7,1,1,1,1,2,3,1,1,4,2,2,4,1,4,1,2,2,1,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Kay|Hauser|Graham|Rottenstrich|Critcher|Huang|Ross.Slate1|Anderson|Alter|Bauer|Inbar|VanLange,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,9,Global,all,TRUE +2965,-0.19578329281739,High,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,4,5,5,5,4,4,3,3,3,3,4,3,4,3,3,3,3,3,2,2,3,3,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Hauser|VanLange|Huang|Inbar|Kay|Ross.Slate1|Rottenstrich|Graham|Critcher|Miyamoto|Alter|Bauer,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE,1,Global,all,TRUE +2967,-0.46783576767458,High,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,6,6,6,1,4,2,1,1,2,1,1,1,2,1,1,1,4,1,4,1,1,1,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Ross.Slate1|Rottenstrich|Graham|Kay|Miyamoto|Hauser|Anderson|Huang|VanLange|Inbar|Alter|Bauer,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,8,Global,all,TRUE +2968,-0.105226454786593,High,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,3,6,5,4,5,2,2,1,1,1,1,2,1,1,1,1,2,1,2,1,2,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Hauser|Rottenstrich|Kay|Inbar|Critcher|Bauer|Graham|Huang|Miyamoto|Anderson|VanLange|Ross.Slate1,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,11,Global,all,TRUE +2969,-0.747143601840106,High,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,2,3,6,5,6,4,3,4,4,2,3,1,5,3,2,1,1,1,5,2,3,5,4,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Rottenstrich|VanLange|Anderson|Hauser|Critcher|Kay|Ross.Slate1|Inbar|Miyamoto|Huang|Graham|Bauer,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,4,Global,all,TRUE +2970,-0.688223873866652,High,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,1,1,2,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Miyamoto|VanLange|Alter|Huang|Anderson|Hauser|Inbar|Bauer|Kay|Rottenstrich|Ross.Slate1|Critcher,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,6,Global,all,TRUE +2972,-0.925607342126797,High,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,6,7,7,7,4,1,1,1,1,1,1,2,1,4,1,1,4,1,3,2,1,1,1,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Critcher|VanLange|Ross.Slate1|Anderson|Huang|Graham|Kay|Hauser|Rottenstrich|Alter|Inbar|Bauer,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,5,Global,all,TRUE +2974,0.285061083236536,High,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,4,5,5,4,3,4,2,2,4,2,3,2,3,2,2,3,2,2,4,3,4,4,4,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Huang|Rottenstrich|Anderson|VanLange|Alter|Ross.Slate1|Bauer|Kay|Critcher|Miyamoto|Graham|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,4,Global,all,TRUE +2975,-0.916385074076295,High,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,1,4,4,1,1,1,3,1,1,1,1,1,1,1,1,2,1,1,3,1,3,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Alter|VanLange|Critcher|Huang|Rottenstrich|Anderson|Bauer|Graham|Inbar|Kay|Ross.Slate1|Hauser,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,7,Global,all,TRUE +2981,-0.705092657503325,High,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,2,3,5,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,3,1,2,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Hauser|Huang|Kay|Bauer|Miyamoto|Alter|Critcher|Inbar|Ross.Slate1|Anderson|Rottenstrich|Graham,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,11,Global,all,TRUE +2983,-1.10420908182852,High,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,2,5,5,3,6,1,1,1,2,2,1,1,2,2,1,1,2,1,4,1,1,3,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Miyamoto|Anderson|Rottenstrich|Critcher|Inbar|Graham|VanLange|Huang|Hauser|Kay|Bauer|Ross.Slate1,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,3,Global,all,TRUE +2984,-0.905704436479824,High,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,6,7,2,7,1,5,4,4,1,2,2,3,3,1,4,1,4,3,4,4,4,5,2,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Graham|Ross.Slate1|Kay|Anderson|VanLange|Critcher|Hauser|Bauer|Rottenstrich|Alter|Inbar|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,5,Global,all,TRUE +2985,-0.523332442830499,High,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,5,5,6,6,3,1,1,3,1,1,1,3,1,1,1,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Inbar|Kay|Huang|Anderson|VanLange|Hauser|Rottenstrich|Alter|Ross.Slate1|Bauer|Critcher|Graham,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,5,Global,all,TRUE +2988,-0.240065723742771,High,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,3,2,2,5,1,4,2,5,3,4,2,4,4,2,4,3,2,3,3,3,2,4,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Kay|Critcher|Inbar|Anderson|Rottenstrich|Miyamoto|Bauer|VanLange|Ross.Slate1|Graham|Hauser|Alter,ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,5,Global,all,TRUE +2992,-0.644332599219106,High,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,1,1,1,1,1,1,4,2,1,1,2,2,4,2,1,1,2,1,1,1,4,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Critcher|VanLange|Rottenstrich|Ross.Slate1|Anderson|Bauer|Alter|Huang|Hauser|Inbar|Miyamoto|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,6,Global,all,TRUE +2993,-0.812913886389828,High,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,1,5,5,2,4,2,1,1,1,1,2,1,1,2,2,2,4,1,1,2,2,2,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Graham|Alter|Inbar|Huang|Rottenstrich|Kay|Anderson|VanLange|Bauer|Miyamoto|Ross.Slate1|Hauser,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,8,Global,all,TRUE +2995,-0.644852559398938,High,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,6,6,7,5,6,4,2,4,3,4,4,2,5,4,2,2,4,4,5,2,2,5,3,5,3,,,,,,,,,,,,,,,,,,,,,,,,,,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|Anderson|VanLange|Critcher|Alter|Graham|Bauer|Rottenstrich|Inbar|Huang|Kay|Ross.Slate1,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,3,Global,all,TRUE +3000,-0.982155358626016,High,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,3,4,5,4,3,1,2,1,1,1,1,1,1,1,1,1,2,1,3,1,2,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Huang|VanLange|Hauser|Anderson|Graham|Rottenstrich|Alter|Miyamoto|Inbar|Ross.Slate1|Kay|Bauer,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +3005,-0.667393979837179,High,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,2,5,6,5,3,2,2,3,1,1,1,1,2,2,2,1,2,1,2,3,2,2,1,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Critcher|Miyamoto|VanLange|Kay|Bauer|Inbar|Ross.Slate1|Rottenstrich|Anderson|Alter|Graham|Hauser,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five,10,Global,all,TRUE +3008,-0.212654301924662,High,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,5,6,7,7,5,2,2,4,2,1,1,1,2,1,2,1,1,1,4,2,2,3,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Bauer|Miyamoto|Ross.Slate1|Critcher|VanLange|Alter|Inbar|Kay|Hauser|Anderson|Rottenstrich|Huang,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,11,Global,all,TRUE +3009,-0.771523127118513,High,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,2,4,6,3,2,3,2,3,2,1,4,2,3,2,2,2,2,3,3,1,1,2,3,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Kay|Bauer|Alter|Critcher|Hauser|Rottenstrich|Graham|VanLange|Inbar|Anderson|Huang|Miyamoto,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,11,Global,all,TRUE +3011,-1.07152063042788,High,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,2,3,3,4,3,1,4,4,4,2,4,2,2,1,3,3,4,1,1,4,3,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Rottenstrich|Ross.Slate1|Huang|Inbar|Critcher|Kay|Miyamoto|Graham|Hauser|VanLange|Alter|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,1,Global,all,TRUE +3012,-0.610983962752995,High,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,2,6,7,6,2,2,1,2,1,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Hauser|Ross.Slate1|Critcher|Inbar|Huang|VanLange|Kay|Anderson|Alter|Bauer|Rottenstrich|Graham,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +3013,-0.44160449110177,High,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,1,1,2,1,1,1,2,3,1,1,1,1,1,1,1,1,1,1,4,1,2,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Kay|Critcher|Bauer|Hauser|Alter|Rottenstrich|Huang|Miyamoto|Graham|Ross.Slate1|Anderson|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,12,Global,all,TRUE +3019,-1.19633944685305,High,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,5,6,3,3,6,4,1,1,1,4,2,2,3,2,1,2,3,3,2,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Graham|Ross.Slate1|Anderson|Inbar|Alter|Huang|Critcher|Bauer|Hauser|Miyamoto|VanLange|Kay,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,4,Global,all,TRUE +3020,-0.339985054709705,High,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,3,5,4,2,3,3,1,3,2,1,1,1,3,3,1,1,3,1,3,2,1,3,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Critcher|Hauser|Alter|Kay|Ross.Slate1|Miyamoto|Graham|Inbar|Bauer|Rottenstrich|VanLange|Anderson,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,13,Global,all,TRUE +3021,-0.0295737171209028,High,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,3,3,5,3,2,1,2,4,4,2,4,4,1,1,4,4,1,1,2,4,1,3,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Hauser|Anderson|Rottenstrich|Alter|Inbar|Miyamoto|Bauer|VanLange|Ross.Slate1|Kay|Huang|Graham,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,3,Global,all,TRUE +3023,-1.71224621125246,High,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,3,4,3,6,3,3,4,3,1,1,1,1,1,1,1,1,1,1,4,1,4,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|VanLange|Huang|Kay|Critcher|Miyamoto|Inbar|Graham|Alter|Ross.Slate1|Hauser|Bauer|Anderson,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five,13,Global,all,TRUE +3024,-2.47172681542281,High,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,5,6,5,5,4,3,2,3,2,3,1,2,3,3,2,2,2,2,4,1,2,4,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Bauer|Critcher|VanLange|Graham|Kay|Miyamoto|Ross.Slate1|Hauser|Inbar|Rottenstrich|Alter|Huang,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,1,Global,all,TRUE +3027,-0.802500052110391,High,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,5,3,4,5,4,1,1,4,1,1,1,1,1,1,3,1,3,1,2,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Hauser|VanLange|Miyamoto|Ross.Slate1|Inbar|Bauer|Kay|Anderson|Alter|Huang|Rottenstrich|Graham,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,9,Global,all,TRUE +3028,-0.124075793619666,High,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,2,5,5,2,2,4,4,2,1,3,4,2,2,1,4,2,1,1,2,4,4,4,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Graham|Kay|Ross.Slate1|Bauer|Anderson|Alter|Inbar|Huang|VanLange|Critcher|Miyamoto|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,6,Global,all,TRUE +3036,-1.0487146321432,High,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,4,4,3,5,4,3,2,3,3,3,2,3,3,3,3,3,2,2,2,3,3,2,2,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Huang|Hauser|Rottenstrich|Miyamoto|Bauer|Ross.Slate1|Kay|Graham|Alter|Critcher|Inbar|VanLange,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,1,Global,all,TRUE +3037,-0.70588164647079,High,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,5,5,6,6,5,4,2,1,3,3,1,1,1,2,1,1,3,3,4,1,1,3,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Miyamoto|Kay|Alter|Anderson|Hauser|Critcher|Rottenstrich|Inbar|Graham|Bauer|Ross.Slate1|Huang,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,5,Global,all,TRUE +3038,-0.146350410740874,High,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,4,5,3,4,3,3,3,1,3,3,1,1,2,4,2,1,3,1,4,1,1,4,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Miyamoto|Inbar|Ross.Slate1|Graham|VanLange|Hauser|Alter|Anderson|Bauer|Critcher|Huang|Kay,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +3040,-0.390331278714487,High,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,5,6,5,6,2,4,2,4,2,4,1,3,2,4,2,1,3,3,3,1,2,4,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Anderson|Kay|Alter|Critcher|VanLange|Huang|Inbar|Bauer|Ross.Slate1|Hauser|Graham|Rottenstrich,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,2,Global,all,TRUE +3050,-1.27173902765594,High,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,4,7,7,5,4,3,2,1,2,2,1,1,3,3,1,2,1,1,3,2,3,2,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Alter|VanLange|Anderson|Hauser|Bauer|Miyamoto|Inbar|Ross.Slate1|Kay|Huang|Rottenstrich|Critcher,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,4,Global,all,TRUE +3052,0.260808136389528,High,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,2,6,5,3,3,3,2,2,3,3,1,1,3,2,2,2,4,2,3,1,1,3,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Huang|Rottenstrich|Bauer|Anderson|Kay|Graham|Inbar|VanLange|Alter|Miyamoto|Critcher|Ross.Slate1,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,5,Global,all,TRUE +3054,-0.543235348477472,High,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,5,6,5,4,5,3,1,1,3,2,1,3,2,2,2,2,3,1,3,1,2,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Graham|Rottenstrich|Kay|Anderson|Inbar|Critcher|Hauser|VanLange|Alter|Bauer|Ross.Slate1|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,5,Global,all,TRUE +3055,-0.178114099229616,High,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,5,6,5,4,2,3,1,1,3,2,1,1,3,3,1,1,3,1,3,1,1,2,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Anderson|Rottenstrich|Bauer|Ross.Slate1|VanLange|Huang|Alter|Inbar|Miyamoto|Graham|Critcher|Hauser,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing,2,Global,all,TRUE +3060,-1.04331102412927,High,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,5,4,5,4,6,4,2,2,3,4,2,2,4,1,2,3,4,1,2,1,3,4,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Anderson|Inbar|Kay|Graham|Ross.Slate1|VanLange|Hauser|Huang|Alter|Miyamoto|Rottenstrich|Critcher,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,2,Global,all,TRUE +3061,0.495819893175438,High,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,7,7,7,7,4,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Miyamoto|Critcher|Huang|Inbar|Hauser|Rottenstrich|Ross.Slate1|Kay|Anderson|Graham|Bauer|Alter,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +3068,-0.544680071569205,High,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,5,5,5,6,5,4,2,2,4,4,3,1,4,4,2,2,4,2,4,2,3,3,2,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Critcher|Anderson|Rottenstrich|Inbar|Graham|VanLange|Bauer|Alter|Ross.Slate1|Huang|Hauser|Miyamoto,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,3,Global,all,TRUE +3070,0.41858220753238,High,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,3,3,5,5,2,4,1,2,4,4,1,1,4,3,2,1,4,1,4,1,1,4,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Hauser|Anderson|Ross.Slate1|Critcher|VanLange|Miyamoto|Graham|Bauer|Inbar|Kay|Huang|Rottenstrich,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,3,Global,all,TRUE +3071,0.216118677261479,High,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,7,7,7,7,7,4,1,1,1,3,1,1,3,3,1,1,4,1,4,1,1,4,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Critcher|Anderson|Rottenstrich|Ross.Slate1|Huang|Graham|Hauser|VanLange|Miyamoto|Alter|Kay|Inbar,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,3,Global,all,TRUE +3072,-0.874867736373582,High,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,3,6,5,5,3,2,3,1,3,2,1,1,2,2,1,1,3,1,2,2,1,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Miyamoto|Huang|Rottenstrich|Alter|Graham|Anderson|Hauser|Bauer|Ross.Slate1|Kay|VanLange|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,7,Global,all,TRUE +3075,1.13852380372582,High,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,4,5,5,3,3,2,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,2,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|VanLange|Anderson|Alter|Miyamoto|Graham|Bauer|Rottenstrich|Hauser|Ross.Slate1|Kay|Inbar|Huang,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,3,Global,all,TRUE +3078,-1.21374406259439,High,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,5,6,5,4,3,1,2,2,1,1,1,2,1,1,2,1,1,1,1,1,2,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Critcher|VanLange|Graham|Ross.Slate1|Miyamoto|Kay|Inbar|Anderson|Bauer|Rottenstrich|Alter|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,9,Global,all,TRUE +3079,0.20267294644234,High,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,6,7,7,7,6,4,2,1,1,3,1,1,3,4,1,3,4,1,1,1,1,3,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Hauser|Graham|Inbar|Alter|Rottenstrich|Anderson|Ross.Slate1|Miyamoto|Kay|Bauer|Huang|VanLange,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,7,Global,all,TRUE +3080,-1.45310808605094,High,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,3,5,4,5,2,3,2,4,2,3,4,2,3,4,3,4,3,2,1,2,3,2,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Kay|Ross.Slate1|Rottenstrich|Anderson|Miyamoto|Alter|Hauser|Inbar|Bauer|Huang|VanLange|Graham,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,5,Global,all,TRUE +3083,-0.49710116625769,High,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,5,5,5,3,4,3,2,3,1,1,2,2,1,1,1,1,1,1,2,1,1,1,1,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Hauser|Ross.Slate1|Huang|Critcher|Bauer|Rottenstrich|Anderson|VanLange|Kay|Miyamoto|Alter|Inbar,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,8,Global,all,TRUE +3088,-0.0191598828414656,High,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,4,5,4,6,6,3,4,2,1,1,1,4,1,1,1,2,1,1,1,2,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Inbar|Miyamoto|Ross.Slate1|Kay|VanLange|Hauser|Critcher|Huang|Rottenstrich|Alter|Bauer|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,13,Global,all,TRUE +3090,-1.94317473015537,High,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,4,5,5,4,2,3,1,2,2,4,1,1,2,3,1,1,3,1,2,1,2,3,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Inbar|Kay|Critcher|Hauser|Ross.Slate1|Rottenstrich|Huang|Alter|Graham|Bauer|Miyamoto|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,1,Global,all,TRUE +3092,0.0471440083423239,High,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,2,5,2,7,2,1,2,3,1,1,3,4,1,1,1,3,1,2,1,4,2,1,1,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Inbar|Rottenstrich|Bauer|Kay|Huang|Alter|Ross.Slate1|Miyamoto|VanLange|Anderson|Graham|Critcher,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing,11,Global,all,TRUE +3097,0.518487892045078,High,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,5,6,6,7,6,4,3,2,3,4,1,1,4,4,2,1,3,2,3,3,3,4,3,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Kay|Graham|Inbar|VanLange|Alter|Rottenstrich|Miyamoto|Bauer|Huang|Ross.Slate1|Hauser|Critcher,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,1,Global,all,TRUE +3099,-0.673190969599547,High,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,2,6,2,2,2,4,1,1,3,4,1,1,4,5,1,1,5,1,3,1,1,4,4,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Critcher|Hauser|Miyamoto|Huang|Bauer|Ross.Slate1|VanLange|Anderson|Kay|Rottenstrich|Graham|Alter,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood,9,Global,all,TRUE +3100,-0.146743792489306,High,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,5,6,6,3,2,3,1,2,3,2,3,2,2,3,4,3,3,4,3,2,4,3,2,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Kay|Ross.Slate1|Graham|Alter|VanLange|Anderson|Bauer|Miyamoto|Huang|Critcher|Hauser|Rottenstrich,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,7,Global,all,TRUE +3102,-0.248641453182042,High,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,7,7,5,7,4,5,1,1,5,5,1,1,3,5,1,1,4,1,5,1,1,5,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Rottenstrich|Graham|Alter|Kay|Miyamoto|Inbar|Bauer|VanLange|Huang|Anderson|Ross.Slate1|Critcher,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +3110,-0.843890811381705,High,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,6,6,6,5,6,2,4,1,2,4,2,1,3,3,2,4,4,1,2,2,3,4,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Inbar|Bauer|VanLange|Miyamoto|Graham|Hauser|Critcher|Ross.Slate1|Anderson|Huang|Alter|Kay,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,10,Global,all,TRUE +3113,-0.217931331507199,High,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,6,6,6,6,5,2,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Rottenstrich|Hauser|Inbar|Graham|Ross.Slate1|Huang|Miyamoto|Alter|Kay|VanLange|Bauer|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,13,Global,all,TRUE +3117,0.244457087462087,High,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,6,6,6,6,5,4,1,2,2,4,1,1,3,3,2,1,3,1,3,1,1,4,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Kay|Graham|Huang|Inbar|Bauer|Hauser|Alter|Miyamoto|VanLange|Critcher|Rottenstrich|Ross.Slate1,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +3119,0.0640150174495955,High,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,5,6,6,6,1,3,2,1,1,1,1,3,2,1,3,1,2,3,2,2,1,1,1,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Graham|Alter|Bauer|Ross.Slate1|Inbar|Critcher|Miyamoto|Huang|Hauser|Anderson|Rottenstrich|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,11,Global,all,TRUE +3121,-0.254705246261444,High,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,4,7,5,4,2,5,2,1,1,4,1,1,4,4,1,1,1,1,3,1,1,2,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Inbar|Hauser|Alter|Huang|VanLange|Bauer|Rottenstrich|Critcher|Miyamoto|Kay|Graham|Anderson,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,13,Global,all,TRUE +3122,0.554475043302457,High,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,3,1,2,4,2,1,5,5,5,1,5,5,1,1,5,5,2,5,2,3,5,1,3,1,5,,,,,,,,,,,,,,,,,,,,,,,,,,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Graham|Hauser|Anderson|Kay|Ross.Slate1|VanLange|Miyamoto|Huang|Alter|Inbar|Critcher|Bauer,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,4,Global,all,TRUE +3125,-0.848763038232171,High,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,5,4,4,6,3,3,3,2,2,4,1,2,2,1,2,2,3,1,1,1,1,3,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Ross.Slate1|Miyamoto|Huang|Bauer|Alter|Kay|Anderson|VanLange|Rottenstrich|Critcher|Hauser|Graham,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,8,Global,all,TRUE +3126,0.0948517175558379,High,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,3,5,6,4,6,1,1,1,2,4,2,1,1,3,3,1,2,1,4,1,1,2,1,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Rottenstrich|Bauer|Alter|Inbar|VanLange|Graham|Ross.Slate1|Anderson|Huang|Miyamoto|Critcher|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,9,Global,all,TRUE +3131,-0.535193225672269,High,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,7,7,7,7,6,5,1,1,3,5,1,1,4,5,1,1,5,1,3,1,1,5,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|VanLange|Miyamoto|Ross.Slate1|Rottenstrich|Huang|Inbar|Graham|Critcher|Anderson|Kay|Alter|Hauser,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +3132,0.961240208684425,High,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,5,4,5,6,1,1,3,2,3,2,3,3,1,2,3,3,2,3,2,3,3,3,2,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Critcher|Ross.Slate1|Miyamoto|VanLange|Kay|Graham|Hauser|Huang|Alter|Inbar|Anderson|Bauer,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,12,Global,all,TRUE +3135,0.0533343798531248,High,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,5,6,6,5,7,2,2,2,2,2,1,1,1,3,2,1,3,1,4,1,2,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|VanLange|Alter|Anderson|Critcher|Miyamoto|Huang|Kay|Graham|Ross.Slate1|Bauer|Rottenstrich|Inbar,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +3145,0.0364633707458528,High,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,3,5,3,3,3,4,1,2,2,1,1,1,2,2,1,1,2,1,4,1,1,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Hauser|Bauer|Alter|Anderson|VanLange|Rottenstrich|Huang|Graham|Critcher|Miyamoto|Ross.Slate1|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,5,Global,all,TRUE +3146,-0.242704238534039,High,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,4,5,5,3,3,3,1,2,4,1,1,2,1,2,2,1,3,1,4,1,1,1,2,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Kay|Hauser|Huang|Bauer|Rottenstrich|VanLange|Miyamoto|Critcher|Graham|Ross.Slate1|Anderson|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,12,Global,all,TRUE +3148,-0.87196241826528,High,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,5,5,4,4,3,3,2,1,3,1,1,1,1,3,3,1,2,1,3,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Miyamoto|Critcher|Hauser|Alter|VanLange|Inbar|Huang|Anderson|Ross.Slate1|Bauer|Rottenstrich|Graham,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE,9,Global,all,TRUE +3150,0.233383068117184,High,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,5,6,6,4,5,4,1,1,3,3,1,1,4,3,2,1,3,1,4,1,1,4,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Anderson|Bauer|VanLange|Rottenstrich|Inbar|Alter|Graham|Critcher|Huang|Kay|Hauser|Miyamoto,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,2,Global,all,TRUE +3151,-0.65605538264584,High,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,3,5,6,3,5,4,1,2,2,3,1,1,4,3,1,1,2,1,3,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Kay|Miyamoto|Huang|Hauser|Alter|Bauer|Anderson|Graham|Inbar|Critcher|VanLange|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection,8,Global,all,TRUE +3158,0.163794123530895,High,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,6,6,6,5,2,4,1,1,1,3,1,5,4,4,1,1,4,1,4,1,1,5,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Alter|Bauer|Ross.Slate1|Anderson|Miyamoto|Rottenstrich|Hauser|Huang|Inbar|Critcher|VanLange|Graham,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,5,Global,all,TRUE +3161,0.175261524624232,High,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,5,7,7,3,3,4,4,2,3,1,1,5,4,4,3,2,3,1,3,3,2,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Graham|Alter|Ross.Slate1|Hauser|Huang|VanLange|Bauer|Kay|Inbar|Critcher|Miyamoto|Rottenstrich,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing,1,Global,all,TRUE +3162,0.21599209883008,High,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,5,5,6,4,3,4,1,3,2,3,1,1,4,3,3,1,3,1,4,1,1,3,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Anderson|Hauser|Bauer|Alter|Graham|Inbar|Rottenstrich|VanLange|Ross.Slate1|Miyamoto|Huang|Kay,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,2,Global,all,TRUE +3163,0.645818644830121,High,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,5,5,6,4,6,3,2,1,4,2,1,1,2,4,1,1,3,1,4,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Inbar|Alter|Huang|Critcher|Miyamoto|Kay|Ross.Slate1|Anderson|Hauser|Graham|VanLange|Rottenstrich,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,9,Global,all,TRUE +3164,-0.976751750612081,High,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,3,5,4,3,5,4,1,3,2,1,2,3,3,3,1,1,4,1,4,1,1,2,4,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Graham|Inbar|Ross.Slate1|Anderson|VanLange|Rottenstrich|Alter|Kay|Miyamoto|Hauser|Critcher|Bauer,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,5,Global,all,TRUE +3167,-0.0161279863017645,High,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,6,6,6,6,5,3,1,2,3,3,2,3,3,3,3,2,3,3,3,2,3,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Graham|Huang|Miyamoto|Bauer|Critcher|Ross.Slate1|Rottenstrich|Anderson|VanLange|Alter|Hauser|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,9,Global,all,TRUE +3169,-1.18447866401128,High,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,4,4,6,4,2,4,1,1,5,3,1,1,4,4,1,1,4,1,5,1,1,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Inbar|Hauser|Anderson|Ross.Slate1|Graham|Miyamoto|Kay|Huang|Rottenstrich|Critcher|VanLange|Bauer,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,4,Global,all,TRUE +3172,-0.68888183346152,High,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,5,5,5,6,2,4,1,3,3,4,1,3,1,2,2,1,3,2,4,1,1,4,4,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Huang|Hauser|Miyamoto|Anderson|Graham|Critcher|Ross.Slate1|Kay|Inbar|Alter|Bauer|VanLange,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,5,Global,all,TRUE +3176,0.439409876091254,High,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,5,4,4,3,3,3,1,2,3,2,1,2,4,3,1,2,4,1,4,1,1,3,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Huang|Ross.Slate1|Rottenstrich|Anderson|Miyamoto|VanLange|Bauer|Kay|Critcher|Hauser|Alter|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five,5,Global,all,TRUE +3178,-0.167964842796614,High,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,3,4,5,5,2,2,2,2,3,1,2,1,2,1,1,2,2,1,4,1,1,1,1,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Graham|Alter|VanLange|Critcher|Kay|Anderson|Ross.Slate1|Rottenstrich|Hauser|Miyamoto|Bauer|Huang,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,7,Global,all,TRUE +3179,-1.52388859686616,High,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,4,5,5,6,2,4,1,1,3,3,1,1,4,2,2,1,3,2,4,1,1,3,3,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Graham|Anderson|Ross.Slate1|Critcher|Bauer|Huang|Rottenstrich|Miyamoto|Alter|Kay|VanLange|Hauser,ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing,3,Global,all,TRUE +3180,0.0416001754427539,High,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,7,7,7,7,5,4,1,1,5,3,1,1,4,4,1,1,1,1,5,1,1,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Graham|Alter|Anderson|Critcher|VanLange|Ross.Slate1|Hauser|Bauer|Inbar|Kay|Huang|Rottenstrich,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +3181,0.0394952672855538,High,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,6,5,6,6,6,2,1,1,2,2,1,1,2,3,1,1,2,2,2,1,1,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Huang|Inbar|Hauser|Ross.Slate1|VanLange|Graham|Alter|Rottenstrich|Bauer|Critcher|Kay|Anderson,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +3182,-1.06611702241394,High,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,3,2,4,2,2,4,2,4,4,3,2,2,3,2,2,1,4,1,4,1,1,3,3,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Inbar|Huang|Hauser|Bauer|Rottenstrich|Graham|Alter|VanLange|Critcher|Anderson|Kay|Miyamoto,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,11,Global,all,TRUE +3183,-1.98759738596638,High,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,5,5,6,5,5,4,1,1,3,2,1,1,5,3,1,2,4,1,4,1,1,5,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Alter|Ross.Slate1|VanLange|Bauer|Inbar|Rottenstrich|Critcher|Miyamoto|Anderson|Huang|Hauser|Graham,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,10,Global,all,TRUE +3188,0.495426511427005,High,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,5,5,6,6,3,3,2,1,4,2,2,1,3,4,3,1,4,1,3,3,3,3,5,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Inbar|Graham|Anderson|Bauer|Ross.Slate1|Rottenstrich|Huang|Critcher|Alter|Miyamoto|VanLange|Kay,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,4,Global,all,TRUE +3189,-0.420914821957932,High,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,6,5,7,5,6,4,3,2,3,3,1,2,3,4,2,1,3,1,3,1,3,4,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Huang|Inbar|Kay|Miyamoto|VanLange|Critcher|Alter|Graham|Rottenstrich|Bauer|Hauser|Anderson,ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,13,Global,all,TRUE +3191,-0.07135785814065,High,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,7,7,7,3,7,3,1,1,2,2,1,2,2,3,1,1,4,1,2,1,1,4,2,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Critcher|Graham|Hauser|Inbar|Bauer|Anderson|Huang|Miyamoto|VanLange|Rottenstrich|Kay,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,8,Global,all,TRUE +3193,-0.286986669459419,High,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,5,5,5,4,2,4,1,1,3,4,1,1,4,3,1,2,4,2,3,2,1,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Alter|Anderson|Bauer|Miyamoto|Inbar|Ross.Slate1|Kay|Huang|Graham|Hauser|Critcher|VanLange,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,3,Global,all,TRUE +3194,0.941604106354486,High,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,2,2,5,2,5,4,1,1,4,1,1,3,2,1,1,1,1,1,4,1,1,2,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Huang|Anderson|Ross.Slate1|Rottenstrich|Inbar|Hauser|Graham|Kay|Miyamoto|Bauer|Critcher|VanLange,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +3195,0.582026690006201,High,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,6,6,7,7,6,4,1,2,4,3,1,1,4,4,1,2,3,1,4,1,1,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Anderson|Alter|Miyamoto|Hauser|Inbar|VanLange|Bauer|Huang|Rottenstrich|Kay|Ross.Slate1|Critcher,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,2,Global,all,TRUE +3198,-0.517395228182496,High,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,3,5,6,5,3,3,2,3,2,3,1,2,3,3,3,1,1,1,3,1,1,3,3,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Hauser|VanLange|Huang|Rottenstrich|Graham|Anderson|Miyamoto|Critcher|Alter|Inbar|Ross.Slate1|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood,7,Global,all,TRUE +3199,0.282815950193701,High,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,1,3,3,1,5,4,1,1,3,1,1,1,2,3,1,1,3,1,4,1,1,3,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Anderson|Huang|Hauser|Rottenstrich|Bauer|VanLange|Inbar|Graham|Kay|Ross.Slate1|Critcher|Alter,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,2,Global,all,TRUE +3202,-0.858783490763176,High,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,3,6,5,6,5,4,2,5,5,1,3,5,2,3,5,1,4,4,4,1,5,3,4,2,5,,,,,,,,,,,,,,,,,,,,,,,,,,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Anderson|Critcher|Huang|Miyamoto|VanLange|Kay|Hauser|Bauer|Alter|Ross.Slate1|Rottenstrich|Graham,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing,2,Global,all,TRUE +3203,-0.130532968447501,High,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,5,5,6,6,6,3,1,1,3,3,1,2,3,3,2,1,2,1,3,1,1,3,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Huang|Ross.Slate1|VanLange|Anderson|Inbar|Alter|Rottenstrich|Bauer|Critcher|Kay|Graham|Miyamoto,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,5,Global,all,TRUE +3204,-0.409967381044427,High,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,2,1,4,3,2,3,1,3,3,1,1,1,3,4,1,1,3,1,3,1,1,3,3,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|VanLange|Inbar|Miyamoto|Rottenstrich|Hauser|Graham|Anderson|Kay|Bauer|Alter|Ross.Slate1|Critcher,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,8,Global,all,TRUE +3206,-0.309134708149227,High,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,4,4,4,3,1,3,1,1,3,1,1,1,2,1,2,3,3,1,3,1,1,3,3,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Ross.Slate1|Anderson|VanLange|Hauser|Kay|Inbar|Miyamoto|Bauer|Alter|Rottenstrich|Critcher|Graham,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,3,Global,all,TRUE +3207,-0.989005915202284,High,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,3,4,4,4,4,4,1,2,3,3,2,1,4,4,1,1,4,2,4,1,1,4,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|VanLange|Anderson|Bauer|Ross.Slate1|Huang|Alter|Critcher|Inbar|Kay|Rottenstrich|Miyamoto|Graham,ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,3,Global,all,TRUE +3211,0.570952670661297,High,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,6,5,4,6,4,4,1,1,4,3,1,1,4,5,1,1,1,1,4,1,1,4,5,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Bauer|Alter|Critcher|Graham|Kay|Inbar|Rottenstrich|VanLange|Huang|Miyamoto|Anderson|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,12,Global,all,TRUE +3212,-0.0034690189794924,High,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,5,4,5,4,2,3,2,1,3,1,1,2,1,4,2,1,4,1,3,1,1,3,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Miyamoto|Hauser|Critcher|Ross.Slate1|VanLange|Kay|Huang|Inbar|Bauer|Graham|Alter|Rottenstrich,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +3213,-1.21044536273766,High,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,3,5,5,4,5,4,2,2,5,4,1,4,4,4,4,1,5,3,5,1,4,4,5,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Graham|Hauser|Critcher|Kay|Alter|Ross.Slate1|Rottenstrich|Inbar|VanLange|Bauer|Huang|Anderson,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,13,Global,all,TRUE +3214,0.476970554342365,High,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,4,6,5,5,6,4,1,2,4,3,1,1,4,4,1,1,4,1,5,1,2,4,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Bauer|VanLange|Kay|Miyamoto|Huang|Ross.Slate1|Critcher|Alter|Rottenstrich|Inbar|Hauser|Graham,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,1,Global,all,TRUE +3215,0.101713695115742,High,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,3,4,4,3,5,4,1,2,4,3,1,2,4,3,3,1,5,1,5,1,2,4,4,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Bauer|Kay|Huang|Inbar|Graham|Ross.Slate1|Rottenstrich|Critcher|Miyamoto|Anderson|Hauser|Alter,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five,11,Global,all,TRUE +3217,-0.467035357723478,High,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,5,5,6,6,5,3,4,1,4,3,3,3,1,3,2,1,4,1,4,1,1,1,1,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Kay|Critcher|Inbar|Huang|Ross.Slate1|Graham|Anderson|Alter|Miyamoto|Bauer|VanLange|Hauser,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,8,Global,all,TRUE +3219,-0.121437278828398,High,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,3,4,3,3,2,4,1,3,3,3,1,1,4,3,1,1,4,1,4,1,1,3,3,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Graham|Hauser|Ross.Slate1|Kay|Bauer|VanLange|Huang|Inbar|Critcher|Rottenstrich|Alter|Miyamoto,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +3220,0.0839179230965688,High,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,3,6,5,2,4,3,1,2,5,3,1,1,3,4,2,2,4,1,5,1,1,4,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Anderson|Rottenstrich|Hauser|Kay|Alter|Graham|Inbar|Critcher|VanLange|Huang|Bauer|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,2,Global,all,TRUE +3222,-0.174829045827117,High,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,2,3,3,2,2,3,3,2,3,1,1,2,2,2,2,2,3,3,3,2,2,3,2,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Alter|Hauser|Graham|Kay|Ross.Slate1|Critcher|Anderson|Rottenstrich|Bauer|Miyamoto|VanLange|Huang,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing,8,Global,all,TRUE +3223,0.338579428666654,High,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,4,6,6,4,5,4,1,1,4,1,1,1,1,1,1,1,1,1,3,1,1,3,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|VanLange|Anderson|Critcher|Inbar|Kay|Graham|Huang|Alter|Rottenstrich|Ross.Slate1|Bauer,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,4,Global,all,TRUE +3225,-0.043412829688474,High,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,1,1,5,3,3,4,1,1,4,2,1,1,1,4,2,1,5,1,4,1,1,2,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Ross.Slate1|Hauser|Huang|Rottenstrich|Graham|Miyamoto|Alter|VanLange|Critcher|Kay|Inbar|Bauer,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing,1,Global,all,TRUE +3226,0.0303995776664505,High,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,3,4,5,6,3,4,1,1,4,2,1,1,2,3,1,1,3,1,4,1,1,2,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Critcher|Rottenstrich|Hauser|Graham|Anderson|Huang|Bauer|Ross.Slate1|VanLange|Kay|Inbar|Alter,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE,6,Global,all,TRUE +3227,0.175261524624232,High,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,4,4,2,4,2,3,1,2,3,1,1,1,3,3,1,1,3,1,4,1,1,3,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|VanLange|Rottenstrich|Bauer|Graham|Alter|Ross.Slate1|Hauser|Kay|Huang|Critcher|Miyamoto|Anderson,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,13,Global,all,TRUE +3228,-0.700082431237823,High,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,4,1,5,6,1,4,1,2,3,4,2,1,4,5,1,1,4,1,4,1,1,4,4,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Alter|Kay|Rottenstrich|Huang|Hauser|Bauer|VanLange|Ross.Slate1|Graham|Critcher|Inbar|Miyamoto,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,1,Global,all,TRUE +3229,-1.62406108469589,High,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,3,4,4,3,2,4,1,1,4,1,1,1,3,3,1,1,1,1,4,1,1,1,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Bauer|Anderson|VanLange|Inbar|Ross.Slate1|Kay|Alter|Critcher|Miyamoto|Graham|Huang|Hauser,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,3,Global,all,TRUE +3230,0.460366348552127,High,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,4,6,5,2,5,3,1,1,4,1,1,2,1,4,1,1,4,1,5,1,1,3,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Rottenstrich|Miyamoto|Alter|Critcher|Inbar|Huang|VanLange|Bauer|Hauser|Anderson|Graham|Kay,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,11,Global,all,TRUE +3232,0.396700972159605,High,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,4,6,6,6,3,3,1,1,3,3,1,2,3,2,1,1,3,1,3,1,1,3,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Ross.Slate1|Kay|Alter|Bauer|Graham|Anderson|Huang|Miyamoto|Critcher|Inbar|Hauser|Rottenstrich,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +3234,0.283082753510735,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,4,4,4,4,3,1,1,1,1,1,1,2,1,1,2,1,2,1,1,2,1,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Critcher|Huang|Rottenstrich|VanLange|Miyamoto|Inbar|Ross.Slate1|Graham|Alter|Anderson|Bauer|Kay,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +3239,0.529561911389982,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,3,3,4,2,5,3,1,2,4,2,2,2,4,3,2,2,3,2,3,1,1,3,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Critcher|Anderson|VanLange|Hauser|Huang|Rottenstrich|Miyamoto|Inbar|Bauer|Kay|Ross.Slate1|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,3,Global,all,TRUE +3240,-1.07731762019025,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,2,3,5,5,6,4,1,1,3,1,1,1,2,2,1,1,3,1,4,1,1,4,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Kay|Rottenstrich|Alter|Critcher|Huang|Inbar|Miyamoto|Graham|Hauser|Anderson|Ross.Slate1|VanLange,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,11,Global,all,TRUE +3241,0.246702220504923,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,1,2,2,2,1,4,1,1,2,3,1,1,2,3,1,1,2,1,2,1,1,3,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Critcher|Alter|Ross.Slate1|Inbar|Bauer|Hauser|Rottenstrich|Miyamoto|Huang|Kay|Graham|VanLange,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +3242,0.575569515178366,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,4,5,5,2,4,4,1,4,2,2,1,1,2,3,1,1,2,1,2,1,1,3,2,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Hauser|Inbar|Rottenstrich|Bauer|Miyamoto|Critcher|Graham|Kay|Huang|Alter|Ross.Slate1|Anderson,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,13,Global,all,TRUE +3243,0.759310285047592,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,3,5,4,5,3,2,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Hauser|Ross.Slate1|Huang|Bauer|Anderson|Alter|Rottenstrich|Graham|Critcher|Inbar|Miyamoto|Kay,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,6,Global,all,TRUE +3244,0.604301307127407,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,1,3,3,1,2,2,1,1,1,1,1,1,1,3,1,1,2,1,2,1,1,3,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Hauser|Critcher|Ross.Slate1|Bauer|Miyamoto|VanLange|Graham|Kay|Alter|Rottenstrich|Anderson|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,12,Global,all,TRUE +3245,-0.326132295687898,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,6,5,6,6,6,5,1,2,2,2,1,2,3,4,2,1,5,2,4,1,1,4,5,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Hauser|Inbar|Kay|Bauer|Graham|Critcher|Anderson|Huang|Rottenstrich|Alter|Ross.Slate1|Miyamoto,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,8,Global,all,TRUE +3250,-0.877759408027648,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,4,5,6,5,4,4,1,1,3,3,1,1,4,3,1,1,5,1,4,1,1,4,5,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Inbar|Anderson|Hauser|Kay|Graham|Huang|VanLange|Miyamoto|Ross.Slate1|Bauer|Rottenstrich|Alter,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,3,Global,all,TRUE +3251,0.396700972159605,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,4,4,6,5,5,4,2,1,2,4,1,2,2,3,1,1,2,1,3,1,1,4,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Ross.Slate1|Miyamoto|VanLange|Inbar|Bauer|Anderson|Hauser|Graham|Alter|Critcher|Rottenstrich|Kay,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,7,Global,all,TRUE +3256,-0.628248353608699,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,4,5,5,5,5,3,3,1,4,3,1,2,2,3,1,1,2,1,4,1,1,3,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Graham|Hauser|Inbar|Ross.Slate1|Miyamoto|VanLange|Rottenstrich|Kay|Bauer|Anderson|Critcher|Huang,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,11,Global,all,TRUE +3258,0.844983475244287,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,2,5,2,3,2,3,1,4,2,1,2,2,2,2,3,1,4,1,3,2,1,1,2,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Miyamoto|Alter|Inbar|Critcher|Ross.Slate1|Graham|Hauser|Bauer|VanLange|Rottenstrich|Anderson|Kay,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +3261,-0.441997872850203,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,5,6,6,5,5,2,3,2,5,2,1,3,3,1,1,1,3,3,5,2,1,5,5,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|VanLange|Bauer|Alter|Graham|Critcher|Inbar|Anderson|Hauser|Ross.Slate1|Huang|Rottenstrich|Miyamoto,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +3262,-0.254171639627376,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,2,4,5,1,1,3,1,5,2,1,1,5,1,1,4,1,5,3,2,1,3,1,3,1,5,,,,,,,,,,,,,,,,,,,,,,,,,,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Hauser|Miyamoto|Ross.Slate1|Inbar|Graham|Huang|Anderson|Alter|Kay|Bauer|VanLange|Rottenstrich,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,8,Global,all,TRUE +3266,0.324206709465015,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,1,3,1,1,2,1,3,5,4,1,2,2,1,1,4,4,1,3,3,2,4,2,2,1,4,,,,,,,,,,,,,,,,,,,,,,,,,,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Hauser|Graham|Anderson|Critcher|Inbar|Huang|Miyamoto|VanLange|Rottenstrich|Ross.Slate1|Alter|Kay,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood,4,Global,all,TRUE +3268,0.875567018487731,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,6,6,7,5,4,3,4,1,3,3,1,1,4,3,3,1,3,1,3,2,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Huang|Alter|Graham|Critcher|Kay|Hauser|Rottenstrich|Bauer|Inbar|Miyamoto|VanLange|Anderson,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +3273,-0.0297002955523016,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,4,5,5,5,3,3,1,1,3,1,1,1,3,3,1,1,3,1,4,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Miyamoto|Anderson|Critcher|Kay|Ross.Slate1|Huang|Inbar|VanLange|Hauser|Alter|Graham|Rottenstrich,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,3,Global,all,TRUE +3275,-0.839273966864636,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,4,5,5,5,5,3,2,2,3,1,1,2,3,3,2,1,3,1,4,1,1,3,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Graham|Rottenstrich|Critcher|Miyamoto|Inbar|Kay|Anderson|VanLange|Huang|Bauer|Ross.Slate1|Hauser,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,8,Global,all,TRUE +3277,0.750874780493956,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,1,2,1,1,4,2,1,2,2,1,1,3,1,2,3,2,1,1,4,1,2,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Kay|Graham|Anderson|Ross.Slate1|Alter|Inbar|Miyamoto|Rottenstrich|Bauer|Hauser|Huang|Critcher,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,4,Global,all,TRUE +3278,0.133603962035884,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,3,6,5,4,1,1,3,4,4,1,1,3,1,1,3,3,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Critcher|Bauer|Alter|Hauser|Kay|Huang|Rottenstrich|VanLange|Miyamoto|Graham|Anderson|Ross.Slate1,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,12,Global,all,TRUE +3279,0.122403364259581,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,4,4,5,3,2,1,3,3,3,2,1,3,3,3,2,1,3,3,4,1,2,1,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Kay|Ross.Slate1|Miyamoto|VanLange|Alter|Bauer|Inbar|Graham|Hauser|Anderson|Huang|Rottenstrich,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,11,Global,all,TRUE +3280,0.0590047911840934,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,5,6,6,3,3,4,1,2,3,2,1,1,3,4,1,1,3,1,3,1,1,2,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Rottenstrich|Hauser|Huang|Critcher|VanLange|Miyamoto|Alter|Bauer|Kay|Graham|Ross.Slate1|Inbar,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,1,Global,all,TRUE +3281,0.421347300755046,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,4,5,5,4,3,3,3,1,3,3,1,1,2,3,1,1,2,1,3,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|VanLange|Critcher|Kay|Anderson|Ross.Slate1|Bauer|Alter|Inbar|Miyamoto|Huang|Graham|Hauser,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,5,Global,all,TRUE +3283,0.000743022805507532,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,4,3,4,5,3,5,1,3,4,4,1,1,2,4,2,1,4,1,4,1,2,3,4,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Anderson|Rottenstrich|Miyamoto|Ross.Slate1|Huang|Inbar|Graham|Hauser|Bauer|Alter|Kay|VanLange,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,2,Global,all,TRUE +3286,0.114361241454378,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,2,4,5,2,3,3,1,2,3,2,1,2,3,2,2,1,2,1,3,1,1,3,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Ross.Slate1|Graham|Critcher|Miyamoto|Rottenstrich|Huang|VanLange|Bauer|Inbar|Alter|Hauser|Anderson,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,13,Global,all,TRUE +3287,-0.472452612191649,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,4,5,5,5,3,3,1,2,1,1,1,2,2,2,3,1,4,1,3,1,1,1,4,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|VanLange|Critcher|Huang|Graham|Anderson|Miyamoto|Ross.Slate1|Alter|Bauer|Hauser|Inbar|Kay,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,6,Global,all,TRUE +3289,0.329877120795984,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,6,7,6,6,6,4,1,1,3,4,1,1,3,4,1,1,4,1,3,1,1,5,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Anderson|Alter|Huang|Rottenstrich|Ross.Slate1|Critcher|Miyamoto|Inbar|VanLange|Kay|Graham|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,2,Global,all,TRUE +3291,-0.262607144181012,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,3,5,5,5,2,4,1,1,3,1,1,3,3,3,4,1,1,1,3,1,1,3,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Hauser|Rottenstrich|Anderson|Critcher|Alter|Inbar|Huang|Ross.Slate1|Kay|Bauer|VanLange|Graham,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +3295,-0.359747735471043,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,5,6,6,5,2,4,1,2,3,4,1,1,4,4,1,1,4,1,4,1,1,4,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Graham|Huang|Alter|Miyamoto|VanLange|Hauser|Ross.Slate1|Rottenstrich|Anderson|Kay|Bauer|Critcher,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,10,Global,all,TRUE +3296,1.08857096146947,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,badaniaon,5,6,6,6,6,2,1,1,2,1,1,1,3,3,1,1,4,1,2,1,1,4,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,badaniaon,badaniaon,badaniaon,Poland,badania.net,Polish,1,"",No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Critcher|Ross.Slate1|Huang|Miyamoto|Graham|Rottenstrich|VanLange|Alter|Bauer|Anderson|Hauser|Inbar,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,11,Global,all,TRUE +3298,0.330003699227383,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,badaniaon,1,1,3,1,1,3,1,1,3,2,1,1,2,3,3,1,3,1,3,1,1,3,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,badaniaon,badaniaon,badaniaon,Poland,badania.net,Polish,1,"",No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Rottenstrich|Anderson|Alter|Huang|Critcher|Kay|Ross.Slate1|Hauser|Inbar|Miyamoto|Graham|Bauer,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +3299,-0.600429903587923,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,badaniaon,1,4,4,4,1,2,2,1,1,1,1,1,1,1,1,3,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,badaniaon,badaniaon,badaniaon,Poland,badania.net,Polish,1,"",No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Rottenstrich|Ross.Slate1|Hauser|Critcher|Miyamoto|VanLange|Kay|Inbar|Graham|Anderson|Huang|Bauer,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +3300,0.193844060140272,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,badaniaon,4,3,5,4,2,3,1,2,2,2,1,1,2,3,1,1,2,1,4,1,1,2,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,badaniaon,badaniaon,badaniaon,Poland,badania.net,Polish,1,"",No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Critcher|Ross.Slate1|Alter|Anderson|Hauser|Kay|Bauer|Inbar|Rottenstrich|VanLange|Miyamoto|Graham,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,5,Global,all,TRUE +3303,-0.196176674565824,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,6,5,6,6,6,4,1,1,3,4,1,1,3,2,1,1,1,1,2,1,1,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Hauser|Rottenstrich|Kay|Miyamoto|Alter|Ross.Slate1|Critcher|Inbar|Huang|Anderson|Bauer|VanLange,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,11,Global,all,TRUE +3306,0.288753164841704,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,badaniaon,5,5,6,2,5,4,1,1,3,3,1,1,3,4,1,1,3,1,4,1,1,4,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,badaniaon,badaniaon,badaniaon,Poland,badania.net,Polish,1,"",No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Rottenstrich|Bauer|Huang|Ross.Slate1|Inbar|Graham|Miyamoto|Critcher|VanLange|Anderson|Hauser|Alter,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood,11,Global,all,TRUE +3307,1.06101931476572,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,badaniaon,3,3,6,3,6,2,1,1,2,1,1,2,1,3,2,1,2,1,2,1,1,1,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,badaniaon,badaniaon,badaniaon,Poland,badania.net,Polish,1,"",No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Kay|Rottenstrich|Ross.Slate1|Critcher|Anderson|Alter|Graham|Inbar|Bauer|Hauser|Miyamoto|VanLange,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five,6,Global,all,TRUE +3309,0.41858220753238,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,badaniaon,6,4,6,6,4,5,1,1,4,3,1,1,4,3,1,1,3,1,4,1,1,4,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,badaniaon,badaniaon,badaniaon,Poland,badania.net,Polish,1,"",No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Anderson|Critcher|Huang|Hauser|Ross.Slate1|Alter|VanLange|Graham|Rottenstrich|Miyamoto|Bauer|Kay,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +3311,0.268850259194731,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,badaniaon,3,2,4,3,5,3,1,4,3,1,4,2,1,2,4,4,1,3,2,1,1,2,2,2,5,,,,,,,,,,,,,,,,,,,,,,,,,,badaniaon,badaniaon,badaniaon,Poland,badania.net,Polish,1,"",No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Hauser|Miyamoto|Anderson|VanLange|Kay|Huang|Rottenstrich|Alter|Ross.Slate1|Bauer|Graham|Inbar,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,4,Global,all,TRUE +3315,0.0717903369377651,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,badaniaon,2,5,5,4,3,4,1,1,1,2,1,1,4,2,1,1,3,1,4,1,1,2,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,badaniaon,badaniaon,badaniaon,Poland,badania.net,Polish,1,"",No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|VanLange|Huang|Graham|Alter|Bauer|Hauser|Critcher|Anderson|Rottenstrich|Ross.Slate1|Miyamoto|Kay,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +3316,-0.180232653841053,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,6,7,6,7,5,4,1,1,4,4,1,1,4,2,1,1,4,1,4,1,1,3,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Kay|Anderson|Huang|Graham|Hauser|Bauer|Critcher|Inbar|Ross.Slate1|Miyamoto|VanLange|Alter,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,3,Global,all,TRUE +3323,-0.353025982796774,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,4,4,5,4,4,2,1,1,3,1,1,2,1,1,2,1,2,1,3,1,1,1,2,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Inbar|Hauser|Miyamoto|Alter|Kay|Graham|Rottenstrich|Ross.Slate1|Bauer|Critcher|VanLange|Anderson,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,13,Global,all,TRUE +3324,-0.128161256973267,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,4,6,4,5,3,3,1,2,4,2,1,1,3,4,2,2,4,1,4,2,1,3,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Ross.Slate1|Inbar|Hauser|Huang|Alter|Anderson|Rottenstrich|Miyamoto|VanLange|Critcher|Kay|Graham,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,7,Global,all,TRUE +3325,-1.77669835114184,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,badaniaon,5,5,6,2,1,4,1,1,3,1,1,1,3,4,1,2,2,1,4,1,1,2,2,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,badaniaon,badaniaon,badaniaon,Poland,badania.net,Polish,1,"",No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Bauer|Hauser|Kay|Anderson|Graham|Rottenstrich|Alter|Ross.Slate1|Critcher|Huang|Inbar|VanLange,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,5,Global,all,TRUE +3328,-0.280798523419218,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,4,5,5,4,5,3,3,2,1,3,1,2,3,2,2,1,3,1,3,1,1,2,2,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Kay|Hauser|Critcher|Ross.Slate1|Bauer|Inbar|VanLange|Alter|Miyamoto|Graham|Anderson|Huang,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +3330,-0.192877974709089,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,6,7,7,6,5,4,1,1,1,4,1,1,3,4,1,1,1,1,3,1,1,5,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Miyamoto|Ross.Slate1|Rottenstrich|Bauer|Inbar|Huang|Critcher|VanLange|Alter|Anderson|Graham|Hauser,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE,11,Global,all,TRUE +3331,-0.132511298173302,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,badaniaon,1,2,1,1,1,2,3,5,2,2,3,3,2,1,5,5,1,4,3,5,2,1,1,1,5,,,,,,,,,,,,,,,,,,,,,,,,,,badaniaon,badaniaon,badaniaon,Poland,badania.net,Polish,1,"",No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Rottenstrich|Graham|Hauser|Critcher|Huang|Miyamoto|Inbar|Alter|VanLange|Anderson|Bauer|Kay,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,11,Global,all,TRUE +3332,0.0529409981046916,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,badaniaon,1,1,3,1,1,3,1,1,2,1,1,1,1,1,1,5,2,1,3,1,1,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,badaniaon,badaniaon,badaniaon,Poland,badania.net,Polish,1,"",No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Rottenstrich|Critcher|Graham|VanLange|Alter|Bauer|Ross.Slate1|Anderson|Kay|Inbar|Hauser|Huang,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood,9,Global,all,TRUE +3336,-1.89875207434435,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,3,6,7,2,6,2,2,1,1,1,1,1,1,1,2,1,2,1,1,1,1,3,1,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Kay|Huang|Bauer|Critcher|Inbar|Graham|Rottenstrich|Ross.Slate1|Anderson|Alter|VanLange|Hauser,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +3342,0.139147794935454,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,badaniaon,3,6,2,4,4,3,1,3,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,badaniaon,badaniaon,badaniaon,Poland,badania.net,Polish,1,"",No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Kay|Critcher|Inbar|Huang|Alter|Bauer|Ross.Slate1|Rottenstrich|Miyamoto|Anderson|Graham|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection,11,Global,all,TRUE +3343,-0.54587386326874,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,badaniaon,4,5,4,5,3,4,3,1,4,3,1,1,3,4,2,1,4,1,4,1,1,4,4,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,badaniaon,badaniaon,badaniaon,Poland,badania.net,Polish,1,"",No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Miyamoto|VanLange|Hauser|Kay|Bauer|Alter|Critcher|Graham|Huang|Ross.Slate1|Anderson|Inbar,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,12,Global,all,TRUE +3344,-1.33144551912626,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,4,6,5,6,3,2,1,1,1,1,1,1,1,3,1,1,1,1,3,2,1,2,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Graham|Hauser|Rottenstrich|Miyamoto|Inbar|Kay|Alter|Ross.Slate1|Anderson|Bauer|Critcher|VanLange,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,10,Global,all,TRUE +3345,-0.445294347236339,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,6,6,7,4,7,4,2,1,4,3,1,2,3,4,1,1,4,1,4,1,1,3,3,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Critcher|Alter|Bauer|Kay|Ross.Slate1|Huang|Hauser|VanLange|Rottenstrich|Miyamoto|Anderson|Graham,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,12,Global,all,TRUE +3346,-0.877632829596249,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,4,4,4,3,3,3,1,1,3,1,1,1,3,3,1,1,3,1,3,1,1,2,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|VanLange|Critcher|Ross.Slate1|Inbar|Graham|Miyamoto|Bauer|Alter|Anderson|Rottenstrich|Hauser|Huang,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,10,Global,all,TRUE +3350,-0.865505243437445,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,4,5,5,5,6,2,1,1,2,1,1,1,1,2,1,1,2,1,2,1,1,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Graham|Bauer|Kay|Critcher|Anderson|Inbar|Miyamoto|Huang|Rottenstrich|Hauser|VanLange|Alter,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,6,Global,all,TRUE +3355,-0.156890823451709,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,badaniaon,5,6,4,2,1,4,2,4,4,3,1,4,3,1,3,1,2,4,4,2,2,3,2,1,4,,,,,,,,,,,,,,,,,,,,,,,,,,badaniaon,badaniaon,badaniaon,Poland,badania.net,Polish,1,"",No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|VanLange|Critcher|Ross.Slate1|Rottenstrich|Inbar|Alter|Huang|Miyamoto|Kay|Anderson|Bauer|Graham,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood,11,Global,all,TRUE +3357,0.684570889310167,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,badaniaon,5,6,5,5,5,5,1,1,4,3,1,1,1,4,1,1,2,1,4,1,1,4,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,badaniaon,badaniaon,badaniaon,Poland,badania.net,Polish,1,"",No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Hauser|Ross.Slate1|Kay|Bauer|Huang|Graham|Rottenstrich|Inbar|Anderson|VanLange|Alter|Miyamoto,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing,10,Global,all,TRUE +3359,0.80623123076424,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,badaniaon,5,6,5,6,3,4,2,2,2,3,2,2,4,4,3,1,4,2,4,1,1,3,4,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,badaniaon,badaniaon,badaniaon,Poland,badania.net,Polish,1,"",No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Graham|Inbar|Critcher|Ross.Slate1|Bauer|Miyamoto|VanLange|Rottenstrich|Huang|Alter|Kay|Hauser,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,1,Global,all,TRUE +3361,-0.0826850343483521,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,badaniaon,5,5,5,5,5,3,2,2,2,3,3,2,2,4,2,1,3,1,3,1,1,2,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,badaniaon,badaniaon,badaniaon,Poland,badania.net,Polish,1,"",No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Anderson|Miyamoto|Ross.Slate1|Rottenstrich|VanLange|Hauser|Kay|Alter|Huang|Critcher|Graham|Inbar,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,2,Global,all,TRUE +3362,0.512030717217243,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,badaniaon,5,4,6,2,6,2,4,1,4,4,1,1,1,3,1,2,1,1,4,1,1,3,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,badaniaon,badaniaon,badaniaon,Poland,badania.net,Polish,1,"",No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Huang|Rottenstrich|Critcher|Anderson|Alter|VanLange|Kay|Graham|Ross.Slate1|Miyamoto|Inbar|Bauer,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,5,Global,all,TRUE +3363,-0.248501228296407,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,badaniaon,6,5,5,6,5,5,1,1,4,1,1,1,4,5,1,1,1,1,4,1,1,1,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,badaniaon,badaniaon,badaniaon,Poland,badania.net,Polish,1,"",No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Huang|Ross.Slate1|Kay|Miyamoto|Hauser|VanLange|Critcher|Graham|Alter|Anderson|Inbar|Bauer,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,11,Global,all,TRUE +3364,0.0414735970113548,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,badaniaon,2,5,3,2,1,4,5,3,3,1,1,3,5,2,5,4,3,4,3,4,1,3,2,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,badaniaon,badaniaon,badaniaon,Poland,badania.net,Polish,1,"",No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Hauser|Miyamoto|Anderson|Critcher|Inbar|Alter|VanLange|Kay|Huang|Ross.Slate1|Graham|Bauer,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +3365,-1.14296132630857,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,badaniaon,5,5,6,5,5,3,2,1,4,4,2,2,5,3,2,2,4,1,4,1,1,5,4,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,badaniaon,badaniaon,badaniaon,Poland,badania.net,Polish,1,"",No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Huang|Hauser|Anderson|Graham|Kay|Miyamoto|VanLange|Inbar|Alter|Critcher|Ross.Slate1|Bauer,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +3366,0.443621917876254,High,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,badaniaon,1,4,1,1,1,5,1,1,4,3,1,1,2,2,1,5,5,1,4,1,1,4,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,badaniaon,badaniaon,badaniaon,Poland,badania.net,Polish,1,"",No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Bauer|Inbar|Alter|Rottenstrich|Graham|Anderson|Critcher|Miyamoto|Ross.Slate1|Huang|Kay|VanLange,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,7,Global,all,TRUE +3370,0.205704842982041,High,ML2_Slate1_Portugal__Portuguese_execution_illegal_r.csv,uniporto,6,6,6,6,4,4,1,1,5,5,1,1,3,4,1,1,3,1,5,3,1,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,uniporto,uniporto,uniporto,Portugal,"Universidade do Porto, Portugal",Portuguese,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Kay|Bauer|Inbar|Critcher|Miyamoto|Huang|Anderson|Alter|Ross.Slate1|Rottenstrich|Hauser|Graham,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,8,Global,all,TRUE +3371,-0.525830732736132,High,ML2_Slate1_Portugal__Portuguese_execution_illegal_r.csv,uniporto,7,5,6,4,3,4,1,1,4,4,1,2,3,3,1,1,4,1,5,1,2,3,5,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,uniporto,uniporto,uniporto,Portugal,"Universidade do Porto, Portugal",Portuguese,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Miyamoto|Ross.Slate1|Alter|Rottenstrich|Graham|VanLange|Anderson|Bauer|Kay|Inbar|Hauser|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,8,Global,all,TRUE +3374,0.590068812811404,High,ML2_Slate1_Portugal__Portuguese_execution_illegal_r.csv,uniporto,6,6,7,6,4,4,2,1,3,4,1,2,5,5,2,1,3,1,4,1,2,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,uniporto,uniporto,uniporto,Portugal,"Universidade do Porto, Portugal",Portuguese,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Critcher|Anderson|Inbar|Rottenstrich|Miyamoto|Huang|Kay|Ross.Slate1|VanLange|Graham|Bauer|Alter,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +3375,0.0275079060123849,High,ML2_Slate1_Portugal__Portuguese_execution_illegal_r.csv,uniporto,6,3,6,7,7,5,5,3,3,3,1,3,2,2,4,2,4,3,4,3,3,2,2,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,uniporto,uniporto,uniporto,Portugal,"Universidade do Porto, Portugal",Portuguese,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Hauser|Kay|VanLange|Inbar|Critcher|Graham|Bauer|Ross.Slate1|Miyamoto|Rottenstrich|Alter|Anderson,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,13,Global,all,TRUE +3377,-1.79791940144915,High,ML2_Slate1_Portugal__Portuguese_execution_illegal_r.csv,uniporto,5,7,6,3,4,5,5,3,3,5,5,3,4,1,4,4,4,3,4,1,3,5,1,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,uniporto,uniporto,uniporto,Portugal,"Universidade do Porto, Portugal",Portuguese,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Rottenstrich|Huang|Anderson|Kay|Alter|Hauser|Bauer|Graham|Miyamoto|Ross.Slate1|Critcher|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing,4,Global,all,TRUE +3378,-0.81448741338356,High,ML2_Slate1_Portugal__Portuguese_execution_illegal_r.csv,uniporto,6,5,6,7,6,3,1,1,4,4,1,1,4,2,1,1,4,1,4,1,2,3,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,uniporto,uniporto,uniporto,Portugal,"Universidade do Porto, Portugal",Portuguese,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Miyamoto|Critcher|Rottenstrich|Huang|Alter|Ross.Slate1|Anderson|Hauser|Graham|VanLange|Bauer|Kay,ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +3379,0.108831055009044,High,ML2_Slate1_Portugal__Portuguese_execution_illegal_r.csv,uniporto,6,4,6,5,6,4,3,1,4,4,3,1,2,4,1,1,3,1,3,1,4,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,uniporto,uniporto,uniporto,Portugal,"Universidade do Porto, Portugal",Portuguese,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Critcher|Anderson|Hauser|Bauer|Graham|Huang|VanLange|Alter|Kay|Inbar|Ross.Slate1|Miyamoto,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,3,Global,all,TRUE +3380,0.127273365639448,High,ML2_Slate1_Portugal__Portuguese_execution_illegal_r.csv,uniporto,6,7,6,6,5,4,3,3,4,4,1,3,4,4,2,2,4,1,4,1,4,4,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,uniporto,uniporto,uniporto,Portugal,"Universidade do Porto, Portugal",Portuguese,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Inbar|Bauer|Graham|Ross.Slate1|Critcher|Hauser|Alter|Kay|VanLange|Miyamoto|Rottenstrich|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,1,Global,all,TRUE +3384,-0.637737424976235,High,ML2_Slate1_Portugal__Portuguese_execution_illegal_r.csv,uniporto,2,3,5,4,6,4,4,2,5,2,2,2,3,4,2,2,4,2,5,2,1,2,3,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,uniporto,uniporto,uniporto,Portugal,"Universidade do Porto, Portugal",Portuguese,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Hauser|Rottenstrich|Graham|Huang|VanLange|Anderson|Critcher|Kay|Ross.Slate1|Miyamoto|Bauer|Alter,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,7,Global,all,TRUE +3386,0.753373070399589,High,ML2_Slate1_Portugal__Portuguese_execution_illegal_r.csv,uniporto,6,6,6,6,5,4,1,1,4,4,1,1,4,4,2,2,4,1,4,1,3,4,4,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,uniporto,uniporto,uniporto,Portugal,"Universidade do Porto, Portugal",Portuguese,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Miyamoto|Rottenstrich|Hauser|VanLange|Bauer|Inbar|Critcher|Kay|Ross.Slate1|Anderson|Alter|Huang,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,11,Global,all,TRUE +3389,0.369022747024463,High,ML2_Slate1_Portugal__Portuguese_execution_illegal_r.csv,uniporto,6,6,5,4,5,1,5,1,3,3,1,5,1,3,4,1,1,1,1,2,4,3,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,uniporto,uniporto,uniporto,Portugal,"Universidade do Porto, Portugal",Portuguese,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|VanLange|Miyamoto|Bauer|Kay|Inbar|Alter|Huang|Hauser|Graham|Ross.Slate1|Anderson|Critcher,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,12,Global,all,TRUE +3390,0.551316568331357,High,ML2_Slate1_Portugal__Portuguese_execution_illegal_r.csv,uniporto,2,3,2,3,3,4,1,1,4,3,1,2,3,3,2,1,4,1,4,1,2,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,uniporto,uniporto,uniporto,Portugal,"Universidade do Porto, Portugal",Portuguese,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Huang|Graham|Ross.Slate1|Alter|Critcher|Bauer|Kay|VanLange|Miyamoto|Rottenstrich|Hauser|Inbar,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,1,Global,all,TRUE +3392,-0.858910069194574,High,ML2_Slate1_Portugal__Portuguese_execution_illegal_r.csv,uniporto,6,5,6,5,5,3,4,3,3,3,1,2,4,3,3,1,4,4,4,2,4,3,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,uniporto,uniporto,uniporto,Portugal,"Universidade do Porto, Portugal",Portuguese,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Anderson|Critcher|Inbar|Bauer|Miyamoto|Hauser|Huang|Alter|Rottenstrich|Kay|Ross.Slate1|Graham,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,2,Global,all,TRUE +3393,0.456674266946959,High,ML2_Slate1_Portugal__Portuguese_execution_illegal_r.csv,uniporto,3,3,6,5,4,3,1,1,4,2,2,1,1,4,1,1,4,1,2,1,1,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,uniporto,uniporto,uniporto,Portugal,"Universidade do Porto, Portugal",Portuguese,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Bauer|Kay|Miyamoto|Alter|Graham|VanLange|Rottenstrich|Ross.Slate1|Inbar|Anderson|Hauser|Huang,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,11,Global,all,TRUE +3394,-0.367131898681379,High,ML2_Slate1_Portugal__Portuguese_execution_illegal_r.csv,uniporto,3,2,3,2,3,2,1,1,3,2,1,1,2,2,1,1,2,1,2,1,1,3,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,uniporto,uniporto,uniporto,Portugal,"Universidade do Porto, Portugal",Portuguese,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Critcher|Bauer|Inbar|VanLange|Graham|Alter|Huang|Kay|Anderson|Rottenstrich|Ross.Slate1|Miyamoto,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +3395,1.23790952805868,High,ML2_Slate1_Portugal__Portuguese_execution_illegal_r.csv,uniporto,4,4,5,6,6,4,2,3,4,4,2,3,3,5,4,1,4,3,4,1,4,3,4,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,uniporto,uniporto,uniporto,Portugal,"Universidade do Porto, Portugal",Portuguese,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Kay|Critcher|Inbar|Rottenstrich|Alter|Graham|Anderson|Ross.Slate1|Miyamoto|Hauser|Huang|Bauer,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,8,Global,all,TRUE +3400,-0.138181709504271,High,ML2_Slate1_Portugal__Portuguese_execution_illegal_r.csv,uniporto,5,6,6,6,5,3,2,2,3,3,2,2,3,3,2,1,3,3,3,2,3,3,3,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,uniporto,uniporto,uniporto,Portugal,"Universidade do Porto, Portugal",Portuguese,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Hauser|Inbar|VanLange|Miyamoto|Alter|Rottenstrich|Anderson|Bauer|Graham|Huang|Critcher|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,8,Global,all,TRUE +3402,-0.421181625274966,High,ML2_Slate1_Portugal__Portuguese_execution_illegal_r.csv,uniporto,4,4,4,4,4,3,3,2,3,4,3,2,4,3,2,2,3,3,3,3,3,3,3,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,uniporto,uniporto,uniporto,Portugal,"Universidade do Porto, Portugal",Portuguese,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Huang|Ross.Slate1|Bauer|Critcher|Alter|Anderson|Kay|Inbar|Hauser|VanLange|Graham|Miyamoto,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,7,Global,all,TRUE +3403,0.745077790731588,High,ML2_Slate1_Portugal__Portuguese_execution_illegal_r.csv,uniporto,5,5,4,5,3,4,4,2,5,4,3,3,4,3,3,3,3,3,4,3,4,4,4,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,uniporto,uniporto,uniporto,Portugal,"Universidade do Porto, Portugal",Portuguese,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Miyamoto|Graham|Critcher|Inbar|Rottenstrich|Anderson|Alter|Hauser|VanLange|Huang|Bauer|Kay,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,7,Global,all,TRUE +3404,-0.398106598202657,High,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,3,5,2,5,2,4,2,5,2,1,1,2,2,1,3,1,2,5,4,3,5,1,3,1,5,,,,,,,,,,,,,,,,,,,,,,,,,,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Miyamoto|Ross.Slate1|Kay|VanLange|Huang|Bauer|Hauser|Rottenstrich|Critcher|Inbar|Anderson|Graham,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,12,Global,all,TRUE +3405,0.443495339444854,High,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,7,7,6,6,6,4,1,3,4,4,2,1,4,4,2,1,3,1,3,1,3,4,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Kay|Anderson|Hauser|Rottenstrich|Graham|Huang|Miyamoto|Critcher|Bauer|Alter|Ross.Slate1|VanLange,ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,3,Global,all,TRUE +3409,-0.657373527306174,High,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,5,5,6,5,5,5,1,2,4,4,1,2,4,4,3,1,4,3,4,2,2,4,4,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Alter|Huang|Rottenstrich|Anderson|Critcher|Graham|VanLange|Inbar|Kay|Bauer|Miyamoto|Ross.Slate1,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +3410,0.260147951324061,High,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,6,7,6,6,6,4,1,1,3,1,1,1,4,4,3,1,3,1,4,1,1,3,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Anderson|Miyamoto|Huang|Bauer|Kay|VanLange|Graham|Rottenstrich|Inbar|Hauser|Alter|Ross.Slate1,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,2,Global,all,TRUE +3411,0.255264303489958,High,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,6,6,6,6,6,5,1,1,1,1,1,1,5,4,1,1,3,1,4,1,1,4,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Critcher|Hauser|Kay|Huang|VanLange|Bauer|Inbar|Anderson|Alter|Miyamoto|Rottenstrich|Graham,ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,9,Global,all,TRUE +3413,0.642126563224953,High,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,6,7,7,7,6,5,4,4,2,4,1,2,5,4,4,1,5,3,4,2,2,5,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Bauer|Miyamoto|Rottenstrich|Ross.Slate1|Critcher|Graham|Alter|Hauser|Huang|Kay|Anderson|Inbar,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,12,Global,all,TRUE +3415,0.450610473867557,High,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,2,1,4,4,6,3,3,2,4,1,2,2,1,5,3,1,4,1,2,3,1,3,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|VanLange|Hauser|Bauer|Inbar|Rottenstrich|Graham|Alter|Miyamoto|Huang|Anderson|Ross.Slate1|Kay,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood,11,Global,all,TRUE +3420,0.324206709465015,High,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,2,2,5,5,2,3,1,2,4,3,1,1,4,4,2,1,3,1,4,1,1,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Ross.Slate1|Anderson|Hauser|Rottenstrich|Bauer|Graham|Alter|VanLange|Miyamoto|Inbar|Critcher|Huang,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,3,Global,all,TRUE +3425,-0.0896758158102545,High,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,5,7,5,7,3,4,3,1,3,1,1,1,3,3,2,1,4,1,4,1,1,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Rottenstrich|VanLange|Kay|Hauser|Huang|Inbar|Critcher|Graham|Ross.Slate1|Alter|Miyamoto|Bauer,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,1,Global,all,TRUE +3431,0.828505847885448,High,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,6,6,6,6,5,3,2,2,3,3,1,2,3,4,2,2,2,2,2,1,1,3,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Rottenstrich|Critcher|Bauer|Huang|Miyamoto|Ross.Slate1|Anderson|Inbar|Hauser|Graham|Alter|VanLange,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,8,Global,all,TRUE +3434,0.157070145386026,High,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,3,5,5,6,5,4,1,1,2,2,1,1,3,4,1,1,4,1,4,1,1,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Ross.Slate1|Huang|Inbar|VanLange|Graham|Hauser|Rottenstrich|Critcher|Anderson|Alter|Bauer|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,10,Global,all,TRUE +3435,0.645031881333255,High,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,6,7,7,7,5,4,3,1,3,4,2,1,3,4,2,1,4,2,4,1,3,4,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Rottenstrich|Bauer|Huang|Hauser|Kay|Alter|Inbar|Graham|Critcher|VanLange|Anderson|Miyamoto,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,12,Global,all,TRUE +3437,0.432688123416985,High,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,6,6,6,7,5,5,1,1,2,4,1,1,5,4,2,1,5,2,3,1,2,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|VanLange|Miyamoto|Bauer|Kay|Ross.Slate1|Alter|Anderson|Hauser|Huang|Critcher|Graham|Inbar,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,8,Global,all,TRUE +3439,-0.14595702899244,High,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,3,6,6,5,5,4,2,4,4,4,1,2,4,4,4,1,4,2,4,2,3,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Graham|Rottenstrich|Kay|Inbar|Hauser|Critcher|Anderson|VanLange|Ross.Slate1|Bauer|Alter|Miyamoto,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing,8,Global,all,TRUE +3440,0.933561983549283,High,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,2,2,6,5,5,4,1,1,1,4,1,2,3,5,2,1,5,2,3,1,2,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Critcher|Kay|VanLange|Anderson|Alter|Huang|Graham|Rottenstrich|Miyamoto|Ross.Slate1|Inbar|Bauer,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,5,Global,all,TRUE +3443,-0.495120611061289,High,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,4,6,6,6,5,3,1,2,3,3,2,1,4,3,2,3,4,1,4,2,1,3,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Rottenstrich|Hauser|Anderson|Miyamoto|VanLange|Graham|Ross.Slate1|Huang|Inbar|Bauer|Critcher|Alter,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,4,Global,all,TRUE +3445,-0.673457772916581,High,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,3,5,6,5,5,4,1,1,4,3,2,1,2,2,1,1,3,1,4,1,1,4,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Critcher|Inbar|Kay|Hauser|Graham|Rottenstrich|Alter|Bauer|Huang|Anderson|VanLange|Miyamoto,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,11,Global,all,TRUE +3448,0.199121089722808,High,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,6,5,6,6,5,3,1,1,3,3,1,1,1,1,1,1,1,1,3,1,1,3,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Bauer|Critcher|Anderson|Rottenstrich|Miyamoto|Huang|VanLange|Ross.Slate1|Alter|Graham|Kay|Hauser,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +3452,-0.491557333358119,High,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,2,6,2,5,1,4,1,4,4,4,4,3,2,2,4,1,1,4,5,1,3,2,2,1,4,,,,,,,,,,,,,,,,,,,,,,,,,,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Kay|Ross.Slate1|Anderson|Alter|Huang|Graham|Bauer|Hauser|Miyamoto|VanLange|Rottenstrich|Critcher,ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood,4,Global,all,TRUE +3453,0.308122463854609,High,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,5,5,6,6,5,4,2,2,1,4,1,2,4,4,3,1,5,2,3,2,2,4,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Critcher|Graham|Anderson|Alter|VanLange|Kay|Ross.Slate1|Inbar|Rottenstrich|Miyamoto|Hauser|Huang,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,4,Global,all,TRUE +3456,0.352151737917191,High,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,1,7,1,6,1,5,1,1,5,1,1,1,1,5,1,1,5,1,5,1,1,1,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|VanLange|Inbar|Alter|Miyamoto|Anderson|Bauer|Hauser|Rottenstrich|Graham|Huang|Kay|Ross.Slate1,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +3457,-0.0380092216745387,High,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,4,6,6,6,7,4,2,1,4,1,1,1,3,3,1,1,4,1,4,1,1,1,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Inbar|Rottenstrich|Critcher|VanLange|Hauser|Graham|Miyamoto|Anderson|Huang|Bauer|Kay|Ross.Slate1,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,9,Global,all,TRUE +3459,0.124381693985382,High,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,2,2,2,3,1,1,1,1,5,1,5,2,5,2,1,5,5,4,2,5,5,4,4,1,5,,,,,,,,,,,,,,,,,,,,,,,,,,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Alter|Miyamoto|VanLange|Ross.Slate1|Anderson|Inbar|Critcher|Graham|Bauer|Hauser|Rottenstrich|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing,6,Global,all,TRUE +3466,0.659657757397692,High,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,4,6,6,6,2,4,1,2,1,2,1,1,4,3,2,1,3,1,3,1,1,4,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|VanLange|Hauser|Inbar|Ross.Slate1|Graham|Kay|Huang|Anderson|Critcher|Miyamoto|Alter|Bauer,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +3467,1.03610618285325,High,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,5,6,6,7,2,4,1,1,3,3,1,1,4,3,1,1,4,1,4,1,1,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Ross.Slate1|VanLange|Rottenstrich|Kay|Graham|Inbar|Bauer|Miyamoto|Anderson|Alter|Hauser|Critcher,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +3468,0.515329417073978,High,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,7,6,7,7,6,3,1,1,3,2,1,2,3,4,1,1,4,1,4,1,2,3,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Ross.Slate1|Graham|Miyamoto|Anderson|Critcher|Kay|Bauer|Alter|VanLange|Huang|Rottenstrich|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,5,Global,all,TRUE +3469,0.656892664175025,High,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,3,5,6,5,5,3,1,2,3,3,1,1,3,4,2,1,4,1,4,1,3,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Hauser|Rottenstrich|Critcher|Inbar|VanLange|Graham|Miyamoto|Huang|Bauer|Anderson|Alter|Ross.Slate1,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five,11,Global,all,TRUE +3470,0.844983475244287,High,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,5,6,6,7,6,4,1,2,2,3,1,1,3,4,2,1,3,2,3,1,1,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Kay|Critcher|Inbar|Bauer|Alter|VanLange|Rottenstrich|Graham|Ross.Slate1|Anderson|Miyamoto|Hauser,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five,11,Global,all,TRUE +3471,0.911413944859475,High,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,4,6,6,6,4,4,2,3,4,3,2,2,2,4,3,1,3,1,4,3,1,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Critcher|Miyamoto|Inbar|VanLange|Alter|Graham|Hauser|Huang|Kay|Anderson|Ross.Slate1|Rottenstrich,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,11,Global,all,TRUE +3472,-0.652894682204141,High,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,3,6,6,6,5,4,2,2,3,1,1,1,2,3,1,1,4,1,5,1,1,2,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Miyamoto|Graham|Anderson|Huang|Hauser|Inbar|VanLange|Critcher|Bauer|Alter|Kay|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,4,Global,all,TRUE +3476,0.297048444509705,High,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,6,6,6,6,3,3,1,1,3,3,1,1,2,4,3,1,3,1,3,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Rottenstrich|VanLange|Bauer|Graham|Critcher|Alter|Kay|Huang|Miyamoto|Anderson|Hauser|Ross.Slate1,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,11,Global,all,TRUE +3480,-0.472845993940082,High,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,6,6,7,7,7,5,1,2,3,4,1,1,1,3,2,1,4,2,4,1,3,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Huang|Ross.Slate1|Rottenstrich|Alter|Miyamoto|Inbar|Critcher|Graham|Anderson|Bauer|Hauser|Kay,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +3481,0.528114962827649,High,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,2,3,5,4,2,3,3,3,1,2,1,1,3,3,3,1,1,1,1,3,1,2,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Hauser|Graham|Inbar|Bauer|Miyamoto|Critcher|Alter|Ross.Slate1|Rottenstrich|VanLange|Kay|Anderson,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +3482,-0.463092344726112,High,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,6,7,7,6,7,4,2,1,4,1,1,1,3,4,1,1,4,1,3,1,1,3,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Graham|Inbar|Rottenstrich|Alter|Anderson|Miyamoto|Bauer|Ross.Slate1|Huang|VanLange|Critcher|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,6,Global,all,TRUE +3483,0.41291179620141,High,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,6,5,7,6,7,4,1,1,1,2,1,1,4,3,1,1,3,1,2,1,1,2,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Bauer|Ross.Slate1|Rottenstrich|Kay|Hauser|Inbar|Critcher|Huang|Anderson|Graham|Alter|VanLange,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +3486,-0.514236753211396,High,ML2_Slate1_Serbian_inlab_r.csv,fmkbelgrade,6,5,6,6,6,4,1,1,3,4,1,1,4,3,2,1,4,1,3,1,2,3,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,fmkbelgrade,fmkbelgrade,fmkbelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Critcher|Graham|Inbar|VanLange|Hauser|Bauer|Anderson|Rottenstrich|Ross.Slate1|Huang|Miyamoto|Alter,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +3487,0.230617974894517,High,ML2_Slate1_Serbian_inlab_r.csv,fmkbelgrade,6,2,6,6,2,5,5,3,5,5,1,4,5,5,3,1,5,3,5,1,4,5,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,fmkbelgrade,fmkbelgrade,fmkbelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Rottenstrich|Graham|Anderson|Inbar|Alter|VanLange|Hauser|Critcher|Huang|Bauer|Kay|Ross.Slate1,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,4,Global,all,TRUE +3488,-0.204345375802426,High,ML2_Slate1_Serbian_inlab_r.csv,fmkbelgrade,6,7,6,2,3,4,1,1,2,3,1,3,2,2,2,1,3,3,4,5,2,3,4,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,fmkbelgrade,fmkbelgrade,fmkbelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Kay|Inbar|Critcher|Bauer|Graham|Huang|Rottenstrich|Alter|Ross.Slate1|Anderson|Hauser|VanLange,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +3489,-0.203420612890524,High,ML2_Slate1_Serbian_inlab_r.csv,fmkbelgrade,3,6,6,5,5,4,1,1,2,4,1,1,3,3,2,1,3,1,2,1,3,5,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,fmkbelgrade,fmkbelgrade,fmkbelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Hauser|Graham|Alter|Huang|VanLange|Kay|Inbar|Bauer|Miyamoto|Ross.Slate1|Rottenstrich|Critcher,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,1,Global,all,TRUE +3491,-0.362653053579345,High,ML2_Slate1_Serbian_inlab_r.csv,fmkbelgrade,3,5,5,6,5,3,1,1,3,1,1,1,2,3,3,1,2,1,2,3,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,fmkbelgrade,fmkbelgrade,fmkbelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Graham|Critcher|Kay|Inbar|Huang|Rottenstrich|Miyamoto|Hauser|Anderson|Ross.Slate1|VanLange|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,10,Global,all,TRUE +3493,1.00842795771811,High,ML2_Slate1_Serbian_inlab_r.csv,fmkbelgrade,5,5,6,5,6,5,4,1,3,2,1,1,3,3,1,1,4,1,4,1,1,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,fmkbelgrade,fmkbelgrade,fmkbelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Alter|Ross.Slate1|Huang|Kay|Inbar|Miyamoto|Hauser|Anderson|Rottenstrich|Graham|Critcher|Bauer,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood,9,Global,all,TRUE +3494,-0.896875550177755,High,ML2_Slate1_Serbian_inlab_r.csv,fmkbelgrade,3,7,4,4,2,4,1,2,2,1,1,1,4,5,3,1,4,2,2,1,1,5,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,fmkbelgrade,fmkbelgrade,fmkbelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Critcher|Inbar|Bauer|Miyamoto|Kay|Graham|Rottenstrich|Alter|Huang|VanLange|Anderson|Ross.Slate1,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,12,Global,all,TRUE +3497,0.780924717103332,High,ML2_Slate1_Serbian_inlab_r.csv,fmkbelgrade,4,5,6,7,2,3,1,1,4,1,1,1,4,3,3,1,5,1,4,1,1,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,fmkbelgrade,fmkbelgrade,fmkbelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|VanLange|Graham|Bauer|Critcher|Miyamoto|Ross.Slate1|Inbar|Huang|Alter|Hauser|Anderson|Kay,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,12,Global,all,TRUE +3498,1.26018414517989,High,ML2_Slate1_Serbian_inlab_r.csv,fmkbelgrade,6,6,6,7,6,4,2,1,1,3,1,1,4,3,1,1,4,1,4,1,1,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,fmkbelgrade,fmkbelgrade,fmkbelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Bauer|Critcher|Kay|Rottenstrich|Ross.Slate1|Huang|Inbar|Alter|Hauser|Anderson|Miyamoto|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,11,Global,all,TRUE +3499,0.0195923616385806,High,ML2_Slate1_Serbian_inlab_r.csv,fmkbelgrade,4,5,6,6,5,4,1,2,4,4,1,1,4,3,1,1,4,1,3,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,fmkbelgrade,fmkbelgrade,fmkbelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Ross.Slate1|Anderson|Alter|Rottenstrich|Critcher|VanLange|Bauer|Miyamoto|Inbar|Kay|Graham|Huang,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,3,Global,all,TRUE +3500,0.96664381669836,High,ML2_Slate1_Serbian_inlab_r.csv,fmkbelgrade,6,6,6,6,7,5,1,1,4,3,1,1,4,5,1,1,4,1,4,1,2,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,fmkbelgrade,fmkbelgrade,fmkbelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Alter|Hauser|Bauer|Huang|Miyamoto|Kay|Ross.Slate1|Inbar|Anderson|Critcher|VanLange|Graham,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +3502,0.193844060140272,High,ML2_Slate1_Serbian_inlab_r.csv,fmkbelgrade,4,5,6,6,2,2,1,1,4,1,1,2,1,2,1,1,1,1,2,1,1,1,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,fmkbelgrade,fmkbelgrade,fmkbelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Critcher|Ross.Slate1|Inbar|Graham|Alter|Miyamoto|Anderson|Bauer|Huang|Kay|Hauser|Rottenstrich,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +3503,-0.234662115728836,High,ML2_Slate1_Serbian_inlab_r.csv,fmkbelgrade,5,7,7,7,7,4,4,1,4,1,1,1,2,1,1,1,1,1,4,3,1,3,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,fmkbelgrade,fmkbelgrade,fmkbelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Huang|Bauer|Critcher|Graham|Alter|Miyamoto|Ross.Slate1|Inbar|Rottenstrich|Anderson|Hauser|Kay,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,11,Global,all,TRUE +3505,0.928158375535348,High,ML2_Slate1_Serbian_inlab_r.csv,fmkbelgrade,5,6,5,6,3,3,1,1,3,2,1,1,1,2,2,1,2,1,2,1,2,2,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,fmkbelgrade,fmkbelgrade,fmkbelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Rottenstrich|Bauer|Alter|Anderson|Hauser|Huang|Ross.Slate1|Graham|Kay|Miyamoto|VanLange|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,5,Global,all,TRUE +3508,-0.0850567458225858,High,ML2_Slate1_Serbian_inlab_r.csv,fmkbelgrade,3,6,6,1,2,3,3,2,4,5,1,1,2,3,4,1,2,1,5,1,2,3,3,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,fmkbelgrade,fmkbelgrade,fmkbelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|VanLange|Alter|Graham|Kay|Ross.Slate1|Inbar|Bauer|Rottenstrich|Hauser|Critcher|Anderson|Miyamoto,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +3509,-0.163094841416746,High,ML2_Slate1_Serbian_inlab_r.csv,fmkbelgrade,7,7,6,7,6,4,1,1,4,3,1,1,3,4,1,1,5,1,4,1,1,1,4,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,fmkbelgrade,fmkbelgrade,fmkbelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Kay|Alter|Anderson|VanLange|Hauser|Critcher|Graham|Ross.Slate1|Huang|Inbar|Bauer|Rottenstrich,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,4,Global,all,TRUE +3510,0.604301307127407,High,ML2_Slate1_Serbian_inlab_r.csv,fmkbelgrade,5,6,6,6,6,4,1,1,2,2,1,1,2,3,1,1,5,1,4,1,1,2,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,fmkbelgrade,fmkbelgrade,fmkbelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Critcher|Inbar|VanLange|Alter|Graham|Kay|Bauer|Miyamoto|Anderson|Rottenstrich|Ross.Slate1|Hauser,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,10,Global,all,TRUE +3514,-0.243491002030904,High,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburg,5,6,5,3,2,4,3,2,4,3,2,3,4,4,1,2,3,1,3,2,2,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,johannesburg,johannesburg,johannesburg,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Ross.Slate1|Anderson|Critcher|Graham|VanLange|Inbar|Alter|Rottenstrich|Huang|Miyamoto|Hauser|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,3,Global,all,TRUE +3518,0.125435260799282,High,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburg,7,7,7,7,7,4,2,3,5,5,1,1,4,4,4,1,5,3,4,2,3,4,4,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,johannesburg,johannesburg,johannesburg,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Bauer|Rottenstrich|Miyamoto|Anderson|Critcher|Huang|Graham|Ross.Slate1|Alter|Kay|Inbar|Hauser,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,5,Global,all,TRUE +3519,0.67310348821683,High,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburg,6,6,6,6,6,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,johannesburg,johannesburg,johannesburg,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Huang|Hauser|Critcher|Miyamoto|Bauer|Alter|Kay|VanLange|Graham|Rottenstrich|Anderson|Ross.Slate1,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,12,Global,all,TRUE +3520,0.256849251467326,High,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburg,3,5,5,5,4,3,4,1,2,3,4,4,2,3,1,1,3,1,2,1,1,2,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,johannesburg,johannesburg,johannesburg,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|VanLange|Anderson|Bauer|Kay|Graham|Huang|Hauser|Critcher|Ross.Slate1|Rottenstrich|Alter|Inbar,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,3,Global,all,TRUE +3522,0.271488773985999,High,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburg,4,3,4,4,5,4,2,3,3,3,2,3,4,4,2,1,5,3,3,2,3,4,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,johannesburg,johannesburg,johannesburg,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Huang|Graham|Critcher|Inbar|VanLange|Rottenstrich|Miyamoto|Bauer|Hauser|Alter|Kay|Ross.Slate1,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,1,Global,all,TRUE +3523,0.360713820902226,High,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburg,5,6,6,6,6,4,2,3,4,4,1,1,4,4,3,1,5,1,4,1,1,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,johannesburg,johannesburg,johannesburg,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Anderson|Kay|Huang|Critcher|Graham|Bauer|Hauser|VanLange|Miyamoto|Inbar|Rottenstrich|Alter,ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,2,Global,all,TRUE +3524,0.377191448261066,High,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburg,3,3,6,5,1,5,3,3,5,5,1,2,5,4,2,3,4,2,5,2,2,5,4,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,johannesburg,johannesburg,johannesburg,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Anderson|Graham|Inbar|Hauser|Ross.Slate1|Critcher|Kay|Huang|Alter|Bauer|Rottenstrich|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing,2,Global,all,TRUE +3525,0.304697185566475,High,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburg,7,7,7,7,7,5,5,3,4,3,1,3,3,3,1,1,3,1,5,2,3,3,1,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,johannesburg,johannesburg,johannesburg,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|VanLange|Rottenstrich|Alter|Critcher|Miyamoto|Hauser|Bauer|Ross.Slate1|Anderson|Kay|Graham|Huang,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,10,Global,all,TRUE +3526,-0.248374649865008,High,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburg,7,6,6,6,7,5,1,2,4,5,2,1,5,5,2,2,5,1,4,1,2,5,4,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,johannesburg,johannesburg,johannesburg,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Kay|Inbar|Graham|VanLange|Alter|Huang|Rottenstrich|Ross.Slate1|Bauer|Hauser|Critcher|Miyamoto,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,1,Global,all,TRUE +3530,-0.107864969577861,High,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburg,5,5,5,5,2,5,2,2,4,4,1,4,5,5,1,1,5,1,5,2,3,5,5,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,johannesburg,johannesburg,johannesburg,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Anderson|Critcher|Inbar|Miyamoto|Bauer|Kay|Graham|Ross.Slate1|Hauser|VanLange|Alter|Rottenstrich,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,2,Global,all,TRUE +3531,0.147049692855022,High,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburg,7,6,7,6,7,5,3,3,5,4,2,3,5,4,4,2,5,2,3,2,3,4,5,5,3,,,,,,,,,,,,,,,,,,,,,,,,,,johannesburg,johannesburg,johannesburg,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Anderson|Bauer|Ross.Slate1|Inbar|Kay|Huang|VanLange|Miyamoto|Alter|Graham|Critcher|Hauser,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,2,Global,all,TRUE +3534,0.791338551382769,High,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburg,6,5,6,5,2,3,4,2,3,4,1,2,5,4,3,2,4,2,3,4,5,4,4,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,johannesburg,johannesburg,johannesburg,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Miyamoto|Inbar|VanLange|Alter|Kay|Rottenstrich|Bauer|Hauser|Huang|Ross.Slate1|Anderson|Critcher,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,12,Global,all,TRUE +3539,0.684835467156601,High,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburgother,3,6,4,5,5,4,1,1,3,3,1,1,3,4,4,1,5,1,3,1,1,4,1,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,johannesburgother,johannesburgother,johannesburgother,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Huang|Anderson|Hauser|Rottenstrich|Inbar|Alter|Miyamoto|Critcher|Graham|Bauer|Kay|Ross.Slate1,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,3,Global,all,TRUE +3540,0.658477612152393,High,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburg,2,1,2,1,1,5,4,2,4,4,3,4,3,5,4,5,4,3,3,1,3,3,2,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,johannesburg,johannesburg,johannesburg,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Rottenstrich|Bauer|Ross.Slate1|Graham|Critcher|VanLange|Alter|Huang|Anderson|Hauser|Inbar|Kay,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,10,Global,all,TRUE +3541,-0.229778467894733,High,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburgother,3,6,4,7,5,5,1,1,3,5,1,1,5,4,1,4,4,1,3,1,1,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,johannesburgother,johannesburgother,johannesburgother,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Rottenstrich|VanLange|Bauer|Hauser|Critcher|Inbar|Anderson|Miyamoto|Graham|Alter|Ross.Slate1|Huang,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,8,Global,all,TRUE +3544,0.227990881086885,High,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburgother,6,5,6,6,5,3,1,2,3,3,1,1,3,3,2,1,3,1,4,1,2,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,johannesburgother,johannesburgother,johannesburgother,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Graham|Anderson|Ross.Slate1|Alter|Inbar|Critcher|Huang|Bauer|VanLange|Kay|Hauser|Rottenstrich,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,3,Global,all,TRUE +3545,-0.143051710884138,High,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburgother,5,5,3,7,1,4,1,1,1,3,1,1,2,3,1,1,1,1,2,1,1,3,3,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,johannesburgother,johannesburgother,johannesburgother,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Anderson|Critcher|Bauer|Huang|Miyamoto|Rottenstrich|Kay|Graham|Ross.Slate1|Inbar|Alter|Hauser,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +3547,0.373766169972932,High,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburgother,6,5,7,7,7,5,1,5,4,2,2,3,4,4,2,2,5,1,3,1,2,4,2,4,5,,,,,,,,,,,,,,,,,,,,,,,,,,johannesburgother,johannesburgother,johannesburgother,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Rottenstrich|Alter|Bauer|Ross.Slate1|Huang|Kay|Anderson|Inbar|Graham|Critcher|Miyamoto|Hauser,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,8,Global,all,TRUE +3548,-0.142267172857872,High,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburgother,6,6,7,6,6,5,2,4,5,5,1,1,5,5,1,1,5,1,5,1,1,4,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,johannesburgother,johannesburgother,johannesburgother,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Kay|VanLange|Critcher|Ross.Slate1|Hauser|Miyamoto|Rottenstrich|Huang|Inbar|Graham|Bauer|Anderson,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,13,Global,all,TRUE +3550,0.767085604535761,High,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburgother,4,3,3,4,2,5,2,3,5,2,4,1,5,3,3,1,5,1,4,2,2,3,3,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,johannesburgother,johannesburgother,johannesburgother,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Hauser|Huang|Graham|Bauer|Anderson|Critcher|Alter|Kay|VanLange|Miyamoto|Rottenstrich|Ross.Slate1,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +3555,0.658477612152393,High,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburgother,6,5,5,6,5,4,1,1,2,5,1,1,4,5,3,3,5,1,4,1,2,5,3,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,johannesburgother,johannesburgother,johannesburgother,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Kay|Ross.Slate1|Hauser|VanLange|Bauer|Huang|Alter|Graham|Miyamoto|Critcher|Inbar|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,1,Global,all,TRUE +3556,0.0137953718762125,High,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburgother,5,7,6,6,6,5,1,1,4,4,1,1,5,5,1,1,5,1,5,1,1,5,3,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,johannesburgother,johannesburgother,johannesburgother,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Hauser|Kay|Anderson|VanLange|Bauer|Rottenstrich|Ross.Slate1|Huang|Alter|Miyamoto|Critcher|Graham,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,4,Global,all,TRUE +3557,0.10751068487811,High,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburgother,5,7,5,6,6,4,1,1,3,2,1,1,4,4,1,1,5,1,4,1,1,4,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,johannesburgother,johannesburgother,johannesburgother,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Huang|Hauser|Kay|Anderson|VanLange|Ross.Slate1|Bauer|Graham|Miyamoto|Alter|Critcher|Rottenstrich,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +3559,-0.389671093649021,High,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburgother,3,6,5,5,6,5,1,1,2,5,1,1,5,4,1,1,5,1,5,1,1,5,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,johannesburgother,johannesburgother,johannesburgother,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Bauer|Miyamoto|VanLange|Rottenstrich|Inbar|Alter|Hauser|Anderson|Graham|Ross.Slate1|Huang|Critcher,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +3562,0.0479307718391896,High,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburg,6,6,6,5,7,5,1,1,4,4,1,1,4,4,3,1,4,4,4,1,2,5,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,johannesburg,johannesburg,johannesburg,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Hauser|Ross.Slate1|Critcher|Anderson|Rottenstrich|VanLange|Miyamoto|Graham|Inbar|Bauer|Alter|Huang,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five,5,Global,all,TRUE +3564,0.559878651316392,High,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburg,5,5,5,5,1,5,1,1,5,5,2,1,3,4,2,1,5,2,5,1,2,5,5,5,4,,,,,,,,,,,,,,,,,,,,,,,,,,johannesburg,johannesburg,johannesburg,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Miyamoto|Anderson|Alter|Ross.Slate1|Hauser|Graham|Rottenstrich|VanLange|Inbar|Bauer|Huang|Critcher,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection,3,Global,all,TRUE +3565,0.370340891684798,High,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburg,3,3,3,3,7,5,1,2,4,2,2,1,2,4,2,2,4,1,5,1,2,2,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,johannesburg,johannesburg,johannesburg,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|VanLange|Graham|Ross.Slate1|Rottenstrich|Hauser|Bauer|Critcher|Huang|Alter|Miyamoto|Kay|Anderson,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,13,Global,all,TRUE +3567,0.25711605478436,High,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburg,7,6,7,7,7,5,2,2,4,5,2,2,4,5,2,1,5,3,4,1,2,5,5,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,johannesburg,johannesburg,johannesburg,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Critcher|Graham|VanLange|Bauer|Huang|Miyamoto|Ross.Slate1|Rottenstrich|Inbar|Alter|Kay|Hauser,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,1,Global,all,TRUE +3569,0.814666735317876,High,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburg,6,5,6,5,6,4,1,2,4,3,1,1,5,4,2,1,5,2,4,1,1,3,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,johannesburg,johannesburg,johannesburg,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Kay|Miyamoto|Anderson|VanLange|Rottenstrich|Inbar|Bauer|Hauser|Huang|Ross.Slate1|Critcher|Alter,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing,4,Global,all,TRUE +3570,0.645692066398722,High,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburg,2,2,2,4,1,3,2,1,4,3,1,1,3,4,1,1,4,1,4,1,1,3,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,johannesburg,johannesburg,johannesburg,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Inbar|Kay|VanLange|Huang|Rottenstrich|Miyamoto|Graham|Ross.Slate1|Bauer|Critcher|Hauser|Anderson,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,13,Global,all,TRUE +3572,0.692879815432404,High,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburg,5,6,7,7,5,5,2,2,4,4,1,1,4,4,4,1,5,2,4,1,1,4,4,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,johannesburg,johannesburg,johannesburg,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Hauser|Ross.Slate1|Alter|Rottenstrich|Miyamoto|Critcher|Anderson|Graham|Huang|Bauer|VanLange|Inbar,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +3574,0.897181450543471,High,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburg,6,6,6,6,5,5,1,2,5,3,1,1,3,5,2,1,5,2,5,1,2,5,5,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,johannesburg,johannesburg,johannesburg,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Critcher|Alter|Miyamoto|Hauser|Inbar|Anderson|Graham|VanLange|Ross.Slate1|Huang|Kay|Bauer,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,7,Global,all,TRUE +3576,-0.159138181965144,High,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburg,5,1,4,2,1,3,2,2,4,4,1,2,2,4,3,1,4,3,4,2,2,3,4,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,johannesburg,johannesburg,johannesburg,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Anderson|VanLange|Rottenstrich|Inbar|Huang|Miyamoto|Hauser|Bauer|Graham|Alter|Ross.Slate1|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,2,Global,all,TRUE +3579,-0.343663489860637,High,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburg,6,5,6,7,6,4,2,1,4,2,1,1,5,4,1,1,4,1,4,1,3,4,3,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,johannesburg,johannesburg,johannesburg,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|Graham|Kay|Bauer|Inbar|Critcher|Alter|Rottenstrich|Huang|Ross.Slate1|VanLange|Anderson,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,13,Global,all,TRUE +3580,-0.871697840418845,High,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburg,6,6,6,5,5,3,2,4,4,3,1,2,4,3,4,1,4,4,4,2,3,4,4,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,johannesburg,johannesburg,johannesburg,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Rottenstrich|Hauser|Kay|Ross.Slate1|Bauer|Huang|Miyamoto|Graham|Anderson|Inbar|Alter|Critcher,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,10,Global,all,TRUE +3581,-0.147797359303206,High,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburg,5,2,2,2,2,5,1,4,5,5,1,1,5,5,1,1,5,1,5,1,1,5,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,johannesburg,johannesburg,johannesburg,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Hauser|Critcher|VanLange|Miyamoto|Graham|Ross.Slate1|Bauer|Huang|Anderson|Alter|Rottenstrich|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,10,Global,all,TRUE +3583,-0.15162744032341,High,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburg,6,7,6,7,5,4,3,2,3,3,1,2,4,4,2,1,5,1,4,1,1,4,1,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,johannesburg,johannesburg,johannesburg,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Bauer|Huang|Anderson|Miyamoto|Kay|Graham|Ross.Slate1|Inbar|Critcher|Rottenstrich|Hauser|VanLange,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,4,Global,all,TRUE +3585,0.808869745555508,High,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburg,5,4,7,5,6,5,1,2,3,4,4,1,5,4,4,1,5,1,5,2,1,4,4,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,johannesburg,johannesburg,johannesburg,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Hauser|Critcher|Ross.Slate1|Rottenstrich|Bauer|VanLange|Kay|Graham|Alter|Inbar|Huang|Anderson,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,13,Global,all,TRUE +3586,0.131637053293719,High,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburg,3,6,1,6,3,4,4,2,2,3,1,1,4,4,1,1,5,2,4,1,1,5,3,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,johannesburg,johannesburg,johannesburg,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Kay|Bauer|Huang|Alter|Ross.Slate1|Miyamoto|Inbar|Hauser|Rottenstrich|Anderson|Critcher|VanLange,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,11,Global,all,TRUE +3597,0.31880310145108,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,3,4,5,4,2,3,3,1,4,3,1,2,3,2,2,1,1,1,5,2,3,3,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Ross.Slate1|Inbar|Bauer|Graham|Miyamoto|Alter|Critcher|Kay|VanLange|Anderson|Hauser|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,11,Global,all,TRUE +3598,-0.524639166507197,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,4,6,5,5,2,3,4,1,2,4,1,1,2,4,1,1,3,1,4,3,4,4,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|VanLange|Miyamoto|Anderson|Graham|Alter|Critcher|Ross.Slate1|Inbar|Rottenstrich|Hauser|Bauer|Kay,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +3600,0.982728062308767,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,6,7,6,6,3,4,1,2,3,4,1,1,4,4,2,1,4,1,4,1,2,4,5,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Rottenstrich|Bauer|Miyamoto|Anderson|Inbar|Hauser|Graham|Critcher|Ross.Slate1|Alter|Huang|VanLange,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,5,Global,all,TRUE +3602,0.239584860611621,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,6,6,5,5,4,3,1,2,5,3,3,1,4,4,5,1,3,2,5,1,4,4,5,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|VanLange|Inbar|Graham|Bauer|Kay|Ross.Slate1|Hauser|Rottenstrich|Anderson|Critcher|Huang|Miyamoto,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +3604,-0.0774216512200518,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,6,6,6,5,3,2,1,1,2,2,1,1,2,1,3,1,3,1,4,1,1,3,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Ross.Slate1|Graham|Inbar|VanLange|Alter|Miyamoto|Kay|Anderson|Rottenstrich|Bauer|Hauser|Huang,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +3606,0.578067805083999,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,6,5,6,5,7,5,3,4,5,4,3,2,5,3,5,3,3,5,4,1,4,5,5,4,5,,,,,,,,,,,,,,,,,,,,,,,,,,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Critcher|Anderson|Miyamoto|Bauer|Graham|VanLange|Hauser|Rottenstrich|Kay|Alter|Ross.Slate1|Inbar,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,3,Global,all,TRUE +3608,0.441781587565488,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,6,7,7,7,6,4,1,1,2,4,1,1,4,3,1,1,3,1,2,1,2,4,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Anderson|Miyamoto|Ross.Slate1|Critcher|Kay|VanLange|Graham|Alter|Inbar|Bauer|Rottenstrich|Hauser,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,2,Global,all,TRUE +3612,-1.78236876247281,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,5,5,6,6,5,4,1,1,1,5,2,1,4,4,2,1,3,1,4,1,2,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Alter|Hauser|Ross.Slate1|Inbar|Bauer|Anderson|VanLange|Huang|Kay|Miyamoto|Critcher|Rottenstrich,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,7,Global,all,TRUE +3613,0.654127570952358,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,2,3,3,4,1,4,2,4,4,3,1,2,2,3,4,4,2,4,3,2,4,3,3,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Huang|Graham|Hauser|Bauer|VanLange|Ross.Slate1|Inbar|Rottenstrich|Anderson|Critcher|Miyamoto|Kay,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,10,Global,all,TRUE +3614,-0.339971408255469,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,4,5,4,5,4,2,2,1,2,2,1,2,3,3,1,1,3,1,3,1,2,1,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Critcher|Inbar|VanLange|Miyamoto|Huang|Hauser|Kay|Rottenstrich|Alter|Ross.Slate1|Anderson|Bauer,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,12,Global,all,TRUE +3615,-1.41264208969152,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,6,5,6,7,7,5,1,1,4,4,1,1,4,4,1,1,4,1,4,1,2,3,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Graham|Hauser|Miyamoto|Kay|Ross.Slate1|VanLange|Alter|Huang|Rottenstrich|Anderson|Bauer|Critcher,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,11,Global,all,TRUE +3616,0.710141980817509,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,6,5,6,6,7,3,1,2,3,2,1,1,2,3,1,1,2,1,4,1,1,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Alter|Huang|Miyamoto|Anderson|Kay|Rottenstrich|VanLange|Critcher|Bauer|Hauser|Inbar|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing,5,Global,all,TRUE +3618,0.587163494703101,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,6,6,6,6,3,3,1,1,1,3,1,1,3,3,1,1,2,1,5,1,1,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Miyamoto|Anderson|Alter|Kay|Graham|Hauser|Bauer|VanLange|Rottenstrich|Critcher|Inbar|Ross.Slate1,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +3620,1.06339102623996,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,4,5,4,2,4,4,1,1,4,2,2,1,3,3,3,1,3,1,4,1,3,3,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Kay|Huang|Ross.Slate1|Alter|Miyamoto|Hauser|Inbar|Graham|Rottenstrich|Anderson|Critcher|VanLange,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,11,Global,all,TRUE +3621,-0.450039995655406,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,7,4,6,7,6,1,3,1,1,3,1,1,1,3,1,1,3,1,3,1,1,1,2,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Rottenstrich|Graham|Kay|Huang|Bauer|Critcher|Miyamoto|Alter|Ross.Slate1|Inbar|Hauser|Anderson,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE,13,Global,all,TRUE +3622,-1.07218081549335,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,6,7,5,6,5,4,1,1,2,3,1,1,2,1,1,1,4,1,3,1,1,3,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Huang|Miyamoto|Bauer|Alter|Ross.Slate1|Hauser|Anderson|Graham|Kay|Inbar|Rottenstrich|VanLange,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +3627,0.460366348552127,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,5,5,6,7,3,4,2,1,1,3,1,1,1,1,1,1,3,1,5,1,1,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Graham|Alter|VanLange|Bauer|Hauser|Rottenstrich|Ross.Slate1|Inbar|Miyamoto|Anderson|Kay|Huang,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,11,Global,all,TRUE +3628,-0.36805888706388,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,7,7,7,3,3,1,3,4,4,3,1,5,1,2,5,5,3,4,5,1,5,4,3,5,4,,,,,,,,,,,,,,,,,,,,,,,,,,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Huang|Hauser|Inbar|VanLange|Alter|Graham|Bauer|Critcher|Kay|Ross.Slate1|Rottenstrich|Anderson,ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,13,Global,all,TRUE +3629,-0.585146067928618,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,2,3,5,6,1,3,3,1,5,2,1,1,2,3,5,1,1,1,4,1,5,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Hauser|Kay|Rottenstrich|Alter|Inbar|Anderson|Miyamoto|Huang|Ross.Slate1|VanLange|Bauer|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,7,Global,all,TRUE +3630,0.226532511540916,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,6,6,7,7,6,5,4,1,4,4,1,3,4,4,1,1,4,1,4,4,3,5,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Ross.Slate1|Alter|Huang|Anderson|Critcher|Hauser|Rottenstrich|Graham|Bauer|Miyamoto|VanLange|Inbar,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,5,Global,all,TRUE +3636,0.489756100096036,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,6,6,6,7,3,4,2,1,1,2,1,1,2,3,1,1,1,1,5,1,3,3,4,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Critcher|Hauser|Anderson|VanLange|Inbar|Huang|Miyamoto|Rottenstrich|Graham|Alter|Ross.Slate1|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,4,Global,all,TRUE +3637,-1.27042088299561,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,5,7,5,3,6,2,4,4,4,2,2,2,1,2,2,1,1,1,3,3,4,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Critcher|Huang|Anderson|Graham|Rottenstrich|Alter|Hauser|Kay|VanLange|Bauer|Ross.Slate1|Miyamoto,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +3639,0.574642526795865,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,6,7,7,7,6,5,1,1,4,4,1,1,4,5,2,1,5,1,5,1,1,5,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Rottenstrich|Miyamoto|Graham|Bauer|Huang|Kay|Anderson|Critcher|Ross.Slate1|Inbar|Alter|Hauser,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,8,Global,all,TRUE +3642,0.581366504940734,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,6,6,5,6,7,2,4,2,1,1,1,3,2,2,3,1,2,1,2,2,4,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Critcher|Inbar|Huang|Ross.Slate1|Kay|Rottenstrich|Bauer|Anderson|VanLange|Alter|Hauser|Graham,ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,9,Global,all,TRUE +3652,0.919849449413111,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,6,6,6,6,6,3,1,1,3,2,1,1,3,3,1,1,4,1,4,1,1,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Rottenstrich|Inbar|Huang|Miyamoto|Kay|Hauser|Bauer|Graham|Critcher|Alter|Anderson|VanLange,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,12,Global,all,TRUE +3653,-0.0365508521285696,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,3,7,5,3,1,5,1,1,2,3,4,1,4,2,4,1,1,2,5,1,2,3,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Miyamoto|Huang|Anderson|VanLange|Alter|Kay|Ross.Slate1|Inbar|Graham|Bauer|Rottenstrich|Hauser,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,4,Global,all,TRUE +3656,0.282155765128234,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,3,5,5,5,6,4,4,3,3,2,1,3,1,3,5,4,3,3,3,2,5,3,4,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Bauer|Ross.Slate1|Hauser|Alter|Graham|Miyamoto|Rottenstrich|VanLange|Inbar|Critcher|Huang|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,1,Global,all,TRUE +3657,0.869896607156762,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,6,7,7,7,6,3,2,1,3,1,1,1,1,3,1,1,4,1,4,1,1,1,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Kay|Critcher|Alter|Anderson|Bauer|Huang|VanLange|Miyamoto|Graham|Hauser|Ross.Slate1|Rottenstrich,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,5,Global,all,TRUE +3658,0.148901444149425,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,6,6,6,6,4,4,1,1,4,3,1,1,4,3,1,1,3,1,4,1,1,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Inbar|Alter|Rottenstrich|Anderson|Critcher|Ross.Slate1|Huang|Bauer|Graham|Miyamoto|Kay|Hauser,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,5,Global,all,TRUE +3659,0.349639801557322,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,7,7,7,6,7,3,1,1,4,3,1,1,4,4,2,1,4,1,4,1,2,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Huang|Graham|Ross.Slate1|Bauer|Anderson|Hauser|Kay|Miyamoto|VanLange|Inbar|Alter|Critcher,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,6,Global,all,TRUE +3661,-0.51094027882526,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,7,7,6,6,7,3,1,1,1,3,1,1,2,2,1,1,2,1,3,1,1,3,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Graham|VanLange|Anderson|Rottenstrich|Miyamoto|Critcher|Inbar|Hauser|Kay|Ross.Slate1|Bauer|Huang,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,4,Global,all,TRUE +3662,-0.192753621748289,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,5,6,6,5,6,4,1,2,3,4,1,1,3,3,2,2,4,1,4,1,3,4,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Rottenstrich|Ross.Slate1|VanLange|Bauer|Alter|Graham|Anderson|Hauser|Inbar|Kay|Huang|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five,8,Global,all,TRUE +3663,0.0993419836415079,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,5,5,5,5,6,4,1,1,4,4,1,1,2,2,1,1,3,1,4,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Miyamoto|Huang|Kay|Ross.Slate1|Critcher|VanLange|Alter|Graham|Rottenstrich|Hauser|Bauer|Anderson,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,13,Global,all,TRUE +3664,1.11901427982728,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,4,5,3,7,2,5,5,1,3,4,1,1,3,4,2,1,4,1,3,2,1,5,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Graham|Huang|Rottenstrich|Inbar|Miyamoto|Anderson|Bauer|Ross.Slate1|Alter|Critcher|Hauser|Kay,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,7,Global,all,TRUE +3665,-0.663437320385576,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,7,6,6,6,3,3,1,1,2,2,1,1,4,5,1,1,3,1,4,1,1,3,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Critcher|Bauer|Rottenstrich|Kay|Inbar|Anderson|Huang|Alter|Graham|Miyamoto|Ross.Slate1|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood,7,Global,all,TRUE +3670,-0.492357743309221,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,4,3,5,5,3,3,2,4,1,2,1,3,1,3,4,1,3,3,1,2,4,1,1,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Rottenstrich|VanLange|Alter|Kay|Hauser|Miyamoto|Bauer|Huang|Inbar|Critcher|Anderson|Ross.Slate1,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,12,Global,all,TRUE +3672,0.627894068908949,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,6,6,6,6,4,4,4,1,3,4,1,4,4,3,2,1,3,1,4,3,5,4,3,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Anderson|Miyamoto|Hauser|VanLange|Kay|Graham|Critcher|Bauer|Alter|Huang|Rottenstrich|Inbar,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,2,Global,all,TRUE +3673,-0.998368408138421,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,6,7,6,6,4,4,2,1,4,3,1,1,3,3,1,1,3,1,4,1,1,3,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Hauser|Critcher|Rottenstrich|Kay|Alter|VanLange|Bauer|Inbar|Miyamoto|Huang|Anderson|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,12,Global,all,TRUE +3674,0.384180004252368,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,5,4,3,2,3,2,4,3,4,3,4,4,5,3,3,2,2,4,4,3,3,3,3,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Inbar|Alter|Anderson|Graham|Hauser|Ross.Slate1|VanLange|Rottenstrich|Huang|Kay|Miyamoto|Critcher,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +3679,0.526136633101848,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,6,7,6,7,6,3,1,2,2,3,1,1,4,4,1,1,3,1,3,1,4,3,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Anderson|Graham|Rottenstrich|Kay|Alter|Hauser|Ross.Slate1|Inbar|Critcher|Huang|Miyamoto|Bauer,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,2,Global,all,TRUE +3680,-0.187474366695153,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,6,7,7,6,7,1,1,1,1,2,1,2,3,3,1,1,4,1,5,1,1,3,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Kay|Critcher|Alter|Miyamoto|Rottenstrich|Inbar|Hauser|Anderson|VanLange|Bauer|Graham|Ross.Slate1,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,9,Global,all,TRUE +3685,0.0361965674288186,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,4,3,6,6,3,5,3,3,1,1,1,5,1,4,4,1,4,4,4,1,4,3,2,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Huang|Rottenstrich|Anderson|Ross.Slate1|Critcher|Hauser|Kay|Alter|Inbar|Graham|VanLange|Miyamoto,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,4,Global,all,TRUE +3687,0.374552933469797,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,5,6,5,5,1,2,4,5,4,2,3,5,2,2,5,4,2,5,5,2,5,2,2,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Inbar|Miyamoto|Hauser|Ross.Slate1|Alter|Critcher|Huang|Bauer|Kay|Graham|Anderson|Rottenstrich,ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,12,Global,all,TRUE +3691,0.617086852881079,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,6,7,6,6,6,3,1,1,3,3,1,1,3,2,1,1,2,1,4,1,2,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Huang|Bauer|Rottenstrich|VanLange|Anderson|Inbar|Hauser|Kay|Miyamoto|Graham|Ross.Slate1|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,6,Global,all,TRUE +3693,-0.829000357470834,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,3,2,4,1,2,4,5,4,4,3,1,3,4,3,4,1,1,3,2,1,5,3,2,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Kay|Bauer|Critcher|Inbar|Huang|Rottenstrich|Alter|Graham|Hauser|Miyamoto|Ross.Slate1|Anderson,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,13,Global,all,TRUE +3694,0.972440806460728,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,6,6,6,6,6,2,1,1,3,2,1,1,2,1,3,1,4,1,3,1,2,2,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Ross.Slate1|Alter|Inbar|Graham|Kay|Anderson|VanLange|Huang|Hauser|Miyamoto|Rottenstrich|Bauer,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +3702,0.348459656312023,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,5,5,6,5,2,4,1,2,4,3,1,1,4,2,3,1,4,2,4,1,1,2,3,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|VanLange|Kay|Huang|Inbar|Ross.Slate1|Miyamoto|Anderson|Alter|Hauser|Bauer|Graham|Rottenstrich,ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,8,Global,all,TRUE +3706,-0.384002907788651,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,6,7,7,7,5,4,1,1,2,4,1,1,2,4,1,1,4,1,4,1,1,5,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Ross.Slate1|Graham|Kay|Hauser|Inbar|Rottenstrich|Miyamoto|VanLange|Alter|Anderson|Huang|Bauer,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,11,Global,all,TRUE +3708,-0.0879620639308881,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,6,6,6,6,6,4,1,1,3,3,1,1,1,4,1,1,3,1,4,1,1,4,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Critcher|Kay|Alter|Miyamoto|Graham|Huang|Inbar|Hauser|Anderson|Rottenstrich|VanLange|Bauer,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE,10,Global,all,TRUE +3709,1.04375492391002,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,5,6,5,6,3,4,3,3,4,4,2,2,4,4,3,2,4,2,4,2,3,4,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|VanLange|Ross.Slate1|Kay|Critcher|Miyamoto|Inbar|Anderson|Huang|Hauser|Bauer|Rottenstrich|Graham,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing,8,Global,all,TRUE +3719,0.059536172347562,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,6,5,7,3,5,3,1,1,3,3,1,1,2,2,1,1,3,1,2,1,2,4,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Miyamoto|Ross.Slate1|Inbar|Rottenstrich|Hauser|Kay|Graham|Bauer|VanLange|Anderson|Critcher|Huang,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing,11,Global,all,TRUE +3721,0.764053707996061,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,6,6,5,5,5,3,2,1,3,4,1,1,2,3,2,2,4,1,3,2,3,4,3,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Graham|Bauer|Rottenstrich|Hauser|Critcher|Inbar|Kay|Huang|Ross.Slate1|VanLange|Miyamoto|Alter,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,1,Global,all,TRUE +3722,-1.00944242748332,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,5,3,5,6,3,4,2,3,4,3,2,1,4,4,4,1,3,3,4,2,3,3,4,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Bauer|Critcher|Kay|Huang|Inbar|Anderson|Ross.Slate1|Alter|VanLange|Graham|Miyamoto|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,7,Global,all,TRUE +3725,-0.00795928506516277,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,7,6,6,7,6,4,1,1,1,4,1,1,4,4,1,1,4,1,3,1,1,4,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Huang|Rottenstrich|Critcher|Miyamoto|Inbar|Bauer|Kay|Alter|Graham|Anderson|VanLange|Hauser,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +3726,0.543274445526154,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,6,6,6,6,3,3,1,3,3,4,1,1,3,3,3,1,2,1,3,1,2,4,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Bauer|Critcher|Hauser|Anderson|Miyamoto|Ross.Slate1|Rottenstrich|Inbar|Huang|Graham|VanLange|Alter,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,5,Global,all,TRUE +3733,1.05219042846366,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,5,3,5,6,7,4,2,5,5,5,1,3,4,4,3,5,4,1,3,1,4,4,4,5,3,,,,,,,,,,,,,,,,,,,,,,,,,,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Hauser|Graham|Kay|VanLange|Inbar|Rottenstrich|Miyamoto|Huang|Alter|Ross.Slate1|Bauer|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,13,Global,all,TRUE +3734,0.318142916385613,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,6,6,5,5,6,5,1,2,4,3,1,1,4,3,3,2,3,2,4,3,4,4,4,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Miyamoto|Hauser|Anderson|Bauer|Alter|Ross.Slate1|Kay|Inbar|Huang|Rottenstrich|Critcher|VanLange,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,4,Global,all,TRUE +3736,-0.934042846680433,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,4,6,6,5,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Graham|Anderson|Inbar|Kay|Alter|Miyamoto|Rottenstrich|Bauer|Hauser|Huang|Ross.Slate1|Critcher,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE,3,Global,all,TRUE +3737,0.223107233252782,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,6,6,5,5,3,4,2,3,5,4,1,3,4,3,4,3,3,2,5,1,3,4,4,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Critcher|Hauser|Kay|VanLange|Ross.Slate1|Alter|Miyamoto|Inbar|Anderson|Huang|Bauer|Graham,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,10,Global,all,TRUE +3738,0.753639873716623,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,5,5,5,4,2,3,3,1,2,3,1,1,1,2,2,3,3,1,4,2,2,3,2,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Anderson|Graham|Hauser|Rottenstrich|Inbar|Ross.Slate1|VanLange|Huang|Miyamoto|Bauer|Alter|Kay,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,2,Global,all,TRUE +3740,-1.11910176120999,High,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,5,7,6,5,2,2,4,5,3,2,5,4,2,1,4,5,2,2,2,2,4,3,2,1,5,,,,,,,,,,,,,,,,,,,,,,,,,,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Bauer|Ross.Slate1|Graham|Rottenstrich|Hauser|Alter|Anderson|VanLange|Huang|Critcher|Inbar|Kay,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,8,Global,all,TRUE +3743,-0.277766626879517,High,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,5,5,6,6,5,4,1,1,1,1,1,1,1,1,1,1,1,1,4,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Critcher|Graham|Ross.Slate1|Anderson|Inbar|Kay|Rottenstrich|Miyamoto|Hauser|Alter|Huang|Bauer,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +3745,-0.0741229513633171,High,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,7,7,7,7,7,3,1,1,1,4,1,1,3,3,4,1,3,1,5,1,4,5,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Kay|Rottenstrich|Inbar|Critcher|Hauser|Anderson|Huang|Alter|Ross.Slate1|VanLange|Bauer|Graham,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,7,Global,all,TRUE +3750,0.280304013833832,High,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,5,3,5,6,5,2,2,4,3,3,1,1,3,3,3,1,3,1,2,1,4,3,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Graham|Rottenstrich|Ross.Slate1|Alter|Anderson|Bauer|Kay|Critcher|Hauser|Miyamoto|Inbar|VanLange,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,6,Global,all,TRUE +3756,-0.603337447166824,High,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,4,1,6,3,5,5,3,1,5,3,1,2,1,1,1,1,1,1,5,3,1,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Ross.Slate1|Kay|Miyamoto|Critcher|Alter|Rottenstrich|Anderson|VanLange|Inbar|Bauer|Graham|Hauser,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +3757,0.944762581325586,High,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,6,6,6,7,4,1,1,3,3,2,1,1,1,2,1,1,1,2,2,1,2,2,2,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Ross.Slate1|Critcher|Hauser|Miyamoto|Inbar|Alter|Huang|Graham|VanLange|Bauer|Kay|Rottenstrich,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +3759,1.21035788135494,High,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,7,7,6,6,6,3,2,2,2,4,1,2,4,4,2,2,2,2,3,3,5,4,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Alter|Ross.Slate1|Hauser|Inbar|Graham|Miyamoto|VanLange|Anderson|Rottenstrich|Huang|Kay|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,9,Global,all,TRUE +3760,-0.848102853166704,High,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,5,6,7,6,7,4,2,3,2,3,2,2,4,3,2,1,1,1,2,2,3,1,1,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Rottenstrich|Graham|Bauer|VanLange|Inbar|Alter|Ross.Slate1|Anderson|Miyamoto|Kay|Huang|Critcher,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,9,Global,all,TRUE +3761,-0.311382066662662,High,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,1,1,1,1,1,5,4,5,4,2,5,5,3,2,5,2,1,4,5,2,5,1,2,2,5,,,,,,,,,,,,,,,,,,,,,,,,,,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Bauer|Miyamoto|Kay|Ross.Slate1|VanLange|Alter|Hauser|Critcher|Graham|Anderson|Inbar|Huang,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,11,Global,all,TRUE +3764,0.745204369162987,High,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,6,5,5,5,5,1,4,1,3,3,1,1,3,2,1,1,2,1,2,2,5,3,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Critcher|Rottenstrich|Bauer|Hauser|Ross.Slate1|Kay|Huang|Miyamoto|Alter|VanLange|Anderson|Inbar,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,12,Global,all,TRUE +3765,-0.681766699038818,High,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,6,6,7,7,5,4,1,1,3,3,1,1,3,4,3,2,4,1,4,1,1,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Critcher|Graham|Inbar|Alter|Huang|Kay|Bauer|VanLange|Ross.Slate1|Hauser|Miyamoto|Rottenstrich,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,1,Global,all,TRUE +3766,0.202279564693907,High,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,7,6,7,7,7,1,1,1,1,1,1,2,1,1,1,1,3,1,3,1,1,1,1,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Critcher|Kay|Anderson|Huang|Ross.Slate1|Rottenstrich|VanLange|Alter|Bauer|Hauser|Miyamoto|Graham,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood,4,Global,all,TRUE +3771,0.0354098039319527,High,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,3,5,6,5,3,2,1,1,3,2,1,1,2,2,1,1,1,1,3,1,2,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Anderson|Huang|Bauer|Rottenstrich|Hauser|VanLange|Critcher|Ross.Slate1|Alter|Miyamoto|Kay|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood,2,Global,all,TRUE +3772,-0.575656996561082,High,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,6,7,7,7,7,5,1,3,3,5,1,1,5,5,2,2,4,1,5,1,1,4,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Huang|Miyamoto|Ross.Slate1|Alter|Kay|Graham|Anderson|VanLange|Bauer|Inbar|Rottenstrich|Hauser,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +3773,0.933561983549283,High,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,6,6,6,7,4,4,2,3,3,3,1,2,2,4,2,1,2,4,4,2,4,3,3,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Bauer|Anderson|Miyamoto|Rottenstrich|Inbar|Alter|Hauser|Graham|Ross.Slate1|Kay|VanLange|Critcher,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection,3,Global,all,TRUE +3775,0.678900477979198,High,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,3,6,6,3,5,4,1,3,2,4,4,1,3,3,3,1,3,4,2,1,4,4,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Critcher|Kay|Anderson|Alter|Rottenstrich|Inbar|VanLange|Huang|Graham|Miyamoto|Ross.Slate1|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five,4,Global,all,TRUE +3776,0.142177466004556,High,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,2,5,4,2,5,3,1,1,1,2,1,1,2,3,2,1,2,1,2,1,5,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Hauser|Ross.Slate1|Inbar|Alter|Kay|Critcher|Anderson|Bauer|Rottenstrich|VanLange|Miyamoto|Huang,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +3778,-0.390457857145886,High,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,5,6,6,7,4,3,1,1,2,2,1,1,2,1,1,1,2,1,2,1,3,2,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Inbar|Rottenstrich|Miyamoto|Kay|VanLange|Graham|Huang|Anderson|Alter|Bauer|Ross.Slate1|Critcher,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,9,Global,all,TRUE +3781,-0.25759691791551,High,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,5,6,6,6,5,4,2,2,3,5,1,1,4,3,2,1,4,1,3,2,3,4,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Inbar|Hauser|Alter|Kay|Miyamoto|Rottenstrich|Bauer|Anderson|Critcher|Graham|Huang|Ross.Slate1,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,9,Global,all,TRUE +3789,0.443748496307652,High,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,5,5,7,6,7,2,4,1,1,3,1,3,1,1,1,1,2,1,1,3,1,3,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Ross.Slate1|Alter|Huang|Bauer|Rottenstrich|Hauser|Graham|Inbar|Anderson|Miyamoto|Critcher|Kay,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,10,Global,all,TRUE +3790,0.221522285275414,High,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,7,7,7,7,7,3,1,1,1,2,1,1,2,4,1,1,1,1,4,1,1,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Kay|Hauser|Huang|Inbar|Anderson|Alter|Ross.Slate1|Rottenstrich|Graham|Critcher|Bauer|VanLange,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,6,Global,all,TRUE +3791,0.800560819433271,High,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,6,6,6,6,6,3,1,3,4,4,3,1,4,2,3,4,3,3,3,1,3,4,4,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Bauer|VanLange|Hauser|Rottenstrich|Inbar|Anderson|Miyamoto|Graham|Alter|Critcher|Kay|Huang,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,7,Global,all,TRUE +3794,0.301271907278341,High,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,6,6,6,6,2,4,5,5,3,4,4,2,2,4,5,3,3,1,3,4,5,5,5,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Critcher|Rottenstrich|Ross.Slate1|Bauer|Alter|Hauser|Anderson|Huang|Inbar|Miyamoto|VanLange|Kay,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,8,Global,all,TRUE +3795,-0.404170391282059,High,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,3,5,5,3,4,3,1,2,3,1,1,1,1,1,1,1,1,1,4,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|VanLange|Kay|Critcher|Huang|Anderson|Alter|Rottenstrich|Bauer|Graham|Ross.Slate1|Hauser|Inbar,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +3801,-0.146884017374941,High,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,6,6,6,6,5,4,1,2,4,3,1,2,3,3,3,1,3,2,3,1,2,4,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Ross.Slate1|Hauser|Kay|Bauer|Graham|Huang|Alter|VanLange|Rottenstrich|Inbar|Critcher|Anderson,ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,13,Global,all,TRUE +3803,0.470906761262963,High,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,6,6,6,6,3,4,3,1,1,2,1,1,2,4,1,1,3,1,4,1,1,2,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|VanLange|Rottenstrich|Inbar|Graham|Critcher|Kay|Ross.Slate1|Bauer|Anderson|Hauser|Miyamoto|Alter,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,10,Global,all,TRUE +3807,-0.133831668304236,High,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,6,6,6,5,7,1,3,1,2,2,1,4,1,4,2,2,2,1,2,2,2,2,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Alter|Rottenstrich|Kay|VanLange|Anderson|Inbar|Hauser|Huang|Ross.Slate1|Miyamoto|Bauer|Critcher,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,6,Global,all,TRUE +3810,0.417261837401446,High,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,6,3,7,4,6,3,1,3,1,4,2,1,4,2,2,1,1,1,3,1,3,4,2,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Inbar|Rottenstrich|Kay|Critcher|VanLange|Anderson|Hauser|Ross.Slate1|Bauer|Miyamoto|Alter|Graham,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +3811,-0.315858686294096,High,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,7,7,7,4,7,5,1,3,4,5,1,1,5,3,4,2,4,1,5,1,2,5,5,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Bauer|Alter|Anderson|Kay|Hauser|VanLange|Ross.Slate1|Rottenstrich|Huang|Graham|Miyamoto|Inbar,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,4,Global,all,TRUE +3815,-1.26000704871617,High,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,6,7,6,6,7,4,2,2,3,4,1,1,4,5,1,1,4,1,3,1,1,4,4,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Critcher|Miyamoto|Bauer|Rottenstrich|Graham|Ross.Slate1|Anderson|Alter|Inbar|VanLange|Huang|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,8,Global,all,TRUE +3816,-1.26462166776264,High,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,6,5,6,5,6,4,2,3,1,3,1,1,4,4,1,1,3,1,3,1,5,3,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Rottenstrich|Huang|Anderson|VanLange|Ross.Slate1|Bauer|Graham|Hauser|Miyamoto|Kay|Alter|Critcher,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,4,Global,all,TRUE +3818,-0.234535537297437,High,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,6,7,7,5,5,3,2,1,3,4,2,1,4,4,1,3,3,3,4,1,3,4,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Anderson|VanLange|Rottenstrich|Miyamoto|Kay|Bauer|Alter|Graham|Ross.Slate1|Hauser|Critcher|Inbar,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,2,Global,all,TRUE +3820,0.628287450657382,High,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,7,7,7,7,7,4,2,3,3,4,1,2,2,4,3,2,4,3,4,1,3,4,5,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Anderson|Rottenstrich|Inbar|Critcher|VanLange|Graham|Alter|Kay|Miyamoto|Bauer|Hauser|Ross.Slate1,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +3822,0.735982101112485,High,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,4,6,7,5,2,4,3,4,3,3,3,3,4,4,4,3,2,4,3,2,5,3,4,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Huang|Ross.Slate1|VanLange|Bauer|Inbar|Graham|Anderson|Rottenstrich|Kay|Hauser|Alter|Miyamoto,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +3823,0.894542935752203,High,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,5,6,6,6,7,4,4,2,2,3,1,1,3,3,1,1,1,1,2,3,3,3,3,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|VanLange|Graham|Rottenstrich|Miyamoto|Alter|Kay|Anderson|Critcher|Huang|Hauser|Bauer|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection,8,Global,all,TRUE +3826,-0.348280334377706,High,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,7,7,7,7,7,4,4,4,4,4,1,4,4,4,4,1,4,1,4,4,4,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Inbar|Graham|Hauser|Anderson|Critcher|Bauer|VanLange|Alter|Rottenstrich|Huang|Miyamoto|Kay,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,5,Global,all,TRUE +3827,-0.792479599579386,High,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,4,6,6,5,6,4,4,1,3,1,1,1,1,3,1,1,3,1,2,1,3,4,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Kay|Alter|Bauer|Graham|Inbar|Huang|Critcher|VanLange|Miyamoto|Ross.Slate1|Anderson|Hauser,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood,12,Global,all,TRUE +3828,-0.573678666835281,High,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,6,6,6,6,6,1,3,1,2,1,1,3,1,2,1,1,3,1,2,3,1,3,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Miyamoto|Ross.Slate1|Huang|Bauer|Rottenstrich|Critcher|Hauser|Inbar|Anderson|Graham|Kay|Alter,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,10,Global,all,TRUE +3829,-0.0563271793441434,High,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,4,5,5,5,3,4,1,3,4,3,1,1,3,4,1,1,2,2,4,1,2,2,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Rottenstrich|Anderson|Critcher|Kay|Huang|Inbar|Miyamoto|Graham|Ross.Slate1|Hauser|VanLange|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,3,Global,all,TRUE +3832,0.0306663809834847,High,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,6,6,6,6,6,4,5,3,4,4,3,4,3,4,2,2,4,1,3,2,4,5,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Bauer|VanLange|Hauser|Anderson|Kay|Critcher|Inbar|Alter|Huang|Rottenstrich|Ross.Slate1|Miyamoto,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,5,Global,all,TRUE +3834,-0.310721881597195,High,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,6,7,7,6,6,4,2,1,1,5,1,1,4,4,4,1,3,2,3,1,5,4,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Inbar|Huang|Ross.Slate1|Kay|Rottenstrich|Graham|VanLange|Hauser|Miyamoto|Critcher|Alter|Bauer,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood,1,Global,all,TRUE +3837,0.0667801106722627,High,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,6,5,6,5,5,4,1,2,3,3,1,3,3,4,2,1,4,2,3,1,2,3,4,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Graham|Alter|Huang|Hauser|Inbar|Ross.Slate1|Kay|Rottenstrich|Bauer|Anderson|VanLange|Miyamoto,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,11,Global,all,TRUE +3839,0.750874780493956,High,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,5,5,6,4,2,4,2,2,4,4,1,3,2,4,1,2,1,4,3,4,3,4,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Huang|Rottenstrich|Alter|Hauser|Bauer|Anderson|Kay|Inbar|Graham|Ross.Slate1|Critcher|VanLange,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,7,Global,all,TRUE +3840,0.497531419584205,High,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,3,4,6,6,5,3,2,1,4,4,1,1,3,5,1,1,4,1,4,1,2,5,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Graham|Alter|Rottenstrich|Kay|Bauer|Hauser|Ross.Slate1|Anderson|VanLange|Critcher|Inbar|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,9,Global,all,TRUE +3842,-0.463485726474545,High,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,7,7,7,6,7,4,2,2,3,4,1,2,5,4,2,1,2,1,3,1,2,3,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Anderson|Huang|Ross.Slate1|Critcher|Graham|Inbar|VanLange|Hauser|Kay|Alter|Bauer|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,2,Global,all,TRUE +3845,0.164187505279328,High,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,5,6,5,5,3,2,1,1,1,1,1,1,2,2,1,1,1,1,4,1,1,2,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Kay|Inbar|Critcher|Hauser|Rottenstrich|Huang|Miyamoto|Alter|Bauer|VanLange|Ross.Slate1|Anderson,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,13,Global,all,TRUE +3846,-1.39076085431875,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,4,3,6,6,6,5,2,3,4,4,1,1,3,5,4,1,4,2,4,1,4,4,4,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Miyamoto|Alter|Hauser|VanLange|Bauer|Anderson|Rottenstrich|Kay|Graham|Huang|Inbar|Ross.Slate1,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood,7,Global,all,TRUE +3847,-0.546127020131538,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,2,3,2,1,3,3,4,2,3,3,2,3,3,3,3,2,4,2,3,3,4,3,3,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Kay|Hauser|Miyamoto|Bauer|Anderson|Alter|Inbar|Critcher|Rottenstrich|VanLange|Graham|Huang,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood,6,Global,all,TRUE +3848,-0.112610617996929,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,3,3,4,5,2,3,3,4,4,3,1,2,3,4,5,3,3,5,3,2,5,4,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Graham|Critcher|Inbar|Rottenstrich|Anderson|Alter|Bauer|Hauser|Miyamoto|Kay|Huang|Ross.Slate1,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,6,Global,all,TRUE +3850,-0.87050404871931,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,6,6,7,7,5,4,4,3,3,2,3,2,2,2,3,2,3,2,2,3,4,3,2,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|Kay|VanLange|Inbar|Huang|Critcher|Ross.Slate1|Bauer|Rottenstrich|Alter|Anderson|Graham,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,12,Global,all,TRUE +3852,0.617873616377944,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,5,4,5,4,6,4,1,3,3,3,1,1,2,3,2,1,3,1,3,1,2,2,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|VanLange|Miyamoto|Huang|Critcher|Alter|Kay|Rottenstrich|Bauer|Anderson|Graham|Hauser|Ross.Slate1,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,10,Global,all,TRUE +3854,1.13852380372582,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,2,2,2,2,1,2,1,3,4,4,1,1,1,4,3,1,4,1,4,1,1,4,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Ross.Slate1|Graham|VanLange|Inbar|Rottenstrich|Miyamoto|Bauer|Hauser|Huang|Alter|Critcher|Kay,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,1,Global,all,TRUE +3856,0.819676961583378,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,7,6,7,6,6,3,3,2,3,5,1,3,4,3,2,1,3,2,3,2,1,5,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Hauser|Alter|VanLange|Graham|Bauer|Miyamoto|Kay|Inbar|Rottenstrich|Ross.Slate1|Critcher|Huang,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,1,Global,all,TRUE +3857,-0.0575187455730789,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,7,7,7,7,7,4,2,1,2,4,1,1,4,5,1,2,4,1,2,1,5,4,2,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Rottenstrich|Huang|VanLange|Graham|Hauser|Bauer|Alter|Inbar|Ross.Slate1|Anderson|Miyamoto|Kay,ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,11,Global,all,TRUE +3858,-0.0987692799587582,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,3,5,6,6,5,4,3,5,4,2,3,4,2,2,5,2,2,3,3,3,5,2,3,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Anderson|Inbar|Miyamoto|Rottenstrich|Alter|VanLange|Critcher|Graham|Huang|Ross.Slate1|Bauer|Hauser,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,2,Global,all,TRUE +3864,0.346341101700587,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,5,4,6,5,4,4,2,1,4,4,1,3,4,4,2,1,3,1,4,1,3,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Alter|Huang|Hauser|Kay|Anderson|Miyamoto|VanLange|Graham|Bauer|Rottenstrich|Ross.Slate1|Inbar,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,6,Global,all,TRUE +3865,-0.413406305786796,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,5,4,4,5,6,4,1,1,2,3,1,1,3,3,1,1,1,1,4,1,1,3,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Alter|Bauer|Huang|Graham|Anderson|Inbar|Ross.Slate1|Kay|Hauser|Critcher|Rottenstrich|VanLange,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood,6,Global,all,TRUE +3866,-0.28896722465582,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,5,6,6,5,5,3,1,1,1,1,1,1,2,2,1,1,1,1,3,1,4,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Kay|Ross.Slate1|Huang|Graham|Alter|Anderson|Bauer|Rottenstrich|Inbar|Hauser|Miyamoto|VanLange,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,7,Global,all,TRUE +3869,-0.111290247865995,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,6,5,6,7,6,3,3,3,3,2,1,3,2,2,4,1,2,2,3,2,5,3,3,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Critcher|Huang|Kay|Graham|Hauser|Anderson|Alter|Rottenstrich|Ross.Slate1|Inbar|VanLange|Bauer,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,7,Global,all,TRUE +3870,0.747576080637221,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,2,5,3,2,3,3,2,4,4,3,2,2,2,2,4,1,1,4,2,4,4,2,3,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Hauser|Ross.Slate1|Rottenstrich|Huang|Inbar|Miyamoto|Kay|VanLange|Bauer|Anderson|Alter|Graham,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,11,Global,all,TRUE +3877,-0.749908695062773,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,4,6,6,7,5,4,1,2,5,4,1,2,5,5,3,2,3,3,4,3,2,4,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Inbar|Huang|Rottenstrich|Anderson|VanLange|Bauer|Alter|Ross.Slate1|Critcher|Miyamoto|Kay|Graham,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,5,Global,all,TRUE +3880,0.239978242360054,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,7,6,7,7,7,4,1,1,4,3,1,1,1,1,2,1,2,1,4,1,2,2,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Rottenstrich|Critcher|Ross.Slate1|Anderson|Kay|Huang|VanLange|Graham|Hauser|Alter|Miyamoto|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE,5,Global,all,TRUE +3881,1.07723013880753,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,6,6,7,6,7,4,1,1,4,4,1,1,2,5,1,1,4,1,4,1,1,5,4,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Hauser|Miyamoto|Huang|Graham|Alter|Rottenstrich|Ross.Slate1|Inbar|Critcher|VanLange|Anderson|Kay,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,12,Global,all,TRUE +3882,-0.133438286555803,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,5,5,5,5,4,3,4,3,3,3,4,4,2,3,4,4,2,4,3,3,5,4,3,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Graham|Anderson|Miyamoto|Hauser|Bauer|Rottenstrich|Critcher|Ross.Slate1|Huang|Inbar|VanLange|Alter,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,3,Global,all,TRUE +3883,0.22679931485795,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,5,5,6,6,6,5,1,1,3,2,1,1,5,2,3,1,4,1,4,1,2,5,4,5,3,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Critcher|Inbar|Anderson|Bauer|Graham|VanLange|Alter|Hauser|Kay|Ross.Slate1|Miyamoto|Rottenstrich,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,4,Global,all,TRUE +3884,0.545379353683355,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,5,5,6,6,2,3,1,2,4,3,1,2,3,4,2,1,3,2,3,2,2,3,3,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Alter|VanLange|Huang|Inbar|Miyamoto|Graham|Rottenstrich|Hauser|Critcher|Kay|Bauer|Ross.Slate1,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,1,Global,all,TRUE +3885,-0.633918764939669,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,5,4,5,4,6,4,1,4,4,3,1,3,2,3,4,2,1,1,5,1,4,4,3,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Ross.Slate1|Anderson|Bauer|Graham|Miyamoto|Alter|Rottenstrich|Huang|Kay|Hauser|Critcher|Inbar,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,3,Global,all,TRUE +3887,-1.55288719213224,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,5,6,4,6,4,4,2,2,3,4,2,2,4,4,2,1,3,1,3,1,2,4,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Hauser|Alter|Anderson|Huang|Graham|Rottenstrich|Critcher|Ross.Slate1|Kay|Bauer|Miyamoto|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,4,Global,all,TRUE +3888,0.687209404101435,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,6,5,6,6,7,3,1,4,1,4,1,1,3,1,1,1,4,1,4,1,1,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|VanLange|Miyamoto|Anderson|Inbar|Graham|Kay|Hauser|Alter|Huang|Ross.Slate1|Rottenstrich|Bauer,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,4,Global,all,TRUE +3889,0.354256646074391,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,6,6,6,5,6,4,2,2,4,4,2,2,4,4,2,1,4,2,2,2,4,4,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Bauer|Huang|Anderson|Kay|Hauser|Rottenstrich|Alter|Inbar|Graham|Miyamoto|Critcher|VanLange,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing,4,Global,all,TRUE +3892,-1.05267129159481,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,6,5,6,6,5,4,3,3,4,4,4,3,4,4,3,3,4,3,4,3,3,4,4,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Miyamoto|Inbar|Alter|Anderson|Kay|Bauer|Ross.Slate1|Graham|Critcher|Hauser|Huang|Rottenstrich,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,5,Global,all,TRUE +3893,0.31774953463718,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,6,5,6,6,5,5,2,1,3,5,1,1,5,4,3,1,2,3,4,2,3,5,3,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Hauser|VanLange|Miyamoto|Bauer|Ross.Slate1|Kay|Critcher|Alter|Inbar|Huang|Rottenstrich|Anderson,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,13,Global,all,TRUE +3894,-0.666075835176844,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,7,6,7,7,7,4,1,1,4,4,2,1,5,5,2,1,4,1,4,1,2,4,5,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Ross.Slate1|Miyamoto|Critcher|Hauser|Alter|Inbar|Graham|Kay|VanLange|Huang|Bauer|Rottenstrich,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood,1,Global,all,TRUE +3896,1.32661461479508,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,6,6,6,7,6,4,1,1,3,4,2,1,4,2,1,1,2,1,3,1,1,2,3,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Graham|Critcher|Bauer|Inbar|Miyamoto|Rottenstrich|Kay|Alter|Hauser|Anderson|VanLange|Huang,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,11,Global,all,TRUE +3897,-0.618494704394729,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,7,5,6,3,3,1,1,1,1,3,1,1,2,3,1,1,2,1,1,2,3,4,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Miyamoto|Graham|Hauser|VanLange|Ross.Slate1|Bauer|Anderson|Alter|Kay|Rottenstrich|Critcher|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,8,Global,all,TRUE +3899,-0.684658370692884,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,6,6,7,7,6,3,3,2,2,1,1,2,2,3,2,1,2,1,3,1,2,2,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Kay|Ross.Slate1|Miyamoto|Hauser|Inbar|Bauer|Anderson|Graham|Rottenstrich|Huang|VanLange|Critcher,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE,8,Global,all,TRUE +3902,0.0771939449516999,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,6,6,7,6,7,5,1,1,4,4,1,1,4,5,2,1,2,1,4,1,1,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Ross.Slate1|Bauer|Huang|Inbar|Miyamoto|Kay|Critcher|Rottenstrich|Anderson|VanLange|Hauser|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,10,Global,all,TRUE +3903,-0.49710116625769,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,6,5,6,5,6,2,1,1,1,2,1,1,2,2,1,1,3,1,3,1,2,4,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Rottenstrich|Inbar|Ross.Slate1|Anderson|Miyamoto|Hauser|Huang|Kay|Bauer|Graham|Alter|Critcher,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,5,Global,all,TRUE +3904,-0.226100032743801,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,6,5,6,5,6,3,1,1,4,4,1,1,4,3,1,1,3,1,4,1,1,3,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Critcher|Ross.Slate1|Alter|Kay|Inbar|Miyamoto|VanLange|Bauer|Graham|Hauser|Rottenstrich|Huang,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE,1,Global,all,TRUE +3905,-0.221749991543766,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,6,6,6,6,6,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,1,2,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Ross.Slate1|VanLange|Huang|Critcher|Bauer|Kay|Alter|Graham|Miyamoto|Rottenstrich|Anderson|Inbar,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,12,Global,all,TRUE +3910,0.545646157000388,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,6,6,7,7,6,4,1,2,4,5,2,1,2,3,2,1,3,1,4,2,2,4,5,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Hauser|Graham|Anderson|Inbar|Miyamoto|VanLange|Huang|Rottenstrich|Critcher|Ross.Slate1|Kay|Alter,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,4,Global,all,TRUE +3911,0.656232479109558,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,5,3,6,5,5,4,3,1,4,4,3,2,3,4,2,3,4,2,3,3,3,4,4,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Hauser|Inbar|Ross.Slate1|Bauer|Graham|Anderson|Miyamoto|Kay|Alter|Critcher|Huang|Rottenstrich,ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,7,Global,all,TRUE +3915,0.604034503810373,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,6,7,6,6,1,4,1,1,4,5,1,2,4,4,4,1,3,1,4,1,5,5,4,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Huang|Bauer|VanLange|Graham|Anderson|Kay|Ross.Slate1|Rottenstrich|Inbar|Miyamoto|Alter|Hauser,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,6,Global,all,TRUE +3918,-0.805267370803657,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,5,4,5,3,4,4,2,3,4,5,3,3,5,4,3,2,4,2,4,2,3,4,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Rottenstrich|Anderson|Bauer|Hauser|VanLange|Alter|Huang|Graham|Ross.Slate1|Kay|Critcher|Inbar,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +3920,0.627894068908949,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,4,6,6,6,6,4,2,2,4,4,1,2,4,3,3,1,3,2,5,1,2,4,4,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Rottenstrich|Inbar|Anderson|Alter|Ross.Slate1|Graham|VanLange|Hauser|Bauer|Critcher|Kay|Miyamoto,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,4,Global,all,TRUE +3921,0.459439360169626,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,3,6,7,5,6,5,1,1,3,4,1,1,4,5,2,1,3,1,4,1,2,5,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Bauer|Miyamoto|Anderson|Rottenstrich|Kay|VanLange|Hauser|Huang|Graham|Alter|Ross.Slate1|Inbar,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,4,Global,all,TRUE +3923,-0.648544641004106,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,3,3,5,6,3,2,1,1,1,4,1,1,3,3,1,1,3,1,3,1,2,4,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Inbar|Hauser|Rottenstrich|Miyamoto|Graham|Ross.Slate1|Bauer|Anderson|VanLange|Critcher|Kay|Huang,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing,9,Global,all,TRUE +3930,-1.13663295538273,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,3,6,6,6,3,2,3,1,3,2,1,1,2,1,1,1,3,1,3,3,3,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Ross.Slate1|Kay|Alter|Hauser|Inbar|Miyamoto|Graham|Critcher|Huang|Anderson|VanLange|Rottenstrich,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,11,Global,all,TRUE +3932,-0.948415565882072,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,5,5,6,6,7,4,2,4,2,3,1,2,4,3,1,2,2,1,3,3,4,3,2,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Inbar|Ross.Slate1|Critcher|VanLange|Anderson|Kay|Miyamoto|Hauser|Alter|Graham|Rottenstrich|Huang,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,6,Global,all,TRUE +3933,0.508998820677542,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,5,6,6,6,5,4,1,1,4,4,1,1,5,4,1,1,4,1,4,4,1,4,5,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Anderson|VanLange|Huang|Inbar|Miyamoto|Critcher|Hauser|Alter|Ross.Slate1|Bauer|Kay|Rottenstrich,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +3935,0.323546524399548,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,6,7,7,7,5,1,1,1,3,5,1,1,3,4,2,1,4,2,4,4,3,4,4,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|VanLange|Huang|Graham|Bauer|Critcher|Rottenstrich|Anderson|Alter|Kay|Ross.Slate1|Miyamoto|Inbar,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,8,Global,all,TRUE +3940,0.126626827028217,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,5,4,6,6,7,5,4,1,4,4,1,3,4,3,2,1,2,1,4,3,4,3,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Miyamoto|Rottenstrich|Hauser|VanLange|Inbar|Kay|Graham|Bauer|Alter|Critcher|Ross.Slate1|Huang,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,1,Global,all,TRUE +3941,-0.00742567843109469,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,5,3,5,5,3,3,4,4,4,3,1,3,3,3,4,1,3,3,3,1,4,3,3,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|VanLange|Ross.Slate1|Graham|Alter|Hauser|Bauer|Kay|Huang|Critcher|Anderson|Rottenstrich|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,11,Global,all,TRUE +3944,0.454035752155691,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,7,6,7,6,6,3,2,3,3,4,2,2,5,4,2,2,2,1,3,1,2,4,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Huang|Miyamoto|VanLange|Critcher|Inbar|Hauser|Rottenstrich|Anderson|Bauer|Kay|Ross.Slate1|Alter,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,9,Global,all,TRUE +3946,1.38487638317367,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,4,6,5,6,3,4,1,1,1,3,1,1,1,4,1,1,2,1,4,1,2,3,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Rottenstrich|Kay|Bauer|Alter|Graham|Ross.Slate1|Inbar|Hauser|Critcher|Miyamoto|Anderson|VanLange,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +3948,0.000743022805507532,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,2,4,4,4,2,1,1,1,2,3,1,1,3,2,1,1,1,1,2,1,1,3,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Inbar|Anderson|Rottenstrich|Critcher|Alter|Graham|Kay|Hauser|Miyamoto|Ross.Slate1|Bauer|VanLange,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,3,Global,all,TRUE +3949,0.116339571180179,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,5,5,4,5,3,3,2,4,2,2,1,5,1,2,4,2,3,4,3,2,3,2,3,1,4,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Alter|Rottenstrich|VanLange|Miyamoto|Inbar|Anderson|Hauser|Graham|Critcher|Kay|Huang|Ross.Slate1,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,7,Global,all,TRUE +3950,0.194504245205739,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,6,6,7,6,6,4,1,3,4,4,1,1,5,4,1,2,3,1,4,1,2,3,4,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Graham|VanLange|Hauser|Ross.Slate1|Alter|Anderson|Inbar|Miyamoto|Critcher|Bauer|Rottenstrich|Kay,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +3951,1.62015494327661,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,2,2,3,5,3,4,1,2,3,2,1,1,3,3,1,1,2,1,3,1,4,2,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Huang|Rottenstrich|Bauer|Alter|Kay|Miyamoto|Anderson|Hauser|Ross.Slate1|Graham|VanLange|Inbar,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +3952,0.256722673035927,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,4,5,3,4,3,5,3,5,2,3,2,1,1,3,4,1,2,2,5,3,4,3,2,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Bauer|Rottenstrich|Kay|Critcher|Inbar|Hauser|Miyamoto|Ross.Slate1|Huang|Graham|VanLange|Anderson,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,13,Global,all,TRUE +3955,-0.364100002141678,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,7,7,7,7,6,3,1,1,2,4,1,1,4,4,1,1,4,2,3,1,2,4,4,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Graham|Critcher|Miyamoto|Alter|Hauser|VanLange|Ross.Slate1|Huang|Inbar|Rottenstrich|Bauer|Anderson,ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,13,Global,all,TRUE +3957,-0.0229785428780323,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,7,6,7,6,7,4,2,2,4,3,1,1,5,4,1,1,4,1,4,2,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Anderson|VanLange|Kay|Alter|Miyamoto|Ross.Slate1|Huang|Inbar|Rottenstrich|Bauer|Hauser|Graham,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +3960,-0.419063070663529,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,6,5,6,6,7,3,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Hauser|Anderson|Rottenstrich|Alter|Graham|Ross.Slate1|VanLange|Bauer|Miyamoto|Critcher|Inbar|Kay,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,3,Global,all,TRUE +3963,0.138487609869987,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,4,4,5,3,4,3,1,2,3,2,1,1,2,2,3,1,3,2,3,1,2,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Graham|Inbar|Rottenstrich|Kay|Hauser|Huang|Miyamoto|Critcher|Alter|Ross.Slate1|Bauer|Anderson,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,13,Global,all,TRUE +3965,-1.76430618713661,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,3,3,5,5,5,3,3,2,3,3,2,3,2,3,2,1,1,2,3,3,1,4,4,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Rottenstrich|Bauer|Graham|Anderson|Inbar|Ross.Slate1|Hauser|Critcher|VanLange|Kay|Miyamoto|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,5,Global,all,TRUE +3967,1.13285339239485,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,5,5,6,7,6,3,1,1,3,1,1,1,2,3,2,1,1,1,3,1,4,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Graham|Anderson|Ross.Slate1|Huang|Inbar|Bauer|Rottenstrich|VanLange|Alter|Kay|Hauser|Critcher,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +3969,0.557240136525124,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,6,5,5,6,4,4,1,1,3,3,1,1,4,3,2,1,2,1,4,1,1,3,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Bauer|Inbar|Rottenstrich|Kay|Hauser|Huang|Miyamoto|Critcher|Alter|VanLange|Graham|Anderson,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +3970,-0.951180659104739,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,7,6,6,7,6,4,1,2,3,4,1,1,3,2,1,1,3,1,3,1,2,3,2,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|VanLange|Critcher|Inbar|Bauer|Kay|Ross.Slate1|Huang|Hauser|Graham|Anderson|Miyamoto|Alter,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,11,Global,all,TRUE +3973,-1.41039695664869,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,6,7,6,7,7,4,1,3,1,4,1,1,3,4,1,1,4,1,3,1,1,3,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Kay|Anderson|Graham|VanLange|Critcher|Inbar|Bauer|Ross.Slate1|Huang|Alter|Rottenstrich|Hauser,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,3,Global,all,TRUE +3975,-0.813574071455295,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,6,6,7,5,3,4,2,1,4,3,1,2,4,4,3,1,4,1,4,3,1,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Alter|Huang|Anderson|Hauser|Ross.Slate1|Kay|Rottenstrich|VanLange|Critcher|Graham|Miyamoto|Inbar,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,4,Global,all,TRUE +3976,0.927891572218314,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,5,4,4,3,3,4,2,1,4,4,2,1,4,3,1,1,5,1,5,2,1,3,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Kay|Ross.Slate1|Inbar|Critcher|Miyamoto|Alter|Anderson|Graham|Huang|Bauer|Rottenstrich|Hauser,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five,8,Global,all,TRUE +3978,-0.183657932129186,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,5,5,5,5,6,1,4,3,3,4,4,3,3,2,4,1,2,2,3,2,4,2,4,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Inbar|Miyamoto|Rottenstrich|Kay|Alter|Bauer|VanLange|Ross.Slate1|Anderson|Huang|Graham|Critcher,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,10,Global,all,TRUE +3979,0.142570847752989,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,5,7,5,5,3,5,2,2,4,4,1,2,4,5,3,1,4,2,5,1,3,5,5,5,3,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Graham|Bauer|Hauser|Miyamoto|Kay|VanLange|Alter|Huang|Critcher|Inbar|Rottenstrich|Ross.Slate1,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,1,Global,all,TRUE +3980,0.507020490951741,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,5,5,7,6,6,4,3,3,3,5,2,3,4,4,2,2,4,3,4,2,3,4,5,5,3,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Kay|Anderson|Inbar|Graham|Ross.Slate1|Miyamoto|VanLange|Rottenstrich|Hauser|Bauer|Critcher|Alter,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +3983,-0.367272123567014,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,6,5,6,6,6,4,1,1,4,4,1,1,4,4,1,1,4,1,4,1,1,4,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Anderson|Inbar|Alter|Rottenstrich|VanLange|Hauser|Bauer|Kay|Critcher|Graham|Huang|Ross.Slate1,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,2,Global,all,TRUE +3984,0.841558196956153,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,4,4,5,4,3,4,1,2,3,4,1,1,4,3,2,3,3,1,3,1,2,4,4,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Huang|VanLange|Rottenstrich|Kay|Critcher|Inbar|Hauser|Anderson|Ross.Slate1|Alter|Miyamoto|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,9,Global,all,TRUE +3985,0.210054884182077,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,4,6,5,6,5,5,2,1,2,5,1,1,4,4,4,1,4,1,4,3,1,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Miyamoto|Inbar|Critcher|Hauser|Bauer|Anderson|Rottenstrich|Ross.Slate1|Huang|Alter|Graham|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,7,Global,all,TRUE +3987,-0.168498449430682,High,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,2,3,4,3,2,4,4,4,3,5,2,2,3,4,4,1,2,2,4,1,4,4,4,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Ross.Slate1|Miyamoto|Graham|VanLange|Hauser|Inbar|Bauer|Critcher|Anderson|Alter|Huang|Rottenstrich,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,10,Global,all,TRUE +3993,0.306675515292276,High,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,7,4,6,4,6,1,4,2,1,1,1,3,1,1,1,1,1,1,1,2,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Graham|Ross.Slate1|Anderson|Hauser|Alter|Kay|Bauer|Inbar|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,4,Global,all,TRUE +3995,0.367702376893529,High,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,2,4,5,2,2,3,1,1,2,3,1,2,2,2,3,1,2,2,4,2,3,2,3,2,5,,,,,,,,,,,,,,,,,,,,,,,,,,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Graham|Inbar|Hauser|Kay|Ross.Slate1|Anderson|VanLange|Critcher|Bauer,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +3997,0.777626017246598,High,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,1,2,2,2,3,4,1,1,4,4,1,1,4,4,2,2,4,2,4,1,1,4,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Inbar|Bauer|Kay|Ross.Slate1|Anderson|Hauser|Rottenstrich|Graham|Critcher|VanLange|Alter|Miyamoto,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,6,Global,all,TRUE +3999,0.706452124682941,High,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,3,6,6,5,3,4,3,3,4,4,2,2,4,4,4,2,4,3,4,1,1,5,4,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Miyamoto|Anderson|Inbar|Rottenstrich|VanLange|Alter|Hauser|Graham|Bauer|Ross.Slate1|Kay|Huang,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,3,Global,all,TRUE +4000,-0.808299267343358,High,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,4,4,6,5,6,4,2,1,5,4,1,2,3,4,4,1,4,1,5,1,3,3,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Miyamoto|Rottenstrich|Kay|Bauer|Inbar|VanLange|Critcher|Alter|Anderson|Hauser|Huang|Ross.Slate1,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection,10,Global,all,TRUE +4001,0.983514825805632,High,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,6,6,7,6,6,5,1,1,1,5,1,1,5,5,1,1,3,1,4,1,2,5,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Anderson|Bauer|Huang|Ross.Slate1|Miyamoto|Alter|Kay|Rottenstrich|Hauser|Graham|VanLange|Critcher,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,2,Global,all,TRUE +4004,0.341077718572287,High,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,5,4,5,3,6,4,1,4,2,2,1,3,4,3,2,2,2,1,4,1,1,3,3,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Rottenstrich|Bauer|Ross.Slate1|Inbar|Alter|Kay|Critcher|Hauser|Huang|Graham|Miyamoto|Anderson,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,13,Global,all,TRUE +4007,0.492394614887304,High,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,3,4,6,6,7,5,1,2,3,4,2,1,3,2,2,1,1,1,4,1,2,4,3,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Rottenstrich|Inbar|VanLange|Hauser|Bauer|Anderson|Graham|Miyamoto|Ross.Slate1|Alter|Critcher|Kay,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,7,Global,all,TRUE +4012,-0.0115111417846953,High,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,6,7,7,6,5,5,1,1,3,5,1,1,4,3,2,1,3,1,4,1,1,4,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Graham|Critcher|Miyamoto|Huang|Ross.Slate1|Rottenstrich|VanLange|Inbar|Kay|Anderson|Hauser|Bauer,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,11,Global,all,TRUE +4015,0.653860767635323,High,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,6,3,5,5,4,3,3,3,3,3,1,3,2,3,2,4,2,1,4,1,3,2,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Critcher|Bauer|Graham|VanLange|Alter|Rottenstrich|Miyamoto|Kay|Inbar|Hauser|Huang|Ross.Slate1,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,1,Global,all,TRUE +4016,0.212693398973345,High,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,7,7,7,7,7,4,2,1,3,4,1,2,3,3,2,1,1,1,3,2,2,4,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|Rottenstrich|Ross.Slate1|VanLange|Inbar|Kay|Alter|Huang|Critcher|Bauer|Anderson|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,12,Global,all,TRUE +4017,0.517307746799779,High,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,4,3,6,5,6,4,1,1,2,3,1,1,1,1,2,1,3,1,5,1,2,3,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Ross.Slate1|Anderson|Miyamoto|Rottenstrich|Inbar|VanLange|Hauser|Bauer|Alter|Critcher|Graham|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,3,Global,all,TRUE +4018,-0.149649110597608,High,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,5,5,6,6,4,3,2,1,5,4,1,1,4,3,1,1,3,1,5,1,1,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Hauser|Ross.Slate1|Bauer|Miyamoto|Huang|Critcher|Anderson|Alter|Inbar|Kay|VanLange|Rottenstrich,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,8,Global,all,TRUE +4019,0.0963100871018072,High,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,5,3,6,3,4,2,1,1,2,1,2,1,2,2,2,1,1,1,2,1,2,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Critcher|Miyamoto|Inbar|Graham|Kay|Ross.Slate1|Anderson|Bauer|Hauser|Huang|VanLange|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,8,Global,all,TRUE +4021,0.928158375535348,High,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,4,4,6,6,4,3,1,1,1,3,1,3,3,3,2,1,3,1,3,2,1,3,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Alter|Anderson|Rottenstrich|Miyamoto|Kay|Critcher|VanLange|Ross.Slate1|Huang|Bauer|Graham|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,3,Global,all,TRUE +4023,0.546039538748821,High,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,6,6,6,7,7,4,1,1,4,4,1,1,4,5,1,1,3,1,4,1,2,4,4,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Anderson|Hauser|Ross.Slate1|Critcher|Inbar|Alter|Kay|VanLange|Bauer|Rottenstrich|Graham|Huang,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,2,Global,all,TRUE +4024,-0.55534928818204,High,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,4,4,6,5,5,3,1,1,1,2,1,1,2,3,1,1,3,1,4,1,2,2,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Rottenstrich|Graham|Alter|Critcher|Inbar|Hauser|Anderson|Bauer|Ross.Slate1|Huang|Kay|Miyamoto,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,8,Global,all,TRUE +4026,-0.166253316387846,High,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,1,3,2,2,1,2,1,3,3,1,1,1,1,2,1,2,2,1,4,3,1,1,3,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Alter|Kay|Miyamoto|Huang|Inbar|Ross.Slate1|Hauser|Critcher|Anderson|Bauer|Graham|Rottenstrich,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,10,Global,all,TRUE +4032,0.112787714460646,High,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,3,5,5,3,3,4,1,1,4,4,1,1,4,1,1,1,2,1,4,1,1,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Hauser|VanLange|Critcher|Miyamoto|Bauer|Ross.Slate1|Alter|Rottenstrich|Huang|Kay|Inbar|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,13,Global,all,TRUE +4033,0.713834062422677,High,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,7,4,7,4,7,4,1,1,2,2,1,2,2,3,1,1,4,1,4,1,2,2,1,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Huang|VanLange|Miyamoto|Inbar|Anderson|Hauser|Critcher|Kay|Graham|Alter|Rottenstrich|Ross.Slate1,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,6,Global,all,TRUE +4034,0.9861533405969,High,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,1,6,5,4,7,3,1,1,1,1,1,1,1,1,1,1,1,1,4,1,1,2,5,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Graham|Bauer|VanLange|Kay|Ross.Slate1|Anderson|Inbar|Rottenstrich|Huang|Critcher|Hauser|Miyamoto,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +4035,1.04718020219815,High,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,3,2,3,3,3,4,1,1,4,4,1,1,4,5,3,1,3,1,4,1,1,4,3,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Bauer|Inbar|Critcher|Kay|Huang|Anderson|Rottenstrich|Miyamoto|Hauser|VanLange|Alter|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,7,Global,all,TRUE +4036,0.125308682367883,High,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,4,6,5,6,5,4,1,1,1,4,1,1,3,2,4,1,2,1,5,1,3,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Hauser|Ross.Slate1|VanLange|Bauer|Huang|Alter|Graham|Anderson|Critcher|Kay|Rottenstrich|Inbar,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,9,Global,all,TRUE +4038,0.451270658933024,High,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,6,6,6,6,5,3,1,1,3,3,1,1,3,3,1,1,3,1,3,1,1,4,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|VanLange|Inbar|Rottenstrich|Hauser|Huang|Bauer|Critcher|Ross.Slate1|Anderson|Kay|Miyamoto|Graham,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,10,Global,all,TRUE +4040,0.185281977155237,High,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,5,6,7,5,5,5,1,1,2,3,1,1,3,2,3,1,1,1,3,1,2,2,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Huang|Miyamoto|Critcher|Bauer|Alter|Ross.Slate1|Graham|VanLange|Inbar|Anderson|Hauser|Kay,ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +4041,0.572931000387097,High,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,5,5,5,5,4,2,2,1,2,3,2,2,4,3,3,1,3,2,3,2,2,4,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Rottenstrich|Bauer|Critcher|VanLange|Hauser|Anderson|Graham|Huang|Inbar|Ross.Slate1|Kay|Alter,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +4042,0.210588490816144,High,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,4,4,5,2,2,4,1,1,5,3,1,3,1,4,4,1,3,2,5,2,2,3,3,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Hauser|Anderson|Ross.Slate1|Kay|Rottenstrich|Miyamoto|Graham|Critcher|Huang|Alter|VanLange|Inbar,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing,3,Global,all,TRUE +4044,1.01119305094077,High,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,6,6,7,6,7,4,1,2,2,3,1,1,4,4,1,2,4,1,4,2,1,4,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Kay|Hauser|Alter|Bauer|VanLange|Rottenstrich|Miyamoto|Inbar|Anderson|Graham|Ross.Slate1|Huang,ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +4045,0.368755943707429,High,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,5,4,6,5,3,3,1,1,1,4,1,1,4,3,1,1,4,1,5,1,3,4,5,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Rottenstrich|Huang|Alter|Anderson|Bauer|Critcher|Kay|Inbar|Hauser|VanLange|Ross.Slate1|Graham,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,5,Global,all,TRUE +4047,-0.260502236023812,High,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,5,4,6,4,6,4,1,1,1,4,1,1,3,3,2,1,3,1,4,1,1,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Kay|Inbar|Anderson|Ross.Slate1|Miyamoto|Huang|Graham|Alter|VanLange|Bauer|Rottenstrich|Hauser,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,4,Global,all,TRUE +4050,-0.226366836060835,High,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,3,4,4,2,3,3,1,1,4,4,1,1,4,3,1,1,2,2,2,1,1,4,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Rottenstrich|Huang|Anderson|Miyamoto|Critcher|Hauser|Bauer|Inbar|Alter|Kay|VanLange|Graham,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,4,Global,all,TRUE +4053,-0.264852277223847,High,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,6,6,7,7,6,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Hauser|Inbar|Kay|Ross.Slate1|Miyamoto|Critcher|Huang|Bauer|Rottenstrich|Alter|Graham|Anderson,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five,13,Global,all,TRUE +4054,-0.471781006142546,High,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,6,7,7,6,5,3,1,2,4,4,2,1,4,3,3,2,3,2,3,1,2,4,5,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Kay|Hauser|Bauer|Alter|Inbar|VanLange|Critcher|Miyamoto|Ross.Slate1|Graham|Huang|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,1,Global,all,TRUE +4056,0.241691994239421,High,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,6,5,6,6,6,4,1,1,4,4,1,1,4,4,1,1,3,1,4,1,1,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Critcher|Alter|Huang|Hauser|Miyamoto|VanLange|Ross.Slate1|Rottenstrich|Bauer|Inbar|Anderson|Graham,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,12,Global,all,TRUE +4062,0.953071507447823,High,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,1,7,6,2,1,1,1,1,4,1,1,2,1,2,4,4,1,1,4,1,2,1,3,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Miyamoto|Inbar|Hauser|Critcher|Huang|Rottenstrich|Alter|VanLange|Ross.Slate1|Bauer|Kay|Anderson,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +4063,0.362958953945061,High,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,6,6,7,6,7,4,2,2,3,4,1,1,2,4,1,1,3,1,3,1,1,4,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Inbar|Bauer|Kay|Rottenstrich|Miyamoto|Graham|Huang|Anderson|Ross.Slate1|Hauser|Alter|VanLange,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,9,Global,all,TRUE +4065,0.282689371762302,High,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,2,3,2,4,7,4,4,3,3,3,2,2,3,3,4,2,3,1,3,1,4,3,2,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Anderson|Alter|Critcher|Ross.Slate1|VanLange|Bauer|Miyamoto|Hauser|Rottenstrich|Graham|Huang|Inbar,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,2,Global,all,TRUE +4068,0.914052459650743,High,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,3,6,2,1,2,1,2,3,2,2,3,1,2,1,4,2,1,2,3,2,3,2,2,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Ross.Slate1|Huang|Graham|Anderson|Inbar|Miyamoto|VanLange|Bauer|Critcher|Alter|Rottenstrich|Hauser,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood,5,Global,all,TRUE +4069,0.526136633101848,High,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,5,4,5,6,3,5,1,3,4,4,3,3,4,2,2,1,3,3,4,1,3,4,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Graham|Rottenstrich|Alter|Ross.Slate1|Inbar|Anderson|Kay|Huang|Bauer|Miyamoto|VanLange|Hauser,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,7,Global,all,TRUE +4071,0.83351607415095,High,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,5,6,4,6,3,4,2,2,3,4,1,2,4,1,3,2,1,1,3,1,1,3,4,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Huang|VanLange|Kay|Graham|Anderson|Miyamoto|Hauser|Inbar|Critcher|Bauer|Alter|Rottenstrich,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +4074,-1.20029833177525,High,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,3,2,3,5,2,3,4,4,2,1,2,3,2,1,1,4,1,1,5,2,2,1,1,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Hauser|Bauer|Graham|Inbar|Anderson|Huang|Ross.Slate1|Kay|Critcher|VanLange|Miyamoto|Rottenstrich,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,6,Global,all,TRUE +4076,0.882682152910433,High,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,7,6,7,7,7,2,1,1,3,4,1,1,2,4,1,2,4,1,4,1,1,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|VanLange|Kay|Hauser|Huang|Miyamoto|Bauer|Ross.Slate1|Alter|Critcher|Graham|Anderson|Inbar,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,12,Global,all,TRUE +4077,0.816378261726644,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,5,5,6,6,3,2,3,3,4,2,3,2,3,1,3,3,2,2,3,2,3,2,2,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Alter|Hauser|Rottenstrich|Inbar|VanLange|Critcher|Huang|Graham|Miyamoto|Anderson|Ross.Slate1|Bauer,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,11,Global,all,TRUE +4078,-0.64419459980407,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,3,5,4,5,3,3,1,2,1,1,2,1,2,1,1,1,1,1,3,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Ross.Slate1|Bauer|Critcher|Graham|VanLange|Kay|Alter|Hauser|Rottenstrich|Anderson|Inbar|Miyamoto,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,11,Global,all,TRUE +4080,-1.80569694640792,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,6,7,6,6,6,4,1,1,4,3,1,1,4,1,1,1,3,4,4,1,3,4,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Ross.Slate1|Rottenstrich|Anderson|Huang|Critcher|VanLange|Miyamoto|Bauer|Graham|Hauser|Alter|Kay,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood,4,Global,all,TRUE +4081,-0.268277555511981,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,5,5,6,6,3,3,2,1,4,1,1,1,4,4,1,1,4,1,4,1,1,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Hauser|Bauer|VanLange|Critcher|Rottenstrich|Ross.Slate1|Anderson|Huang|Miyamoto|Graham|Kay|Alter,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +4085,0.133477383604485,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,4,6,6,2,2,3,1,1,1,1,1,1,1,1,1,1,1,1,3,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Hauser|Rottenstrich|Huang|Graham|VanLange|Kay|Ross.Slate1|Critcher|Anderson|Miyamoto|Inbar|Bauer,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,10,Global,all,TRUE +4088,0.465503153249028,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,5,5,6,5,3,4,2,1,3,1,1,1,2,2,1,1,3,1,4,1,1,2,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Hauser|Rottenstrich|Critcher|VanLange|Huang|Anderson|Graham|Kay|Bauer|Inbar|Ross.Slate1|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,7,Global,all,TRUE +4091,0.161155608739627,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,4,7,5,6,1,2,1,1,2,3,1,1,2,1,1,1,1,1,2,1,2,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Anderson|Alter|VanLange|Rottenstrich|Miyamoto|Graham|Critcher|Kay|Inbar|Ross.Slate1|Hauser|Bauer,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,2,Global,all,TRUE +4092,-0.113408802477431,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,2,2,7,5,3,2,4,1,1,3,1,1,1,3,1,1,2,1,2,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Inbar|Hauser|Kay|Alter|Bauer|Huang|Miyamoto|Ross.Slate1|Critcher|Anderson|VanLange|Rottenstrich,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +4095,0.332515635587252,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,2,2,3,5,3,2,4,4,4,3,2,3,2,5,3,1,4,3,4,3,1,2,3,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Hauser|Graham|Alter|Huang|Critcher|Miyamoto|Rottenstrich|Anderson|Ross.Slate1|VanLange|Inbar|Kay,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood,9,Global,all,TRUE +4096,0.344109615111988,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,5,7,6,6,3,5,3,2,1,1,2,3,2,3,2,2,3,2,3,2,1,2,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Hauser|Bauer|Critcher|Miyamoto|Huang|Ross.Slate1|Inbar|Anderson|VanLange|Graham|Kay|Rottenstrich,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,9,Global,all,TRUE +4097,0.343842811794954,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,5,6,6,3,3,4,2,3,2,2,2,3,2,3,3,1,3,1,2,1,3,2,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Miyamoto|Hauser|Rottenstrich|Ross.Slate1|Bauer|Anderson|Graham|Inbar|Alter|Kay|Critcher|Huang,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,7,Global,all,TRUE +4098,1.29893638965994,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,1,3,3,3,1,4,3,3,2,1,4,2,2,2,5,1,2,1,4,1,1,2,2,1,4,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Critcher|Rottenstrich|Bauer|Huang|Kay|Graham|Hauser|Ross.Slate1|Inbar|Anderson|Miyamoto|Alter,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,11,Global,all,TRUE +4099,0.913785656333709,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,3,6,6,7,4,1,3,4,1,1,1,1,1,3,1,1,4,1,3,4,1,1,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Critcher|VanLange|Ross.Slate1|Rottenstrich|Hauser|Bauer|Miyamoto|Graham|Inbar|Alter|Huang|Anderson,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,13,Global,all,TRUE +4100,0.152986907503025,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,3,3,4,4,2,2,3,3,1,2,1,1,2,3,2,1,3,1,1,1,1,1,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|VanLange|Kay|Hauser|Miyamoto|Critcher|Inbar|Graham|Anderson|Huang|Bauer|Alter|Rottenstrich,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,9,Global,all,TRUE +4101,0.642393366541987,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,5,7,6,5,5,4,1,1,2,1,1,1,3,2,1,1,2,1,3,1,2,2,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Inbar|Huang|Rottenstrich|Hauser|Alter|Bauer|Critcher|Anderson|Kay|Graham|Ross.Slate1|VanLange,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,9,Global,all,TRUE +4104,0.41858220753238,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,5,5,7,2,6,4,2,1,2,4,1,2,3,3,2,1,3,1,3,2,4,5,2,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Huang|Inbar|Kay|Graham|Ross.Slate1|Critcher|Miyamoto|Bauer|Rottenstrich|Anderson|Alter|VanLange,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,11,Global,all,TRUE +4105,0.141912888158121,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,5,6,6,5,4,3,1,3,5,2,1,1,2,3,2,2,3,1,5,1,2,2,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Anderson|Inbar|Miyamoto|Graham|Critcher|Alter|Rottenstrich|Hauser|Bauer|Kay|Huang|Ross.Slate1,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,2,Global,all,TRUE +4106,-0.41788292541823,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,5,4,5,5,2,4,2,1,3,2,1,2,4,3,1,2,3,1,4,1,2,3,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Rottenstrich|Kay|Bauer|Ross.Slate1|Miyamoto|Anderson|VanLange|Critcher|Huang|Inbar|Hauser|Graham,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,7,Global,all,TRUE +4108,-0.0876952606138541,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,3,5,3,7,3,4,2,4,3,2,4,3,1,3,3,4,2,1,3,2,1,1,2,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Bauer|Anderson|Ross.Slate1|Alter|Kay|VanLange|Hauser|Critcher|Rottenstrich|Huang|Inbar|Graham,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood,3,Global,all,TRUE +4109,-0.409573999295993,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,2,7,2,6,2,2,4,5,1,1,4,4,2,2,4,2,4,3,5,2,1,2,2,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Graham|Alter|Kay|Hauser|Critcher|Inbar|VanLange|Anderson|Huang|Bauer|Ross.Slate1|Miyamoto,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,9,Global,all,TRUE +4111,-0.643801218055637,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,6,5,6,6,5,5,3,2,4,2,1,2,5,4,1,1,5,1,4,1,1,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Anderson|Huang|Critcher|VanLange|Ross.Slate1|Hauser|Graham|Kay|Rottenstrich|Inbar|Alter|Miyamoto,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,2,Global,all,TRUE +4112,-0.0111177600362625,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,3,3,3,3,5,3,4,4,2,3,4,4,3,3,4,3,2,3,3,4,3,2,1,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Anderson|Kay|VanLange|Hauser|Alter|Inbar|Miyamoto|Critcher|Rottenstrich|Graham|Huang|Ross.Slate1,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +4113,1.24331313607262,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,5,6,5,6,3,4,1,2,3,3,1,2,4,3,2,1,4,1,3,1,2,3,3,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Anderson|Rottenstrich|Miyamoto|Kay|Critcher|Graham|Inbar|VanLange|Alter|Bauer|Ross.Slate1|Hauser,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +4116,0.390243797331771,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,6,6,6,6,5,4,1,1,4,2,1,1,4,4,1,1,4,1,4,1,2,4,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Miyamoto|Ross.Slate1|Graham|VanLange|Hauser|Huang|Rottenstrich|Kay|Alter|Bauer|Anderson|Critcher,ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,12,Global,all,TRUE +4118,-0.419987833575431,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,4,5,6,7,5,3,1,1,2,1,1,2,2,3,1,1,3,1,3,1,1,2,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Inbar|Miyamoto|Huang|Kay|Ross.Slate1|Critcher|Rottenstrich|Alter|Graham|Anderson|VanLange|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,11,Global,all,TRUE +4119,0.266211744403463,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,6,6,6,6,6,4,1,1,5,4,1,1,4,4,2,1,5,1,4,1,4,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Huang|Miyamoto|VanLange|Hauser|Critcher|Kay|Bauer|Inbar|Ross.Slate1|Rottenstrich|Alter|Anderson,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +4121,0.548678053540089,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,2,4,5,3,1,1,3,1,2,1,1,1,1,3,2,2,2,1,2,2,1,2,1,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Hauser|Alter|Kay|Inbar|Bauer|Rottenstrich|Huang|Miyamoto|VanLange|Graham|Critcher|Anderson,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood,13,Global,all,TRUE +4124,-1.47946594105515,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,6,6,5,5,6,4,2,3,4,1,1,1,3,3,1,3,4,1,4,3,2,3,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Kay|Critcher|Inbar|Huang|Alter|Ross.Slate1|VanLange|Anderson|Rottenstrich|Miyamoto|Graham|Bauer,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,9,Global,all,TRUE +4125,-0.315591882977062,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,5,5,6,4,2,3,1,2,2,2,1,1,2,2,1,1,3,1,4,1,1,3,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Hauser|Bauer|Huang|Miyamoto|Graham|VanLange|Ross.Slate1|Critcher|Kay|Alter|Anderson|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,12,Global,all,TRUE +4129,-0.949326682339737,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,5,5,6,7,6,5,1,3,4,4,1,1,5,4,2,2,5,3,4,1,4,4,5,5,3,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Alter|Miyamoto|Anderson|Inbar|Graham|Huang|Critcher|Kay|VanLange|Ross.Slate1|Hauser|Rottenstrich,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection,4,Global,all,TRUE +4132,0.269901600538031,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,3,4,5,3,2,4,2,1,3,1,1,1,1,3,1,1,3,1,3,1,1,1,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Inbar|Critcher|Kay|Miyamoto|Rottenstrich|Alter|Huang|Anderson|Ross.Slate1|Hauser|Bauer|Graham,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +4133,0.512564323851311,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,3,6,6,7,2,4,1,1,3,4,1,1,4,3,5,1,3,3,4,1,5,4,4,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Kay|Graham|VanLange|Anderson|Alter|Bauer|Rottenstrich|Inbar|Huang|Critcher|Hauser|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,5,Global,all,TRUE +4135,0.0388350822200867,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,3,5,5,6,3,4,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Anderson|Alter|Rottenstrich|Huang|Critcher|Graham|Hauser|VanLange|Miyamoto|Bauer|Kay|Ross.Slate1,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,2,Global,all,TRUE +4136,0.0671734924206959,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,6,7,6,7,5,5,2,1,3,4,1,1,5,4,2,1,5,1,4,1,4,5,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Critcher|Anderson|Miyamoto|VanLange|Ross.Slate1|Rottenstrich|Graham|Hauser|Alter|Inbar|Bauer|Huang,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE,3,Global,all,TRUE +4138,0.179611565824267,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,2,2,5,3,3,3,4,2,3,2,1,3,3,2,1,2,3,1,3,2,1,2,3,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Anderson|Huang|Alter|Hauser|VanLange|Graham|Bauer|Critcher|Rottenstrich|Inbar|Ross.Slate1|Kay,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood,2,Global,all,TRUE +4139,0.540509352303487,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,6,6,6,6,4,3,1,2,3,3,2,3,3,3,2,2,3,3,3,1,3,3,2,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Miyamoto|Huang|Bauer|Kay|Alter|Hauser|Ross.Slate1|Inbar|Graham|VanLange|Critcher|Anderson,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,13,Global,all,TRUE +4141,0.319196483199513,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,5,6,5,6,6,1,2,2,1,1,1,1,2,2,1,1,1,1,1,2,1,2,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Rottenstrich|Miyamoto|Kay|Huang|Anderson|VanLange|Bauer|Alter|Critcher|Ross.Slate1|Graham|Inbar,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +4145,-1.32406358138653,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,5,6,6,6,5,5,1,1,4,3,1,1,4,4,2,1,3,1,4,1,2,4,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Ross.Slate1|Bauer|VanLange|Huang|Inbar|Critcher|Anderson|Rottenstrich|Miyamoto|Kay|Hauser|Alter,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +4152,-0.190112881486422,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,2,6,3,6,3,3,4,3,1,1,2,1,1,2,1,2,1,1,1,1,1,2,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Inbar|Huang|Rottenstrich|Critcher|Hauser|Anderson|Graham|Kay|Bauer|Ross.Slate1|Alter|Miyamoto,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,7,Global,all,TRUE +4155,0.551569725194155,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,5,6,6,7,5,4,1,1,2,3,2,1,3,4,4,3,3,1,2,1,2,3,3,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Huang|Anderson|Inbar|Critcher|Miyamoto|Graham|Ross.Slate1|Alter|VanLange|Bauer|Rottenstrich|Hauser,ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +4156,0.438749691025787,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,2,7,3,4,7,4,1,2,3,3,1,2,3,3,4,1,3,2,5,1,4,1,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Alter|Rottenstrich|Ross.Slate1|Inbar|Bauer|Miyamoto|Huang|Critcher|Kay|VanLange|Anderson|Graham,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE,12,Global,all,TRUE +4157,0.214278346950713,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,5,6,6,3,3,4,3,2,3,2,1,2,3,4,2,3,4,1,4,3,2,3,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Graham|Rottenstrich|Anderson|Ross.Slate1|Huang|Alter|Kay|Critcher|Miyamoto|VanLange|Inbar|Bauer,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,4,Global,all,TRUE +4160,0.745204369162987,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,6,6,6,7,5,4,1,1,1,1,1,1,2,3,1,1,3,1,2,1,1,2,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Graham|Hauser|Critcher|Ross.Slate1|Bauer|Inbar|Huang|Anderson|VanLange|Rottenstrich|Kay|Alter,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,9,Global,all,TRUE +4161,-0.696265996671855,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,2,6,2,3,5,5,2,3,3,2,2,1,4,3,1,1,4,2,3,1,2,3,4,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|VanLange|Anderson|Huang|Alter|Kay|Bauer|Rottenstrich|Ross.Slate1|Critcher|Hauser|Inbar|Miyamoto,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood,3,Global,all,TRUE +4164,-1.05293809491184,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,2,6,5,6,3,3,2,4,3,3,4,1,3,4,3,4,4,2,4,1,4,3,2,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Rottenstrich|VanLange|Kay|Anderson|Alter|Graham|Hauser|Bauer|Critcher|Huang|Ross.Slate1|Inbar,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE,5,Global,all,TRUE +4166,0.318929679882479,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,5,6,5,5,4,3,2,3,1,1,2,3,1,1,3,1,1,1,2,1,1,1,1,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Miyamoto|VanLange|Graham|Inbar|Critcher|Ross.Slate1|Alter|Kay|Huang|Bauer|Hauser|Anderson,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,13,Global,all,TRUE +4167,0.590462194559836,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,5,6,6,6,5,3,1,3,1,1,1,1,2,2,1,2,2,1,4,1,1,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|VanLange|Critcher|Hauser|Rottenstrich|Alter|Anderson|Huang|Bauer|Graham|Miyamoto|Ross.Slate1|Kay,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,7,Global,all,TRUE +4168,0.241298612490988,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,6,6,6,7,6,5,3,1,1,3,1,2,5,5,3,1,5,3,5,1,3,1,5,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Graham|Inbar|Huang|Hauser|VanLange|Miyamoto|Rottenstrich|Anderson|Kay|Bauer|Critcher|Alter,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing,9,Global,all,TRUE +4173,0.485012677147568,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,3,2,2,3,2,4,1,5,2,2,4,1,2,1,4,4,3,1,2,2,4,2,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|VanLange|Alter|Kay|Huang|Hauser|Graham|Anderson|Inbar|Rottenstrich|Miyamoto|Critcher|Bauer,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,8,Global,all,TRUE +4174,0.468141668040296,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,6,6,7,7,6,4,1,1,3,1,1,1,2,4,1,1,1,1,3,1,1,1,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Critcher|Ross.Slate1|Hauser|Kay|Miyamoto|Inbar|Anderson|Huang|Rottenstrich|Alter|VanLange|Bauer,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +4175,-0.486418303190619,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,5,5,5,5,2,3,1,2,2,3,1,1,4,3,2,1,3,1,3,1,4,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Miyamoto|Hauser|Ross.Slate1|Bauer|Graham|Critcher|VanLange|Rottenstrich|Inbar|Anderson|Alter|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,11,Global,all,TRUE +4176,0.196875956679972,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,5,5,5,5,4,3,1,2,3,3,1,1,2,3,3,3,3,1,2,2,2,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Ross.Slate1|Anderson|Hauser|VanLange|Rottenstrich|Critcher|Bauer|Graham|Alter|Kay|Miyamoto|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,3,Global,all,TRUE +4180,-0.292923884107422,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,6,7,7,7,6,2,2,1,2,1,1,2,1,2,1,1,2,1,2,1,1,2,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Kay|Rottenstrich|Anderson|Inbar|Critcher|Huang|Ross.Slate1|Hauser|Alter|VanLange|Miyamoto|Graham,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +4182,0.102893840361041,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,5,6,6,6,3,2,1,1,2,1,1,1,2,1,1,1,1,1,3,1,1,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Ross.Slate1|Rottenstrich|Bauer|Critcher|Miyamoto|Huang|Kay|Anderson|VanLange|Graham|Inbar|Alter,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood,9,Global,all,TRUE +4183,-0.303871325020927,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,2,2,2,2,3,3,3,1,3,1,2,1,1,1,1,1,2,1,4,3,1,2,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Critcher|Anderson|Bauer|Ross.Slate1|Huang|VanLange|Rottenstrich|Inbar|Hauser|Miyamoto|Alter|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,3,Global,all,TRUE +4185,-0.298987677186824,High,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,5,7,6,6,4,4,2,1,3,1,1,2,4,3,4,3,2,1,2,1,3,2,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Graham|Inbar|Rottenstrich|Kay|Bauer|Alter|Miyamoto|Ross.Slate1|Critcher|VanLange|Hauser|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection,13,Global,all,TRUE +4193,-1.36374281424907,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,5,5,5,5,5,4,3,3,3,3,3,4,3,3,3,2,4,3,4,3,3,3,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Critcher|Bauer|Ross.Slate1|Rottenstrich|Huang|Alter|Hauser|Graham|Miyamoto|Inbar|Anderson|VanLange,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,12,Global,all,TRUE +4196,-0.241386093873704,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,4,4,4,3,2,3,2,1,4,2,1,2,2,3,1,1,5,3,5,2,1,5,5,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|VanLange|Graham|Kay|Inbar|Bauer|Anderson|Rottenstrich|Alter|Ross.Slate1|Critcher|Miyamoto|Huang,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,7,Global,all,TRUE +4199,0.95583660067049,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,5,4,5,3,3,3,1,1,3,3,1,2,3,3,2,3,3,1,2,1,2,3,3,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Alter|Kay|Hauser|Critcher|Graham|Huang|Miyamoto|Rottenstrich|Bauer|Inbar|Ross.Slate1|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,13,Global,all,TRUE +4203,0.0391018855371205,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,3,4,5,3,2,4,4,1,3,3,1,2,4,1,2,1,3,1,2,3,1,3,4,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Huang|Hauser|Ross.Slate1|Bauer|Alter|Graham|Inbar|Rottenstrich|Anderson|VanLange|Miyamoto|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,10,Global,all,TRUE +4206,-0.174562242510083,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,5,4,5,2,3,2,5,4,3,3,3,5,4,1,4,4,1,4,2,2,4,3,2,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Inbar|Critcher|Ross.Slate1|Hauser|Bauer|Rottenstrich|Anderson|VanLange|Huang|Kay|Graham|Alter,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,8,Global,all,TRUE +4212,-0.127107690159367,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,4,3,3,3,3,3,2,1,1,4,1,2,2,3,4,1,4,1,3,1,1,4,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Hauser|Critcher|Miyamoto|Kay|Bauer|VanLange|Rottenstrich|Alter|Anderson|Inbar|Ross.Slate1|Graham,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,10,Global,all,TRUE +4213,0.514936035325545,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,3,4,3,4,3,3,4,2,3,2,2,3,2,2,2,1,1,1,2,2,3,2,2,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Rottenstrich|Alter|Anderson|Hauser|Inbar|Miyamoto|Ross.Slate1|Graham|Bauer|Huang|Critcher|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,4,Global,all,TRUE +4214,-0.168231646113648,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,4,5,6,5,4,3,3,1,3,4,1,4,2,3,4,1,2,3,4,1,1,3,2,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Anderson|VanLange|Hauser|Bauer|Alter|Miyamoto|Kay|Inbar|Graham|Huang|Critcher|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood,2,Global,all,TRUE +4215,0.230491396463118,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,4,2,5,2,3,3,2,1,1,3,2,3,3,2,2,2,3,3,3,1,1,3,3,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Alter|Miyamoto|Critcher|Inbar|Kay|Bauer|Huang|Ross.Slate1|Anderson|Graham|Rottenstrich|VanLange,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,10,Global,all,TRUE +4217,0.246702220504923,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,6,6,6,5,6,4,2,2,2,5,1,4,2,2,2,1,4,1,4,1,2,5,4,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Miyamoto|Huang|Graham|Alter|VanLange|Inbar|Bauer|Hauser|Critcher|Ross.Slate1|Anderson|Kay,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,12,Global,all,TRUE +4219,-0.0547400058961759,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,5,6,5,5,4,4,4,1,3,1,2,4,4,1,3,2,3,2,3,3,2,1,4,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Hauser|Miyamoto|Ross.Slate1|Alter|Inbar|Graham|Kay|Anderson|Bauer|Rottenstrich|Huang|Critcher,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,9,Global,all,TRUE +4221,0.198854286405774,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,5,5,5,2,3,4,2,2,4,2,3,4,4,2,4,2,4,2,3,3,1,4,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Critcher|Huang|VanLange|Inbar|Alter|Kay|Anderson|Ross.Slate1|Miyamoto|Rottenstrich|Hauser|Graham,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,8,Global,all,TRUE +4223,-1.42701480889316,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,2,2,3,2,2,3,5,3,3,4,3,4,2,3,4,4,3,2,1,3,4,2,3,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Graham|Bauer|Miyamoto|VanLange|Hauser|Inbar|Anderson|Kay|Huang|Alter|Critcher|Rottenstrich,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +4224,0.590321969674201,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,5,4,5,4,5,2,4,2,2,3,3,4,1,3,4,1,2,1,3,2,2,4,3,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Hauser|Ross.Slate1|Huang|Alter|Inbar|Critcher|Kay|Bauer|Graham|Miyamoto|Rottenstrich|VanLange,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,1,Global,all,TRUE +4227,0.266478547720497,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,5,6,6,6,7,4,2,1,2,1,2,3,1,4,3,2,3,2,4,1,2,3,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Anderson|Miyamoto|Critcher|Graham|Inbar|Hauser|Huang|Alter|VanLange|Kay|Rottenstrich|Ross.Slate1,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,2,Global,all,TRUE +4229,0.0301327743494167,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,4,3,3,4,5,5,1,1,5,3,3,1,2,1,4,4,2,1,2,3,5,5,4,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Huang|Alter|Rottenstrich|VanLange|Hauser|Critcher|Anderson|Inbar|Miyamoto|Kay|Bauer|Ross.Slate1,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,8,Global,all,TRUE +4231,0.720291237250512,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,6,5,6,5,2,3,4,4,3,3,2,4,1,1,4,2,1,2,1,2,2,4,1,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|VanLange|Graham|Anderson|Rottenstrich|Kay|Miyamoto|Inbar|Hauser|Bauer|Alter|Critcher|Huang,ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,4,Global,all,TRUE +4233,-0.660936805009344,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,6,5,6,5,2,5,1,1,4,4,1,1,4,4,2,1,4,1,4,1,1,4,5,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Graham|Critcher|Miyamoto|Ross.Slate1|Anderson|Hauser|Rottenstrich|Alter|Bauer|Inbar|Huang|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,6,Global,all,TRUE +4234,-0.578422089783749,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,3,3,2,2,1,1,5,2,1,1,1,5,1,1,1,1,1,1,4,2,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Graham|Bauer|Alter|Anderson|VanLange|Rottenstrich|Hauser|Miyamoto|Ross.Slate1|Kay|Huang|Inbar,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,5,Global,all,TRUE +4236,0.698016620129305,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,2,3,3,2,2,2,1,1,4,1,1,2,1,1,1,1,3,1,4,1,1,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Bauer|Graham|Kay|Alter|Rottenstrich|Miyamoto|Anderson|Ross.Slate1|VanLange|Hauser|Inbar|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,8,Global,all,TRUE +4240,-0.327326087387433,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,5,6,5,3,3,4,1,1,2,4,1,1,1,4,3,1,4,1,3,1,2,4,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Hauser|Rottenstrich|Alter|Inbar|Bauer|Kay|Anderson|VanLange|Ross.Slate1|Graham|Huang|Miyamoto,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,8,Global,all,TRUE +4246,-0.892652087409119,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,3,3,3,5,1,1,4,1,4,2,1,2,2,1,4,1,1,2,1,4,1,1,1,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Critcher|Alter|VanLange|Graham|Miyamoto|Ross.Slate1|Rottenstrich|Anderson|Bauer|Kay|Hauser|Inbar,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +4251,-0.901087591962754,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,3,2,4,2,3,3,4,1,2,3,3,4,3,2,3,3,2,2,2,2,1,3,3,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Alter|VanLange|Anderson|Critcher|Graham|Kay|Hauser|Ross.Slate1|Huang|Bauer|Inbar|Miyamoto,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,4,Global,all,TRUE +4255,-0.0900691975586873,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,3,4,4,4,4,3,2,1,2,2,2,2,3,3,2,2,3,2,3,2,1,3,3,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Critcher|Ross.Slate1|Alter|Bauer|Anderson|Miyamoto|Huang|Inbar|Hauser|Rottenstrich|Kay|Graham,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,6,Global,all,TRUE +4258,-0.196696634745655,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,6,6,6,6,6,4,2,2,2,4,2,2,3,4,2,2,4,2,4,2,2,3,3,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Bauer|Huang|Graham|Alter|Inbar|Kay|Anderson|Rottenstrich|Critcher|Miyamoto|VanLange|Ross.Slate1,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +4259,-0.513045186982461,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,3,5,6,4,6,1,5,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Alter|Graham|Critcher|Rottenstrich|Huang|Hauser|Inbar|Anderson|Miyamoto|Bauer|Kay|Ross.Slate1,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,9,Global,all,TRUE +4262,-0.221483188226732,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,5,5,6,6,7,3,1,1,4,2,1,1,3,3,1,2,2,1,3,1,1,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|Rottenstrich|Graham|VanLange|Ross.Slate1|Anderson|Kay|Huang|Bauer|Alter|Inbar|Critcher,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +4263,0.0878745825481711,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,5,6,6,6,6,2,2,1,1,3,2,2,2,3,2,2,1,1,2,1,1,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Graham|Hauser|Huang|Anderson|Ross.Slate1|VanLange|Critcher|Miyamoto|Rottenstrich|Bauer|Inbar|Kay,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +4268,-0.440817727604905,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,5,5,6,4,6,5,1,2,3,4,1,4,3,3,3,1,5,1,5,2,2,4,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Bauer|Miyamoto|Anderson|Critcher|Hauser|VanLange|Rottenstrich|Huang|Kay|Graham|Inbar|Ross.Slate1,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,4,Global,all,TRUE +4272,-0.194324923271421,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,5,4,3,3,5,3,2,1,1,1,1,2,1,1,1,1,2,1,4,1,1,2,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Huang|Miyamoto|Bauer|Graham|Rottenstrich|Ross.Slate1|Alter|Inbar|Kay|Critcher|Anderson|VanLange,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,12,Global,all,TRUE +4274,-0.821475969374863,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,5,6,6,4,6,4,3,1,1,3,1,3,4,4,1,1,2,1,4,1,1,1,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|VanLange|Rottenstrich|Critcher|Ross.Slate1|Huang|Miyamoto|Alter|Hauser|Inbar|Bauer|Graham|Anderson,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,13,Global,all,TRUE +4276,-1.1343878223399,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnutab,5,5,5,6,2,2,5,1,1,4,2,5,3,2,1,3,2,1,2,2,4,2,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnutab,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Inbar|Kay|Huang|Bauer|VanLange|Critcher|Hauser|Alter|Anderson|Miyamoto|Ross.Slate1|Graham,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five,10,Global,all,TRUE +4277,-0.107598166260827,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnutab,5,5,6,5,5,2,3,2,3,3,3,2,3,4,2,3,3,1,3,1,3,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnutab,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Hauser|Rottenstrich|Inbar|Alter|Anderson|Bauer|Huang|Kay|Graham|Critcher|VanLange|Miyamoto,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,6,Global,all,TRUE +4280,-0.978072120743015,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnutab,5,5,5,3,3,3,2,3,2,4,3,2,2,3,2,3,3,2,2,1,3,2,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnutab,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Bauer|VanLange|Alter|Critcher|Anderson|Huang|Rottenstrich|Kay|Graham|Hauser|Inbar|Ross.Slate1,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,6,Global,all,TRUE +4282,-0.940891177786101,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnutab,2,3,5,2,6,2,3,3,2,2,2,4,3,3,2,2,3,2,3,3,4,2,3,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnutab,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Anderson|Ross.Slate1|Graham|Alter|Bauer|Rottenstrich|Huang|Hauser|VanLange|Critcher|Kay|Miyamoto,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing,2,Global,all,TRUE +4283,0.692219630366937,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnutab,3,4,3,3,2,2,1,2,3,2,1,2,2,1,2,1,2,1,4,3,4,3,2,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnutab,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Ross.Slate1|Bauer|Huang|Miyamoto|Critcher|Anderson|Graham|Rottenstrich|Kay|Hauser|VanLange|Alter,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,7,Global,all,TRUE +4287,-0.78404409502575,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnutab,3,3,3,2,3,2,2,1,1,3,1,3,2,4,4,1,2,2,3,1,3,2,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnutab,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Ross.Slate1|Kay|Rottenstrich|Anderson|Critcher|Graham|Bauer|Hauser|Inbar|Huang|VanLange|Miyamoto,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,5,Global,all,TRUE +4290,0.304823763997874,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnutab,6,6,6,6,1,2,1,1,2,2,1,2,1,3,1,1,3,1,4,4,1,3,4,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnutab,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Alter|Huang|Inbar|Anderson|Hauser|Rottenstrich|Ross.Slate1|Miyamoto|Critcher|VanLange|Graham|Kay,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +4292,-0.428423338129067,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnutab,6,5,6,3,2,3,2,2,2,4,2,3,1,3,2,1,2,2,2,3,3,2,2,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnutab,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|VanLange|Anderson|Kay|Bauer|Hauser|Miyamoto|Huang|Graham|Inbar|Critcher|Rottenstrich|Alter,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,3,Global,all,TRUE +4297,-0.321655676056464,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnutab,3,5,5,5,2,4,2,2,2,3,2,3,2,1,2,2,4,2,4,1,2,2,2,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnutab,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Alter|Ross.Slate1|Graham|Bauer|Huang|Hauser|Critcher|Rottenstrich|Kay|Anderson|Miyamoto|Inbar,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +4298,-0.566690110843978,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnutab,5,5,4,3,2,4,3,2,4,3,3,3,2,3,4,3,3,2,3,1,3,3,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnutab,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Miyamoto|Anderson|Alter|Huang|Hauser|Rottenstrich|Kay|Critcher|Ross.Slate1|Inbar|Bauer|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,3,Global,all,TRUE +4299,-0.463092344726112,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnutab,3,3,3,3,2,3,3,1,2,1,1,2,2,3,2,1,4,1,4,1,1,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnutab,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|VanLange|Huang|Inbar|Rottenstrich|Bauer|Miyamoto|Graham|Alter|Kay|Anderson|Ross.Slate1|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,11,Global,all,TRUE +4302,0.71212253601391,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnutab,2,2,2,3,1,2,4,3,3,2,2,4,2,2,4,2,2,2,3,4,3,2,2,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnutab,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Graham|Miyamoto|Critcher|Alter|Inbar|Bauer|Rottenstrich|Huang|Ross.Slate1|Anderson|Hauser|VanLange,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,11,Global,all,TRUE +4304,-0.82003124628313,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnutab,2,3,2,1,2,5,4,3,5,5,1,5,3,4,4,1,5,1,5,1,1,5,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnutab,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Hauser|Ross.Slate1|Alter|Miyamoto|Rottenstrich|Huang|Kay|Critcher|Graham|Bauer|Anderson|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,12,Global,all,TRUE +4305,-1.02604663327356,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnutab,6,6,6,6,6,3,3,3,3,3,3,3,4,3,3,3,3,3,3,3,3,3,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnutab,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Bauer|Alter|Critcher|Inbar|Graham|Huang|Ross.Slate1|Hauser|Anderson|Rottenstrich|Miyamoto|Kay,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,10,Global,all,TRUE +4308,-0.775215208723681,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnutab,6,5,6,5,6,4,2,2,2,4,2,2,3,3,2,2,4,1,3,3,1,5,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnutab,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Critcher|Huang|Hauser|Inbar|Anderson|Rottenstrich|Alter|Graham|VanLange|Miyamoto|Ross.Slate1|Kay,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,6,Global,all,TRUE +4309,0.280050856971034,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnutab,6,5,6,6,4,2,4,1,5,4,4,3,3,4,2,3,3,1,5,1,1,5,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnutab,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Miyamoto|Ross.Slate1|Bauer|Kay|Anderson|Alter|Hauser|VanLange|Rottenstrich|Critcher|Graham|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,6,Global,all,TRUE +4311,-1.2470926990605,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnutab,2,2,2,2,1,4,1,1,4,3,3,3,2,3,3,1,4,1,5,1,2,3,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnutab,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Inbar|Rottenstrich|Critcher|Hauser|Huang|Kay|Miyamoto|Graham|Alter|Bauer|VanLange|Anderson,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,13,Global,all,TRUE +4312,-0.144638884332106,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnutab,5,6,6,6,6,3,1,1,1,2,1,1,1,1,3,1,3,1,2,1,1,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnutab,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Alter|Graham|Huang|Kay|Miyamoto|Inbar|Bauer|Rottenstrich|Ross.Slate1|Anderson|Critcher|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,11,Global,all,TRUE +4315,0.52904195121015,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnutab,3,6,6,7,3,2,3,2,2,3,3,2,2,2,3,3,3,3,2,1,4,3,3,1,4,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnutab,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Alter|Rottenstrich|Ross.Slate1|Graham|VanLange|Anderson|Miyamoto|Hauser|Bauer|Critcher|Huang|Inbar,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +4316,-0.528862629275833,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnutab,5,6,6,5,2,3,2,1,1,2,1,1,1,3,1,1,2,1,4,1,1,2,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnutab,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Alter|Ross.Slate1|Hauser|Anderson|Critcher|Kay|Bauer|Inbar|Graham|VanLange|Huang|Rottenstrich,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +4319,-0.793139784644853,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnutab,4,4,4,4,5,1,1,1,1,3,1,2,1,3,1,1,3,1,3,1,1,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnutab,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Huang|Anderson|Hauser|Inbar|Graham|VanLange|Alter|Miyamoto|Critcher|Ross.Slate1|Rottenstrich|Bauer,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +4320,-0.153734573951209,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnutab,2,2,2,6,1,3,1,1,2,2,1,1,1,1,1,1,3,1,4,1,1,2,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnutab,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Hauser|Bauer|Critcher|Miyamoto|Rottenstrich|Huang|Ross.Slate1|Alter|VanLange|Anderson|Inbar|Kay,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +4321,0.82574075466278,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnutab,7,6,6,5,6,3,4,1,2,4,1,4,4,3,3,1,3,1,5,1,1,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnutab,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Miyamoto|Anderson|Rottenstrich|Ross.Slate1|Graham|Hauser|VanLange|Huang|Kay|Bauer|Critcher|Inbar,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,3,Global,all,TRUE +4322,0.144411178063754,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnutab,5,5,3,3,2,5,1,1,2,4,1,1,2,1,2,1,4,1,4,1,1,3,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnutab,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Anderson|Alter|Huang|Miyamoto|Graham|Bauer|Inbar|Critcher|Rottenstrich|Kay|VanLange|Hauser,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,2,Global,all,TRUE +4325,0.0528144196732927,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnutab,5,5,5,5,6,4,3,3,3,4,3,3,3,3,3,3,3,3,4,3,3,3,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnutab,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Inbar|Ross.Slate1|Graham|VanLange|Anderson|Huang|Miyamoto|Alter|Hauser|Critcher|Kay|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,6,Global,all,TRUE +4327,-0.661990371823244,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnutab,3,1,1,2,3,2,4,4,3,4,4,5,1,3,4,4,1,4,1,3,4,3,2,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnutab,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Kay|Anderson|Ross.Slate1|Inbar|Miyamoto|Alter|Critcher|Huang|Bauer|VanLange|Rottenstrich|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,3,Global,all,TRUE +4328,-0.442135872265239,High,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnutab,6,6,6,5,7,5,4,2,4,4,1,3,4,3,4,2,4,4,4,4,4,4,4,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,ntnu,ntnu,ntnutab,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Critcher|Huang|Ross.Slate1|Rottenstrich|Miyamoto|VanLange|Bauer|Kay|Alter|Inbar|Graham|Hauser,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,1,Global,all,TRUE +4329,-1.68073790509711,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,3,3,4,5,3,3,5,4,3,1,1,4,2,1,5,1,2,3,3,4,5,1,2,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Huang|Anderson|VanLange|Alter|Rottenstrich|Inbar|Kay|Critcher|Graham|Hauser|Ross.Slate1|Miyamoto,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,3,Global,all,TRUE +4330,-0.281849864762518,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,6,4,5,5,1,1,1,1,1,1,1,1,1,1,1,1,5,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Bauer|Kay|Critcher|Inbar|Graham|Miyamoto|Ross.Slate1|Rottenstrich|Huang|Anderson|Hauser|Alter,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +4331,0.0737686666635663,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,3,4,6,5,4,4,1,1,4,4,1,1,4,4,1,1,3,1,4,1,1,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|VanLange|Bauer|Critcher|Ross.Slate1|Anderson|Miyamoto|Huang|Graham|Rottenstrich|Alter|Hauser|Kay,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,6,Global,all,TRUE +4333,0.302325474092241,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,5,5,5,4,5,3,1,1,4,1,1,2,3,3,1,1,3,1,4,1,1,3,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Critcher|Anderson|Graham|Huang|Bauer|Rottenstrich|Alter|Miyamoto|Kay|VanLange|Hauser|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,3,Global,all,TRUE +4334,-1.05293809491184,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,4,1,4,5,2,5,3,4,1,5,3,5,2,1,3,4,1,3,1,1,3,3,5,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Anderson|Ross.Slate1|Inbar|Graham|Critcher|Bauer|Alter|VanLange|Miyamoto|Rottenstrich|Huang|Hauser,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,2,Global,all,TRUE +4336,-0.467175582609113,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,2,3,3,4,2,5,1,2,4,4,1,1,4,3,1,2,3,1,4,1,2,2,2,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|VanLange|Inbar|Critcher|Alter|Huang|Graham|Hauser|Miyamoto|Kay|Bauer|Ross.Slate1|Rottenstrich,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +4338,0.0309331843005187,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,1,1,1,1,1,1,3,4,1,3,4,3,3,1,3,1,1,1,1,3,4,1,1,5,4,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Bauer|Miyamoto|Kay|Critcher|Anderson|VanLange|Alter|Graham|Huang|Ross.Slate1|Inbar|Rottenstrich,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +4343,-0.035370706883271,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,7,7,7,7,7,1,1,1,1,5,1,1,1,5,3,1,1,1,1,1,1,1,3,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|Inbar|Ross.Slate1|Alter|VanLange|Graham|Kay|Rottenstrich|Critcher|Bauer|Anderson|Huang,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +4344,-0.397839794885623,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,1,5,3,3,1,3,1,1,4,1,1,1,5,3,1,1,5,1,4,1,2,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Inbar|Hauser|Ross.Slate1|VanLange|Anderson|Huang|Graham|Kay|Critcher|Miyamoto|Bauer|Alter,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,6,Global,all,TRUE +4346,0.0141887536246454,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,5,5,6,7,5,4,1,1,5,2,1,1,3,3,1,1,1,1,5,1,1,4,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Hauser|Anderson|Graham|Rottenstrich|Alter|Critcher|Miyamoto|Bauer|Ross.Slate1|Kay|Huang|Inbar,ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,3,Global,all,TRUE +4347,-1.19699963191852,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,5,6,7,5,6,4,1,1,4,3,1,1,4,4,1,1,3,1,4,1,1,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Alter|Huang|Rottenstrich|Anderson|Kay|Inbar|Graham|Hauser|Bauer|Ross.Slate1|VanLange|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,5,Global,all,TRUE +4351,-0.919670127478794,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,5,5,5,5,3,5,2,2,4,5,1,1,5,4,2,1,4,1,4,1,2,5,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Ross.Slate1|VanLange|Critcher|Rottenstrich|Hauser|Huang|Graham|Inbar|Miyamoto|Alter|Bauer|Kay,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,1,Global,all,TRUE +4353,0.994195463402103,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,5,4,6,5,4,5,2,2,3,3,1,1,4,3,3,1,4,1,4,1,2,5,4,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Graham|Bauer|Anderson|Ross.Slate1|Huang|Rottenstrich|Critcher|VanLange|Hauser|Kay|Alter|Miyamoto,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,4,Global,all,TRUE +4354,-1.0314502412875,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,4,4,5,5,3,3,3,2,2,2,1,1,3,3,2,1,3,1,2,1,2,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Inbar|Anderson|Kay|Alter|Rottenstrich|Ross.Slate1|Hauser|Miyamoto|VanLange|Huang|Bauer|Critcher,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,3,Global,all,TRUE +4355,-0.389404290331987,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,2,4,5,5,2,4,1,1,4,1,1,1,2,3,1,1,3,1,4,1,1,2,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Graham|Rottenstrich|Hauser|Ross.Slate1|Bauer|Alter|Miyamoto|Inbar|Critcher|Kay|Anderson|Huang,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection,12,Global,all,TRUE +4359,-1.02301473673386,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,3,7,4,3,1,1,4,5,3,2,2,3,4,5,3,1,4,1,3,1,4,2,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Graham|Miyamoto|Anderson|Bauer|VanLange|Critcher|Inbar|Hauser|Rottenstrich|Kay|Ross.Slate1|Alter,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +4361,-0.865505243437445,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,5,5,4,4,5,4,4,3,3,4,3,4,2,3,3,3,3,5,4,4,5,4,3,4,5,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Hauser|VanLange|Alter|Anderson|Ross.Slate1|Inbar|Bauer|Graham|Kay|Miyamoto|Huang|Critcher,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,5,Global,all,TRUE +4363,0.0524210379248598,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,6,6,6,6,6,5,4,3,4,4,3,2,5,5,5,3,5,1,4,2,4,5,5,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Miyamoto|Huang|Anderson|Rottenstrich|Bauer|Inbar|Alter|Kay|Hauser|Critcher|Graham|VanLange,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,4,Global,all,TRUE +4364,-1.90402910392689,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,7,7,7,7,7,4,1,2,4,1,1,1,3,4,1,1,4,1,4,1,1,3,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Hauser|Miyamoto|Huang|Kay|Ross.Slate1|Anderson|Critcher|Graham|Alter|VanLange|Bauer|Rottenstrich,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,7,Global,all,TRUE +4370,0.518487892045078,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,2,2,2,2,2,1,4,4,3,2,1,3,5,4,4,1,3,2,2,2,4,1,3,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Alter|Huang|Inbar|Anderson|Rottenstrich|Ross.Slate1|Bauer|Miyamoto|Critcher|Kay|VanLange|Hauser,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,5,Global,all,TRUE +4371,-0.38663919710932,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,6,6,7,6,5,4,1,1,3,1,1,1,3,4,1,1,3,1,3,1,1,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Anderson|VanLange|Ross.Slate1|Huang|Hauser|Kay|Alter|Miyamoto|Critcher|Bauer|Graham|Inbar,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five,2,Global,all,TRUE +4374,-0.592654584099754,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,5,5,5,7,3,2,3,4,4,3,1,3,2,4,3,2,2,1,4,1,4,4,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|VanLange|Inbar|Rottenstrich|Alter|Anderson|Ross.Slate1|Huang|Graham|Hauser|Kay|Critcher|Miyamoto,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five,6,Global,all,TRUE +4376,-1.98297831597871,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,5,3,4,5,2,3,1,2,1,2,1,5,2,2,2,2,3,3,1,1,2,3,3,2,5,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Miyamoto|Hauser|Anderson|Alter|VanLange|Graham|Ross.Slate1|Inbar|Huang|Critcher|Kay|Bauer,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +4380,-0.943405339616569,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,6,3,6,5,4,4,1,1,2,3,1,2,2,2,1,1,3,1,2,1,2,3,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Huang|Hauser|Kay|Inbar|Alter|Anderson|Bauer|VanLange|Graham|Critcher|Ross.Slate1|Rottenstrich,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,7,Global,all,TRUE +4381,-0.740548427597236,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,5,3,5,6,2,4,1,1,4,1,1,2,4,4,1,3,4,1,4,1,1,5,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Critcher|Kay|Huang|Bauer|Graham|Hauser|Miyamoto|Anderson|Alter|VanLange|Rottenstrich|Inbar,ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,9,Global,all,TRUE +4383,-0.179965850524018,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,5,6,5,5,4,4,1,3,4,1,3,1,3,1,2,1,2,1,4,1,1,4,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Kay|Anderson|Hauser|Rottenstrich|Graham|VanLange|Bauer|Huang|Ross.Slate1|Inbar|Miyamoto|Critcher,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,3,Global,all,TRUE +4385,-0.600696706904957,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,6,6,6,6,5,4,1,1,4,1,1,1,1,4,1,1,1,1,4,1,1,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Alter|Graham|Ross.Slate1|Hauser|Huang|Miyamoto|Bauer|Rottenstrich|VanLange|Inbar|Anderson|Critcher,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +4387,-0.276319678317184,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,4,2,4,6,1,2,1,3,1,2,1,2,2,3,3,1,5,2,1,2,2,2,3,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Hauser|Graham|Alter|Inbar|VanLange|Miyamoto|Bauer|Critcher|Ross.Slate1|Anderson|Huang|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,11,Global,all,TRUE +4388,-1.47340437344634,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,3,5,6,5,3,4,2,3,4,3,1,2,4,3,2,1,3,2,4,1,2,3,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Bauer|Rottenstrich|Graham|Ross.Slate1|Kay|Miyamoto|Critcher|Huang|VanLange|Anderson|Alter|Hauser,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing,11,Global,all,TRUE +4391,-0.0341791406543353,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,5,6,6,5,3,3,1,3,3,1,1,1,1,2,1,1,2,1,3,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Anderson|VanLange|Rottenstrich|Huang|Critcher|Hauser|Alter|Inbar|Graham|Kay|Bauer|Miyamoto,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +4396,0.268710034309096,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,6,4,6,6,3,5,2,5,4,1,1,4,4,5,2,1,5,1,4,1,2,5,4,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Bauer|Kay|Anderson|Huang|Inbar|Miyamoto|Ross.Slate1|Critcher|VanLange|Graham|Hauser|Rottenstrich,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,4,Global,all,TRUE +4399,-1.58623582859835,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,6,6,6,6,6,5,1,1,4,3,1,1,3,4,1,1,4,1,3,1,1,4,4,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Bauer|Rottenstrich|Inbar|Kay|Graham|VanLange|Critcher|Anderson|Miyamoto|Huang|Hauser,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,10,Global,all,TRUE +4400,-0.536764527195401,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,1,1,1,1,1,1,3,5,1,1,3,5,1,1,5,3,1,5,1,1,3,1,1,1,5,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Huang|Kay|Miyamoto|Critcher|Rottenstrich|Alter|Ross.Slate1|Bauer|Hauser|VanLange|Inbar|Anderson,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood,13,Global,all,TRUE +4404,0.280050856971034,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,6,6,6,6,6,3,2,2,3,3,1,1,3,4,2,1,4,1,3,1,2,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Critcher|Alter|Inbar|Rottenstrich|Huang|Bauer|Ross.Slate1|Graham|VanLange|Anderson|Kay|Hauser,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +4406,0.151806762257726,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,5,2,6,6,3,2,1,2,3,1,1,1,3,3,2,1,3,1,3,1,1,2,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Hauser|Miyamoto|Rottenstrich|Graham|Ross.Slate1|Inbar|Alter|Huang|VanLange|Bauer|Anderson|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,12,Global,all,TRUE +4407,0.200832616131575,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,3,4,5,5,3,3,1,2,1,1,2,1,2,3,2,2,3,1,3,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Critcher|Miyamoto|Hauser|Bauer|VanLange|Anderson|Graham|Kay|Rottenstrich|Inbar|Huang,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,8,Global,all,TRUE +4408,-0.0177015132954961,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,3,3,5,3,3,5,1,4,5,4,1,2,3,4,3,2,5,1,5,2,3,5,3,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Critcher|VanLange|Kay|Bauer|Inbar|Anderson|Rottenstrich|Graham|Hauser|Huang|Alter|Ross.Slate1,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,7,Global,all,TRUE +4410,0.32961031747895,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,5,4,5,5,2,3,1,2,2,2,1,2,3,3,2,2,3,1,2,2,2,2,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Rottenstrich|Bauer|Huang|Alter|Hauser|VanLange|Ross.Slate1|Anderson|Miyamoto|Critcher|Inbar|Graham,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,9,Global,all,TRUE +4412,-0.502631352703023,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,6,6,6,6,6,4,1,2,3,4,1,1,4,4,1,2,4,1,3,1,1,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Inbar|Critcher|Ross.Slate1|Huang|Graham|Kay|Alter|Anderson|Bauer|VanLange|Rottenstrich|Hauser,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +4417,0.824687187848881,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,5,4,6,4,2,4,4,4,3,3,2,2,4,4,3,2,4,1,3,1,5,3,2,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|VanLange|Anderson|Graham|Miyamoto|Rottenstrich|Ross.Slate1|Hauser|Critcher|Alter|Kay|Bauer|Huang,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,3,Global,all,TRUE +4418,0.149294825897858,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,6,7,7,6,7,2,1,1,4,1,1,1,3,3,3,1,2,1,4,1,1,1,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Rottenstrich|Graham|Critcher|Inbar|Hauser|Anderson|Miyamoto|Ross.Slate1|VanLange|Kay|Bauer|Alter,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,7,Global,all,TRUE +4420,0.345821141520755,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,3,5,6,6,4,5,2,2,1,1,1,1,1,4,2,1,5,1,1,1,1,1,1,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Inbar|Huang|Bauer|Graham|Critcher|Anderson|Rottenstrich|Hauser|Ross.Slate1|VanLange|Miyamoto|Alter,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,7,Global,all,TRUE +4421,0.952804704130789,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,4,3,4,3,2,4,1,1,4,1,1,1,3,4,2,1,4,1,4,1,1,3,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Kay|Rottenstrich|Graham|Alter|Hauser|Inbar|Anderson|Huang|Miyamoto|Bauer|Critcher|VanLange,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,8,Global,all,TRUE +4423,0.570025682278796,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,5,4,5,3,7,5,1,1,4,1,1,2,2,4,1,1,5,1,4,1,1,5,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Inbar|Miyamoto|Alter|Hauser|Critcher|Huang|Graham|VanLange|Rottenstrich|Anderson|Bauer|Kay,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE,11,Global,all,TRUE +4424,1.09977155924577,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,5,5,6,6,3,4,2,4,3,2,1,4,2,3,4,3,3,5,3,1,3,2,3,3,5,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Graham|VanLange|Miyamoto|Kay|Hauser|Ross.Slate1|Anderson|Huang|Rottenstrich|Inbar|Alter|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,8,Global,all,TRUE +4427,0.79437044792247,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,5,2,6,6,3,3,1,2,5,1,1,1,2,2,1,2,3,1,5,1,1,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Inbar|Bauer|Graham|Critcher|Rottenstrich|Hauser|Anderson|VanLange|Ross.Slate1|Huang|Alter|Miyamoto,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,8,Global,all,TRUE +4428,0.365724047167728,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,6,2,3,5,5,5,3,4,4,1,1,3,3,2,5,1,2,1,4,1,3,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Anderson|Ross.Slate1|Critcher|Bauer|Miyamoto|VanLange|Rottenstrich|Alter|Hauser|Inbar|Graham|Kay,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,2,Global,all,TRUE +4430,0.043451926737156,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,6,5,6,6,6,4,2,3,1,2,1,1,4,3,2,1,4,1,1,1,3,3,5,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Anderson|VanLange|Miyamoto|Critcher|Rottenstrich|Alter|Huang|Hauser|Graham|Ross.Slate1|Bauer|Inbar,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,2,Global,all,TRUE +4431,0.720291237250512,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,4,5,4,7,3,3,1,3,2,2,1,1,1,3,2,1,2,1,2,1,1,2,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Critcher|Huang|Hauser|Anderson|VanLange|Kay|Miyamoto|Graham|Ross.Slate1|Inbar|Alter|Rottenstrich,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,5,Global,all,TRUE +4433,0.154698433911792,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,5,5,6,6,5,4,3,2,3,3,2,2,3,4,3,1,5,2,3,1,3,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|VanLange|Rottenstrich|Critcher|Inbar|Anderson|Miyamoto|Hauser|Graham|Kay|Alter|Huang|Bauer,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +4437,-0.345908622903472,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,4,2,6,5,3,4,4,2,2,3,1,2,3,4,2,1,4,2,2,3,4,3,3,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Kay|Rottenstrich|Alter|Inbar|Graham|Miyamoto|Anderson|VanLange|Hauser|Huang|Bauer|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,8,Global,all,TRUE +4442,-0.494980386175654,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,5,5,6,5,5,4,1,1,4,4,1,1,4,4,1,1,5,1,4,1,1,4,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Bauer|Inbar|Hauser|Anderson|Rottenstrich|VanLange|Huang|Graham|Critcher|Alter|Miyamoto|Ross.Slate1,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,5,Global,all,TRUE +4445,-0.233343971068501,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,5,5,6,5,3,5,3,3,4,4,2,1,5,4,4,2,4,2,4,1,3,5,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|VanLange|Rottenstrich|Critcher|Ross.Slate1|Anderson|Alter|Miyamoto|Hauser|Kay|Bauer|Inbar|Huang,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection,6,Global,all,TRUE +4446,-0.833603555533667,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,4,4,5,5,3,3,1,3,1,1,1,2,1,2,1,1,2,1,1,1,1,2,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Miyamoto|VanLange|Anderson|Huang|Bauer|Kay|Ross.Slate1|Hauser|Critcher|Graham|Rottenstrich|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,4,Global,all,TRUE +4447,-0.234408958866038,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,5,5,5,6,5,5,1,3,2,5,1,1,5,4,1,1,4,1,2,1,1,4,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Inbar|Critcher|Bauer|Kay|Anderson|Miyamoto|Alter|Rottenstrich|Huang|Ross.Slate1|VanLange|Hauser,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing,6,Global,all,TRUE +4448,0.0724505220032319,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,5,6,6,6,3,4,2,1,3,2,1,1,3,4,1,1,4,1,3,1,2,2,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Rottenstrich|Anderson|Kay|Alter|Huang|Bauer|Critcher|VanLange|Inbar|Graham|Ross.Slate1|Miyamoto,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,3,Global,all,TRUE +4449,-0.448186018890405,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,7,7,6,6,5,4,1,1,4,3,1,2,4,5,1,1,4,1,4,1,1,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Alter|Critcher|Hauser|Ross.Slate1|Anderson|VanLange|Kay|Inbar|Huang|Miyamoto|Rottenstrich|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,6,Global,all,TRUE +4450,-0.584092501114719,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,4,4,5,5,3,4,1,2,3,4,4,1,3,3,2,1,2,2,3,1,1,4,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Kay|Inbar|VanLange|Alter|Graham|Rottenstrich|Huang|Bauer|Critcher|Ross.Slate1|Hauser|Miyamoto,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,1,Global,all,TRUE +4451,-0.0527616761703747,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,6,5,6,6,2,4,1,2,3,4,2,1,4,5,1,2,4,2,3,1,1,4,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Graham|Hauser|Critcher|Alter|Rottenstrich|Bauer|VanLange|Miyamoto|Kay|Anderson|Ross.Slate1|Huang,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing,11,Global,all,TRUE +4452,0.440463442905154,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,5,6,6,6,5,3,1,2,2,3,2,2,3,4,1,1,3,1,3,1,1,2,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Huang|VanLange|Anderson|Hauser|Critcher|Kay|Ross.Slate1|Alter|Bauer|Graham|Miyamoto|Rottenstrich,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +4454,-0.945774825620204,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,5,4,5,5,4,3,1,2,2,3,1,1,4,3,2,1,2,1,2,1,1,4,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Rottenstrich|Inbar|Hauser|Bauer|Alter|Critcher|Ross.Slate1|Kay|Anderson|Huang|VanLange|Miyamoto,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +4456,0.792392118196669,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,5,5,6,6,5,4,1,2,4,1,1,2,4,4,2,1,4,1,4,1,1,3,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Ross.Slate1|Anderson|Critcher|Huang|Bauer|Miyamoto|VanLange|Inbar|Alter|Kay|Hauser|Rottenstrich,ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,3,Global,all,TRUE +4460,0.930263283692548,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,5,5,6,5,5,4,2,2,4,3,1,2,4,4,3,1,5,1,4,1,2,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Miyamoto|Kay|Alter|Huang|Bauer|Inbar|Hauser|Rottenstrich|Critcher|VanLange|Anderson|Graham,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,12,Global,all,TRUE +4462,-0.270258110708381,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,4,4,4,3,1,2,1,3,3,1,1,2,3,4,1,1,4,1,3,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|VanLange|Kay|Alter|Ross.Slate1|Hauser|Graham|Anderson|Miyamoto|Rottenstrich|Inbar|Critcher|Huang,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,8,Global,all,TRUE +4463,-0.233343971068501,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,3,4,4,4,4,5,1,1,5,3,1,1,5,4,1,1,5,1,5,1,1,5,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Inbar|Anderson|Kay|Graham|Alter|Ross.Slate1|Miyamoto|Hauser|Rottenstrich|Huang|Critcher|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,3,Global,all,TRUE +4464,0.238266715951287,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,3,4,5,3,2,4,3,3,3,4,2,3,4,4,3,2,3,3,3,2,4,4,3,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Hauser|VanLange|Bauer|Miyamoto|Rottenstrich|Huang|Graham|Kay|Ross.Slate1|Alter|Anderson|Critcher,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,12,Global,all,TRUE +4465,-0.970423379686245,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,6,5,6,6,5,4,1,1,4,4,1,1,3,4,1,1,4,1,4,1,1,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Critcher|Graham|VanLange|Rottenstrich|Hauser|Anderson|Miyamoto|Huang|Ross.Slate1|Bauer|Alter|Kay,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +4467,0.351884934600157,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,3,4,3,3,2,5,1,5,3,3,1,3,3,4,1,1,3,1,3,1,1,3,3,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Rottenstrich|Graham|Hauser|Kay|Huang|Alter|VanLange|Inbar|Ross.Slate1|Bauer|Miyamoto|Critcher,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,1,Global,all,TRUE +4469,-2.0403153214454,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,6,3,5,6,7,5,1,2,3,4,2,2,3,4,2,1,4,1,3,1,2,4,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Huang|Miyamoto|Anderson|Kay|Bauer|Rottenstrich|Hauser|Critcher|Alter|Graham|Ross.Slate1|Inbar,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +4470,-0.812129348363561,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,6,5,6,5,4,4,1,2,2,2,2,2,4,4,2,1,4,2,2,1,2,4,4,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Rottenstrich|Bauer|VanLange|Miyamoto|Huang|Critcher|Ross.Slate1|Kay|Anderson|Inbar|Hauser|Graham,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood,10,Global,all,TRUE +4472,-0.123949215188267,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,3,4,4,5,3,3,2,1,3,4,1,2,5,4,2,1,4,1,3,2,2,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Ross.Slate1|Graham|Critcher|Hauser|Anderson|Rottenstrich|Bauer|Miyamoto|Kay|Alter|Huang|Inbar,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +4473,-0.0962573435988892,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,5,5,5,6,5,3,2,2,3,2,1,2,3,3,2,1,4,1,1,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Anderson|Miyamoto|Bauer|Graham|Ross.Slate1|Huang|Inbar|VanLange|Rottenstrich|Hauser|Alter|Critcher,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +4480,0.543401023957553,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,3,3,3,3,2,5,2,1,2,4,2,1,4,5,2,1,4,1,1,1,2,3,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Ross.Slate1|VanLange|Alter|Graham|Hauser|Miyamoto|Rottenstrich|Bauer|Kay|Huang|Critcher|Anderson,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +4481,0.382861859592034,High,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,5,6,5,4,3,2,1,1,3,3,1,1,2,4,1,1,2,1,3,1,1,4,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Miyamoto|Huang|Bauer|Ross.Slate1|Alter|Kay|Anderson|Critcher|Inbar|Graham|Hauser|Rottenstrich,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,8,Global,all,TRUE +4486,0.778679584060497,High,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,6,6,6,6,6,4,1,1,4,3,1,1,3,4,1,1,4,1,4,1,1,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Hauser|VanLange|Kay|Ross.Slate1|Miyamoto|Bauer|Inbar|Huang|Alter|Critcher|Anderson|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,12,Global,all,TRUE +4494,1.29010750335787,High,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,5,6,6,6,2,4,2,2,1,3,2,3,3,3,3,1,4,2,1,2,1,4,3,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Critcher|Ross.Slate1|Graham|Bauer|Huang|Anderson|Alter|Miyamoto|Kay|Hauser|Inbar|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,7,Global,all,TRUE +4496,-0.381502392412418,High,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,5,6,6,6,6,5,1,1,4,2,1,1,3,4,1,1,4,1,4,1,1,4,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Miyamoto|Anderson|Alter|Huang|Hauser|Rottenstrich|Inbar|Critcher|Ross.Slate1|VanLange|Bauer|Kay,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,3,Global,all,TRUE +4499,-0.199601952853957,High,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,5,6,6,5,4,3,1,1,4,4,1,1,3,4,2,1,3,1,4,1,1,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Huang|Critcher|Alter|Rottenstrich|Anderson|Inbar|Hauser|VanLange|Ross.Slate1|Miyamoto|Bauer|Kay,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +4502,-0.18048581070385,High,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,6,2,5,6,4,2,2,2,3,1,1,1,1,1,1,1,2,1,3,1,2,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Graham|Kay|Critcher|Inbar|Ross.Slate1|Miyamoto|Rottenstrich|Bauer|Alter|VanLange|Huang|Anderson,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood,13,Global,all,TRUE +4504,-0.054753652350412,High,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,3,2,5,2,3,3,3,2,2,4,2,2,3,4,3,1,4,1,2,1,3,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Anderson|Miyamoto|Hauser|Inbar|Graham|Ross.Slate1|Rottenstrich|Huang|VanLange|Bauer|Kay|Alter,ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,2,Global,all,TRUE +4505,0.457334452012425,High,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,5,4,6,6,6,5,3,2,3,4,1,4,5,4,4,2,4,1,3,2,3,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Kay|Ross.Slate1|Miyamoto|Anderson|VanLange|Graham|Hauser|Huang|Critcher|Alter|Bauer|Rottenstrich,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +4508,0.944762581325586,High,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,4,3,6,6,2,4,2,2,3,2,1,2,2,3,2,1,4,1,2,1,2,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Ross.Slate1|Inbar|Bauer|Graham|Kay|Critcher|Anderson|Hauser|Rottenstrich|Miyamoto|VanLange|Huang,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,8,Global,all,TRUE +4510,0.445206865853622,High,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,3,1,5,4,1,3,5,4,3,1,3,5,3,4,5,1,3,1,3,1,5,1,3,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Huang|Rottenstrich|Anderson|Hauser|Kay|Graham|Inbar|Alter|Ross.Slate1|Bauer|Critcher|VanLange,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,4,Global,all,TRUE +4512,0.62011874942078,High,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,6,6,7,7,6,1,4,3,3,1,1,1,2,3,3,1,3,1,3,1,3,3,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Critcher|Hauser|Rottenstrich|Huang|Bauer|Anderson|Kay|Alter|Ross.Slate1|VanLange|Graham|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,7,Global,all,TRUE +4516,-0.436858842682703,High,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,4,6,6,2,5,4,2,4,2,4,3,3,3,3,4,1,4,2,2,1,3,4,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Alter|Graham|Inbar|Ross.Slate1|VanLange|Anderson|Kay|Hauser|Miyamoto|Critcher|Rottenstrich|Bauer,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +4519,-0.341558581703437,High,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,6,6,6,6,5,3,1,3,2,1,1,1,1,3,1,1,4,1,2,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Huang|Graham|Miyamoto|VanLange|Ross.Slate1|Kay|Bauer|Anderson|Rottenstrich|Hauser|Inbar|Alter,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +4522,0.76972411932703,High,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,2,4,3,3,2,2,1,3,2,1,1,1,2,2,3,1,3,1,2,1,1,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Graham|Ross.Slate1|Kay|Hauser|Huang|Alter|Anderson|Miyamoto|Critcher|Inbar|Bauer|Rottenstrich,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +4523,0.878332111710398,High,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,3,3,5,3,1,3,2,2,4,1,3,2,4,2,2,3,1,1,4,1,3,1,3,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Ross.Slate1|Inbar|Hauser|Rottenstrich|Kay|Graham|Bauer|Critcher|VanLange|Anderson|Miyamoto|Huang,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing,11,Global,all,TRUE +4527,-0.34089839663797,High,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,6,5,6,6,4,3,1,4,2,1,1,1,3,3,2,1,4,1,2,1,1,3,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Miyamoto|Inbar|Critcher|Hauser|Ross.Slate1|Kay|Graham|Anderson|Bauer|Alter|Rottenstrich|Huang,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,9,Global,all,TRUE +4530,0.121883404079749,High,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,5,5,6,6,5,4,1,2,1,5,1,1,3,5,1,1,5,1,1,1,1,5,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Ross.Slate1|Graham|Inbar|Huang|Critcher|Rottenstrich|Alter|Kay|Miyamoto|Hauser|VanLange|Bauer,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +4532,0.0667801106722627,High,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,6,5,6,5,5,3,2,3,4,3,2,3,2,3,2,1,4,1,4,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|VanLange|Hauser|Huang|Miyamoto|Alter|Inbar|Ross.Slate1|Kay|Critcher|Graham|Bauer|Anderson,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,13,Global,all,TRUE +4536,0.844983475244287,High,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,6,5,5,5,6,3,1,1,2,1,1,1,2,3,1,1,3,1,2,1,1,2,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Graham|Critcher|Ross.Slate1|Rottenstrich|Huang|VanLange|Alter|Inbar|Hauser|Kay|Miyamoto|Anderson,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,13,Global,all,TRUE +4539,-0.0960041867360913,High,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,4,5,5,5,3,3,1,4,1,1,1,4,1,2,4,4,1,1,2,1,1,1,1,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Anderson|Hauser|VanLange|Kay|Huang|Miyamoto|Rottenstrich|Inbar|Graham|Ross.Slate1|Bauer|Critcher,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,2,Global,all,TRUE +4541,0.556986979662326,High,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,4,4,5,4,3,2,2,2,2,3,1,2,3,3,2,1,3,1,2,1,2,3,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Huang|Graham|Inbar|Miyamoto|Bauer|Critcher|Kay|VanLange|Anderson|Ross.Slate1|Hauser|Alter,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood,10,Global,all,TRUE +4547,0.842344960453019,High,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,5,5,6,5,1,1,2,1,1,1,1,3,1,4,2,1,3,1,4,1,1,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Miyamoto|Rottenstrich|Kay|Huang|Critcher|Inbar|Bauer|Anderson|Hauser|Graham|VanLange|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,9,Global,all,TRUE +4551,0.681412414339067,High,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,6,5,7,6,3,3,3,3,2,2,1,1,4,2,2,1,3,1,2,2,3,4,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Anderson|Rottenstrich|Hauser|Miyamoto|Kay|VanLange|Huang|Alter|Ross.Slate1|Inbar|Graham|Critcher,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection,2,Global,all,TRUE +4554,0.880577244753233,High,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,6,3,7,6,7,4,1,2,1,3,2,1,3,4,3,3,3,3,1,2,2,5,3,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Ross.Slate1|Inbar|Critcher|VanLange|Rottenstrich|Anderson|Kay|Bauer|Graham|Huang|Hauser|Alter,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,7,Global,all,TRUE +4555,-0.351972415982874,High,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,6,4,6,6,5,2,1,1,2,1,1,1,2,2,1,1,2,1,2,1,1,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Hauser|Ross.Slate1|Inbar|Anderson|Rottenstrich|Alter|VanLange|Huang|Graham|Miyamoto|Bauer|Kay,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,5,Global,all,TRUE +4557,-0.515290320025296,High,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,2,1,3,2,1,3,1,2,1,1,1,2,1,3,1,1,1,1,1,1,1,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Critcher|Inbar|Kay|Hauser|Huang|Bauer|Rottenstrich|Miyamoto|Graham|Anderson|VanLange|Ross.Slate1,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +4561,-0.127767875224834,High,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,6,5,6,7,4,4,1,1,4,4,1,1,5,4,1,1,4,1,3,1,1,5,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Critcher|Hauser|Huang|Graham|Inbar|Bauer|Anderson|Alter|VanLange|Miyamoto|Ross.Slate1|Rottenstrich,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,8,Global,all,TRUE +4562,-0.470474282465848,High,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,2,3,2,4,2,1,1,4,3,1,1,2,2,2,3,2,2,3,3,1,1,1,1,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Bauer|Anderson|Inbar|Kay|Hauser|VanLange|Miyamoto|Ross.Slate1|Huang|Alter|Critcher|Graham,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,3,Global,all,TRUE +4563,-0.664362083297478,High,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,2,3,5,4,6,2,5,5,2,1,4,4,2,2,4,3,2,3,2,4,4,1,2,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Anderson|Critcher|Kay|Bauer|VanLange|Graham|Hauser|Alter|Huang|Inbar|Miyamoto|Rottenstrich,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,2,Global,all,TRUE +4568,-2.40793486059889,High,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,5,7,6,7,5,4,2,1,4,3,2,1,4,4,3,1,3,2,4,1,1,3,3,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Rottenstrich|Bauer|Alter|Anderson|Inbar|Huang|Hauser|Miyamoto|Kay|Ross.Slate1|Critcher|Graham,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,5,Global,all,TRUE +4573,0.964145526792727,High,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,2,6,1,2,2,4,4,2,3,1,3,2,1,1,2,2,2,3,3,1,2,1,1,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Critcher|VanLange|Rottenstrich|Alter|Anderson|Hauser|Huang|Graham|Bauer|Ross.Slate1|Kay,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,6,Global,all,TRUE +4575,-0.313220171502828,High,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,4,5,6,5,3,4,3,3,3,3,3,3,4,3,4,2,3,2,2,3,3,3,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Rottenstrich|VanLange|Hauser|Ross.Slate1|Bauer|Miyamoto|Anderson|Graham|Alter|Kay|Huang,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood,8,Global,all,TRUE +4576,0.706325546251542,High,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,5,6,6,5,6,3,1,1,1,3,1,1,3,3,1,1,4,1,3,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Bauer|Ross.Slate1|Kay|Critcher|Alter|Rottenstrich|VanLange|Huang|Anderson|Miyamoto|Hauser,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,10,Global,all,TRUE +4580,0.689974497324102,High,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,4,5,5,2,2,3,1,1,4,2,1,1,2,3,2,2,2,1,4,1,2,3,4,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Hauser|Anderson|Rottenstrich|VanLange|Bauer|Alter|Ross.Slate1|Miyamoto|Kay|Critcher|Huang,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,3,Global,all,TRUE +4581,0.789360221656969,High,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,5,5,7,4,2,2,3,3,2,2,1,2,2,3,3,2,5,1,2,3,3,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Graham|Ross.Slate1|Critcher|Rottenstrich|Anderson|Hauser|VanLange|Huang|Kay|Bauer|Miyamoto,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,6,Global,all,TRUE +4584,0.964005301907092,High,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,5,6,6,5,4,4,2,1,5,1,2,1,2,3,1,2,3,1,4,1,2,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Ross.Slate1|Kay|Miyamoto|Hauser|Anderson|Graham|Critcher|VanLange|Rottenstrich|Bauer|Alter,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE,6,Global,all,TRUE +4587,-0.201706861011158,High,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,5,4,4,4,3,2,2,2,3,2,1,3,3,3,2,1,3,2,3,1,3,2,3,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Ross.Slate1|Kay|Anderson|Bauer|Critcher|Miyamoto|VanLange|Hauser|Rottenstrich|Graham|Alter,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,4,Global,all,TRUE +4588,0.623670606140312,High,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,6,6,6,6,6,4,3,2,3,4,1,1,2,4,2,1,4,2,4,4,2,4,4,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Graham|Rottenstrich|Ross.Slate1|Anderson|Critcher|Alter|Kay|Miyamoto|Hauser|Bauer|Huang,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,5,Global,all,TRUE +4591,0.349246419808889,High,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,5,7,7,5,6,3,2,3,3,4,1,1,2,4,2,1,4,1,2,1,2,2,2,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Bauer|Hauser|VanLange|Critcher|Rottenstrich|Anderson|Miyamoto|Huang|Graham|Kay|Alter,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,7,Global,all,TRUE +4596,0.211108450995977,High,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,5,4,6,7,7,4,1,4,4,1,1,2,3,5,1,1,4,1,4,1,5,3,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Graham|Critcher|Anderson|Rottenstrich|Kay|Huang|Hauser|Miyamoto|VanLange|Alter|Bauer,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,4,Global,all,TRUE +4599,0.720291237250512,High,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,7,7,7,7,6,4,2,2,3,3,1,1,4,4,1,1,4,1,5,1,2,4,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Anderson|Hauser|Bauer|Rottenstrich|Kay|Graham|Ross.Slate1|Alter|Miyamoto|Huang|VanLange,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,2,Global,all,TRUE +4600,0.969675713238061,High,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,2,4,2,2,2,4,2,4,3,2,1,3,4,3,4,1,3,4,4,2,4,2,2,1,4,,,,,,,,,,,,,,,,,,,,,,,,,,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Anderson|Huang|Critcher|Kay|Ross.Slate1|VanLange|Graham|Hauser|Miyamoto|Rottenstrich|Alter,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,2,Global,all,TRUE +4601,-0.771258549272079,High,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,2,4,5,5,4,3,2,3,4,2,1,1,2,3,1,1,4,1,4,2,2,2,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Rottenstrich|Hauser|Graham|Huang|Anderson|Miyamoto|VanLange|Alter|Bauer|Kay|Ross.Slate1,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,6,Global,all,TRUE +4603,0.614841719838243,High,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,6,3,5,6,6,2,2,3,2,2,1,2,3,5,1,4,5,1,3,2,4,1,3,5,4,,,,,,,,,,,,,,,,,,,,,,,,,,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Graham|Bauer|Critcher|Huang|Kay|Hauser|Alter|Ross.Slate1|Anderson|VanLange|Miyamoto,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,10,Global,all,TRUE +4604,-0.224248281449399,High,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,4,5,5,5,3,5,1,3,5,5,1,4,4,4,4,4,4,3,5,1,5,5,4,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Kay|Hauser|Huang|Alter|Critcher|Ross.Slate1|Rottenstrich|Anderson|Graham|VanLange|Bauer,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,9,Global,all,TRUE +4606,0.670731776742596,High,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,5,6,6,6,2,4,2,4,2,4,1,1,4,4,1,1,1,1,4,1,3,5,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Miyamoto|Kay|VanLange|Bauer|Ross.Slate1|Graham|Hauser|Anderson|Rottenstrich|Critcher|Alter,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection,9,Global,all,TRUE +4608,-0.674904721478913,High,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,3,1,1,1,1,1,5,1,5,1,3,5,4,3,1,5,5,1,3,1,1,2,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Hauser|Ross.Slate1|Alter|VanLange|Rottenstrich|Huang|Anderson|Kay|Graham|Bauer|Critcher,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood,8,Global,all,TRUE +4610,1.1826796562198,High,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,3,3,4,3,4,2,4,2,2,1,2,2,4,1,3,1,3,3,2,1,4,2,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Kay|Miyamoto|VanLange|Hauser|Graham|Anderson|Critcher|Bauer|Rottenstrich|Huang|Ross.Slate1,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,7,Global,all,TRUE +4614,-1.32907380765203,High,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,3,6,5,4,5,3,1,1,4,1,1,1,1,1,1,1,1,1,5,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Ross.Slate1|Critcher|Huang|Kay|Anderson|Graham|Miyamoto|VanLange|Alter|Bauer|Rottenstrich,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,6,Global,all,TRUE +4615,0.276752157114299,High,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,5,4,4,3,1,3,2,1,2,5,1,2,4,4,1,5,4,1,4,3,2,5,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Graham|Hauser|Bauer|Critcher|Ross.Slate1|Anderson|Miyamoto|Kay|VanLange|Alter|Rottenstrich,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,7,Global,all,TRUE +4616,-0.284097223275952,High,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,2,5,3,5,3,4,4,4,4,2,1,3,2,1,4,1,3,3,4,1,4,3,1,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Huang|Ross.Slate1|Hauser|Kay|Alter|Anderson|Bauer|Critcher|Graham|VanLange|Rottenstrich,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood,7,Global,all,TRUE +4617,0.759170060161957,High,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,5,6,5,4,3,2,5,3,3,2,1,1,2,3,3,1,2,1,2,1,1,3,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Alter|Ross.Slate1|Rottenstrich|Bauer|Huang|Kay|Graham|Miyamoto|Anderson|Critcher|Hauser,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing,10,Global,all,TRUE +4620,0.932901798483817,High,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,6,6,6,6,5,3,2,1,3,3,1,2,3,3,1,1,4,1,3,3,2,3,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Miyamoto|Graham|Rottenstrich|Bauer|Kay|Hauser|Huang|Critcher|Alter|Ross.Slate1|VanLange,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,1,Global,all,TRUE +4621,-1.39339936911002,High,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,7,5,7,7,7,4,3,4,4,3,4,5,4,4,4,4,4,5,4,2,5,3,4,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Rottenstrich|Huang|Ross.Slate1|Graham|Hauser|Critcher|Alter|Bauer|VanLange|Kay|Miyamoto,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,1,Global,all,TRUE +4622,-0.41788292541823,High,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,1,5,6,2,2,1,1,2,2,1,1,2,1,4,1,4,2,1,3,1,1,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Alter|Critcher|Bauer|Huang|Miyamoto|Ross.Slate1|Graham|Anderson|Hauser|Kay|Rottenstrich,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,9,Global,all,TRUE +4625,0.149561629214892,High,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,5,6,6,3,4,4,3,3,4,5,1,1,4,4,3,1,5,2,5,2,2,3,4,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Miyamoto|Anderson|Alter|Hauser|Rottenstrich|Graham|VanLange|Ross.Slate1|Bauer|Huang|Kay,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,3,Global,all,TRUE +4626,0.7867217068657,High,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,5,5,5,5,1,4,1,1,4,2,1,4,5,4,5,1,4,4,4,1,5,1,4,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Graham|Kay|VanLange|Rottenstrich|Ross.Slate1|Huang|Anderson|Bauer|Alter|Miyamoto|Critcher,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,8,Global,all,TRUE +4627,-1.62393450626449,High,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,4,5,6,7,1,3,1,1,3,2,1,1,2,1,1,1,5,1,3,1,1,4,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Critcher|Rottenstrich|Anderson|Alter|Graham|Ross.Slate1|VanLange|Hauser|Bauer|Kay|Miyamoto,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE,4,Global,all,TRUE +4631,0.0948517175558379,High,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,5,5,4,6,1,3,5,2,2,2,1,4,3,4,2,1,4,2,2,1,2,2,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Rottenstrich|Bauer|Graham|Kay|Miyamoto|Huang|Hauser|Critcher|VanLange|Alter|Anderson,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,12,Global,all,TRUE +4635,-0.805925330398524,High,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,5,6,5,6,3,2,2,3,4,3,1,1,3,3,3,3,3,1,2,1,3,2,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Alter|VanLange|Miyamoto|Kay|Critcher|Rottenstrich|Graham|Hauser|Huang|Anderson|Ross.Slate1,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,11,Global,all,TRUE +4636,0.0504427081990587,High,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,3,4,4,4,3,3,1,2,5,2,1,1,1,1,1,1,3,1,2,1,1,2,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Miyamoto|Rottenstrich|Anderson|Graham|Kay|Bauer|Hauser|VanLange|Huang|Ross.Slate1|Alter,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,4,Global,all,TRUE +4637,-1.45112975632514,High,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,2,4,7,6,7,5,4,4,4,5,1,2,4,5,1,1,4,1,4,1,3,5,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Critcher|Hauser|Anderson|Bauer|Rottenstrich|Kay|Graham|Ross.Slate1|VanLange|Alter|Huang,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing,4,Global,all,TRUE +4641,0.339630770009955,High,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,5,6,6,7,5,4,1,1,4,2,1,1,4,3,2,1,4,1,5,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Hauser|Ross.Slate1|Bauer|Miyamoto|Critcher|Rottenstrich|VanLange|Kay|Huang|Graham|Alter,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,1,Global,all,TRUE +4643,0.723323133790213,High,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,5,7,6,2,5,5,3,2,4,3,1,4,4,4,3,1,4,1,2,2,3,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Rottenstrich|Miyamoto|Anderson|Graham|Kay|Huang|Bauer|VanLange|Alter|Critcher|Ross.Slate1,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,4,Global,all,TRUE +4644,0.778553005629098,High,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,5,7,7,5,7,4,1,1,2,2,1,1,2,3,1,1,3,1,3,1,1,2,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Kay|Bauer|Anderson|Critcher|Miyamoto|Huang|Graham|Rottenstrich|VanLange|Hauser|Alter,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,4,Global,all,TRUE +4647,-0.501437561003489,High,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,5,6,6,5,2,3,3,4,4,3,1,1,2,3,1,1,1,1,3,2,2,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Critcher|Alter|Rottenstrich|VanLange|Anderson|Graham|Huang|Ross.Slate1|Miyamoto|Bauer|Kay,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,6,Global,all,TRUE +4649,-0.531374565635702,High,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,3,7,5,1,1,3,2,2,3,5,1,1,1,4,5,1,5,2,4,2,5,3,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Critcher|Huang|VanLange|Ross.Slate1|Rottenstrich|Kay|Anderson|Miyamoto|Bauer|Alter|Hauser,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood,8,Global,all,TRUE +4650,0.522711354813714,High,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,5,7,7,6,5,2,2,2,3,4,3,1,3,4,1,5,3,1,2,2,2,2,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Alter|Rottenstrich|Huang|Kay|Critcher|Ross.Slate1|VanLange|Bauer|Miyamoto|Anderson|Hauser,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,11,Global,all,TRUE +4651,-0.00808586349656156,High,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,4,5,6,3,3,4,2,2,3,4,1,3,4,4,3,2,4,1,4,3,4,2,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Critcher|Graham|Kay|Anderson|Huang|VanLange|Alter|Rottenstrich|Bauer|Miyamoto|Hauser,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,5,Global,all,TRUE +4653,-1.18000204437985,High,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,2,4,3,3,4,3,4,2,3,1,1,4,1,1,2,4,2,2,3,1,1,1,2,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Hauser|Kay|Alter|Huang|Bauer|Anderson|Ross.Slate1|VanLange|Miyamoto|Graham|Critcher,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,7,Global,all,TRUE +4654,-0.581327407892052,High,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,5,5,5,5,2,2,2,1,3,1,1,1,2,3,1,1,3,1,2,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Bauer|Huang|Critcher|Ross.Slate1|Rottenstrich|Hauser|VanLange|Alter|Anderson|Graham|Kay,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing,10,Global,all,TRUE +4657,0.119905074353948,High,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,4,2,4,7,2,4,3,3,1,2,1,3,3,3,4,1,2,2,2,2,3,1,1,2,5,,,,,,,,,,,,,,,,,,,,,,,,,,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Critcher|VanLange|Hauser|Graham|Huang|Anderson|Bauer|Kay|Miyamoto|Ross.Slate1|Alter,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,7,Global,all,TRUE +4659,-0.244684793730439,High,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,3,4,4,5,4,3,3,3,4,4,2,1,3,2,3,4,3,3,2,4,3,2,2,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Graham|Anderson|Kay|Ross.Slate1|VanLange|Rottenstrich|Bauer|Alter|Critcher|Huang|Miyamoto,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,3,Global,all,TRUE +4660,0.179344762507234,High,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,5,7,7,6,5,4,2,2,3,4,4,2,4,3,4,1,5,4,4,2,4,4,3,5,4,,,,,,,,,,,,,,,,,,,,,,,,,,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Kay|Bauer|Miyamoto|Critcher|Ross.Slate1|Rottenstrich|Graham|VanLange|Huang|Alter|Hauser,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,1,Global,all,TRUE +4661,0.579388175214932,High,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,5,5,5,4,2,3,2,4,3,3,2,2,3,4,3,3,4,2,4,1,2,2,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Kay|Critcher|Miyamoto|Graham|VanLange|Alter|Hauser|Rottenstrich|Huang|Ross.Slate1|Bauer,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,1,Global,all,TRUE +4663,-0.554042564505342,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Ross.Slate1|Rottenstrich|VanLange|Critcher|Miyamoto|Alter|Graham|Kay|Huang|Anderson|Bauer|Inbar,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,11,Global,all,TRUE +4664,-0.00254203059699139,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,5,7,4,4,4,3,2,3,2,2,2,3,3,2,3,2,3,3,2,2,2,2,2,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|VanLange|Critcher|Anderson|Hauser|Inbar|Rottenstrich|Bauer|Alter|Kay|Ross.Slate1|Miyamoto|Graham,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +4666,-1.53271748316823,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,5,6,6,6,5,1,4,1,3,3,1,1,2,1,1,1,3,1,3,1,1,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Kay|Graham|Ross.Slate1|Inbar|VanLange|Bauer|Critcher|Hauser|Rottenstrich|Anderson|Alter|Huang,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +4667,0.930923468758015,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,7,7,7,7,6,5,1,1,3,5,1,1,5,5,1,1,5,2,5,1,5,5,4,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Miyamoto|Inbar|Critcher|Ross.Slate1|Anderson|Graham|Hauser|Kay|Bauer|Huang|Alter|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,6,Global,all,TRUE +4669,-1.66004823595327,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,6,6,7,6,7,4,1,1,4,4,1,1,4,4,2,1,4,1,4,1,5,5,5,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Ross.Slate1|Graham|VanLange|Bauer|Anderson|Critcher|Alter|Kay|Inbar|Miyamoto|Huang|Rottenstrich,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +4670,-0.799468155570689,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,6,6,6,6,5,2,2,1,3,2,1,1,4,3,2,1,4,1,4,1,1,2,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Miyamoto|VanLange|Rottenstrich|Graham|Critcher|Huang|Ross.Slate1|Kay|Inbar|Hauser|Anderson|Alter,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five,12,Global,all,TRUE +4673,-0.889493612438019,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,6,6,7,6,6,4,1,1,4,3,2,1,5,4,2,1,4,2,4,1,1,4,5,5,3,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Huang|Anderson|Ross.Slate1|Rottenstrich|Inbar|Bauer|Alter|Graham|VanLange|Kay|Hauser|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,3,Global,all,TRUE +4674,0.246702220504923,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,5,5,5,6,3,2,1,2,2,1,1,2,1,1,1,1,2,1,2,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|VanLange|Huang|Anderson|Inbar|Critcher|Kay|Ross.Slate1|Miyamoto|Graham|Rottenstrich|Alter|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood,4,Global,all,TRUE +4676,0.0194657832071819,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,5,5,5,5,5,2,1,1,4,1,1,1,2,3,2,1,4,1,4,3,3,2,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Miyamoto|Inbar|Bauer|Huang|VanLange|Anderson|Alter|Graham|Ross.Slate1|Kay|Critcher|Hauser,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +4677,0.125308682367883,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,3,3,5,5,3,2,1,3,3,2,1,1,2,3,4,1,4,4,2,1,4,2,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Inbar|Huang|Hauser|Ross.Slate1|VanLange|Bauer|Miyamoto|Critcher|Kay|Anderson|Graham|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,11,Global,all,TRUE +4680,0.0667801106722627,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,3,5,1,2,2,2,3,4,1,1,3,3,1,1,3,3,1,1,1,1,2,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Huang|Alter|Bauer|Kay|Ross.Slate1|Hauser|Critcher|Rottenstrich|VanLange|Miyamoto|Inbar|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,1,Global,all,TRUE +4681,0.472758512557365,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,3,4,4,4,6,3,4,4,3,3,2,4,3,4,4,4,4,4,3,2,1,3,4,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Critcher|Anderson|Inbar|Graham|Miyamoto|Huang|Bauer|Ross.Slate1|Rottenstrich|Hauser|Kay|VanLange,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,3,Global,all,TRUE +4682,0.0336982775231856,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,4,4,4,4,4,1,1,1,1,3,1,1,3,5,1,1,3,1,1,1,1,2,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Anderson|Miyamoto|Huang|Graham|Bauer|VanLange|Critcher|Hauser|Alter|Ross.Slate1|Inbar|Kay,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,2,Global,all,TRUE +4683,-0.493142281335488,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,6,6,7,7,6,4,2,1,5,3,1,1,3,2,1,1,3,1,5,1,2,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Bauer|Kay|Miyamoto|Hauser|Alter|Anderson|Ross.Slate1|Rottenstrich|Huang|Inbar|Graham|Critcher,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,7,Global,all,TRUE +4685,0.67204992140293,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,4,5,7,3,5,3,2,4,2,2,1,1,2,1,2,1,4,1,3,1,2,3,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|VanLange|Graham|Hauser|Rottenstrich|Inbar|Ross.Slate1|Bauer|Huang|Anderson|Alter|Critcher|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,10,Global,all,TRUE +4686,1.4950693235344,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,6,2,5,4,6,5,3,4,5,2,2,4,3,4,4,4,4,2,5,3,5,3,2,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Inbar|Huang|Graham|Anderson|Ross.Slate1|Kay|Bauer|Rottenstrich|Miyamoto|Hauser|Alter|Critcher,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +4687,0.689187733827236,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,4,5,5,3,2,4,1,2,3,3,1,2,2,2,4,1,3,3,3,1,2,3,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Miyamoto|Huang|Graham|Anderson|Rottenstrich|Alter|Inbar|VanLange|Critcher|Hauser|Bauer|Kay,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +4688,0.0387085037886876,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,3,3,2,3,3,4,4,4,4,3,4,4,3,4,4,3,3,3,3,3,3,4,4,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Alter|Critcher|Miyamoto|VanLange|Ross.Slate1|Huang|Kay|Bauer|Hauser|Rottenstrich|Inbar|Graham,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,1,Global,all,TRUE +4689,-0.612304332883928,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,5,3,6,3,5,1,2,1,1,2,1,2,1,1,2,1,1,2,2,1,1,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Kay|Inbar|Hauser|Bauer|Critcher|Alter|Ross.Slate1|Miyamoto|VanLange|Huang|Anderson|Graham,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood,12,Global,all,TRUE +4693,0.0716501120521298,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,3,3,2,4,2,4,4,3,3,3,4,4,4,5,1,3,5,3,3,2,2,3,2,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Huang|Graham|Rottenstrich|Alter|Inbar|Hauser|Bauer|Critcher|Kay|Anderson|Miyamoto|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,11,Global,all,TRUE +4694,-1.44493938481433,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,4,5,4,4,6,3,1,2,2,2,1,1,2,1,1,1,2,1,2,1,1,1,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Graham|Huang|Hauser|Bauer|Ross.Slate1|Miyamoto|Alter|Critcher|Rottenstrich|Kay|Anderson|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,12,Global,all,TRUE +4696,0.425697341955082,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,6,6,6,5,5,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Graham|Rottenstrich|Alter|Kay|Miyamoto|Hauser|Critcher|Ross.Slate1|VanLange|Anderson|Bauer|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,11,Global,all,TRUE +4698,0.554475043302457,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,5,6,6,5,7,3,1,1,3,4,1,1,3,3,1,1,4,1,4,1,1,4,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Anderson|Hauser|Inbar|Rottenstrich|Alter|Critcher|Graham|VanLange|Huang|Bauer|Kay|Ross.Slate1,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,2,Global,all,TRUE +4699,-0.479429747199316,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,4,6,3,2,2,3,4,4,3,3,2,3,3,3,3,2,4,5,2,1,3,3,1,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Kay|Bauer|Ross.Slate1|Graham|Rottenstrich|Critcher|Miyamoto|VanLange|Anderson|Alter|Inbar|Huang,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,10,Global,all,TRUE +4702,-0.492088714521588,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,2,2,4,3,3,3,5,5,3,2,5,5,3,2,5,5,2,5,3,2,3,3,2,1,5,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Bauer|Rottenstrich|Graham|Hauser|Miyamoto|Kay|Alter|Inbar|Critcher|Anderson|Ross.Slate1|Huang,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,11,Global,all,TRUE +4704,-0.00202207041715937,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,7,7,7,7,7,3,1,1,3,1,1,1,3,4,1,1,2,1,4,1,1,2,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Rottenstrich|Anderson|Alter|Graham|Huang|VanLange|Bauer|Inbar|Miyamoto|Kay|Ross.Slate1|Hauser,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,3,Global,all,TRUE +4709,-0.0390627884884386,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,3,6,6,5,2,2,1,1,3,1,1,1,2,2,1,1,3,1,2,1,1,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Inbar|Huang|Miyamoto|Ross.Slate1|Bauer|Hauser|Alter|Critcher|Graham|Anderson|VanLange|Rottenstrich,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,11,Global,all,TRUE +4711,-0.23796081558557,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,6,6,6,6,6,4,1,1,2,2,1,1,2,2,1,1,2,1,2,1,2,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Hauser|Huang|Bauer|Ross.Slate1|VanLange|Graham|Miyamoto|Inbar|Alter|Rottenstrich|Kay|Critcher,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,1,Global,all,TRUE +4712,-2.43943174577059,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,4,5,6,5,3,1,2,1,3,1,1,1,1,1,1,1,1,1,3,1,1,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Rottenstrich|Graham|Critcher|Huang|Kay|VanLange|Ross.Slate1|Bauer|Miyamoto|Hauser|Inbar|Alter,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,1,Global,all,TRUE +4715,0.604034503810373,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,6,6,6,6,7,4,3,1,2,4,1,2,4,4,1,1,3,1,3,1,1,5,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Bauer|Rottenstrich|Huang|Anderson|VanLange|Alter|Hauser|Kay|Inbar|Graham|Ross.Slate1|Critcher,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing,5,Global,all,TRUE +4716,0.194110863457305,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,5,6,5,4,7,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Critcher|Ross.Slate1|Graham|Miyamoto|Alter|Kay|Bauer|Inbar|Rottenstrich|VanLange|Huang|Anderson,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,13,Global,all,TRUE +4717,0.0719169153691639,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,3,4,5,5,1,4,4,4,3,4,3,3,3,3,5,4,4,2,3,3,3,1,2,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Inbar|Hauser|Graham|Miyamoto|Critcher|VanLange|Huang|Anderson|Alter|Rottenstrich|Ross.Slate1|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing,9,Global,all,TRUE +4718,-0.963039216475909,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,2,4,5,2,2,3,1,1,4,2,1,1,2,2,1,1,5,1,3,1,1,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Bauer|Graham|Kay|Ross.Slate1|Alter|Miyamoto|Inbar|Huang|Hauser|VanLange|Anderson|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five,12,Global,all,TRUE +4719,-0.0708264769771814,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,6,7,6,6,6,5,1,4,5,5,1,1,5,5,3,1,5,1,4,1,1,5,5,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Ross.Slate1|Kay|Bauer|Miyamoto|Inbar|Huang|Rottenstrich|VanLange|Alter|Hauser|Critcher|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,13,Global,all,TRUE +4724,0.809136548872542,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,2,4,5,4,1,1,3,1,3,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|VanLange|Bauer|Inbar|Ross.Slate1|Anderson|Rottenstrich|Alter|Hauser|Critcher|Graham|Kay|Miyamoto,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,6,Global,all,TRUE +4725,-0.179699047206984,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,5,6,5,4,3,2,3,4,1,1,1,3,2,1,4,2,3,1,3,1,3,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|VanLange|Graham|Critcher|Alter|Rottenstrich|Hauser|Bauer|Anderson|Inbar|Huang|Ross.Slate1|Miyamoto,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +4726,-1.11000829706149,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,5,5,5,5,4,2,2,1,2,2,1,1,2,3,1,1,2,1,2,1,1,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Miyamoto|Graham|Hauser|VanLange|Ross.Slate1|Bauer|Inbar|Huang|Alter|Kay|Critcher|Rottenstrich,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,1,Global,all,TRUE +4728,0.11410808459158,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,4,4,5,4,2,2,1,2,2,1,1,1,1,4,3,1,4,1,2,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Critcher|Inbar|Kay|Huang|Ross.Slate1|Hauser|Bauer|VanLange|Alter|Anderson|Rottenstrich|Miyamoto,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,11,Global,all,TRUE +4731,0.0687584403980641,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,1,1,1,1,1,1,2,2,1,2,1,2,1,1,2,2,1,2,1,2,2,1,1,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Inbar|Rottenstrich|VanLange|Anderson|Huang|Miyamoto|Alter|Hauser|Critcher|Kay|Bauer|Graham,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,5,Global,all,TRUE +4732,-0.488792240135452,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,5,4,4,4,2,3,2,2,2,3,4,3,2,1,2,2,2,2,3,2,2,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Inbar|Rottenstrich|Kay|Anderson|Huang|Graham|Ross.Slate1|Hauser|VanLange|Miyamoto|Bauer|Critcher,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +4733,0.769457316009995,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,6,6,6,6,6,4,3,4,4,4,3,3,4,4,3,4,4,2,4,2,2,2,3,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Hauser|Graham|Rottenstrich|Huang|Kay|Bauer|Critcher|Miyamoto|Anderson|VanLange|Ross.Slate1|Alter,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,10,Global,all,TRUE +4734,0.474205461119698,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,6,7,6,5,7,5,1,2,4,4,1,1,5,5,1,1,5,1,4,1,2,3,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Hauser|Rottenstrich|Ross.Slate1|Huang|Inbar|VanLange|Alter|Critcher|Miyamoto|Anderson|Kay|Graham,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +4736,-1.76562433179694,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,4,5,5,4,5,4,2,2,4,4,2,2,4,4,3,2,4,2,2,2,3,4,4,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Hauser|Graham|Ross.Slate1|VanLange|Bauer|Rottenstrich|Kay|Critcher|Anderson|Miyamoto|Alter|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,10,Global,all,TRUE +4737,0.368095758641962,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Inbar|Rottenstrich|Graham|Critcher|Kay|Miyamoto|Ross.Slate1|Alter|Anderson|VanLange|Bauer|Hauser,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +4738,-0.677009629636113,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,3,2,2,2,1,4,4,5,4,1,5,5,1,2,5,5,3,5,3,2,4,1,1,1,5,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Alter|Huang|Hauser|Rottenstrich|VanLange|Miyamoto|Graham|Kay|Ross.Slate1|Anderson|Critcher|Bauer,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,11,Global,all,TRUE +4739,0.907988666571341,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,5,5,5,1,3,3,1,1,3,1,1,1,2,3,1,2,5,1,3,1,1,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Miyamoto|Critcher|Anderson|Graham|Alter|Inbar|Hauser|Huang|Ross.Slate1|Rottenstrich|Bauer|Kay,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,4,Global,all,TRUE +4740,0.487384388621802,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Huang|Miyamoto|Kay|Bauer|Inbar|Rottenstrich|Alter|Graham|Critcher|Anderson|VanLange|Hauser,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing,11,Global,all,TRUE +4741,-0.561551080676478,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,6,7,7,5,1,4,1,1,4,5,1,1,4,4,4,1,5,2,4,1,1,5,5,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|VanLange|Critcher|Graham|Hauser|Bauer|Huang|Anderson|Kay|Alter|Miyamoto|Rottenstrich|Ross.Slate1,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +4742,-0.295688977330089,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,4,3,4,3,2,1,1,1,1,1,2,1,2,2,2,2,2,1,1,1,1,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Alter|Miyamoto|Inbar|VanLange|Graham|Critcher|Bauer|Ross.Slate1|Rottenstrich|Kay|Anderson|Hauser,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,12,Global,all,TRUE +4743,0.547624486726189,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,3,5,5,5,2,3,2,2,3,1,2,1,2,3,1,1,3,1,3,1,1,1,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Critcher|Graham|Bauer|Alter|Huang|Miyamoto|Ross.Slate1|Kay|Hauser|Anderson|Inbar|Rottenstrich,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,11,Global,all,TRUE +4744,-1.01998284019416,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,4,4,4,4,2,1,2,1,1,1,1,3,1,1,3,1,3,2,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Miyamoto|Alter|Bauer|Anderson|Critcher|Hauser|Kay|VanLange|Huang|Inbar|Graham|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing,5,Global,all,TRUE +4745,0.540242548986453,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,6,2,7,6,6,5,2,1,5,4,1,2,5,5,1,1,5,1,5,1,1,4,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|VanLange|Kay|Huang|Bauer|Graham|Anderson|Miyamoto|Rottenstrich|Critcher|Alter|Ross.Slate1|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing,7,Global,all,TRUE +4746,-0.535319804103668,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,1,4,5,3,1,1,1,3,1,1,1,2,1,1,2,1,1,3,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Rottenstrich|Miyamoto|Critcher|Bauer|Ross.Slate1|Anderson|Kay|Graham|Alter|Inbar|VanLange|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,7,Global,all,TRUE +4747,-1.05741471454327,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,6,6,6,6,6,4,2,4,5,4,4,1,5,4,4,1,5,2,5,1,3,4,5,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Huang|Bauer|Rottenstrich|Alter|Graham|Critcher|Ross.Slate1|Kay|VanLange|Anderson|Inbar|Miyamoto,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing,11,Global,all,TRUE +4751,0.333035595767084,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,3,3,3,3,3,2,1,1,2,2,1,1,2,3,1,1,2,1,3,1,1,2,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Hauser|Alter|Graham|VanLange|Bauer|Ross.Slate1|Miyamoto|Kay|Inbar|Huang|Rottenstrich|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,1,Global,all,TRUE +4754,0.794763829670903,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,5,4,5,5,4,3,3,1,3,1,1,1,1,3,1,1,1,1,3,1,1,3,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Miyamoto|Huang|Kay|Rottenstrich|Critcher|Bauer|Ross.Slate1|Graham|VanLange|Hauser|Alter|Anderson,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,13,Global,all,TRUE +4755,-0.117620844262431,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,3,5,3,4,2,1,2,2,2,3,2,4,4,1,1,2,4,4,1,1,1,3,2,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Anderson|Graham|Hauser|Miyamoto|Critcher|Alter|Ross.Slate1|Rottenstrich|Kay|Huang|VanLange|Inbar,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,2,Global,all,TRUE +4761,-0.964092783289809,High,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,2,6,6,5,3,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|VanLange|Kay|Critcher|Rottenstrich|Miyamoto|Hauser|Graham|Alter|Anderson|Bauer|Inbar|Ross.Slate1,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +4765,0.186068740652102,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,7,7,7,7,6,4,1,2,3,3,1,1,4,4,1,1,4,1,4,1,1,4,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Critcher|Alter|Inbar|Miyamoto|Kay|Rottenstrich|VanLange|Anderson|Bauer|Huang|Graham|Hauser,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,9,Global,all,TRUE +4767,0.431761135034484,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,6,6,7,6,6,4,3,1,2,2,1,2,3,4,1,1,2,1,3,1,1,4,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Rottenstrich|Kay|Anderson|Hauser|Ross.Slate1|VanLange|Huang|Critcher|Bauer|Alter|Graham|Inbar,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,4,Global,all,TRUE +4768,-0.466911004762678,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,6,6,6,7,2,4,1,4,4,4,2,1,4,1,4,2,4,1,4,1,3,3,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Alter|Critcher|Anderson|Graham|Huang|Bauer|Miyamoto|Kay|Rottenstrich|Ross.Slate1|VanLange|Hauser,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,4,Global,all,TRUE +4770,0.135188910013252,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,4,4,4,5,3,4,1,3,4,3,1,2,5,2,3,1,5,2,4,2,2,3,5,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Alter|Critcher|Graham|VanLange|Hauser|Huang|Kay|Anderson|Ross.Slate1|Bauer|Rottenstrich|Inbar,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,9,Global,all,TRUE +4772,-0.931935713052633,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,2,5,5,2,2,3,1,2,3,1,1,1,1,1,1,1,2,2,4,1,3,3,1,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Critcher|Anderson|VanLange|Kay|Bauer|Miyamoto|Graham|Huang|Rottenstrich|Inbar|Ross.Slate1|Alter,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +4773,-0.495387414378323,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,5,7,6,6,5,3,2,3,2,3,1,1,2,2,2,1,1,1,2,1,4,3,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Inbar|Miyamoto|Critcher|Huang|Kay|Ross.Slate1|Rottenstrich|Bauer|Anderson|Graham|Hauser|Alter,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +4774,-0.254045061195977,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,6,7,7,7,5,1,1,1,4,1,1,1,1,1,1,1,1,1,5,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Alter|Anderson|Bauer|Critcher|Huang|Miyamoto|VanLange|Kay|Ross.Slate1|Rottenstrich|Hauser|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,3,Global,all,TRUE +4779,-1.26462389323324,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,6,6,6,6,6,3,2,3,3,4,1,1,4,3,2,1,4,2,4,1,4,3,2,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Anderson|Rottenstrich|Critcher|Graham|Ross.Slate1|Bauer|VanLange|Inbar|Hauser|Huang|Alter|Miyamoto,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing,2,Global,all,TRUE +4782,-1.22824113475683,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,5,6,6,5,5,4,1,3,4,4,1,3,3,4,4,1,4,4,3,1,1,3,3,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Graham|Critcher|VanLange|Kay|Ross.Slate1|Anderson|Inbar|Huang|Hauser|Rottenstrich|Alter|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,7,Global,all,TRUE +4784,-1.06387188937111,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,3,4,5,5,2,3,5,4,3,2,2,2,4,4,4,2,4,4,4,1,5,2,3,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Inbar|Huang|Bauer|Ross.Slate1|Miyamoto|Graham|Anderson|Rottenstrich|Alter|Hauser|VanLange|Critcher,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,8,Global,all,TRUE +4786,-0.771258549272079,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,6,6,6,7,3,2,1,2,2,1,1,1,1,1,1,1,3,1,4,1,2,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Ross.Slate1|Miyamoto|Bauer|VanLange|Graham|Alter|Kay|Rottenstrich|Critcher|Inbar|Anderson|Huang,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five,12,Global,all,TRUE +4788,0.207289790959409,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,6,5,6,6,5,3,1,1,1,2,1,1,2,1,2,1,3,1,2,1,1,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Critcher|Huang|Inbar|Graham|Ross.Slate1|Hauser|Anderson|VanLange|Rottenstrich|Bauer|Miyamoto|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood,8,Global,all,TRUE +4789,-0.200388716350823,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,6,7,7,6,7,3,1,1,3,4,1,1,3,3,2,1,3,1,3,1,3,2,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Hauser|Miyamoto|Kay|Bauer|Inbar|Critcher|Graham|VanLange|Alter|Anderson|Rottenstrich|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,11,Global,all,TRUE +4791,-0.669234310147944,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,5,6,7,7,3,1,1,1,2,1,1,1,2,3,1,1,5,1,4,1,1,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Graham|Inbar|Critcher|Ross.Slate1|Miyamoto|Kay|VanLange|Bauer|Hauser|Anderson|Alter|Rottenstrich,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,11,Global,all,TRUE +4792,-1.93711093707596,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,6,7,7,3,3,4,3,2,1,4,1,3,4,2,4,2,3,4,2,1,1,4,2,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Bauer|VanLange|Critcher|Graham|Rottenstrich|Huang|Hauser|Kay|Inbar|Anderson|Ross.Slate1|Miyamoto,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,11,Global,all,TRUE +4794,-0.444774387056507,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,5,6,7,7,2,3,3,1,4,3,2,1,3,3,4,2,4,2,4,1,4,4,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Hauser|Anderson|Inbar|Kay|Ross.Slate1|Bauer|Miyamoto|Rottenstrich|Graham|Alter|VanLange|Huang,ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,3,Global,all,TRUE +4795,0.797922304642004,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,6,6,7,6,4,4,3,2,2,3,1,1,4,3,2,3,4,1,2,1,2,2,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Inbar|Kay|Graham|Ross.Slate1|Miyamoto|Bauer|Rottenstrich|Anderson|Huang|VanLange|Critcher|Alter,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,9,Global,all,TRUE +4796,-0.39218303000889,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,6,6,6,6,6,4,1,1,3,4,1,1,4,3,2,1,5,2,3,1,1,3,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Miyamoto|Inbar|Huang|Critcher|Ross.Slate1|Graham|VanLange|Bauer|Hauser|Alter|Kay|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,1,Global,all,TRUE +4797,0.148901444149425,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,4,6,4,5,3,3,1,1,1,2,1,1,4,2,1,1,2,1,2,1,1,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Graham|Ross.Slate1|Inbar|Anderson|Rottenstrich|Miyamoto|VanLange|Alter|Critcher|Huang|Bauer|Hauser,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,5,Global,all,TRUE +4798,-0.63905556963657,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,5,6,5,6,5,3,2,1,3,4,1,2,4,3,4,2,5,1,4,1,1,3,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Kay|Inbar|Bauer|VanLange|Alter|Miyamoto|Hauser|Critcher|Graham|Rottenstrich|Huang|Ross.Slate1,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,1,Global,all,TRUE +4800,-0.379790866003651,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,5,5,6,5,1,4,1,2,5,2,1,1,4,1,3,3,1,1,4,1,1,4,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Bauer|Graham|Rottenstrich|Critcher|Anderson|Huang|Alter|Miyamoto|Ross.Slate1|VanLange|Inbar|Hauser,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,6,Global,all,TRUE +4804,-0.453209891610143,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,5,6,6,6,5,2,1,2,1,2,1,1,1,1,4,1,3,1,4,1,1,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Critcher|Hauser|Kay|Bauer|Huang|Rottenstrich|VanLange|Alter|Ross.Slate1|Miyamoto|Anderson|Inbar,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +4806,-0.686903503735719,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,2,3,4,5,3,4,1,2,4,2,1,2,2,1,5,1,2,2,4,1,2,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Hauser|Alter|Inbar|Kay|Bauer|Rottenstrich|Ross.Slate1|Huang|Graham|Anderson|Miyamoto|VanLange,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +4808,0.374286130152763,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,6,6,7,7,6,4,1,1,4,3,1,1,4,5,1,1,5,2,3,1,1,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Hauser|Kay|Critcher|Anderson|Graham|Huang|VanLange|Ross.Slate1|Inbar|Bauer|Miyamoto|Rottenstrich,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,5,Global,all,TRUE +4810,-1.03606708580457,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,6,6,7,6,6,4,3,5,4,4,2,2,3,4,4,4,4,3,3,2,3,5,4,5,3,,,,,,,,,,,,,,,,,,,,,,,,,,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|VanLange|Critcher|Huang|Alter|Inbar|Miyamoto|Graham|Bauer|Rottenstrich|Ross.Slate1|Kay|Hauser,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE,1,Global,all,TRUE +4811,-0.281723286331119,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,5,5,5,6,6,2,1,1,4,4,1,1,2,4,1,1,5,1,4,1,1,3,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Rottenstrich|Inbar|VanLange|Hauser|Anderson|Huang|Ross.Slate1|Graham|Alter|Critcher|Bauer|Miyamoto,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing,6,Global,all,TRUE +4812,0.667826458634294,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,7,7,7,7,7,2,1,1,3,1,1,1,1,4,1,1,3,1,3,1,1,2,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|VanLange|Critcher|Kay|Miyamoto|Alter|Hauser|Ross.Slate1|Graham|Inbar|Huang|Bauer|Anderson,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,13,Global,all,TRUE +4814,0.684177507561734,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,7,7,7,7,3,4,1,2,3,4,2,1,2,4,2,2,2,1,3,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Graham|Ross.Slate1|Hauser|Alter|Inbar|VanLange|Rottenstrich|Miyamoto|Critcher|Anderson|Huang|Bauer,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +4817,-0.539669845303703,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,5,6,5,5,3,4,2,2,2,2,1,4,1,2,1,2,4,1,4,1,2,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Hauser|Inbar|Alter|Kay|Rottenstrich|Bauer|Critcher|Anderson|Huang|Ross.Slate1|VanLange|Graham,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,9,Global,all,TRUE +4818,-0.126587729979535,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,2,3,5,2,2,2,3,2,1,1,1,1,2,3,1,1,2,1,1,1,2,1,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Alter|Hauser|Inbar|Miyamoto|Rottenstrich|VanLange|Kay|Graham|Bauer|Huang|Anderson|Ross.Slate1,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,12,Global,all,TRUE +4819,-0.0233719246264654,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,7,7,7,7,6,5,2,2,5,5,3,1,5,5,5,1,5,2,4,1,1,4,4,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Anderson|Huang|Ross.Slate1|Critcher|Rottenstrich|Bauer|Graham|Alter|VanLange|Hauser|Inbar|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,2,Global,all,TRUE +4820,-1.07890256816762,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,3,4,5,4,3,3,2,1,4,1,1,3,4,3,1,1,3,1,3,1,2,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Alter|Miyamoto|Anderson|Rottenstrich|Hauser|Inbar|VanLange|Critcher|Graham|Huang|Ross.Slate1|Kay,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +4823,0.852632216301057,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,4,6,4,6,4,4,2,2,1,4,2,3,3,4,3,1,4,1,1,3,2,4,4,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Bauer|Miyamoto|Ross.Slate1|Critcher|Alter|Rottenstrich|Kay|Inbar|Huang|VanLange|Graham|Anderson,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +4824,0.435717794486086,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,3,5,2,4,3,4,4,4,4,3,1,1,4,2,4,2,4,3,4,1,1,3,3,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|VanLange|Inbar|Huang|Alter|Hauser|Graham|Miyamoto|Anderson|Critcher|Ross.Slate1|Rottenstrich|Kay,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +4825,1.15790674919296,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,5,6,6,5,4,5,3,1,2,4,1,1,4,4,1,1,4,1,4,1,3,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Critcher|Kay|Huang|Anderson|Inbar|Ross.Slate1|Hauser|Rottenstrich|Miyamoto|Alter|VanLange|Bauer,ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +4826,0.800827622750305,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,5,6,6,6,5,1,1,1,4,1,1,1,1,3,1,1,1,1,3,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Rottenstrich|Miyamoto|Alter|Hauser|Inbar|Critcher|VanLange|Kay|Anderson|Ross.Slate1|Huang|Bauer,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection,10,Global,all,TRUE +4828,0.66440118034616,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,3,3,5,5,3,3,1,1,2,2,1,1,2,3,1,1,2,1,3,1,1,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Graham|Hauser|Ross.Slate1|Huang|Critcher|Inbar|Rottenstrich|Miyamoto|Alter|Anderson|Bauer|VanLange,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,11,Global,all,TRUE +4832,0.294016547970004,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,5,6,3,5,3,1,1,2,1,1,2,1,1,1,2,4,1,2,2,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Ross.Slate1|Inbar|Miyamoto|VanLange|Alter|Graham|Bauer|Huang|Critcher|Kay|Anderson|Hauser,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,12,Global,all,TRUE +4836,0.0617698844067606,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,5,6,7,6,5,3,3,3,3,4,3,2,4,4,3,1,5,2,3,3,3,3,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|VanLange|Graham|Bauer|Kay|Inbar|Rottenstrich|Hauser|Miyamoto|Ross.Slate1|Anderson|Huang|Critcher,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing,11,Global,all,TRUE +4837,-0.598591798747756,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,7,7,7,7,7,5,1,4,4,5,1,1,5,5,1,1,5,1,4,1,1,5,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|VanLange|Ross.Slate1|Anderson|Miyamoto|Rottenstrich|Alter|Hauser|Kay|Graham|Critcher|Inbar|Huang,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,4,Global,all,TRUE +4839,0.314057453032013,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,5,6,6,6,5,5,2,2,5,4,1,2,4,3,3,1,4,1,5,1,4,4,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Rottenstrich|Alter|Huang|Anderson|Bauer|Inbar|Graham|Miyamoto|VanLange|Ross.Slate1|Kay|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,5,Global,all,TRUE +4845,-0.718931770070896,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,6,7,6,7,5,4,2,3,1,2,1,2,2,3,1,2,3,1,1,1,1,3,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|VanLange|Hauser|Graham|Ross.Slate1|Critcher|Alter|Inbar|Rottenstrich|Bauer|Miyamoto|Anderson|Kay,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +4848,0.961366787115824,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,4,5,5,3,4,3,1,2,3,2,1,1,1,2,1,1,3,1,3,1,1,3,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Anderson|Miyamoto|VanLange|Rottenstrich|Kay|Huang|Graham|Alter|Ross.Slate1|Hauser|Inbar|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,2,Global,all,TRUE +4850,-0.740548427597236,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,5,5,6,6,5,2,2,1,1,1,2,1,1,3,1,1,2,1,2,1,1,1,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Graham|Kay|Huang|Rottenstrich|Alter|VanLange|Anderson|Inbar|Bauer|Critcher|Miyamoto|Ross.Slate1,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,8,Global,all,TRUE +4851,0.157730330451493,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,3,5,5,4,2,3,1,4,3,1,2,1,1,3,3,2,3,2,3,1,1,2,2,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|VanLange|Graham|Anderson|Critcher|Inbar|Alter|Bauer|Hauser|Ross.Slate1|Miyamoto|Huang|Kay,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,4,Global,all,TRUE +4854,0.678900477979198,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,4,3,5,5,5,4,2,1,3,3,1,1,2,2,1,1,2,1,3,1,1,1,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Graham|Huang|VanLange|Miyamoto|Critcher|Bauer|Anderson|Rottenstrich|Ross.Slate1|Alter|Kay|Hauser,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +4858,0.0197325865242154,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,3,3,4,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Rottenstrich|Bauer|Inbar|Hauser|Huang|Anderson|Kay|Graham|Ross.Slate1|Critcher|Alter|Miyamoto,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing,7,Global,all,TRUE +4862,-0.422626348366699,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,7,7,6,4,3,3,1,2,4,1,1,1,2,3,1,1,1,1,4,1,1,2,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Kay|VanLange|Alter|Rottenstrich|Critcher|Inbar|Hauser|Bauer|Ross.Slate1|Miyamoto|Huang|Anderson,ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,13,Global,all,TRUE +4863,-0.5263643393702,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,5,4,6,5,6,3,1,1,2,1,1,1,1,3,2,2,3,1,2,1,1,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Alter|Anderson|Rottenstrich|Kay|Miyamoto|Inbar|Ross.Slate1|Graham|Bauer|VanLange|Huang|Critcher,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,3,Global,all,TRUE +4864,-0.234802340614471,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,4,6,3,5,3,2,1,1,3,1,1,1,1,2,2,1,1,1,3,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Alter|Ross.Slate1|VanLange|Bauer|Anderson|Huang|Hauser|Graham|Kay|Inbar|Rottenstrich|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,6,Global,all,TRUE +4866,0.521126406836346,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,5,5,6,6,2,4,3,3,2,1,2,4,2,3,2,2,4,1,4,4,3,2,5,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Alter|Kay|Graham|Huang|Miyamoto|Hauser|Critcher|Bauer|Ross.Slate1|Inbar|Anderson|VanLange,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,12,Global,all,TRUE +4867,-1.21467105097689,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Graham|Miyamoto|Inbar|Anderson|VanLange|Rottenstrich|Ross.Slate1|Critcher|Bauer|Hauser|Kay|Huang,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +4868,-0.377025772780984,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,6,7,7,6,6,2,1,1,3,2,1,1,1,1,1,1,1,1,3,1,1,2,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Bauer|Huang|Inbar|Hauser|Critcher|Miyamoto|Ross.Slate1|Rottenstrich|VanLange|Graham|Anderson|Kay,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +4872,0.363478914124893,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,7,7,7,7,5,4,1,1,5,4,1,1,3,4,2,1,4,1,3,1,4,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|VanLange|Bauer|Hauser|Inbar|Miyamoto|Rottenstrich|Critcher|Ross.Slate1|Alter|Kay|Graham|Huang,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing,1,Global,all,TRUE +4873,0.128200354021949,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,3,3,4,3,3,3,1,2,4,1,1,1,1,4,3,1,4,1,4,1,2,2,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Ross.Slate1|Miyamoto|Rottenstrich|VanLange|Alter|Huang|Anderson|Graham|Hauser|Inbar|Critcher|Bauer,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,8,Global,all,TRUE +4876,-0.34644222953754,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,5,6,5,6,6,2,2,2,3,4,1,1,3,2,1,1,3,1,3,1,1,1,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Alter|Inbar|Anderson|Miyamoto|VanLange|Critcher|Hauser|Rottenstrich|Huang|Ross.Slate1|Graham|Bauer,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE,4,Global,all,TRUE +4879,0.664667983663194,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,6,6,7,6,6,4,1,2,4,4,1,1,4,3,3,2,4,1,3,3,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Alter|Rottenstrich|VanLange|Miyamoto|Critcher|Hauser|Graham|Inbar|Ross.Slate1|Bauer|Anderson|Huang,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,12,Global,all,TRUE +4881,0.0230176399267145,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,6,6,6,6,3,4,1,3,3,4,1,1,4,5,2,1,5,1,4,1,2,4,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Ross.Slate1|VanLange|Rottenstrich|Inbar|Graham|Bauer|Alter|Anderson|Miyamoto|Hauser|Huang|Critcher,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +4882,0.661509508692094,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,7,7,7,7,7,4,1,1,2,1,1,1,3,1,1,1,3,1,5,1,1,3,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Critcher|Alter|Inbar|Huang|Kay|Anderson|Rottenstrich|Hauser|Graham|Ross.Slate1|Bauer|Miyamoto,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,7,Global,all,TRUE +4886,0.269370219374563,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,4,4,5,5,2,3,4,3,3,5,1,4,4,4,4,2,2,4,3,1,3,5,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Critcher|Huang|Bauer|Rottenstrich|Inbar|Hauser|Anderson|Alter|Kay|VanLange|Ross.Slate1|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,8,Global,all,TRUE +4889,-1.11949514295843,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,3,3,5,5,5,3,1,3,4,2,3,1,2,3,1,1,2,1,3,1,2,2,2,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Inbar|Hauser|Critcher|Graham|Alter|VanLange|Bauer|Ross.Slate1|Huang|Miyamoto|Anderson|Kay,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,12,Global,all,TRUE +4893,0.180929710484602,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,4,5,6,6,1,1,5,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Inbar|Bauer|Kay|Critcher|Alter|Ross.Slate1|Rottenstrich|VanLange|Anderson|Graham|Hauser|Huang,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,10,Global,all,TRUE +4894,0.763393522930593,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,4,2,5,3,2,2,4,2,2,2,1,2,3,2,5,2,4,3,2,2,1,4,2,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Alter|Ross.Slate1|Huang|Critcher|VanLange|Hauser|Kay|Graham|Bauer|Anderson|Rottenstrich|Miyamoto,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,11,Global,all,TRUE +4895,-0.392576411757323,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,7,6,7,7,6,3,1,1,1,1,1,1,3,2,1,1,1,1,4,1,1,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Rottenstrich|Ross.Slate1|Critcher|Graham|Hauser|Miyamoto|VanLange|Kay|Alter|Bauer|Huang|Anderson,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,13,Global,all,TRUE +4899,1.12705640263248,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,7,6,7,7,7,5,1,1,5,5,1,1,5,2,4,2,5,4,4,1,2,4,5,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Bauer|Critcher|Rottenstrich|Inbar|VanLange|Kay|Graham|Huang|Ross.Slate1|Miyamoto|Hauser|Alter,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,1,Global,all,TRUE +4900,0.667306498454462,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,6,6,6,6,7,4,1,3,3,4,1,2,4,4,4,1,4,4,4,2,2,4,3,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Graham|Hauser|VanLange|Alter|Critcher|Inbar|Bauer|Huang|Rottenstrich|Ross.Slate1|Anderson|Miyamoto,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +4903,0.185675358903669,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,4,6,6,6,3,2,1,2,3,2,1,1,1,1,2,1,3,1,3,1,2,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Anderson|Miyamoto|Alter|Rottenstrich|VanLange|Hauser|Kay|Ross.Slate1|Huang|Graham|Critcher|Bauer,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +4906,0.205311461233609,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,5,6,7,4,5,2,1,1,3,2,1,1,3,3,1,1,3,1,4,1,2,2,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|VanLange|Critcher|Rottenstrich|Bauer|Kay|Alter|Ross.Slate1|Huang|Miyamoto|Graham|Anderson|Inbar,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,12,Global,all,TRUE +4907,0.247095602253356,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,2,2,2,4,1,2,1,1,3,1,1,1,1,1,1,1,2,1,3,1,2,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Ross.Slate1|Inbar|Bauer|Miyamoto|VanLange|Hauser|Critcher|Huang|Anderson|Kay|Rottenstrich|Alter,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,10,Global,all,TRUE +4908,-0.321135715876632,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,3,4,4,4,2,2,3,3,3,2,2,1,2,2,3,2,3,1,3,2,1,2,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Alter|Huang|Anderson|Graham|Inbar|Bauer|Hauser|Ross.Slate1|Critcher|VanLange|Miyamoto|Rottenstrich,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE,4,Global,all,TRUE +4912,0.230617974894517,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,7,7,7,7,7,5,3,3,3,2,3,3,1,2,2,3,4,1,4,2,3,2,3,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Rottenstrich|Anderson|Kay|Ross.Slate1|Huang|Inbar|Critcher|Alter|Graham|Bauer|Hauser|VanLange,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,3,Global,all,TRUE +4914,0.277538920611165,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,5,5,6,6,3,1,1,1,3,1,1,3,1,1,2,1,1,1,3,1,2,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Bauer|Hauser|Critcher|Rottenstrich|Miyamoto|Inbar|Kay|Alter|Anderson|Graham|Ross.Slate1|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,10,Global,all,TRUE +4915,-0.713797190844594,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,6,6,7,6,6,3,1,1,4,4,1,1,4,4,2,1,4,1,4,1,1,4,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Huang|Anderson|Miyamoto|Ross.Slate1|Inbar|Hauser|Critcher|Kay|Alter|Bauer|Rottenstrich|Graham,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,3,Global,all,TRUE +4918,-1.39880297712395,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,6,7,6,6,1,4,2,1,5,3,1,1,5,5,1,1,5,1,5,3,2,4,4,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Hauser|Inbar|Alter|Critcher|Huang|Kay|Ross.Slate1|VanLange|Miyamoto|Anderson|Bauer|Graham,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood,11,Global,all,TRUE +4922,-0.392309608440289,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,6,4,5,6,5,2,1,1,2,2,1,1,2,4,1,1,2,1,2,1,1,2,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Huang|VanLange|Bauer|Critcher|Miyamoto|Rottenstrich|Graham|Alter|Kay|Ross.Slate1|Hauser|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,13,Global,all,TRUE +4923,0.00548644575397554,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,6,7,7,7,6,3,1,1,2,3,1,1,1,3,2,2,4,1,2,1,3,1,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Graham|Hauser|VanLange|Kay|Ross.Slate1|Huang|Miyamoto|Anderson|Alter|Rottenstrich|Inbar|Bauer,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,9,Global,all,TRUE +4925,0.111329344914677,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,7,7,7,7,7,5,2,2,2,3,2,1,4,5,2,2,5,1,4,1,4,5,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|VanLange|Rottenstrich|Inbar|Alter|Anderson|Ross.Slate1|Bauer|Huang|Kay|Graham|Miyamoto|Critcher,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing,6,Global,all,TRUE +4927,-0.895023798883353,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,6,5,5,6,6,4,1,1,4,4,1,2,2,3,3,1,4,1,4,1,3,3,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Critcher|Ross.Slate1|Huang|Rottenstrich|Anderson|Alter|VanLange|Kay|Bauer|Hauser|Miyamoto|Inbar,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,6,Global,all,TRUE +4928,-0.237440855405739,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,5,6,6,3,6,4,1,1,3,3,1,1,4,4,1,1,4,1,2,1,2,4,2,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Inbar|VanLange|Huang|Critcher|Ross.Slate1|Miyamoto|Bauer|Graham|Alter|Rottenstrich|Anderson|Hauser,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,12,Global,all,TRUE +4929,0.199781274788274,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,5,6,6,6,3,4,3,4,3,4,4,2,3,3,4,3,4,4,4,3,3,3,3,3,5,,,,,,,,,,,,,,,,,,,,,,,,,,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Bauer|Hauser|Huang|Inbar|Miyamoto|Ross.Slate1|Graham|Critcher|VanLange|Anderson|Kay|Alter,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +4937,-0.307689985057494,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,6,6,7,6,6,3,2,2,4,3,3,1,3,3,3,1,3,1,5,1,3,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Hauser|Miyamoto|Anderson|Bauer|Ross.Slate1|Kay|Critcher|VanLange|Graham|Rottenstrich|Alter|Huang,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,4,Global,all,TRUE +4938,0.772489212549696,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,5,6,6,6,2,3,1,2,1,2,1,1,3,2,2,2,2,1,3,1,4,3,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Huang|Miyamoto|Graham|Hauser|Anderson|Critcher|Inbar|VanLange|Rottenstrich|Ross.Slate1|Kay|Bauer,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,6,Global,all,TRUE +4940,-0.193018199594723,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,6,7,7,5,6,3,1,1,3,1,1,1,2,1,3,1,3,4,1,1,1,2,4,1,4,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|VanLange|Kay|Miyamoto|Rottenstrich|Critcher|Hauser|Huang|Bauer|Inbar|Anderson|Ross.Slate1|Alter,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +4941,0.262786466115329,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,6,5,5,3,5,3,1,2,3,5,1,2,5,2,1,1,5,1,1,1,1,1,5,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|VanLange|Ross.Slate1|Alter|Hauser|Huang|Anderson|Graham|Bauer|Critcher|Miyamoto|Inbar|Kay,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing,7,Global,all,TRUE +4942,-0.166393541273481,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,6,7,7,6,6,2,1,2,3,3,1,1,1,1,2,1,1,2,2,1,2,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Critcher|Huang|Inbar|Miyamoto|Anderson|Hauser|Alter|Graham|Bauer|VanLange|Ross.Slate1|Kay,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,6,Global,all,TRUE +4943,-0.362919856896379,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,5,5,5,5,1,1,2,2,2,1,2,1,2,4,4,2,4,2,3,2,3,4,1,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Inbar|Miyamoto|Huang|Kay|Rottenstrich|VanLange|Anderson|Graham|Critcher|Bauer|Alter|Ross.Slate1,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +4948,0.143231032818455,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,2,3,4,5,2,2,4,3,1,1,1,2,1,1,1,1,1,1,1,3,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Alter|VanLange|Huang|Miyamoto|Critcher|Inbar|Hauser|Bauer|Anderson|Rottenstrich|Graham|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection,10,Global,all,TRUE +4949,0.465376574817629,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,5,6,5,5,2,4,1,1,3,1,1,1,1,4,2,1,1,1,3,1,1,3,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Rottenstrich|Critcher|Alter|Hauser|Huang|Kay|Graham|Inbar|Ross.Slate1|Miyamoto|Anderson|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,12,Global,all,TRUE +4950,0.205704842982041,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,5,6,7,5,6,4,1,1,4,1,1,1,1,3,1,1,2,1,4,1,2,3,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Graham|Huang|VanLange|Alter|Miyamoto|Bauer|Hauser|Rottenstrich|Inbar|Critcher|Ross.Slate1|Kay,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection,1,Global,all,TRUE +4956,-0.536766752666,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,5,5,5,5,5,4,2,2,3,2,1,2,2,3,2,1,3,1,2,1,1,1,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Critcher|Miyamoto|Anderson|Alter|Bauer|Ross.Slate1|Hauser|Huang|Inbar|Rottenstrich|VanLange|Graham,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,4,Global,all,TRUE +4958,0.222182470340881,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,4,7,5,7,1,4,2,4,1,2,5,1,1,1,2,5,4,2,2,1,1,2,3,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Critcher|Miyamoto|Alter|Rottenstrich|Graham|Ross.Slate1|Anderson|Bauer|Hauser|VanLange|Inbar|Huang,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,8,Global,all,TRUE +4959,0.831270941108114,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,7,6,6,7,5,4,1,1,3,1,1,1,1,1,2,1,1,1,4,1,1,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Bauer|Ross.Slate1|Hauser|Kay|Miyamoto|VanLange|Critcher|Inbar|Huang|Graham|Anderson|Alter,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing,12,Global,all,TRUE +4961,0.653074004138458,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,5,6,5,5,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Huang|Kay|Rottenstrich|Graham|Hauser|Bauer|Anderson|Inbar|Ross.Slate1|Critcher|Alter|VanLange,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,8,Global,all,TRUE +4965,0.620905512917645,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,6,6,6,5,1,4,1,1,3,2,1,1,4,3,2,1,5,1,4,1,2,1,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Graham|Huang|Bauer|Rottenstrich|Alter|Miyamoto|Critcher|Kay|Inbar|Ross.Slate1|Anderson|Hauser,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +4966,0.487904348801634,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,6,6,7,7,7,1,2,1,5,1,1,1,1,4,1,1,1,1,5,2,1,1,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Rottenstrich|Hauser|Bauer|Kay|Alter|Huang|VanLange|Miyamoto|Ross.Slate1|Anderson|Critcher|Inbar,ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,11,Global,all,TRUE +4967,-0.607687488366859,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,5,6,4,5,3,5,1,1,3,5,1,1,5,4,1,1,4,3,4,1,2,4,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Bauer|Graham|Critcher|Huang|Ross.Slate1|VanLange|Rottenstrich|Alter|Hauser|Inbar|Anderson|Kay,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,12,Global,all,TRUE +4968,0.842344960453019,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,3,2,3,2,2,3,4,3,3,1,2,4,1,3,2,1,3,2,4,2,1,2,3,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Inbar|Miyamoto|Rottenstrich|Critcher|Hauser|Ross.Slate1|Huang|Graham|Anderson|VanLange|Alter|Bauer,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +4971,0.8833423379759,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,4,4,4,5,2,1,2,1,2,1,1,1,1,1,1,1,1,1,2,1,1,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Alter|Miyamoto|Hauser|VanLange|Bauer|Inbar|Critcher|Rottenstrich|Anderson|Ross.Slate1|Huang|Graham,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,10,Global,all,TRUE +4976,-0.976484947295048,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,6,6,6,6,6,3,1,1,3,2,2,1,2,4,1,2,4,1,3,1,1,2,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Bauer|Anderson|Graham|Inbar|Ross.Slate1|Alter|Hauser|Huang|VanLange|Rottenstrich|Critcher|Kay,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +4977,0.349639801557322,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,7,7,7,7,6,4,1,1,4,2,1,1,3,4,2,1,4,1,4,1,1,3,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Huang|Alter|Graham|Rottenstrich|Hauser|VanLange|Miyamoto|Critcher|Anderson|Kay|Ross.Slate1|Inbar,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,10,Global,all,TRUE +4978,0.299420155983939,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,4,6,3,1,1,4,3,5,5,1,1,2,1,2,1,1,3,1,5,1,1,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Huang|Anderson|Alter|Hauser|Critcher|Ross.Slate1|Kay|Rottenstrich|Inbar|VanLange|Graham|Miyamoto,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,3,Global,all,TRUE +4980,1.37037708554063,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,6,6,6,6,2,2,5,5,5,1,1,3,1,1,4,4,5,1,2,1,2,1,5,1,4,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Bauer|Kay|Huang|Critcher|Alter|Miyamoto|Rottenstrich|VanLange|Graham|Inbar|Ross.Slate1|Hauser,ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +4983,0.229690986512016,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,5,6,6,6,5,5,1,2,2,4,1,2,3,2,1,1,5,1,4,1,1,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Huang|Critcher|Miyamoto|Hauser|Kay|Bauer|Graham|Rottenstrich|Anderson|Ross.Slate1|Alter|Inbar,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +4984,-0.162701459668314,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,2,4,4,3,3,2,1,1,2,1,1,1,2,1,1,2,4,1,3,1,1,2,2,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Ross.Slate1|Bauer|Rottenstrich|Huang|Anderson|VanLange|Graham|Inbar|Alter|Miyamoto|Hauser|Kay,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,6,Global,all,TRUE +4986,-0.936681361471701,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,5,3,7,6,5,4,1,1,1,1,1,1,1,1,1,1,4,1,4,1,1,1,1,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Bauer|Alter|Graham|Kay|Hauser|Miyamoto|Critcher|Ross.Slate1|Anderson|Huang|Inbar|Rottenstrich,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE,10,Global,all,TRUE +4987,-0.428956944763134,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,5,6,6,5,5,4,1,1,3,3,1,1,4,3,4,1,4,3,3,1,2,3,2,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Bauer|Alter|VanLange|Rottenstrich|Anderson|Critcher|Graham|Huang|Inbar|Kay|Miyamoto|Ross.Slate1,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,6,Global,all,TRUE +4988,0.321834997990781,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,6,7,7,7,6,4,1,2,4,4,1,1,4,5,1,1,5,1,4,1,1,5,4,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|VanLange|Ross.Slate1|Graham|Inbar|Miyamoto|Alter|Critcher|Rottenstrich|Kay|Bauer|Huang|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,1,Global,all,TRUE +4990,-0.617174334263795,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,4,5,6,6,7,1,1,4,3,2,1,2,2,2,2,1,2,2,1,1,1,3,2,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Anderson|Graham|Critcher|Inbar|Kay|Hauser|Miyamoto|Rottenstrich|Bauer|VanLange|Alter|Ross.Slate1,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,2,Global,all,TRUE +4994,-0.129226244770803,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,2,4,5,5,2,3,3,1,1,1,1,1,1,1,1,1,2,1,2,2,3,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Hauser|Huang|VanLange|Ross.Slate1|Miyamoto|Rottenstrich|Bauer|Inbar|Kay|Anderson|Critcher|Alter,ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,11,Global,all,TRUE +4995,1.08263374682146,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,2,5,4,2,2,2,5,2,2,1,2,3,1,1,2,4,4,4,3,3,1,1,1,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Ross.Slate1|Rottenstrich|Critcher|Kay|Bauer|Anderson|Miyamoto|Inbar|Alter|Huang|VanLange|Graham,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +4996,-0.72433760355543,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,7,7,7,5,7,3,1,1,2,3,1,1,4,4,2,1,3,1,3,1,4,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Rottenstrich|Inbar|Hauser|Miyamoto|Graham|Alter|Ross.Slate1|Anderson|Huang|Kay|VanLange|Critcher,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood,9,Global,all,TRUE +4999,0.720291237250512,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,6,6,7,7,6,4,3,2,3,4,1,1,3,3,3,1,4,1,4,1,1,2,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|VanLange|Kay|Rottenstrich|Huang|Hauser|Ross.Slate1|Graham|Critcher|Miyamoto|Anderson|Bauer|Inbar,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,11,Global,all,TRUE +5001,-0.318103819336931,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,6,7,7,6,5,5,1,1,4,3,1,1,5,4,1,1,2,1,4,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Graham|Ross.Slate1|Alter|Rottenstrich|Bauer|Anderson|Inbar|Kay|Hauser|Miyamoto|VanLange|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,7,Global,all,TRUE +5002,-0.0609440238612128,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,4,5,6,5,2,2,2,4,4,2,5,4,3,3,4,1,5,5,2,3,3,1,1,1,4,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Critcher|Ross.Slate1|Alter|Graham|Hauser|Huang|Miyamoto|Anderson|Bauer|Inbar|Rottenstrich|Kay,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,9,Global,all,TRUE +5003,-0.260769039340846,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,6,7,7,7,5,5,1,3,5,4,1,1,2,4,1,1,5,1,5,3,1,4,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Hauser|Huang|VanLange|Rottenstrich|Ross.Slate1|Anderson|Alter|Miyamoto|Graham|Kay|Critcher|Inbar,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,7,Global,all,TRUE +5004,-0.0882288672479221,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,3,4,6,5,3,3,2,2,4,2,1,1,1,2,1,1,3,1,3,1,2,2,3,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Ross.Slate1|Miyamoto|Alter|Anderson|Huang|VanLange|Critcher|Hauser|Bauer|Graham|Inbar|Rottenstrich,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,5,Global,all,TRUE +5007,0.412518414452978,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,6,7,7,7,6,4,1,3,4,4,1,1,4,4,1,1,4,2,3,1,3,3,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Critcher|Rottenstrich|Miyamoto|Ross.Slate1|Anderson|Hauser|Kay|Huang|Inbar|Bauer|VanLange|Alter,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing,6,Global,all,TRUE +5008,-1.39775163578065,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,7,7,7,6,6,4,1,1,2,2,1,1,2,3,1,1,4,1,3,1,1,3,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Alter|Inbar|Bauer|Huang|Rottenstrich|VanLange|Anderson|Miyamoto|Hauser|Ross.Slate1|Critcher|Kay,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing,8,Global,all,TRUE +5009,-0.414444000675861,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,6,6,7,6,6,4,1,1,5,4,1,1,4,5,1,1,5,1,4,1,1,3,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Anderson|Miyamoto|Hauser|Bauer|Critcher|Huang|Alter|Inbar|Rottenstrich|Graham|Ross.Slate1|VanLange,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,2,Global,all,TRUE +5012,-0.274608151908417,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,4,6,4,4,4,4,1,1,4,3,1,1,2,3,1,1,3,1,4,1,1,2,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Huang|Kay|Alter|Inbar|Ross.Slate1|Miyamoto|Bauer|Hauser|Critcher|Graham|Anderson|VanLange,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +5014,-0.122757648959332,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,5,6,6,6,6,2,1,1,2,2,2,1,1,4,4,2,4,2,2,1,3,1,3,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Ross.Slate1|Graham|Kay|Critcher|Anderson|Inbar|Rottenstrich|Bauer|Hauser|Alter|VanLange|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood,6,Global,all,TRUE +5016,-2.13099873790759,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,6,7,6,7,6,2,3,1,1,2,1,1,1,3,1,1,3,1,2,1,1,2,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Rottenstrich|Inbar|Huang|Hauser|VanLange|Kay|Anderson|Critcher|Graham|Bauer|Miyamoto|Ross.Slate1,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +5017,-0.520160321405163,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,4,4,5,3,2,3,2,1,3,1,1,1,1,1,1,1,3,1,4,2,2,3,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Huang|Anderson|Inbar|VanLange|Alter|Hauser|Ross.Slate1|Graham|Bauer|Kay|Critcher|Miyamoto,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +5018,0.534965519403917,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,5,7,6,7,4,4,3,3,1,1,1,1,1,1,1,1,3,1,4,1,1,1,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|VanLange|Hauser|Huang|Inbar|Alter|Rottenstrich|Kay|Ross.Slate1|Critcher|Bauer|Miyamoto|Graham,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +5019,-0.0214050158843007,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,6,6,6,5,5,3,2,2,3,3,1,1,3,4,1,1,4,1,3,1,1,3,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Graham|Anderson|Rottenstrich|Inbar|Kay|Bauer|VanLange|Ross.Slate1|Huang|Alter|Critcher|Hauser,ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing,3,Global,all,TRUE +5021,1.12441788784121,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,5,6,6,5,6,4,1,3,3,1,1,2,1,4,3,1,4,3,4,1,1,1,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Rottenstrich|Inbar|Critcher|Bauer|Ross.Slate1|Alter|VanLange|Hauser|Kay|Huang|Graham|Anderson,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood,13,Global,all,TRUE +5022,0.348979616491855,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,5,5,6,6,5,2,2,1,1,1,1,1,3,1,1,1,3,1,1,2,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Anderson|Inbar|VanLange|Graham|Kay|Alter|Bauer|Huang|Hauser|Miyamoto|Ross.Slate1|Critcher,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,2,Global,all,TRUE +5025,0.496213274923871,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,4,4,6,5,5,2,1,1,2,3,1,1,2,3,2,1,3,1,2,1,1,2,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Critcher|Graham|Hauser|Bauer|Alter|VanLange|Inbar|Anderson|Miyamoto|Ross.Slate1|Kay|Rottenstrich,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,9,Global,all,TRUE +5026,-0.478909787019484,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,3,6,3,3,3,1,4,2,1,1,2,1,1,1,2,3,1,1,2,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Ross.Slate1|Critcher|Hauser|Kay|Bauer|Inbar|Alter|Graham|Miyamoto|Rottenstrich|Anderson|VanLange,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,12,Global,all,TRUE +5033,-0.190773066551888,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,7,7,5,5,4,2,4,3,3,1,1,1,4,2,4,2,4,4,3,2,4,1,3,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Critcher|Anderson|Alter|Bauer|Hauser|Inbar|Graham|Ross.Slate1|Miyamoto|Kay|VanLange|Rottenstrich,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,3,Global,all,TRUE +5036,0.0644083991980287,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,1,6,5,5,3,3,3,3,1,1,1,1,1,1,1,1,1,1,3,1,3,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Bauer|Huang|Kay|Alter|Graham|Miyamoto|Anderson|Inbar|Critcher|Ross.Slate1|Rottenstrich|Hauser,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE,8,Global,all,TRUE +5037,-0.179965850524018,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,6,6,6,6,5,3,1,1,3,1,1,1,2,3,1,1,4,1,3,1,1,3,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Bauer|Ross.Slate1|Alter|VanLange|Kay|Hauser|Inbar|Miyamoto|Anderson|Graham|Critcher|Rottenstrich,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,10,Global,all,TRUE +5038,0.252105828518858,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,7,7,6,7,6,2,2,1,2,1,1,1,1,2,1,1,1,1,3,2,3,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Bauer|Alter|VanLange|Graham|Huang|Inbar|Miyamoto|Anderson|Rottenstrich|Hauser|Ross.Slate1|Kay,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood,9,Global,all,TRUE +5040,-0.689275215209953,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,3,3,3,1,2,3,2,1,2,2,3,2,3,3,1,1,3,1,3,1,1,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Graham|Kay|Huang|Anderson|Hauser|Inbar|Ross.Slate1|Rottenstrich|VanLange|Alter|Bauer|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,5,Global,all,TRUE +5043,0.487651191938836,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,4,5,6,4,4,3,3,4,3,1,1,1,1,3,1,1,5,1,3,1,1,1,1,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Bauer|Miyamoto|Critcher|Inbar|VanLange|Huang|Alter|Graham|Hauser|Rottenstrich|Kay|Ross.Slate1,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,1,Global,all,TRUE +5045,-0.551404049714074,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,6,7,6,5,3,3,2,3,3,2,1,1,1,2,2,1,4,1,4,1,2,2,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Critcher|Miyamoto|Kay|Inbar|Anderson|Huang|Alter|Ross.Slate1|Bauer|Rottenstrich|VanLange|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,6,Global,all,TRUE +5047,0.883468916407299,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,7,7,7,7,7,3,1,2,1,2,2,1,2,3,2,2,3,1,2,1,3,3,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Alter|Bauer|Inbar|Rottenstrich|Miyamoto|Kay|VanLange|Hauser|Graham|Huang|Ross.Slate1|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,13,Global,all,TRUE +5049,-0.417222740352764,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,6,5,6,6,5,3,3,2,3,2,1,1,2,3,4,1,4,1,3,2,3,2,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Ross.Slate1|Miyamoto|Alter|Graham|Rottenstrich|Kay|Bauer|VanLange|Hauser|Critcher|Huang|Anderson,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,13,Global,all,TRUE +5054,-0.170212201310048,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,6,6,6,6,5,3,2,3,4,2,1,1,2,2,1,1,4,1,4,1,2,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Alter|Ross.Slate1|Graham|Anderson|Bauer|Hauser|Huang|Miyamoto|Kay|Rottenstrich|Inbar|Critcher,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,5,Global,all,TRUE +5055,0.534965519403917,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,2,5,3,5,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Critcher|Alter|Miyamoto|VanLange|Huang|Rottenstrich|Hauser|Anderson|Graham|Inbar|Ross.Slate1|Kay,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +5057,-0.338526685163736,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,7,7,5,6,2,4,4,2,4,3,2,2,3,4,2,2,5,2,4,3,2,4,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Bauer|Inbar|Graham|VanLange|Alter|Rottenstrich|Anderson|Hauser|Miyamoto|Critcher|Ross.Slate1|Huang,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,8,Global,all,TRUE +5058,0.432154516782916,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,5,5,5,3,2,4,3,3,3,4,3,3,3,4,3,3,3,3,4,3,3,4,4,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Huang|Kay|Miyamoto|Inbar|Ross.Slate1|Critcher|Bauer|Hauser|Rottenstrich|Alter|Anderson|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,12,Global,all,TRUE +5059,-0.0531550579188076,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,6,7,7,6,5,4,4,4,3,1,1,1,2,4,3,1,3,1,3,2,3,3,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Rottenstrich|Hauser|Inbar|Anderson|Huang|Graham|Alter|VanLange|Bauer|Ross.Slate1|Kay|Critcher,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,5,Global,all,TRUE +5060,0.446387011098921,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,4,6,6,6,2,3,1,1,3,2,1,1,1,4,1,1,4,1,4,1,1,3,4,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Inbar|Anderson|Bauer|VanLange|Miyamoto|Huang|Alter|Hauser|Rottenstrich|Kay|Critcher|Graham,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,3,Global,all,TRUE +5061,0.772489212549696,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,5,6,6,6,2,2,2,1,3,3,1,1,3,4,1,1,4,1,3,1,1,3,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Anderson|Graham|Critcher|Kay|Alter|Inbar|VanLange|Bauer|Huang|Hauser|Rottenstrich|Miyamoto,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,2,Global,all,TRUE +5067,-0.176273768918851,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,4,7,6,2,3,2,2,2,3,3,1,2,1,2,2,1,3,2,4,1,1,1,2,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Critcher|Miyamoto|Huang|VanLange|Inbar|Alter|Graham|Anderson|Kay|Ross.Slate1|Bauer|Rottenstrich,ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,9,Global,all,TRUE +5068,0.282422568445268,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,7,7,7,6,5,2,1,1,3,1,1,1,1,1,2,1,3,1,3,1,1,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|VanLange|Kay|Miyamoto|Alter|Ross.Slate1|Inbar|Graham|Rottenstrich|Huang|Hauser|Bauer|Anderson,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +5070,0.0970968505986731,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,5,5,6,5,6,1,1,1,2,1,1,1,1,3,1,1,3,1,2,1,1,2,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Anderson|Graham|Ross.Slate1|Bauer|Hauser|Inbar|Miyamoto|Alter|Kay|Rottenstrich|Critcher|VanLange,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,2,Global,all,TRUE +5073,-0.805925330398524,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,5,6,6,6,3,4,2,1,4,4,1,2,4,3,3,1,3,2,3,1,3,3,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Miyamoto|Kay|Anderson|Huang|Alter|Ross.Slate1|Rottenstrich|Hauser|VanLange|Critcher|Graham|Inbar,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,4,Global,all,TRUE +5076,0.332248832270218,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,5,5,5,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,4,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Huang|Alter|Graham|Kay|Miyamoto|Ross.Slate1|VanLange|Bauer|Anderson|Rottenstrich|Inbar|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,10,Global,all,TRUE +5077,0.568187577438629,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,5,5,6,4,3,2,2,2,1,2,1,3,1,3,2,1,2,1,2,1,1,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Miyamoto|Kay|VanLange|Critcher|Bauer|Rottenstrich|Huang|Inbar|Graham|Alter|Anderson|Ross.Slate1,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,12,Global,all,TRUE +5079,0.706718927999975,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,7,6,7,6,6,3,1,1,5,1,1,1,3,3,1,1,3,1,5,1,2,3,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Hauser|Bauer|Huang|Anderson|Miyamoto|VanLange|Alter|Inbar|Critcher|Rottenstrich|Ross.Slate1|Kay,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,5,Global,all,TRUE +5080,0.191598927097436,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,5,5,6,5,6,3,1,1,4,3,1,1,3,4,3,1,4,3,4,1,1,4,4,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Alter|Rottenstrich|Kay|Huang|Anderson|VanLange|Ross.Slate1|Inbar|Miyamoto|Graham|Bauer|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,6,Global,all,TRUE +5081,-0.691646926684187,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,6,7,7,7,5,5,2,4,3,4,1,2,5,3,3,1,5,5,4,2,1,4,4,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Bauer|VanLange|Kay|Anderson|Rottenstrich|Graham|Ross.Slate1|Miyamoto|Alter|Inbar|Hauser|Critcher,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,5,Global,all,TRUE +5086,-0.927321094006163,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,6,6,6,6,6,4,2,2,3,4,1,1,3,4,1,2,3,1,2,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Alter|Ross.Slate1|Bauer|Hauser|Rottenstrich|Inbar|Anderson|Critcher|VanLange|Miyamoto|Graham|Kay,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +5088,0.669018024863229,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,5,7,6,5,2,2,1,1,1,2,1,1,2,2,1,1,2,1,4,1,1,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Alter|Graham|Ross.Slate1|Kay|Hauser|Rottenstrich|Bauer|Critcher|VanLange|Anderson|Inbar|Huang,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +5090,0.185675358903669,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,3,6,5,6,3,2,1,1,4,2,1,1,2,4,1,1,4,1,4,1,1,2,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Bauer|Kay|Alter|Graham|Inbar|Huang|Miyamoto|Rottenstrich|Critcher|Ross.Slate1|VanLange|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,13,Global,all,TRUE +5092,0.741905669306252,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,6,7,7,6,4,3,1,1,3,3,1,1,3,4,2,3,2,1,3,1,4,2,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Rottenstrich|Hauser|Critcher|Anderson|VanLange|Bauer|Graham|Huang|Miyamoto|Kay|Inbar|Alter,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,5,Global,all,TRUE +5093,0.194377666774339,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,2,5,5,5,3,1,2,1,2,1,1,1,1,1,1,1,2,1,1,1,3,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Rottenstrich|Huang|Ross.Slate1|Graham|Miyamoto|Anderson|VanLange|Critcher|Alter|Bauer|Kay|Inbar,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,7,Global,all,TRUE +5095,-0.292530502358989,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,6,6,7,7,6,2,2,1,3,1,1,1,1,4,1,1,4,1,3,1,1,1,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Alter|Huang|Anderson|Rottenstrich|Bauer|Ross.Slate1|Graham|Hauser|Inbar|Kay|VanLange|Critcher,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,4,Global,all,TRUE +5096,0.412251611135944,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,3,6,3,4,4,3,5,5,3,2,1,2,2,1,3,1,4,2,3,1,2,1,4,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Bauer|VanLange|Critcher|Rottenstrich|Ross.Slate1|Graham|Huang|Hauser|Kay|Anderson|Inbar|Alter,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE,11,Global,all,TRUE +5098,0.357695570816761,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,5,6,6,6,2,3,1,2,4,3,1,1,1,2,1,1,3,1,3,1,1,2,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|VanLange|Miyamoto|Critcher|Anderson|Rottenstrich|Kay|Alter|Bauer|Graham|Inbar|Huang|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,5,Global,all,TRUE +5099,-0.154125730229042,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,7,6,6,7,7,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Critcher|Inbar|Bauer|Graham|Hauser|Ross.Slate1|Anderson|Huang|VanLange|Alter|Miyamoto|Kay,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,8,Global,all,TRUE +5100,0.187653688629471,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,5,7,5,6,2,4,2,2,4,3,2,1,2,3,1,1,4,1,4,1,3,3,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Rottenstrich|Inbar|Alter|Hauser|Bauer|Ross.Slate1|Miyamoto|Kay|Huang|Anderson|Critcher|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,11,Global,all,TRUE +5101,-0.326665902321966,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,5,6,3,5,3,4,1,1,2,2,1,1,2,4,2,1,2,1,1,1,1,2,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Hauser|Graham|Rottenstrich|VanLange|Kay|Miyamoto|Alter|Critcher|Anderson|Bauer|Inbar|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,10,Global,all,TRUE +5103,0.255390881921357,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,6,6,6,5,3,2,2,2,2,2,1,2,2,1,2,2,3,1,3,1,1,1,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Alter|Anderson|Kay|Miyamoto|Rottenstrich|Ross.Slate1|Huang|Graham|VanLange|Inbar|Bauer|Hauser,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,3,Global,all,TRUE +5108,0.955569797353456,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,3,3,3,3,2,2,1,1,3,2,1,1,1,1,1,1,1,1,2,1,1,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Alter|Ross.Slate1|Graham|Critcher|Bauer|Huang|VanLange|Miyamoto|Rottenstrich|Kay|Inbar|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,13,Global,all,TRUE +5113,0.269103416057529,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,6,5,5,7,1,4,3,3,3,4,1,3,4,4,4,3,5,3,4,2,3,4,3,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Ross.Slate1|Kay|Bauer|Huang|Inbar|Anderson|Critcher|Rottenstrich|Miyamoto|Hauser|Alter|VanLange,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,7,Global,all,TRUE +5115,0.877938729961965,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,6,5,6,6,6,2,3,1,2,2,1,1,1,4,1,1,5,1,3,1,1,2,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Hauser|Ross.Slate1|Rottenstrich|Bauer|Inbar|Kay|Anderson|Miyamoto|Huang|Graham|Critcher|VanLange,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,8,Global,all,TRUE +5118,0.581759886689166,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,3,4,5,3,5,3,1,1,4,1,1,1,2,3,2,1,2,2,2,1,2,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Inbar|Kay|Critcher|Rottenstrich|VanLange|Hauser|Ross.Slate1|Bauer|Graham|Alter|Huang|Anderson,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,13,Global,all,TRUE +5119,0.365850625599127,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,5,6,7,5,5,4,2,1,3,3,1,1,3,3,2,1,5,1,4,1,1,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Graham|Anderson|Bauer|Hauser|Kay|Alter|Ross.Slate1|Miyamoto|VanLange|Critcher|Huang|Inbar,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,3,Global,all,TRUE +5123,-0.463359148043146,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,6,7,7,6,7,3,1,1,3,2,1,1,4,5,2,1,5,1,4,1,1,3,5,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Kay|Graham|Critcher|Hauser|Anderson|Huang|Ross.Slate1|Miyamoto|Alter|Rottenstrich|Bauer|VanLange,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,6,Global,all,TRUE +5125,1.14326722667429,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,7,6,6,6,6,3,2,2,2,2,2,2,2,4,2,2,4,2,3,1,2,4,5,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Anderson|Ross.Slate1|VanLange|Miyamoto|Kay|Inbar|Bauer|Graham|Critcher|Hauser|Rottenstrich|Alter,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,2,Global,all,TRUE +5127,0.0274942595581487,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,2,6,6,5,3,3,2,3,1,3,1,1,3,1,2,1,2,1,2,2,1,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Huang|Alter|Hauser|Anderson|Bauer|Rottenstrich|Critcher|Inbar|Kay|Miyamoto|Graham|Ross.Slate1,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood,5,Global,all,TRUE +5132,0.216638637441311,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,5,7,6,6,7,4,1,2,2,4,1,1,4,3,4,2,5,4,2,1,4,5,3,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Bauer|Kay|Graham|Hauser|Anderson|Inbar|Alter|Rottenstrich|Critcher|Huang|Miyamoto|VanLange,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing,6,Global,all,TRUE +5134,0.554081661554024,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,3,3,3,4,2,5,1,2,3,3,2,2,4,4,4,1,4,1,2,1,3,3,4,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Rottenstrich|Kay|Miyamoto|Anderson|Alter|Ross.Slate1|Graham|Hauser|Huang|Bauer|Critcher|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,5,Global,all,TRUE +5138,-0.594239532077122,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,6,6,7,5,6,3,1,1,2,2,1,1,2,2,2,1,1,1,2,1,2,2,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Bauer|VanLange|Hauser|Anderson|Huang|Miyamoto|Kay|Rottenstrich|Inbar|Ross.Slate1|Alter|Graham,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,5,Global,all,TRUE +5139,0.42833585674635,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,6,7,5,6,6,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Kay|Ross.Slate1|Critcher|VanLange|Inbar|Graham|Alter|Huang|Anderson|Rottenstrich|Hauser|Bauer,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,10,Global,all,TRUE +5142,-0.0165213680501974,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,6,7,7,7,6,2,1,1,3,3,1,1,1,3,1,1,2,1,2,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Alter|Anderson|Miyamoto|Rottenstrich|Graham|VanLange|Inbar|Huang|Critcher|Ross.Slate1|Kay|Bauer,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +5145,0.404869673396208,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,6,7,3,4,2,4,2,4,3,4,4,4,2,2,4,1,3,5,3,1,3,2,3,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Ross.Slate1|Rottenstrich|Hauser|Bauer|Anderson|Huang|Miyamoto|Alter|Graham|Critcher|Inbar|VanLange,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,6,Global,all,TRUE +5147,-0.0245634908554009,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,4,4,3,4,4,2,1,2,3,2,1,1,5,3,3,1,4,1,3,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Critcher|Kay|Graham|Miyamoto|Anderson|Huang|VanLange|Bauer|Alter|Rottenstrich|Hauser|Inbar,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +5149,0.326311617622215,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,2,4,5,2,1,4,2,4,2,3,5,4,3,2,4,5,3,4,3,1,4,2,3,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|VanLange|Bauer|Rottenstrich|Ross.Slate1|Critcher|Kay|Miyamoto|Alter|Anderson|Huang|Hauser|Inbar,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,10,Global,all,TRUE +5150,0.269370219374563,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,5,5,4,4,2,1,3,3,1,1,2,4,1,1,1,2,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Graham|Rottenstrich|Huang|Kay|Inbar|Critcher|Miyamoto|Hauser|Alter|Anderson|VanLange|Ross.Slate1,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five,11,Global,all,TRUE +5151,0.307729082106176,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,5,6,6,7,3,4,1,1,3,2,1,1,4,2,1,1,3,1,4,1,1,3,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Critcher|VanLange|Rottenstrich|Ross.Slate1|Bauer|Alter|Graham|Hauser|Inbar|Anderson|Kay|Huang,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,11,Global,all,TRUE +5152,-0.980177028900215,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,5,7,6,5,5,3,2,2,4,2,1,1,2,4,1,1,3,1,4,1,1,3,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Alter|Bauer|Anderson|Rottenstrich|Kay|Critcher|Miyamoto|Graham|Ross.Slate1|VanLange|Huang|Inbar,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +5153,0.128998538502451,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,5,5,5,4,4,5,1,1,5,5,1,1,5,4,1,1,5,5,5,1,1,5,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Rottenstrich|Hauser|Graham|Inbar|Alter|VanLange|Anderson|Miyamoto|Bauer|Huang|Critcher|Ross.Slate1,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +5155,0.360447017585192,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,7,7,7,7,7,3,2,1,2,1,1,1,1,2,1,1,1,1,4,1,1,3,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Critcher|Huang|Miyamoto|Rottenstrich|Ross.Slate1|Graham|Hauser|Inbar|Anderson|Bauer|VanLange|Kay,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood,10,Global,all,TRUE +5156,-0.113141999160397,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,5,6,6,6,1,4,1,1,3,5,1,1,3,5,5,1,5,2,4,1,5,4,4,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|VanLange|Hauser|Bauer|Anderson|Huang|Graham|Critcher|Ross.Slate1|Miyamoto|Inbar|Kay|Alter,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,5,Global,all,TRUE +5157,-0.934576453314501,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,5,6,6,6,6,3,2,3,2,3,2,2,3,1,2,2,2,1,3,1,3,3,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|VanLange|Rottenstrich|Miyamoto|Kay|Inbar|Critcher|Hauser|Huang|Alter|Bauer|Graham|Anderson,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,13,Global,all,TRUE +5158,0.747182698888788,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,7,5,7,6,6,4,1,1,4,4,1,1,4,4,1,1,4,1,4,1,1,5,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Inbar|Miyamoto|Kay|Huang|VanLange|Critcher|Bauer|Anderson|Alter|Hauser|Graham|Rottenstrich,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +5160,0.470906761262963,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,5,7,6,6,4,4,2,2,3,5,2,2,4,4,2,2,4,1,3,3,3,4,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Ross.Slate1|Inbar|Alter|Bauer|Anderson|Miyamoto|Huang|VanLange|Rottenstrich|Kay|Graham|Critcher,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,6,Global,all,TRUE +5163,1.33162484106058,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,6,7,5,6,2,4,1,2,3,1,1,1,4,4,2,1,4,1,3,1,2,2,1,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Anderson|Alter|Ross.Slate1|Huang|Critcher|VanLange|Inbar|Rottenstrich|Graham|Hauser|Kay|Bauer,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,2,Global,all,TRUE +5169,-0.610452581589526,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,6,6,7,7,7,4,1,1,4,4,1,1,4,4,1,1,4,1,4,1,1,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Miyamoto|Critcher|Alter|Anderson|Graham|Kay|Ross.Slate1|Rottenstrich|VanLange|Bauer|Inbar|Huang,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,5,Global,all,TRUE +5171,0.385233571066269,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,6,7,5,5,1,2,1,4,3,1,1,1,2,5,2,1,2,1,3,1,1,2,3,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|VanLange|Miyamoto|Critcher|Anderson|Huang|Inbar|Hauser|Alter|Ross.Slate1|Kay|Rottenstrich|Bauer,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,5,Global,all,TRUE +5173,1.24634503261232,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,5,4,5,5,6,5,2,2,3,3,1,3,4,4,3,2,4,3,4,1,1,3,4,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Rottenstrich|Critcher|Anderson|VanLange|Inbar|Ross.Slate1|Kay|Hauser|Huang|Alter|Bauer|Miyamoto,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,4,Global,all,TRUE +5176,-0.461378592846745,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,3,5,6,5,2,4,2,2,3,4,2,1,4,3,2,1,3,4,4,3,3,4,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Ross.Slate1|Kay|Anderson|Bauer|Huang|Graham|VanLange|Miyamoto|Hauser|Rottenstrich|Critcher|Alter,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,4,Global,all,TRUE +5178,-0.0335189555888687,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,5,6,4,5,1,2,4,5,1,5,2,3,1,5,4,1,5,5,1,3,1,1,1,4,5,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Anderson|Ross.Slate1|Inbar|VanLange|Alter|Graham|Hauser|Miyamoto|Huang|Kay|Rottenstrich|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,2,Global,all,TRUE +5180,1.15512800951606,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,4,6,4,5,5,2,1,3,1,4,1,1,4,3,2,1,5,1,3,1,1,3,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Rottenstrich|VanLange|Hauser|Huang|Anderson|Critcher|Inbar|Ross.Slate1|Kay|Alter|Bauer|Miyamoto,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,6,Global,all,TRUE +5183,0.476970554342365,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,6,7,7,6,6,3,1,2,2,4,1,1,3,3,2,1,3,1,3,1,1,4,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Critcher|Alter|Rottenstrich|Bauer|Hauser|Miyamoto|Kay|Graham|VanLange|Anderson|Huang|Ross.Slate1,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,11,Global,all,TRUE +5190,0.160888805422593,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,5,6,6,6,4,2,1,1,4,2,1,1,3,3,1,1,3,1,4,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Kay|VanLange|Miyamoto|Inbar|Anderson|Critcher|Rottenstrich|Hauser|Bauer|Ross.Slate1|Alter|Graham,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,6,Global,all,TRUE +5191,0.14203946658952,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,5,5,5,2,1,4,3,2,2,4,2,2,4,4,2,1,3,2,4,3,2,3,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Ross.Slate1|Anderson|Bauer|VanLange|Graham|Hauser|Inbar|Rottenstrich|Miyamoto|Huang|Critcher|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,3,Global,all,TRUE +5193,0.305217145746307,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,6,6,6,3,2,1,3,2,1,1,1,2,1,1,1,1,2,1,1,2,2,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Alter|VanLange|Miyamoto|Bauer|Critcher|Anderson|Graham|Kay|Rottenstrich|Inbar|Ross.Slate1|Hauser,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,7,Global,all,TRUE +5195,-0.674775917576915,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,5,6,3,3,4,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|VanLange|Rottenstrich|Miyamoto|Kay|Ross.Slate1|Alter|Inbar|Bauer|Anderson|Hauser|Critcher|Huang,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,10,Global,all,TRUE +5196,0.377191448261066,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,3,4,5,5,4,3,1,1,1,2,1,3,3,3,1,2,3,1,1,1,1,3,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Bauer|Inbar|Ross.Slate1|Kay|Miyamoto|Graham|Alter|Rottenstrich|Anderson|Huang|Critcher|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,10,Global,all,TRUE +5197,0.498851789715139,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,6,6,6,5,5,4,1,2,1,2,1,1,4,4,2,1,3,1,4,2,3,3,3,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Kay|Critcher|Rottenstrich|Bauer|Miyamoto|Inbar|VanLange|Huang|Hauser|Anderson|Ross.Slate1|Graham,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood,11,Global,all,TRUE +5198,-0.754918921328275,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,5,4,5,5,3,2,2,1,2,1,1,1,1,1,1,1,3,1,3,1,1,1,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Miyamoto|Bauer|Alter|Huang|Rottenstrich|Inbar|Hauser|VanLange|Kay|Graham|Anderson|Ross.Slate1,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,12,Global,all,TRUE +5202,-0.266959410851646,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,5,6,6,6,6,3,2,2,3,3,1,1,2,4,1,2,4,1,3,1,2,1,1,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Miyamoto|VanLange|Kay|Ross.Slate1|Alter|Critcher|Inbar|Anderson|Bauer|Rottenstrich|Hauser|Huang,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five,9,Global,all,TRUE +5204,0.667826458634294,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,3,6,4,6,2,1,2,4,1,1,2,4,1,1,2,1,1,1,3,1,4,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Bauer|Miyamoto|Ross.Slate1|VanLange|Anderson|Inbar|Hauser|Huang|Graham|Rottenstrich|Kay|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,6,Global,all,TRUE +5205,0.645425263081688,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,7,7,7,6,7,2,1,3,3,4,1,1,2,4,3,1,4,3,4,1,2,3,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Kay|Alter|Hauser|Bauer|Inbar|Anderson|Huang|VanLange|Ross.Slate1|Graham|Critcher|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,7,Global,all,TRUE +5206,-0.181817601818421,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,4,4,3,5,2,2,1,1,1,1,1,1,1,1,3,1,1,2,2,1,2,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Hauser|Rottenstrich|Critcher|VanLange|Alter|Graham|Ross.Slate1|Kay|Anderson|Inbar|Huang|Miyamoto,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,10,Global,all,TRUE +5208,-0.0269352023296346,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,7,7,6,7,5,5,1,2,4,3,2,1,4,5,3,1,5,2,5,1,1,3,3,5,4,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Inbar|Ross.Slate1|Miyamoto|Bauer|Anderson|Critcher|Rottenstrich|Alter|Kay|Graham|VanLange|Huang,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,6,Global,all,TRUE +5209,-0.679914947744415,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,7,7,7,7,6,5,1,1,4,4,1,1,4,4,1,1,5,1,1,1,1,3,4,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Critcher|Kay|Inbar|Graham|Miyamoto|Ross.Slate1|Bauer|VanLange|Hauser|Alter|Huang|Anderson,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,13,Global,all,TRUE +5210,-0.156904469905945,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,5,4,5,6,2,3,2,2,3,4,1,4,2,2,4,1,4,1,2,1,2,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Graham|Inbar|Huang|Miyamoto|VanLange|Bauer|Alter|Critcher|Kay|Hauser|Ross.Slate1|Rottenstrich,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood,1,Global,all,TRUE +5211,0.684444310878768,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,6,7,6,5,6,4,1,2,3,1,1,1,1,4,1,1,3,1,4,1,1,2,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Kay|VanLange|Ross.Slate1|Alter|Miyamoto|Rottenstrich|Huang|Hauser|Inbar|Bauer|Critcher|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection,13,Global,all,TRUE +5212,-0.336812933284369,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,3,5,6,5,7,4,4,4,1,5,1,2,4,2,3,1,5,3,2,1,4,3,2,5,3,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Hauser|Huang|Graham|Alter|Bauer|Ross.Slate1|Kay|Critcher|Anderson|Miyamoto|VanLange|Rottenstrich,ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,10,Global,all,TRUE +5213,0.788966839908535,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,5,7,6,5,7,3,1,1,3,2,1,1,1,2,2,1,3,1,3,1,2,3,2,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Hauser|Alter|Anderson|Miyamoto|Kay|Graham|VanLange|Bauer|Huang|Inbar|Ross.Slate1|Rottenstrich,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,4,Global,all,TRUE +5215,-0.356982642248376,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,5,5,6,5,6,3,1,1,4,3,1,1,2,4,1,1,3,1,4,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Bauer|Rottenstrich|VanLange|Anderson|Critcher|Alter|Miyamoto|Ross.Slate1|Hauser|Graham|Huang|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,5,Global,all,TRUE +5216,0.226405933109517,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,2,3,5,5,1,1,2,3,2,4,1,2,1,2,2,1,1,1,1,1,1,2,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Ross.Slate1|Rottenstrich|Bauer|Alter|Graham|VanLange|Inbar|Anderson|Huang|Critcher|Miyamoto|Kay,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,9,Global,all,TRUE +5218,0.61247000836401,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,5,4,4,3,2,1,2,1,2,1,1,3,1,3,1,1,2,1,3,1,2,1,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Alter|Rottenstrich|Kay|Huang|Anderson|Hauser|Ross.Slate1|Miyamoto|Critcher|VanLange|Bauer|Inbar,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five,6,Global,all,TRUE +5219,0.154825012343191,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,5,5,5,6,3,4,2,1,4,1,1,1,1,3,1,1,2,1,5,1,2,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|VanLange|Inbar|Graham|Miyamoto|Huang|Alter|Bauer|Anderson|Rottenstrich|Hauser|Ross.Slate1|Kay,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,9,Global,all,TRUE +5222,0.914052459650743,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,6,7,6,6,3,4,3,4,3,4,1,2,5,4,2,1,4,2,3,1,1,4,4,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Rottenstrich|Alter|Kay|Miyamoto|Bauer|Anderson|Ross.Slate1|VanLange|Hauser|Huang|Inbar|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing,7,Global,all,TRUE +5224,0.517827706979611,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,5,3,5,6,2,3,1,1,1,1,1,1,3,1,1,1,2,1,2,1,1,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Critcher|VanLange|Ross.Slate1|Miyamoto|Kay|Hauser|Graham|Inbar|Huang|Bauer|Rottenstrich|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,13,Global,all,TRUE +5225,0.0860228312537688,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,7,6,7,6,6,3,2,1,4,4,1,1,4,3,2,1,5,1,4,1,2,4,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Ross.Slate1|Miyamoto|Critcher|Bauer|Anderson|Graham|Rottenstrich|Alter|Inbar|Huang|Hauser|VanLange,ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,6,Global,all,TRUE +5228,1.13813042197738,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,7,7,7,7,7,4,1,1,3,3,1,1,3,3,1,1,4,1,3,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Huang|Anderson|Graham|Kay|Hauser|Bauer|Rottenstrich|Critcher|VanLange|Inbar|Alter|Ross.Slate1,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood,3,Global,all,TRUE +5234,-0.0685927649179832,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,3,3,5,4,2,2,2,4,2,2,2,4,2,2,3,2,2,2,1,2,2,2,2,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Anderson|VanLange|Alter|Kay|Graham|Hauser|Rottenstrich|Ross.Slate1|Huang|Miyamoto|Inbar|Critcher,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood,2,Global,all,TRUE +5236,-0.899514064969023,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,2,4,5,2,2,3,4,2,2,1,1,1,2,2,1,1,3,1,2,1,2,1,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Hauser|VanLange|Huang|Critcher|Inbar|Graham|Miyamoto|Alter|Anderson|Bauer|Rottenstrich|Kay,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +5238,-0.518982401630464,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,5,7,7,7,6,3,1,1,3,2,1,1,1,3,1,1,3,1,3,1,1,4,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Anderson|Critcher|Bauer|VanLange|Ross.Slate1|Hauser|Graham|Huang|Kay|Miyamoto|Inbar|Alter,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five,2,Global,all,TRUE +5241,0.210054884182077,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,7,6,7,7,5,2,1,1,2,1,1,3,1,3,1,1,2,1,1,1,1,1,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Ross.Slate1|Graham|Bauer|Anderson|Critcher|Inbar|Miyamoto|Kay|Alter|Rottenstrich|Huang|VanLange,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,5,Global,all,TRUE +5245,-0.0738561480462831,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,3,3,5,5,2,4,2,2,3,4,1,2,3,5,3,1,4,1,4,2,3,4,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Graham|Alter|VanLange|Critcher|Hauser|Bauer|Rottenstrich|Miyamoto|Huang|Ross.Slate1|Inbar|Anderson,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,13,Global,all,TRUE +5246,-0.182997747063719,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,2,1,1,2,1,1,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Inbar|Hauser|Kay|Bauer|Rottenstrich|Alter|VanLange|Ross.Slate1|Huang|Critcher|Graham|Anderson,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,13,Global,all,TRUE +5249,-0.794724732622222,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,3,6,6,6,3,3,1,1,1,2,1,1,4,3,1,1,4,1,5,1,1,3,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Ross.Slate1|Anderson|VanLange|Bauer|Kay|Critcher|Miyamoto|Graham|Inbar|Hauser|Rottenstrich|Huang,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +5253,-1.20399041338042,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,6,6,7,6,6,4,2,2,3,5,1,1,5,4,4,1,3,1,3,3,3,3,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Ross.Slate1|Critcher|Rottenstrich|Kay|Alter|Hauser|Anderson|Graham|Bauer|Miyamoto|VanLange|Huang,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five,8,Global,all,TRUE +5254,0.814399932000842,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,6,5,7,7,6,5,1,1,1,4,1,1,4,5,1,1,5,1,4,1,1,4,3,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|VanLange|Miyamoto|Inbar|Graham|Hauser|Rottenstrich|Anderson|Ross.Slate1|Huang|Alter|Kay|Critcher,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,8,Global,all,TRUE +5257,0.562123784359227,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,6,3,3,5,2,4,1,1,2,3,1,1,3,2,1,1,3,1,3,1,1,2,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Ross.Slate1|Inbar|Hauser|Kay|Anderson|Miyamoto|Graham|VanLange|Bauer|Huang|Alter|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,6,Global,all,TRUE +5260,0.988918433819567,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,5,6,5,6,3,3,3,3,1,2,1,3,4,1,2,1,3,1,2,1,3,1,1,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Graham|Huang|Hauser|Alter|Kay|Inbar|Anderson|Rottenstrich|Critcher|Ross.Slate1|VanLange|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,8,Global,all,TRUE +5261,-0.839400545296035,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,6,6,6,7,5,3,1,2,2,2,1,1,2,3,4,1,4,2,2,1,3,3,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Anderson|VanLange|Bauer|Huang|Alter|Rottenstrich|Miyamoto|Kay|Inbar|Hauser|Critcher|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,2,Global,all,TRUE +5265,-0.382291381379884,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,5,5,5,5,4,1,2,3,1,1,2,1,1,1,1,3,2,2,3,1,1,2,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Alter|Graham|Bauer|Inbar|Huang|VanLange|Anderson|Miyamoto|Kay|Rottenstrich|Ross.Slate1|Hauser,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,8,Global,all,TRUE +5267,1.40912933002067,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,2,3,4,3,3,2,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Miyamoto|Ross.Slate1|Critcher|Huang|Kay|Graham|Alter|Bauer|Hauser|Rottenstrich|Inbar|Anderson,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +5269,0.166559216753562,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,6,5,6,5,5,3,1,1,3,2,1,1,3,3,1,1,3,1,3,1,1,2,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Inbar|Rottenstrich|VanLange|Kay|Miyamoto|Anderson|Alter|Hauser|Critcher|Bauer|Ross.Slate1|Huang,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +5271,-0.14385212083524,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,3,3,4,3,4,3,3,3,3,4,1,3,2,3,2,2,3,2,3,3,1,2,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Inbar|Kay|Graham|Rottenstrich|Hauser|Critcher|Alter|Huang|Ross.Slate1|Miyamoto|Bauer|VanLange,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +5273,0.870023185588161,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,4,4,5,5,4,4,3,2,4,4,3,4,4,2,3,2,3,2,2,2,3,4,1,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Anderson|Critcher|Rottenstrich|Alter|Hauser|Huang|Bauer|Miyamoto|Ross.Slate1|VanLange|Graham|Inbar,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,2,Global,all,TRUE +5274,0.107904066626543,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,6,7,6,6,3,4,1,1,4,1,1,1,1,1,1,1,4,1,5,1,1,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Inbar|Anderson|Bauer|Miyamoto|Rottenstrich|Hauser|Alter|Huang|Graham|VanLange|Critcher|Kay,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,3,Global,all,TRUE +5275,0.20267294644234,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,2,4,2,4,6,4,2,4,2,3,1,2,2,2,3,1,1,2,3,2,2,3,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Bauer|Anderson|Kay|Graham|Alter|Critcher|Huang|Rottenstrich|Inbar|VanLange|Miyamoto|Hauser,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,3,Global,all,TRUE +5276,0.14203946658952,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,6,6,5,5,3,4,1,2,3,4,1,1,2,2,1,1,2,1,2,1,2,4,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Bauer|Kay|VanLange|Ross.Slate1|Critcher|Graham|Alter|Rottenstrich|Miyamoto|Inbar|Hauser|Huang,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,1,Global,all,TRUE +5277,0.424379197294748,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,2,2,5,5,3,2,3,2,1,1,1,3,1,1,3,1,1,1,2,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Huang|Kay|Bauer|Rottenstrich|Hauser|Miyamoto|Ross.Slate1|Alter|Graham|Inbar|Critcher|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five,13,Global,all,TRUE +5278,-0.423159955000767,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,5,6,3,5,6,4,2,4,3,4,1,3,4,2,2,1,5,3,3,1,4,3,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Anderson|Ross.Slate1|Huang|Inbar|Graham|Critcher|Alter|Miyamoto|Hauser|Kay|Rottenstrich|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,2,Global,all,TRUE +5280,-0.855878172654874,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,6,6,6,6,5,3,2,1,3,2,1,2,2,3,2,1,4,1,4,1,1,2,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Alter|Huang|Inbar|Bauer|Hauser|VanLange|Kay|Rottenstrich|Critcher|Miyamoto|Anderson|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,12,Global,all,TRUE +5283,0.316431389976846,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,6,6,6,6,5,3,3,5,3,4,3,5,4,3,4,3,4,4,2,3,3,4,3,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Hauser|Bauer|Kay|Graham|Critcher|Miyamoto|Alter|Ross.Slate1|Rottenstrich|Huang|Anderson|Inbar,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,12,Global,all,TRUE +5285,0.526136633101848,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,2,4,5,6,5,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|VanLange|Alter|Critcher|Hauser|Inbar|Huang|Graham|Kay|Ross.Slate1|Miyamoto|Bauer|Anderson,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,13,Global,all,TRUE +5286,0.0691518221464967,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,6,5,6,6,5,2,1,1,2,1,1,1,1,4,1,1,3,1,3,1,2,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Inbar|Anderson|Critcher|Kay|Alter|Ross.Slate1|Huang|Graham|Bauer|Rottenstrich|Miyamoto|VanLange,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +5289,-0.88276963429315,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,7,7,6,7,7,2,2,2,3,1,1,1,2,1,2,1,2,2,2,1,1,1,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Alter|VanLange|Critcher|Hauser|Kay|Anderson|Bauer|Huang|Inbar|Miyamoto|Rottenstrich|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection,7,Global,all,TRUE +5290,0.0673114918357314,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,5,5,6,6,7,2,1,2,3,2,1,1,2,2,2,1,3,1,3,1,2,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|VanLange|Bauer|Hauser|Miyamoto|Alter|Inbar|Ross.Slate1|Critcher|Huang|Kay|Anderson|Graham,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,12,Global,all,TRUE +5291,0.886107431198567,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,6,6,7,5,5,3,1,1,2,2,1,1,3,2,1,1,4,1,3,1,1,3,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Inbar|Ross.Slate1|VanLange|Hauser|Bauer|Huang|Kay|Anderson|Alter|Critcher|Graham|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,9,Global,all,TRUE +5292,0.673496869965263,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,7,7,7,7,5,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Rottenstrich|Graham|Miyamoto|VanLange|Alter|Huang|Critcher|Bauer|Anderson|Kay|Hauser|Ross.Slate1,ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,10,Global,all,TRUE +5298,0.897181450543471,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,5,6,5,5,3,1,3,1,2,1,1,3,1,1,1,1,1,1,1,1,3,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Rottenstrich|Alter|Graham|Anderson|Hauser|Ross.Slate1|Critcher|Miyamoto|Bauer|VanLange|Kay|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing,5,Global,all,TRUE +5299,0.864492999142827,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,5,5,6,5,4,3,1,3,3,3,1,1,3,3,3,1,3,1,3,1,2,3,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Kay|Huang|Graham|VanLange|Ross.Slate1|Alter|Rottenstrich|Hauser|Critcher|Anderson|Miyamoto|Inbar,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,11,Global,all,TRUE +5300,0.457461030443825,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,5,6,6,6,6,3,1,2,4,2,1,1,3,3,1,2,3,1,4,1,2,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Miyamoto|Ross.Slate1|VanLange|Critcher|Anderson|Rottenstrich|Bauer|Alter|Graham|Huang|Hauser|Inbar,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,6,Global,all,TRUE +5302,0.6818057960875,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,4,4,5,6,2,2,1,2,3,1,1,1,1,2,1,1,1,1,2,1,1,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Bauer|Critcher|Anderson|Miyamoto|Inbar|Ross.Slate1|Kay|Alter|Hauser|Rottenstrich|Graham|VanLange,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,4,Global,all,TRUE +5303,0.554081661554024,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,7,7,7,6,5,4,2,3,3,3,1,1,4,3,2,1,4,2,3,1,4,3,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Rottenstrich|Bauer|Hauser|Miyamoto|VanLange|Graham|Inbar|Critcher|Ross.Slate1|Alter|Huang|Kay,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood,1,Global,all,TRUE +5304,0.39907268363384,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,3,4,3,1,2,2,1,1,1,2,1,1,3,2,1,1,2,1,2,1,1,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Ross.Slate1|Graham|Miyamoto|Hauser|Kay|Inbar|Rottenstrich|Alter|Anderson|Bauer|Critcher|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,10,Global,all,TRUE +5305,-0.21226092017623,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,4,4,5,5,5,2,2,2,2,2,1,2,2,2,2,2,2,1,2,2,2,1,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Huang|VanLange|Hauser|Alter|Kay|Inbar|Ross.Slate1|Graham|Miyamoto|Rottenstrich|Anderson|Critcher,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +5306,-0.262213762432579,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,2,5,5,2,2,2,1,2,1,2,1,1,1,2,3,2,2,2,2,3,1,2,2,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Graham|Bauer|Inbar|Huang|Anderson|Ross.Slate1|VanLange|Kay|Miyamoto|Rottenstrich|Hauser|Critcher,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing,6,Global,all,TRUE +5308,0.121883404079749,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,7,6,7,7,7,4,1,1,4,2,1,1,3,4,1,1,4,1,5,1,1,3,3,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Inbar|Hauser|Anderson|Ross.Slate1|Alter|Kay|VanLange|Graham|Huang|Miyamoto|Rottenstrich|Bauer,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +5311,0.587163494703101,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,5,5,6,4,4,3,1,4,4,3,4,1,2,3,2,4,4,2,3,1,1,3,3,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Alter|Ross.Slate1|Bauer|Miyamoto|Kay|Critcher|Huang|VanLange|Inbar|Rottenstrich|Graham|Anderson,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood,13,Global,all,TRUE +5313,-0.240332527059805,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,5,6,6,6,3,2,2,1,1,1,1,1,2,1,1,1,2,1,3,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Anderson|Rottenstrich|Miyamoto|Huang|Hauser|Critcher|Kay|Graham|Bauer|VanLange|Alter|Ross.Slate1,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +5314,-0.209357827538527,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,3,3,5,5,5,2,4,3,2,3,2,1,2,2,4,4,5,3,2,1,2,3,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Inbar|Hauser|Kay|VanLange|Huang|Critcher|Alter|Graham|Rottenstrich|Anderson|Miyamoto|Bauer,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,11,Global,all,TRUE +5316,-0.512511580348393,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,6,6,6,6,6,3,1,1,2,2,1,1,1,1,2,1,4,1,2,1,1,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Miyamoto|Huang|Critcher|Inbar|Kay|VanLange|Hauser|Rottenstrich|Bauer|Ross.Slate1|Graham|Anderson,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five,13,Global,all,TRUE +5321,-0.211069353947294,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,4,2,7,7,6,4,1,2,4,5,1,1,5,3,1,1,4,1,4,1,2,5,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Graham|Critcher|Kay|Rottenstrich|Anderson|Bauer|Huang|VanLange|Miyamoto|Inbar|Hauser|Alter,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,6,Global,all,TRUE +5322,0.457461030443825,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,5,3,4,3,5,1,1,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Rottenstrich|Critcher|Kay|Hauser|Graham|Huang|Inbar|Alter|VanLange|Bauer|Miyamoto|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood,13,Global,all,TRUE +5324,-0.2272801779891,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,5,6,7,6,5,2,1,1,3,2,1,1,2,2,1,1,2,1,3,1,2,2,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Rottenstrich|Hauser|VanLange|Ross.Slate1|Inbar|Alter|Miyamoto|Critcher|Kay|Anderson|Graham|Huang,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +5325,-0.123151030707765,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,5,7,6,6,4,3,4,4,3,2,2,3,1,2,2,1,2,1,2,1,1,1,2,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Bauer|Miyamoto|Huang|Anderson|Alter|Inbar|Rottenstrich|Hauser|Kay|Critcher|Ross.Slate1|VanLange,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,5,Global,all,TRUE +5326,1.00776777265264,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,6,5,5,5,5,2,2,2,4,3,1,1,2,2,2,1,2,1,3,1,1,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Alter|VanLange|Anderson|Kay|Miyamoto|Bauer|Critcher|Inbar|Hauser|Rottenstrich|Ross.Slate1|Huang,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,4,Global,all,TRUE +5328,-1.38193419348728,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,3,5,5,5,4,3,1,1,3,2,1,1,1,3,1,1,3,1,4,1,2,3,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Kay|Graham|Anderson|Miyamoto|Ross.Slate1|Bauer|Inbar|VanLange|Huang|Hauser|Alter|Critcher,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,4,Global,all,TRUE +5330,-0.143318514201172,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,6,6,6,6,5,4,1,1,4,4,1,1,4,4,1,1,5,1,5,1,1,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|VanLange|Miyamoto|Hauser|Anderson|Huang|Bauer|Alter|Critcher|Ross.Slate1|Rottenstrich|Inbar|Kay,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five,5,Global,all,TRUE +5332,-1.14981188288484,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,3,4,3,5,3,2,3,2,4,3,3,1,3,2,3,1,4,3,2,2,2,2,3,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Bauer|Anderson|Ross.Slate1|Inbar|Miyamoto|Huang|Graham|Critcher|Alter|VanLange|Hauser|Kay,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood,3,Global,all,TRUE +5333,0.157603752020094,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,6,6,6,5,5,4,2,1,1,3,2,2,3,4,2,2,4,1,4,1,1,3,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Hauser|VanLange|Kay|Miyamoto|Rottenstrich|Bauer|Graham|Huang|Critcher|Inbar|Alter|Ross.Slate1,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,1,Global,all,TRUE +5334,0.0600561325273941,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,5,4,6,6,6,1,3,2,1,2,1,2,1,2,1,1,3,1,4,1,1,1,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Kay|Huang|Rottenstrich|VanLange|Hauser|Graham|Miyamoto|Bauer|Inbar|Ross.Slate1|Alter|Anderson,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +5336,-0.836902255390401,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,5,5,5,5,2,2,2,1,3,4,2,1,3,3,3,1,3,1,3,1,1,3,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Alter|Anderson|VanLange|Bauer|Graham|Miyamoto|Inbar|Ross.Slate1|Kay|Critcher|Hauser|Rottenstrich,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,3,Global,all,TRUE +5337,0.312739308371678,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,3,3,4,3,2,3,2,2,2,1,1,1,1,1,1,1,3,1,3,1,1,3,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Inbar|Huang|Graham|Kay|Hauser|Ross.Slate1|Bauer|VanLange|Anderson|Rottenstrich|Alter|Miyamoto,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing,10,Global,all,TRUE +5339,0.0506958650618565,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,5,7,6,6,6,4,1,1,3,2,1,1,2,4,2,1,3,1,4,1,2,2,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Rottenstrich|Hauser|Kay|Bauer|Inbar|Ross.Slate1|Critcher|VanLange|Alter|Miyamoto|Huang|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,1,Global,all,TRUE +5340,-0.64881144432114,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,6,7,6,5,7,2,1,1,1,2,1,1,2,2,1,1,1,1,1,1,1,2,1,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Miyamoto|Anderson|Critcher|Alter|Huang|Graham|Ross.Slate1|Inbar|Kay|VanLange|Rottenstrich|Hauser,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,3,Global,all,TRUE +5342,-0.0635825386524807,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,4,5,5,5,4,3,3,3,4,3,1,1,2,3,3,1,4,1,4,1,2,1,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Graham|Huang|Rottenstrich|Miyamoto|Alter|VanLange|Hauser|Anderson|Bauer|Critcher|Kay|Ross.Slate1,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,9,Global,all,TRUE +5343,0.645031881333255,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,7,7,6,7,6,3,2,3,3,3,2,2,4,2,1,2,4,1,2,2,2,3,3,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Anderson|Inbar|Bauer|Kay|Critcher|Hauser|Huang|VanLange|Miyamoto|Alter|Graham|Rottenstrich,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +5344,0.42161410407208,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,4,7,7,5,7,4,1,1,2,4,1,2,4,4,1,2,5,1,4,1,1,5,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Inbar|Critcher|VanLange|Graham|Hauser|Ross.Slate1|Huang|Miyamoto|Anderson|Bauer|Kay|Rottenstrich,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +5345,-0.125789545499033,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,6,7,6,7,7,4,2,1,4,1,1,2,1,2,1,1,4,1,5,2,1,3,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Anderson|Ross.Slate1|Bauer|Miyamoto|VanLange|Hauser|Kay|Rottenstrich|Alter|Graham|Inbar|Critcher,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +5346,-1.10592283370789,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,3,3,3,3,3,2,3,4,3,2,4,4,2,3,2,3,3,5,2,2,3,2,2,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Miyamoto|Graham|Hauser|Inbar|Bauer|Ross.Slate1|Kay|VanLange|Anderson|Alter|Rottenstrich|Critcher,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,10,Global,all,TRUE +5347,0.661902890440527,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,3,2,3,4,6,2,4,4,2,4,2,1,2,4,4,4,4,3,3,5,3,3,2,5,3,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Hauser|Miyamoto|Graham|Kay|Critcher|Alter|VanLange|Rottenstrich|Inbar|Bauer|Ross.Slate1|Huang,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,1,Global,all,TRUE +5348,-0.672671009419715,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,2,2,3,6,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Ross.Slate1|Rottenstrich|VanLange|Graham|Inbar|Miyamoto|Huang|Anderson|Critcher|Alter|Bauer|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,9,Global,all,TRUE +5349,-0.149649110597608,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,4,3,4,4,3,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Hauser|VanLange|Miyamoto|Huang|Critcher|Bauer|Inbar|Rottenstrich|Anderson|Kay|Alter|Graham,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,10,Global,all,TRUE +5350,1.2794268657614,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,6,6,6,5,5,2,1,1,1,2,1,1,2,3,1,1,3,1,2,1,1,2,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Kay|Alter|Rottenstrich|Critcher|Graham|Anderson|VanLange|Hauser|Inbar|Bauer|Ross.Slate1|Miyamoto,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +5352,0.150879773875226,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,5,5,2,5,6,3,1,2,3,5,1,1,4,4,2,1,4,1,3,2,1,5,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|VanLange|Miyamoto|Huang|Anderson|Graham|Rottenstrich|Hauser|Critcher|Kay|Alter|Inbar|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,5,Global,all,TRUE +5353,-1.88148768348865,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,5,5,6,7,4,3,1,1,3,2,1,1,2,2,2,1,2,1,4,1,1,3,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Critcher|Alter|Graham|Bauer|Anderson|VanLange|Inbar|Miyamoto|Ross.Slate1|Huang|Kay|Rottenstrich,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,6,Global,all,TRUE +5354,0.29929357755254,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,2,3,2,1,5,2,3,4,4,1,1,3,2,3,4,3,3,3,4,3,3,3,3,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Bauer|Inbar|Rottenstrich|VanLange|Ross.Slate1|Huang|Critcher|Alter|Kay|Miyamoto|Anderson|Graham,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood,12,Global,all,TRUE +5355,0.9861533405969,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,5,6,6,3,5,4,3,3,2,3,1,2,3,3,4,2,5,1,4,1,1,4,4,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Huang|Anderson|VanLange|Critcher|Kay|Hauser|Inbar|Miyamoto|Alter|Ross.Slate1|Graham|Rottenstrich,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +5357,0.297048444509705,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,5,6,5,5,5,4,3,4,3,4,1,2,3,2,3,1,4,3,3,1,2,3,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Critcher|Kay|Ross.Slate1|Bauer|VanLange|Inbar|Alter|Anderson|Rottenstrich|Miyamoto|Huang|Hauser,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five,9,Global,all,TRUE +5360,0.620638709600611,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,1,2,3,5,4,2,1,2,4,1,1,1,1,1,2,1,1,1,5,1,2,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Bauer|VanLange|Kay|Anderson|Rottenstrich|Huang|Graham|Inbar|Miyamoto|Hauser|Ross.Slate1|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,5,Global,all,TRUE +5363,0.277018960431333,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,5,6,6,6,6,2,1,1,3,1,1,1,1,1,2,1,2,1,3,1,1,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Bauer|VanLange|Graham|Critcher|Inbar|Huang|Alter|Kay|Miyamoto|Ross.Slate1|Rottenstrich|Anderson,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,13,Global,all,TRUE +5364,0.629214439039883,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,4,5,5,5,4,4,1,3,3,5,1,3,4,4,2,3,4,3,3,2,1,4,5,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Critcher|VanLange|Miyamoto|Inbar|Anderson|Ross.Slate1|Alter|Hauser|Kay|Rottenstrich|Bauer|Huang,ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,6,Global,all,TRUE +5366,-0.278691389791418,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,5,5,5,6,5,2,1,3,3,3,1,1,3,3,2,1,4,1,3,1,1,4,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|VanLange|Kay|Rottenstrich|Bauer|Huang|Critcher|Hauser|Alter|Graham|Inbar|Anderson|Ross.Slate1,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,12,Global,all,TRUE +5367,-1.23733904984653,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,7,5,7,7,7,3,3,5,3,1,1,1,2,5,1,1,5,1,3,1,1,1,1,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Alter|Anderson|Hauser|Rottenstrich|Critcher|Ross.Slate1|Bauer|Graham|VanLange|Inbar|Kay|Huang,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five,3,Global,all,TRUE +5368,0.210715069247543,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,7,7,7,7,7,4,1,3,4,5,1,1,4,4,1,2,5,1,4,1,4,5,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Ross.Slate1|Rottenstrich|Inbar|Anderson|Graham|Kay|Alter|Miyamoto|Hauser|Huang|Critcher|Bauer,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,5,Global,all,TRUE +5372,0.279390671905567,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,6,6,6,6,6,4,1,1,4,1,1,1,1,3,1,1,4,1,4,1,1,2,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Critcher|VanLange|Huang|Kay|Graham|Miyamoto|Anderson|Ross.Slate1|Hauser|Bauer|Rottenstrich|Alter,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +5373,-0.550617286217208,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,6,7,7,7,6,4,2,1,3,3,1,1,4,4,1,1,5,1,4,1,1,4,4,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Inbar|Huang|Kay|Anderson|Miyamoto|Alter|Critcher|Ross.Slate1|Hauser|Bauer|Graham|Rottenstrich,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,5,Global,all,TRUE +5377,0.385233571066269,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,6,6,5,4,3,4,1,1,2,4,1,1,3,3,3,1,1,1,3,1,3,3,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Bauer|Ross.Slate1|Critcher|Rottenstrich|Huang|Inbar|VanLange|Anderson|Alter|Kay|Hauser|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,9,Global,all,TRUE +5379,1.27138474295619,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,6,2,5,2,2,3,4,4,4,2,1,2,2,3,1,1,5,1,3,3,1,3,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Huang|Kay|VanLange|Inbar|Graham|Critcher|Rottenstrich|Hauser|Alter|Anderson|Ross.Slate1|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,11,Global,all,TRUE +5380,0.374552933469797,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,2,4,3,2,1,2,3,4,3,3,1,2,1,2,4,1,2,1,4,2,1,2,3,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Ross.Slate1|Graham|Rottenstrich|Bauer|Alter|Miyamoto|Kay|Critcher|Huang|Anderson|Hauser|VanLange,ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,11,Global,all,TRUE +5382,0.518361313613679,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,4,6,2,6,2,2,1,1,3,1,1,1,2,3,2,1,3,1,3,1,1,2,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Miyamoto|Bauer|VanLange|Kay|Critcher|Rottenstrich|Anderson|Graham|Alter|Huang|Ross.Slate1|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,8,Global,all,TRUE +5384,0.650702292664224,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,7,7,6,6,7,2,4,3,2,3,2,2,1,2,2,4,1,2,2,1,1,2,1,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Kay|Huang|Bauer|Critcher|Alter|Graham|Miyamoto|Ross.Slate1|Hauser|Inbar|VanLange|Anderson,ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +5385,0.310887557077276,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,6,6,7,7,6,4,2,1,2,2,1,1,1,2,1,1,2,1,4,1,1,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Graham|Critcher|Alter|Anderson|Miyamoto|Ross.Slate1|Inbar|VanLange|Kay|Hauser|Rottenstrich|Bauer,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,5,Global,all,TRUE +5386,0.343449430046521,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,4,6,4,5,5,2,2,2,3,3,2,1,2,1,2,1,2,2,2,1,1,3,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Miyamoto|Hauser|Inbar|Bauer|Critcher|Rottenstrich|Alter|Graham|Kay|VanLange|Anderson|Huang,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +5387,0.313399493437145,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,6,7,6,7,3,2,1,1,1,1,1,1,2,3,1,1,2,1,2,1,1,2,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Graham|Miyamoto|Rottenstrich|Kay|Critcher|Bauer|Ross.Slate1|VanLange|Anderson|Huang|Inbar|Alter,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,10,Global,all,TRUE +5388,0.249860695476023,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,2,2,2,4,2,2,2,4,2,2,2,2,2,2,1,2,2,3,1,2,2,2,2,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Inbar|Rottenstrich|Huang|Miyamoto|VanLange|Critcher|Kay|Alter|Bauer|Ross.Slate1|Anderson|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,12,Global,all,TRUE +5390,-0.0970577535499908,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,3,5,6,7,2,2,1,4,2,3,4,4,2,2,3,1,3,4,1,2,1,1,1,1,4,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Inbar|Hauser|Graham|Bauer|Miyamoto|Anderson|Ross.Slate1|Kay|Critcher|VanLange|Rottenstrich|Alter,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,7,Global,all,TRUE +5391,-0.23492891904587,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,5,6,6,4,3,5,2,4,3,3,1,1,3,5,1,1,4,1,5,1,1,4,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Kay|Anderson|Graham|Critcher|Hauser|Inbar|Miyamoto|Bauer|Alter|Ross.Slate1|Rottenstrich|Huang,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,3,Global,all,TRUE +5392,-0.362259671830913,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,6,5,5,1,1,4,2,3,2,4,2,2,4,4,2,3,4,2,3,2,2,3,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Rottenstrich|Miyamoto|Bauer|VanLange|Hauser|Graham|Alter|Anderson|Critcher|Inbar|Kay|Huang,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five,9,Global,all,TRUE +5393,-0.541648175029504,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,4,5,5,5,6,4,1,1,2,5,1,1,4,4,1,1,5,1,4,1,3,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Rottenstrich|Bauer|Kay|Inbar|Ross.Slate1|Huang|Anderson|Hauser|Graham|Miyamoto|Alter|VanLange,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,8,Global,all,TRUE +5394,-0.484046591716385,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,2,3,3,2,5,3,2,4,4,2,2,4,2,2,4,3,2,4,2,3,4,3,2,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Rottenstrich|Critcher|Graham|Bauer|Huang|VanLange|Miyamoto|Anderson|Hauser|Alter|Ross.Slate1|Kay,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing,9,Global,all,TRUE +5395,-0.337219961487038,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,6,3,6,5,5,2,2,3,2,2,1,1,3,2,4,1,4,4,2,3,2,4,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Miyamoto|Ross.Slate1|Rottenstrich|Graham|VanLange|Bauer|Anderson|Hauser|Critcher|Kay|Inbar|Alter,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE,8,Global,all,TRUE +5396,0.568314155870028,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,3,5,4,5,3,2,2,4,2,1,1,1,1,1,1,1,2,1,3,1,1,1,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Hauser|Critcher|Anderson|Miyamoto|Kay|Alter|Ross.Slate1|VanLange|Rottenstrich|Bauer|Graham|Inbar,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +5399,-0.121310700396999,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,5,6,7,5,5,3,1,1,1,2,1,1,3,4,1,1,3,1,3,1,1,1,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Rottenstrich|Bauer|Graham|Critcher|Ross.Slate1|Inbar|VanLange|Huang|Alter|Kay|Anderson|Hauser,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,12,Global,all,TRUE +5401,0.706058742934508,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,4,5,5,4,5,3,2,3,3,3,2,2,2,4,1,2,2,5,2,2,3,3,3,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Anderson|Ross.Slate1|Critcher|Inbar|Rottenstrich|Hauser|Graham|Kay|VanLange|Bauer|Alter|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,2,Global,all,TRUE +5402,0.892171224277969,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,3,4,4,3,2,4,1,1,4,3,3,1,3,3,3,2,3,1,4,1,2,2,3,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Bauer|Ross.Slate1|Critcher|Huang|Anderson|Miyamoto|VanLange|Kay|Rottenstrich|Inbar|Alter|Graham,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +5404,0.237086570705988,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,7,6,7,6,6,5,2,4,5,5,1,2,4,4,2,2,5,1,4,1,3,4,5,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|VanLange|Miyamoto|Anderson|Kay|Alter|Ross.Slate1|Huang|Hauser|Inbar|Critcher|Graham|Bauer,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +5407,0.329877120795984,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,6,6,3,5,2,1,1,3,1,1,3,2,2,1,1,3,2,2,2,1,2,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Hauser|Miyamoto|Graham|Inbar|Rottenstrich|Alter|Critcher|Anderson|Bauer|Ross.Slate1|Huang|Kay,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE,9,Global,all,TRUE +5408,-0.076888044585984,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,6,6,6,6,6,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Alter|Critcher|Miyamoto|Bauer|Ross.Slate1|Rottenstrich|Huang|Kay|Anderson|Hauser|VanLange|Inbar,ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,10,Global,all,TRUE +5409,0.598237514048005,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,5,6,6,5,5,3,3,1,2,2,1,1,2,3,1,1,2,1,2,1,1,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Inbar|Kay|Huang|VanLange|Ross.Slate1|Alter|Anderson|Bauer|Graham|Hauser|Miyamoto|Rottenstrich,ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +5410,-0.218718095004065,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,4,5,4,4,2,1,1,1,1,1,1,1,1,4,1,1,4,1,1,1,1,4,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Ross.Slate1|Huang|Alter|Kay|Anderson|Critcher|Rottenstrich|Inbar|VanLange|Bauer|Hauser|Graham,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,6,Global,all,TRUE +5412,-0.0684525400323478,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,1,7,7,7,7,4,5,5,5,4,5,5,3,5,5,5,4,4,4,5,5,5,4,5,4,,,,,,,,,,,,,,,,,,,,,,,,,,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Inbar|Alter|Miyamoto|Hauser|Rottenstrich|Graham|Critcher|VanLange|Ross.Slate1|Huang|Kay|Anderson,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,13,Global,all,TRUE +5419,-0.714581728870861,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,4,4,5,7,2,5,3,3,3,1,1,3,2,1,4,1,3,1,3,1,2,1,2,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Alter|Critcher|Miyamoto|Bauer|Kay|VanLange|Hauser|Rottenstrich|Anderson|Inbar|Huang|Ross.Slate1,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +5421,-0.364631383305146,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,6,6,5,6,3,2,3,1,2,2,3,4,3,3,4,1,1,1,1,1,4,2,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Graham|Alter|Rottenstrich|Critcher|Huang|Bauer|VanLange|Miyamoto|Kay|Ross.Slate1|Hauser|Anderson,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +5423,-0.33773992166687,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,2,5,4,4,1,3,3,3,3,2,1,4,1,3,3,1,4,1,3,1,3,2,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Graham|Ross.Slate1|Anderson|Rottenstrich|Bauer|Kay|VanLange|Miyamoto|Alter|Inbar|Critcher|Hauser,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +5428,-0.730665974481267,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,5,6,6,7,4,4,1,3,2,4,2,1,4,4,5,1,3,1,4,1,2,4,4,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Ross.Slate1|Graham|Rottenstrich|Inbar|Kay|Huang|Hauser|Bauer|Anderson|Alter|VanLange|Miyamoto,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,10,Global,all,TRUE +5429,-0.121043897079965,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,3,6,6,4,2,3,1,1,3,4,1,1,3,3,1,1,3,1,4,1,4,3,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Kay|VanLange|Inbar|Critcher|Huang|Rottenstrich|Hauser|Bauer|Graham|Miyamoto|Anderson|Ross.Slate1,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +5430,-0.340111633141105,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,5,5,4,4,2,5,1,1,5,4,1,2,3,2,2,1,5,1,4,1,1,1,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Kay|Anderson|Miyamoto|Hauser|Bauer|Inbar|Graham|VanLange|Rottenstrich|Ross.Slate1|Huang|Alter,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,3,Global,all,TRUE +5433,1.35350607643336,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,6,5,6,5,6,3,1,1,3,2,1,1,3,3,1,1,3,1,4,1,3,3,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Miyamoto|Rottenstrich|Inbar|Huang|Bauer|Critcher|Kay|Hauser|Graham|Alter|VanLange|Anderson,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,13,Global,all,TRUE +5435,-0.592656809570353,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,5,5,5,7,7,5,2,1,3,4,1,1,2,3,2,1,4,1,4,1,2,3,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Bauer|VanLange|Miyamoto|Alter|Critcher|Anderson|Graham|Ross.Slate1|Kay|Inbar|Huang|Hauser,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,7,Global,all,TRUE +5436,-0.771258549272079,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,6,6,7,5,6,3,1,1,3,2,1,1,1,3,1,1,1,1,3,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Huang|Bauer|Kay|Ross.Slate1|Hauser|Graham|VanLange|Rottenstrich|Miyamoto|Critcher|Anderson|Inbar,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,12,Global,all,TRUE +5438,-0.738174490652402,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,5,7,6,6,7,3,1,1,4,4,1,1,3,5,1,1,5,1,3,1,2,4,5,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Hauser|VanLange|Bauer|Huang|Rottenstrich|Anderson|Ross.Slate1|Kay|Critcher|Miyamoto|Alter|Graham,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,7,Global,all,TRUE +5439,-0.290158790884755,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,4,5,5,6,4,4,1,3,4,4,3,1,4,1,4,1,5,4,4,1,4,4,4,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Hauser|Inbar|Anderson|Critcher|Ross.Slate1|Alter|Miyamoto|Rottenstrich|Bauer|Graham|Huang|VanLange,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +5441,-0.128821442038733,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,7,7,7,7,7,3,2,1,1,2,1,1,1,1,1,1,2,1,3,1,1,1,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Bauer|Anderson|Inbar|VanLange|Huang|Miyamoto|Critcher|Graham|Ross.Slate1|Rottenstrich|Kay|Alter,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,3,Global,all,TRUE +5442,1.73641167671675,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,6,6,6,6,6,2,1,3,3,3,1,1,1,1,1,1,3,1,3,1,2,3,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Inbar|Kay|Miyamoto|Bauer|Rottenstrich|Alter|Anderson|Hauser|Huang|VanLange|Graham|Critcher,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,8,Global,all,TRUE +5444,0.880310441436199,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,7,7,5,6,5,1,2,4,3,1,1,2,3,2,2,1,2,1,1,2,1,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Bauer|Graham|Alter|VanLange|Anderson|Inbar|Kay|Ross.Slate1|Critcher|Miyamoto|Hauser|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,6,Global,all,TRUE +5445,-0.190112881486422,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,6,7,7,7,6,1,1,5,1,2,1,1,2,3,5,1,5,5,2,1,3,4,1,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Inbar|Graham|VanLange|Huang|Critcher|Bauer|Miyamoto|Ross.Slate1|Alter|Anderson|Kay|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,11,Global,all,TRUE +5448,0.288739518387468,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,6,5,6,5,4,2,2,3,3,3,2,2,4,4,1,2,3,1,4,1,1,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|VanLange|Critcher|Bauer|Rottenstrich|Anderson|Hauser|Miyamoto|Ross.Slate1|Graham|Huang|Inbar|Kay,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,6,Global,all,TRUE +5449,-0.717880428727596,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,5,5,6,6,6,3,2,2,5,3,1,1,1,3,2,1,2,1,4,1,2,3,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Bauer|Anderson|Kay|Critcher|Graham|Ross.Slate1|Inbar|VanLange|Huang|Rottenstrich|Miyamoto|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,3,Global,all,TRUE +5452,0.122276785828182,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,6,6,6,5,7,3,2,1,3,2,2,2,3,4,1,1,3,1,2,1,3,2,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Rottenstrich|Hauser|Miyamoto|Critcher|Huang|Ross.Slate1|Bauer|Anderson|Alter|VanLange|Graham|Inbar,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing,9,Global,all,TRUE +5454,0.227586078354815,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,7,5,6,6,6,4,1,1,3,3,1,1,4,3,2,1,4,2,3,1,1,3,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Rottenstrich|Kay|Inbar|Critcher|Alter|Anderson|Miyamoto|Ross.Slate1|Hauser|Graham|Bauer|VanLange,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,7,Global,all,TRUE +5455,0.0687584403980641,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,6,7,6,5,5,2,1,1,4,2,1,1,2,4,1,1,4,1,4,1,1,3,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Critcher|Miyamoto|Alter|Inbar|VanLange|Anderson|Huang|Ross.Slate1|Kay|Graham|Rottenstrich|Hauser,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,7,Global,all,TRUE +5456,-0.0242966875383667,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,5,4,6,6,5,2,1,1,4,3,1,1,1,3,1,1,3,1,4,1,1,3,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Hauser|Anderson|Miyamoto|Graham|Ross.Slate1|Kay|Inbar|Rottenstrich|Huang|Alter|Critcher|Bauer,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,3,Global,all,TRUE +5457,-0.334188064947337,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,5,6,6,6,3,3,2,2,5,3,1,1,4,4,2,1,4,2,5,2,2,4,5,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Rottenstrich|Bauer|Anderson|Alter|Ross.Slate1|Miyamoto|Kay|Hauser|Inbar|Critcher|Huang|Graham,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,4,Global,all,TRUE +5459,-0.641429506581403,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,3,4,3,4,6,4,1,1,4,1,1,1,3,1,1,1,3,1,4,1,1,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Alter|Kay|Hauser|Critcher|VanLange|Huang|Bauer|Ross.Slate1|Rottenstrich|Miyamoto|Inbar|Graham,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,1,Global,all,TRUE +5461,-0.472452612191649,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,2,3,3,2,2,3,1,1,3,1,1,1,1,1,1,1,2,1,4,1,1,1,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|VanLange|Inbar|Huang|Hauser|Anderson|Ross.Slate1|Bauer|Kay|Alter|Rottenstrich|Critcher|Graham,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,6,Global,all,TRUE +5462,-0.248641453182042,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,4,6,6,6,5,5,2,1,3,3,1,1,5,4,1,1,5,1,5,1,1,4,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Ross.Slate1|Graham|Huang|Rottenstrich|Kay|Miyamoto|Anderson|Inbar|Critcher|Hauser|VanLange|Alter,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,8,Global,all,TRUE +5467,0.557113558093725,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,5,5,6,1,3,5,1,1,4,1,1,2,1,5,1,1,5,1,1,1,2,3,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Kay|Ross.Slate1|Anderson|Bauer|Huang|Inbar|Critcher|Rottenstrich|Alter|VanLange|Graham|Miyamoto,ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,4,Global,all,TRUE +5469,0.356234975800193,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,5,5,5,6,6,3,2,2,3,3,2,2,3,3,3,2,4,1,3,1,4,3,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Huang|Graham|Critcher|Bauer|Hauser|Kay|Rottenstrich|Inbar|Ross.Slate1|Miyamoto|Anderson|Alter,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +5470,0.096436665533206,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,5,6,4,5,1,3,3,5,3,4,2,3,3,4,2,3,3,1,3,1,5,2,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Ross.Slate1|Miyamoto|VanLange|Critcher|Hauser|Huang|Inbar|Graham|Kay|Alter|Bauer|Anderson,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,13,Global,all,TRUE +5471,-0.946168207368637,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,3,4,5,4,4,4,3,3,3,2,3,2,2,4,2,3,3,2,3,2,2,4,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|VanLange|Bauer|Ross.Slate1|Miyamoto|Critcher|Kay|Anderson|Rottenstrich|Alter|Graham|Huang|Hauser,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,8,Global,all,TRUE +5472,0.767085604535761,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,5,5,6,5,3,4,1,1,5,4,1,2,4,5,2,1,5,2,4,2,2,4,5,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Anderson|Bauer|Miyamoto|Ross.Slate1|Alter|Inbar|VanLange|Huang|Graham|Rottenstrich|Hauser|Critcher,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,2,Global,all,TRUE +5479,0.665061365411627,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,5,6,6,6,1,4,2,1,4,3,1,1,5,4,1,1,5,1,4,1,1,4,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Bauer|Anderson|Alter|Rottenstrich|Miyamoto|Hauser|Kay|Graham|VanLange|Critcher|Huang|Ross.Slate1,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,3,Global,all,TRUE +5482,1.0941011479148,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,5,2,5,2,6,3,2,1,3,1,1,1,1,2,2,1,2,1,3,1,1,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Hauser|Anderson|Ross.Slate1|Alter|Miyamoto|Kay|Rottenstrich|Inbar|Graham|Critcher|Huang|VanLange,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing,3,Global,all,TRUE +5483,0.415410086107044,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,2,6,5,2,2,3,2,3,3,3,1,2,1,3,1,1,3,1,3,1,2,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Ross.Slate1|Inbar|VanLange|Alter|Anderson|Huang|Graham|Miyamoto|Bauer|Rottenstrich|Kay|Critcher,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing,6,Global,all,TRUE +5484,-0.586337634157554,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,4,4,6,6,3,3,1,1,4,3,1,1,2,2,2,1,3,1,3,1,2,3,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Anderson|Hauser|Miyamoto|Rottenstrich|Bauer|Kay|VanLange|Ross.Slate1|Huang|Inbar|Critcher|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,2,Global,all,TRUE +5485,0.16919773154483,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,5,4,5,5,3,2,1,1,1,1,1,1,1,1,1,1,3,1,2,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Hauser|Critcher|Ross.Slate1|Miyamoto|Huang|Graham|Rottenstrich|Inbar|Anderson|Bauer|Alter|Kay,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing,10,Global,all,TRUE +5486,0.752979688651157,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,7,7,7,7,6,1,3,5,5,1,1,3,2,4,5,3,2,3,1,1,4,1,1,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Kay|Hauser|Alter|Inbar|Graham|Ross.Slate1|Huang|Miyamoto|VanLange|Critcher|Anderson|Bauer,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,12,Global,all,TRUE +5489,0.191598927097436,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,7,7,7,6,5,1,1,1,3,1,1,1,2,2,1,1,2,1,3,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Critcher|Huang|Hauser|Kay|Ross.Slate1|Inbar|Rottenstrich|Bauer|Alter|Graham|VanLange|Anderson,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,13,Global,all,TRUE +5490,0.489362718347603,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,6,5,6,2,2,2,1,3,3,2,2,1,1,3,2,1,2,1,4,1,2,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Bauer|Hauser|VanLange|Critcher|Graham|Miyamoto|Inbar|Rottenstrich|Anderson|Ross.Slate1|Huang|Kay,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +5491,-0.111290247865995,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,1,3,4,4,7,4,5,5,3,1,1,5,3,5,5,1,5,4,2,2,4,3,1,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Critcher|Rottenstrich|Ross.Slate1|Kay|VanLange|Bauer|Anderson|Graham|Miyamoto|Alter|Huang|Inbar,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,8,Global,all,TRUE +5493,0.368362561958996,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,4,5,3,4,4,2,3,2,2,2,1,1,3,2,1,3,3,3,3,1,2,3,2,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Rottenstrich|Graham|Miyamoto|Alter|Hauser|Bauer|Ross.Slate1|VanLange|Kay|Critcher|Inbar|Anderson,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,13,Global,all,TRUE +5497,-0.0464447262281749,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,7,7,7,6,6,5,1,1,4,5,2,2,5,4,3,3,5,3,4,1,3,5,5,5,3,,,,,,,,,,,,,,,,,,,,,,,,,,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Huang|Bauer|Rottenstrich|Hauser|Graham|Kay|VanLange|Ross.Slate1|Inbar|Anderson|Miyamoto|Alter,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,11,Global,all,TRUE +5498,-0.0525085193075764,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,5,6,6,6,6,4,2,2,3,4,1,1,4,3,2,1,4,3,4,1,2,4,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|VanLange|Graham|Ross.Slate1|Kay|Bauer|Rottenstrich|Inbar|Huang|Miyamoto|Alter|Critcher|Anderson,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing,13,Global,all,TRUE +5501,0.473812079371265,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,6,6,6,6,3,3,1,1,3,4,1,1,2,2,1,1,3,1,2,1,2,3,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Hauser|Graham|Inbar|Rottenstrich|Ross.Slate1|Anderson|Kay|VanLange|Huang|Miyamoto|Critcher|Alter,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,7,Global,all,TRUE +5502,0.620385552737813,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,5,6,5,6,5,1,1,2,4,2,1,1,1,4,1,1,5,1,4,1,1,5,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Hauser|Critcher|Graham|Ross.Slate1|Inbar|Alter|VanLange|Miyamoto|Rottenstrich|Anderson|Kay|Huang,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection,11,Global,all,TRUE +5503,-0.589496109128653,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,6,6,6,6,2,4,1,1,2,2,1,1,4,3,2,1,4,1,4,1,2,2,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Anderson|Graham|Kay|Inbar|Miyamoto|Rottenstrich|Ross.Slate1|VanLange|Alter|Huang|Bauer|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,2,Global,all,TRUE +5504,-1.96241745073687,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,6,7,7,6,5,3,2,2,2,4,1,2,3,3,2,1,4,2,2,1,4,4,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Bauer|Kay|Graham|Rottenstrich|Alter|Hauser|Huang|Anderson|Critcher|Miyamoto|Ross.Slate1|VanLange,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,9,Global,all,TRUE +5506,0.357288542614092,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,6,6,6,7,6,3,1,1,2,2,1,1,2,3,1,1,3,1,3,1,1,2,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Ross.Slate1|Inbar|Kay|Graham|Rottenstrich|Hauser|VanLange|Critcher|Anderson|Bauer|Alter|Miyamoto,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,10,Global,all,TRUE +5510,0.33831262534962,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,7,4,6,6,7,1,3,1,2,1,1,1,1,2,2,1,4,1,3,1,1,1,5,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Bauer|VanLange|Miyamoto|Graham|Huang|Alter|Kay|Critcher|Inbar|Rottenstrich|Anderson|Hauser,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,12,Global,all,TRUE +5513,-0.198421807608659,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,3,3,3,2,2,2,2,1,2,2,1,1,1,2,1,1,3,1,2,1,1,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Rottenstrich|Miyamoto|Critcher|Ross.Slate1|Alter|VanLange|Graham|Hauser|Huang|Anderson|Inbar|Bauer,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five,11,Global,all,TRUE +5514,-0.544680071569205,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,2,5,3,2,1,3,2,1,3,2,2,2,2,2,2,1,3,1,3,1,1,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Hauser|Kay|Graham|Inbar|Bauer|Alter|VanLange|Ross.Slate1|Critcher|Miyamoto|Huang|Rottenstrich,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,1,Global,all,TRUE +5516,0.377064869829666,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,6,7,7,6,6,5,2,4,5,4,1,2,5,5,1,1,5,2,5,1,1,4,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Anderson|Huang|Alter|Graham|Miyamoto|Critcher|Hauser|Bauer|Ross.Slate1|Inbar|Kay|VanLange,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,2,Global,all,TRUE +5519,0.211108450995977,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,6,5,2,3,4,2,2,1,1,2,3,1,2,1,2,3,2,1,1,1,1,2,1,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Miyamoto|VanLange|Hauser|Ross.Slate1|Rottenstrich|Alter|Kay|Bauer|Critcher|Huang|Anderson|Graham,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing,12,Global,all,TRUE +5520,0.631319347197083,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,2,3,4,2,1,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Alter|Bauer|Anderson|Inbar|Hauser|Critcher|Huang|Graham|Ross.Slate1|Rottenstrich|Kay|VanLange,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing,4,Global,all,TRUE +5521,0.0364633707458528,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,5,6,6,6,2,3,5,5,3,4,1,3,2,3,2,1,3,2,3,3,1,2,2,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Kay|Critcher|Miyamoto|Ross.Slate1|Inbar|Rottenstrich|Alter|Anderson|Graham|Huang|Hauser|VanLange,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,9,Global,all,TRUE +5523,0.609578336709943,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,2,4,3,3,3,3,2,4,1,3,3,2,3,3,1,3,3,1,3,3,1,3,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Kay|Graham|Rottenstrich|Huang|Miyamoto|Anderson|Alter|Inbar|Bauer|VanLange|Hauser|Ross.Slate1,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,7,Global,all,TRUE +5524,-0.288307039590353,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,6,6,6,6,7,4,1,3,3,5,1,1,4,3,2,1,5,1,4,1,1,2,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Hauser|Inbar|Bauer|Kay|Huang|Critcher|Alter|Rottenstrich|VanLange|Anderson|Graham|Ross.Slate1,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,11,Global,all,TRUE +5526,0.277145538862732,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,5,5,6,6,6,3,2,1,3,1,2,1,3,4,1,2,4,1,4,1,3,2,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Huang|Kay|Bauer|Alter|Hauser|Anderson|Critcher|Rottenstrich|Ross.Slate1|VanLange|Inbar|Graham,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,7,Global,all,TRUE +5527,-0.195912096719389,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,7,7,7,7,6,4,2,1,2,4,1,1,3,4,1,1,5,1,4,1,1,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Bauer|Alter|Rottenstrich|Ross.Slate1|Graham|Critcher|Huang|Miyamoto|VanLange|Inbar|Anderson|Kay,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,12,Global,all,TRUE +5529,0.523104736562147,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,5,4,5,5,5,3,1,2,1,3,1,2,1,1,4,1,4,1,3,1,1,2,3,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Critcher|Bauer|Hauser|Rottenstrich|Ross.Slate1|Huang|Inbar|Anderson|Alter|Graham|VanLange|Miyamoto,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,9,Global,all,TRUE +5530,-0.0808469295081858,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,5,6,6,5,4,4,1,1,4,3,1,1,3,4,1,1,4,1,4,1,1,3,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Graham|Hauser|Rottenstrich|Ross.Slate1|Bauer|Alter|Inbar|Critcher|VanLange|Huang|Kay|Anderson,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,13,Global,all,TRUE +5531,-0.675829484390815,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,5,4,6,4,3,3,3,3,3,3,3,1,4,3,3,1,3,3,3,1,3,4,3,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Inbar|VanLange|Hauser|Graham|Critcher|Miyamoto|Kay|Rottenstrich|Huang|Ross.Slate1|Bauer|Alter,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,1,Global,all,TRUE +5533,0.0102435151566798,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,6,6,6,7,5,3,1,1,3,3,1,1,2,4,1,1,3,1,2,1,4,2,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Kay|Inbar|Graham|Rottenstrich|Ross.Slate1|Huang|VanLange|Miyamoto|Bauer|Anderson|Hauser|Critcher,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +5536,0.509659005743009,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,5,5,6,6,6,2,1,2,1,1,1,1,3,2,1,1,2,1,2,1,2,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Hauser|Inbar|Alter|Ross.Slate1|Critcher|Graham|Miyamoto|Kay|Rottenstrich|Anderson|Huang|Bauer,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,11,Global,all,TRUE +5538,1.62015494327661,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,4,5,5,5,4,4,1,1,4,1,1,1,1,3,3,1,3,1,4,1,3,3,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Alter|Miyamoto|VanLange|Rottenstrich|Kay|Huang|Ross.Slate1|Bauer|Inbar|Hauser|Critcher|Anderson,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five,13,Global,all,TRUE +5543,0.0808860265568677,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,6,7,7,7,5,2,1,1,3,3,1,1,1,3,2,1,4,1,3,1,2,3,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Hauser|VanLange|Ross.Slate1|Alter|Rottenstrich|Miyamoto|Kay|Anderson|Bauer|Graham|Inbar|Critcher,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +5544,-1.39695122582955,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,6,7,6,6,3,4,2,1,3,2,1,1,3,2,2,1,2,1,3,1,2,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Inbar|Rottenstrich|Kay|Alter|VanLange|Critcher|Anderson|Huang|Hauser|Graham|Miyamoto|Bauer,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing,8,Global,all,TRUE +5545,0.697356435063838,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,2,6,2,2,2,4,1,1,3,1,1,1,1,4,1,1,3,1,4,1,2,2,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Huang|Alter|Kay|Graham|Bauer|Ross.Slate1|Rottenstrich|Critcher|VanLange|Inbar|Hauser|Anderson,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,13,Global,all,TRUE +5546,-0.578028708035316,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,6,7,7,6,5,5,1,3,4,4,1,2,4,4,1,1,5,1,3,1,1,4,4,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Anderson|Rottenstrich|Hauser|Miyamoto|Huang|Inbar|Graham|Bauer|Alter|Kay|Critcher|Ross.Slate1,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,2,Global,all,TRUE +5547,-0.285148564619253,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,6,6,6,5,4,5,1,4,3,4,2,2,4,3,4,1,3,2,4,1,3,5,3,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Anderson|Miyamoto|Huang|Bauer|Ross.Slate1|Inbar|Kay|Graham|Alter|Hauser|Rottenstrich|VanLange,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,2,Global,all,TRUE +5549,0.758776678413524,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,5,5,6,6,2,3,4,3,2,4,1,2,3,1,2,1,4,3,4,2,1,2,3,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Bauer|Graham|Anderson|Rottenstrich|Inbar|Ross.Slate1|VanLange|Kay|Critcher|Huang|Miyamoto|Alter,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,4,Global,all,TRUE +5550,-1.17181969668901,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,7,7,7,7,7,3,3,4,3,4,3,4,3,4,3,1,4,3,4,3,1,3,4,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Kay|Anderson|Critcher|Bauer|Graham|Alter|VanLange|Ross.Slate1|Miyamoto|Inbar|Huang|Hauser,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +5552,0.296781641192671,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,3,5,5,6,3,2,4,2,3,3,3,2,2,4,5,2,4,1,2,1,2,3,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Critcher|Kay|Ross.Slate1|Miyamoto|Alter|VanLange|Rottenstrich|Graham|Huang|Anderson|Bauer|Hauser,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,11,Global,all,TRUE +5555,0.90495677003164,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,3,3,3,4,3,2,2,5,2,1,3,2,1,1,2,3,2,3,2,2,2,1,1,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Rottenstrich|Kay|Ross.Slate1|Miyamoto|Alter|Inbar|Huang|Anderson|Hauser|Bauer|Graham|Critcher,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +5556,0.343182626729487,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,5,6,6,6,2,4,2,2,3,4,2,2,4,4,2,2,4,2,4,2,2,4,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Alter|Inbar|VanLange|Ross.Slate1|Anderson|Bauer|Huang|Critcher|Miyamoto|Rottenstrich|Graham|Kay,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +5557,-0.360674723853544,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,5,6,6,5,7,4,1,1,3,1,1,1,1,1,1,1,3,1,2,1,1,2,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Kay|Miyamoto|Alter|Critcher|Huang|Bauer|Anderson|Ross.Slate1|Rottenstrich|Graham|VanLange|Hauser,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood,8,Global,all,TRUE +5560,0.105925736900742,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,6,7,6,7,6,2,1,2,2,1,1,1,2,1,1,1,2,1,2,1,1,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Rottenstrich|Anderson|Alter|Inbar|Huang|Miyamoto|Kay|VanLange|Ross.Slate1|Graham|Hauser|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,3,Global,all,TRUE +5561,1.02214049185428,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,6,6,6,2,6,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|VanLange|Inbar|Hauser|Kay|Ross.Slate1|Miyamoto|Graham|Critcher|Rottenstrich|Bauer|Anderson|Huang,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE,12,Global,all,TRUE +5563,-0.867738955496643,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,6,6,6,6,6,3,2,1,3,4,1,1,3,3,1,1,4,1,3,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Alter|Anderson|Kay|Ross.Slate1|Bauer|Rottenstrich|Graham|Huang|Critcher|Miyamoto|Hauser|VanLange,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,3,Global,all,TRUE +5564,0.282689371762302,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,3,5,3,5,2,4,1,2,3,2,2,4,1,2,4,2,2,2,3,1,2,2,3,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Alter|Bauer|Huang|Rottenstrich|VanLange|Critcher|Anderson|Hauser|Graham|Ross.Slate1|Kay|Miyamoto,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood,8,Global,all,TRUE +5565,-1.1292487921724,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,5,5,6,5,2,4,1,1,4,3,1,1,4,4,1,1,5,1,4,1,2,4,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|VanLange|Rottenstrich|Inbar|Bauer|Huang|Critcher|Miyamoto|Ross.Slate1|Graham|Kay|Hauser|Anderson,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,13,Global,all,TRUE +5568,0.349639801557322,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,7,7,7,7,7,4,3,3,3,5,3,2,4,4,2,1,4,2,3,1,3,5,5,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Alter|VanLange|Rottenstrich|Ross.Slate1|Kay|Graham|Anderson|Bauer|Hauser|Inbar|Miyamoto|Critcher,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing,8,Global,all,TRUE +5569,0.10856425169201,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,7,7,7,7,5,1,2,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Miyamoto|Critcher|Bauer|Alter|Huang|Rottenstrich|Kay|Ross.Slate1|Inbar|Graham|Anderson|VanLange,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE,12,Global,all,TRUE +5570,-0.21015601201903,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,4,6,7,7,2,3,2,1,3,3,1,2,2,3,2,1,4,1,3,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Miyamoto|Ross.Slate1|Kay|Alter|Rottenstrich|Anderson|Hauser|VanLange|Bauer|Critcher|Huang|Graham,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +5571,0.897181450543471,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,5,6,6,7,2,3,2,2,3,1,1,1,3,2,1,1,3,1,3,1,1,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|VanLange|Ross.Slate1|Graham|Kay|Bauer|Critcher|Anderson|Inbar|Miyamoto|Rottenstrich|Huang|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,8,Global,all,TRUE +5573,-1.18276713760252,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,6,6,6,6,5,3,1,1,4,1,1,1,2,2,1,1,2,1,4,1,2,1,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|VanLange|Graham|Critcher|Rottenstrich|Bauer|Miyamoto|Hauser|Kay|Anderson|Inbar|Huang|Alter,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +5574,-0.807510278375893,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,5,6,5,6,6,3,2,3,3,3,1,3,4,3,3,2,4,2,3,1,2,2,3,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Graham|Rottenstrich|Ross.Slate1|Bauer|Anderson|Alter|VanLange|Huang|Critcher|Inbar|Kay|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,6,Global,all,TRUE +5575,0.426750908768982,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,5,6,5,6,6,4,1,1,3,1,1,1,1,1,1,1,3,1,4,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Bauer|Hauser|Critcher|Huang|Ross.Slate1|VanLange|Graham|Miyamoto|Anderson|Rottenstrich|Inbar|Kay,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,10,Global,all,TRUE +5580,0.61234342993261,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,5,5,6,5,2,2,3,5,3,4,1,1,2,3,3,1,4,1,3,2,3,4,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|VanLange|Rottenstrich|Critcher|Graham|Anderson|Miyamoto|Huang|Kay|Hauser|Inbar|Alter|Ross.Slate1,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,6,Global,all,TRUE +5581,-0.156893048922309,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,6,5,6,6,6,3,3,5,3,4,2,2,5,2,4,2,5,5,5,2,1,5,5,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Anderson|Graham|Bauer|Kay|Hauser|Ross.Slate1|Miyamoto|VanLange|Alter|Inbar|Critcher|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,2,Global,all,TRUE +5585,0.338439203781019,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,2,7,6,7,2,3,4,3,4,2,4,3,1,2,4,5,5,4,4,4,4,1,4,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Critcher|Alter|Ross.Slate1|Inbar|Anderson|Kay|Bauer|Graham|Huang|Miyamoto|Hauser|Rottenstrich,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,6,Global,all,TRUE +5590,-0.157677586948575,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,4,6,6,4,3,3,1,1,1,1,1,1,1,2,1,1,2,1,3,1,1,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Miyamoto|Graham|Kay|Huang|Inbar|Bauer|Rottenstrich|Hauser|Anderson|Critcher|Alter|VanLange,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing,10,Global,all,TRUE +5591,-0.190112881486422,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,5,7,6,5,6,3,1,1,4,1,1,1,1,1,1,2,1,1,3,1,2,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Ross.Slate1|Anderson|Miyamoto|Huang|VanLange|Hauser|Inbar|Bauer|Alter|Critcher|Rottenstrich|Kay,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,3,Global,all,TRUE +5593,0.737162246357784,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,7,6,5,6,4,2,4,4,2,4,5,3,2,5,5,5,4,5,1,5,3,2,4,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|VanLange|Anderson|Rottenstrich|Alter|Inbar|Ross.Slate1|Miyamoto|Graham|Huang|Critcher|Bauer|Kay,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,3,Global,all,TRUE +5594,-0.120917318648566,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,6,5,6,5,6,3,1,2,4,2,1,1,3,3,2,1,4,1,4,1,1,2,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Kay|Hauser|Ross.Slate1|VanLange|Anderson|Miyamoto|Huang|Critcher|Alter|Rottenstrich|Bauer|Inbar,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,6,Global,all,TRUE +5596,-0.916118270759261,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,5,7,6,5,6,3,2,1,3,4,1,1,4,2,1,2,3,1,4,1,1,3,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Hauser|VanLange|Critcher|Alter|Miyamoto|Graham|Anderson|Kay|Rottenstrich|Ross.Slate1|Bauer|Huang,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,8,Global,all,TRUE +5597,-0.370428373067514,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,6,7,6,6,7,5,1,2,5,5,4,2,5,5,3,1,4,3,4,1,1,5,5,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Anderson|Critcher|Hauser|Graham|Inbar|Bauer|VanLange|Miyamoto|Huang|Kay|Ross.Slate1|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,2,Global,all,TRUE +5598,0.972440806460728,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,6,6,5,5,6,1,1,2,2,1,2,3,1,3,1,2,1,1,3,1,1,1,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Bauer|Alter|Critcher|VanLange|Anderson|Miyamoto|Kay|Graham|Inbar|Ross.Slate1|Huang|Hauser,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,6,Global,all,TRUE +5600,-0.260235432706778,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,7,7,6,7,6,3,1,2,3,4,1,1,1,2,1,1,2,1,3,1,1,3,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Bauer|Inbar|Anderson|Ross.Slate1|Kay|Rottenstrich|Miyamoto|Critcher|Alter|Graham|Hauser|VanLange,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,4,Global,all,TRUE +5602,-0.610983962752995,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,3,6,5,6,7,3,1,2,2,2,1,2,2,2,2,2,4,2,3,1,1,2,2,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Kay|Anderson|Graham|Hauser|Miyamoto|Rottenstrich|Alter|Huang|Inbar|VanLange|Critcher|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,3,Global,all,TRUE +5603,0.139274373366853,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,6,6,6,7,3,1,1,2,4,1,1,2,2,1,2,1,3,1,2,1,2,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Ross.Slate1|Alter|Miyamoto|Critcher|Inbar|Rottenstrich|Bauer|VanLange|Kay|Anderson|Hauser|Huang,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +5604,0.133603962035884,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,5,5,5,4,5,1,2,3,2,1,1,1,4,3,1,1,3,1,2,1,1,1,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Kay|Miyamoto|Anderson|Inbar|Hauser|Alter|Rottenstrich|Graham|VanLange|Huang|Bauer|Critcher,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,4,Global,all,TRUE +5605,-0.119205792239799,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,6,6,6,5,6,2,5,5,2,2,1,3,1,3,1,1,1,1,2,1,1,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Miyamoto|Huang|Critcher|Alter|Hauser|VanLange|Kay|Ross.Slate1|Bauer|Anderson|Rottenstrich|Inbar,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,11,Global,all,TRUE +5606,0.656625860857991,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,6,6,7,6,6,3,1,1,3,4,1,1,4,3,1,1,3,1,4,1,2,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|VanLange|Rottenstrich|Miyamoto|Ross.Slate1|Huang|Alter|Hauser|Bauer|Graham|Kay|Inbar|Anderson,ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +5607,0.321174812925314,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,2,3,5,2,2,2,3,1,3,3,1,1,2,2,2,2,3,1,3,2,1,3,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Rottenstrich|Bauer|Inbar|Critcher|Alter|Hauser|Huang|VanLange|Graham|Ross.Slate1|Anderson|Kay,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,12,Global,all,TRUE +5608,-0.0274688089637026,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,5,6,5,6,7,4,1,3,5,4,1,4,1,5,1,1,5,2,4,1,1,5,4,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Miyamoto|Graham|VanLange|Ross.Slate1|Inbar|Critcher|Bauer|Rottenstrich|Huang|Hauser|Anderson|Kay,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE,12,Global,all,TRUE +5609,-0.250481783492808,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,3,6,5,2,3,2,1,3,2,2,1,1,4,3,2,1,2,1,2,1,1,2,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Hauser|Critcher|Graham|Rottenstrich|Miyamoto|Alter|Bauer|VanLange|Ross.Slate1|Inbar|Kay|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,13,Global,all,TRUE +5613,-1.26237653471981,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,3,4,6,5,2,1,1,1,1,1,1,1,2,3,1,1,3,1,2,1,1,2,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Ross.Slate1|Rottenstrich|Inbar|Bauer|Huang|Hauser|Anderson|Critcher|Kay|VanLange|Graham|Alter,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE,8,Global,all,TRUE +5616,-0.441211109353337,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,5,6,6,6,6,1,3,2,1,1,1,3,2,2,1,1,1,1,1,1,2,1,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Huang|Hauser|Rottenstrich|Inbar|Graham|Miyamoto|Kay|VanLange|Alter|Ross.Slate1|Critcher|Anderson,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,13,Global,all,TRUE +5617,-0.625876642134466,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,4,6,6,3,5,4,1,1,4,1,1,1,3,2,1,1,3,1,1,1,1,1,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Kay|Hauser|Critcher|VanLange|Anderson|Inbar|Bauer|Ross.Slate1|Graham|Rottenstrich|Alter|Huang,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,6,Global,all,TRUE +5618,0.554475043302457,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,6,7,7,7,6,3,1,1,2,4,1,2,3,4,3,1,3,1,3,1,3,2,1,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Huang|Bauer|Anderson|Miyamoto|Critcher|Hauser|Inbar|Ross.Slate1|Graham|Alter|Rottenstrich|VanLange,ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +5620,-0.0581789306385459,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,7,7,7,7,6,2,1,1,4,3,1,2,2,3,1,1,3,1,4,1,1,2,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|VanLange|Bauer|Ross.Slate1|Graham|Rottenstrich|Kay|Huang|Critcher|Anderson|Hauser|Inbar|Miyamoto,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing,10,Global,all,TRUE +5621,1.01659665895471,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,5,5,6,6,3,3,3,4,3,2,1,2,3,2,5,1,4,3,4,1,2,3,3,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Critcher|Alter|Miyamoto|Hauser|Rottenstrich|Inbar|Graham|Ross.Slate1|VanLange|Anderson|Bauer|Kay,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,11,Global,all,TRUE +5624,0.667179920023063,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,5,4,5,5,3,2,1,1,2,1,1,1,1,2,1,1,1,1,3,1,1,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Huang|VanLange|Hauser|Rottenstrich|Anderson|Inbar|Graham|Miyamoto|Alter|Bauer|Ross.Slate1|Kay,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +5628,0.758650099982125,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,6,5,6,6,1,3,1,1,4,1,1,1,3,3,1,1,2,1,2,1,1,2,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Miyamoto|Alter|Inbar|Graham|Huang|Critcher|Kay|Hauser|Anderson|VanLange|Bauer|Rottenstrich,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,10,Global,all,TRUE +5629,-1.2360186797156,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,2,4,2,3,5,4,1,1,3,1,2,1,1,3,1,1,4,1,3,1,1,3,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Critcher|Ross.Slate1|Rottenstrich|Huang|Alter|VanLange|Graham|Anderson|Bauer|Hauser|Miyamoto|Kay,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,9,Global,all,TRUE +5630,-0.890811757098353,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,5,6,6,6,5,3,3,5,4,2,1,1,3,4,1,1,5,1,4,1,2,2,1,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Rottenstrich|Alter|Graham|Kay|VanLange|Huang|Critcher|Ross.Slate1|Hauser|Miyamoto|Anderson|Inbar,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,12,Global,all,TRUE +5631,0.429782805308683,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,7,7,5,7,5,4,2,4,4,4,1,2,3,2,4,1,5,4,3,2,5,4,3,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|VanLange|Kay|Anderson|Miyamoto|Rottenstrich|Critcher|Hauser|Ross.Slate1|Alter|Graham|Inbar|Bauer,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,4,Global,all,TRUE +5633,-1.07587067162791,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,5,7,5,7,3,3,1,1,4,1,1,1,1,1,1,1,3,1,3,1,1,1,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Hauser|Alter|Inbar|Graham|Miyamoto|Kay|VanLange|Bauer|Huang|Anderson|Critcher|Rottenstrich,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,11,Global,all,TRUE +5642,-0.151360637006376,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,6,6,6,6,5,3,2,2,2,5,2,4,4,3,5,2,5,4,4,1,5,5,4,4,5,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|VanLange|Anderson|Bauer|Hauser|Graham|Alter|Miyamoto|Kay|Critcher|Ross.Slate1|Huang|Rottenstrich,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,3,Global,all,TRUE +5645,-0.196570056314257,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,7,7,7,7,7,1,1,1,2,1,1,1,2,5,1,1,3,1,3,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Miyamoto|Kay|Anderson|Huang|Bauer|Hauser|Rottenstrich|Graham|Critcher|VanLange|Ross.Slate1|Alter,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,4,Global,all,TRUE +5649,-1.00284502776986,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,5,5,5,6,6,3,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Critcher|Anderson|Miyamoto|Huang|Alter|Ross.Slate1|Graham|Rottenstrich|Inbar|Hauser|VanLange|Bauer,ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,3,Global,all,TRUE +5653,-0.307029799992027,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,2,6,2,7,5,2,1,1,4,3,1,1,2,3,1,1,4,1,3,1,2,3,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Alter|Bauer|Miyamoto|Ross.Slate1|Critcher|Huang|Kay|VanLange|Rottenstrich|Hauser|Inbar|Anderson,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,13,Global,all,TRUE +5654,0.297720050558809,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,5,5,5,6,5,2,3,3,3,1,1,2,1,1,1,1,2,1,2,2,4,1,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Huang|Alter|Inbar|Anderson|VanLange|Rottenstrich|Bauer|Graham|Kay|Hauser|Miyamoto|Ross.Slate1,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,5,Global,all,TRUE +5655,-0.426711811720299,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,1,3,2,3,1,3,3,1,1,2,1,1,1,3,1,1,1,1,4,1,1,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Rottenstrich|Critcher|VanLange|Inbar|Hauser|Alter|Miyamoto|Ross.Slate1|Anderson|Graham|Kay|Huang,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood,10,Global,all,TRUE +5657,0.292962981156104,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,4,5,5,3,4,4,1,2,2,4,1,1,2,2,1,1,3,1,3,1,1,2,2,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Alter|Inbar|Critcher|VanLange|Hauser|Huang|Kay|Miyamoto|Rottenstrich|Ross.Slate1|Graham|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,13,Global,all,TRUE +5658,-0.0635825386524807,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,6,7,7,6,7,4,1,2,5,3,1,1,3,4,1,1,5,1,4,1,1,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Rottenstrich|Anderson|Bauer|Ross.Slate1|Graham|Huang|Inbar|VanLange|Miyamoto|Kay|Hauser|Alter,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,3,Global,all,TRUE +5659,-0.704167894591424,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,3,5,5,4,6,3,1,1,2,3,1,1,4,2,1,1,4,1,2,1,1,3,3,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Ross.Slate1|Rottenstrich|Huang|Critcher|VanLange|Kay|Anderson|Hauser|Bauer|Inbar|Alter|Miyamoto,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,8,Global,all,TRUE +5663,0.207022987642376,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,5,7,7,7,5,2,1,3,4,4,1,1,2,4,4,1,5,1,5,1,2,2,1,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Kay|Critcher|Alter|Ross.Slate1|Graham|Rottenstrich|Huang|Miyamoto|Bauer|Anderson|Hauser|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,11,Global,all,TRUE +5664,-0.672010824354248,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,5,5,4,4,3,2,1,1,2,1,1,1,1,1,1,1,2,1,2,1,2,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Kay|Ross.Slate1|Miyamoto|Critcher|Rottenstrich|Alter|Hauser|Graham|VanLange|Inbar|Bauer|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,13,Global,all,TRUE +5665,-0.102067979815493,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,4,5,5,5,4,3,1,1,2,1,1,1,1,2,1,1,1,1,2,1,1,1,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Critcher|Miyamoto|Alter|Graham|Huang|Kay|Hauser|Rottenstrich|Ross.Slate1|Anderson|Inbar|VanLange,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,11,Global,all,TRUE +5666,-0.186689828668887,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,5,5,6,6,3,1,4,1,1,3,1,1,1,3,1,1,4,1,2,1,1,1,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Rottenstrich|Kay|Bauer|Huang|Alter|Anderson|Miyamoto|Hauser|Critcher|Graham|VanLange|Ross.Slate1,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,7,Global,all,TRUE +5670,1.00011903159587,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,3,4,4,2,1,3,4,5,3,2,4,4,2,2,5,5,2,4,3,2,1,1,2,1,4,,,,,,,,,,,,,,,,,,,,,,,,,,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Miyamoto|VanLange|Huang|Ross.Slate1|Bauer|Critcher|Anderson|Alter|Kay|Graham|Hauser|Inbar,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,8,Global,all,TRUE +5671,-0.249161413361874,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,6,6,6,6,6,5,1,1,4,2,1,1,4,4,1,1,4,1,5,1,1,4,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Alter|Bauer|Hauser|Graham|Miyamoto|Ross.Slate1|VanLange|Kay|Huang|Anderson|Rottenstrich|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,11,Global,all,TRUE +5672,0.994588845150536,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,3,4,5,3,5,2,1,1,4,2,1,1,1,1,1,1,4,1,4,1,1,2,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Inbar|VanLange|Hauser|Rottenstrich|Alter|Huang|Anderson|Critcher|Miyamoto|Graham|Bauer|Kay,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +5673,0.388265467605969,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,7,7,6,7,3,5,1,1,3,3,1,2,1,2,2,2,3,1,4,1,4,3,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Ross.Slate1|Anderson|Bauer|Hauser|Kay|Miyamoto|Alter|Graham|Inbar|Critcher|Rottenstrich|VanLange,ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +5674,0.249214156864792,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,6,6,7,7,7,2,1,1,4,1,1,1,1,1,1,1,2,1,4,1,1,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Miyamoto|Alter|Kay|Graham|Huang|Critcher|Ross.Slate1|Rottenstrich|Bauer|VanLange|Hauser|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,13,Global,all,TRUE +5676,0.0779807084485658,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,6,6,6,6,6,2,2,5,2,2,1,3,1,2,5,1,4,2,2,1,1,2,2,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Huang|Ross.Slate1|Inbar|Miyamoto|Graham|Hauser|Critcher|Anderson|Kay|Alter|VanLange|Bauer,ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,9,Global,all,TRUE +5677,-0.0352441284518718,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,5,5,7,6,6,4,2,2,4,4,2,2,3,4,4,2,5,3,4,2,2,4,4,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Huang|Inbar|Kay|Critcher|Miyamoto|Ross.Slate1|Bauer|Rottenstrich|Hauser|Alter|Graham|VanLange,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,1,Global,all,TRUE +5678,-0.247843268701539,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,6,5,6,6,5,1,1,1,2,1,1,1,1,1,1,1,2,1,2,1,1,1,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Anderson|VanLange|Alter|Ross.Slate1|Huang|Hauser|Inbar|Graham|Critcher|Miyamoto|Rottenstrich|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,2,Global,all,TRUE +5679,-0.771258549272079,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,6,7,3,2,2,2,2,4,2,2,3,4,1,2,4,2,2,3,1,1,4,3,4,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Inbar|Rottenstrich|Huang|Miyamoto|Hauser|Critcher|VanLange|Ross.Slate1|Anderson|Kay|Alter|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,10,Global,all,TRUE +5682,0.365724047167728,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,5,5,6,6,5,2,1,1,1,1,1,2,1,1,2,1,1,2,1,1,1,1,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|VanLange|Ross.Slate1|Critcher|Alter|Anderson|Miyamoto|Bauer|Kay|Huang|Rottenstrich|Graham|Inbar,ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,6,Global,all,TRUE +5683,0.539975745669419,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,4,6,4,3,4,2,1,1,2,1,1,3,3,3,1,1,2,1,2,1,1,3,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Kay|Ross.Slate1|Anderson|Inbar|Graham|Rottenstrich|Critcher|Bauer|Alter|VanLange|Hauser|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,4,Global,all,TRUE +5684,0.897574832291904,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,6,6,7,7,6,3,2,4,4,2,1,2,3,4,4,1,4,4,3,2,2,3,3,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Huang|Rottenstrich|Ross.Slate1|Bauer|Anderson|Critcher|Alter|Graham|Inbar|VanLange|Miyamoto|Hauser,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +5686,-0.418669688915097,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,5,6,6,7,5,3,3,3,2,2,1,3,3,3,4,1,4,4,3,1,2,2,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Kay|Miyamoto|Rottenstrich|Ross.Slate1|Alter|Huang|Critcher|Graham|Hauser|Bauer|VanLange|Inbar,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +5687,0.19951447147124,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,6,6,6,6,6,2,3,1,2,1,1,1,1,2,1,1,1,1,3,1,5,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|VanLange|Alter|Critcher|Graham|Hauser|Inbar|Kay|Ross.Slate1|Huang|Anderson|Rottenstrich|Bauer,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,11,Global,all,TRUE +5690,-0.107078206080995,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,5,6,4,5,3,4,2,2,3,4,2,1,3,3,3,3,5,1,4,1,2,4,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Critcher|Huang|Kay|Anderson|VanLange|Inbar|Hauser|Rottenstrich|Miyamoto|Alter|Ross.Slate1|Bauer,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five,5,Global,all,TRUE +5692,-0.309668314783295,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,5,5,5,5,5,4,1,3,3,4,1,1,1,2,4,1,2,3,4,1,3,3,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Miyamoto|Hauser|Huang|Alter|Kay|Rottenstrich|Graham|Inbar|Critcher|VanLange|Bauer|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five,1,Global,all,TRUE +5694,0.908255469888375,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,7,7,7,7,5,4,1,1,4,4,1,1,4,4,1,1,4,1,4,1,1,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Anderson|Bauer|Graham|Huang|VanLange|Ross.Slate1|Critcher|Hauser|Alter|Kay|Inbar|Miyamoto,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,2,Global,all,TRUE +5695,0.165772453256696,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,4,5,6,6,2,3,1,1,3,1,1,1,1,2,1,1,3,1,3,2,1,1,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Bauer|Alter|Anderson|Huang|Graham|Kay|Inbar|Ross.Slate1|Hauser|Rottenstrich|Critcher|VanLange,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,4,Global,all,TRUE +5697,-0.246002938390774,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,6,6,6,6,6,1,1,1,1,1,1,1,3,5,1,5,1,5,4,1,5,5,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Bauer|Kay|Alter|Miyamoto|Critcher|Graham|Rottenstrich|VanLange|Ross.Slate1|Huang|Inbar|Hauser,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,1,Global,all,TRUE +5700,0.817431828540543,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,6,6,6,7,5,3,2,1,3,1,1,1,1,2,1,1,2,1,3,2,3,2,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Critcher|Graham|Kay|Miyamoto|VanLange|Hauser|Anderson|Bauer|Alter|Huang|Ross.Slate1|Rottenstrich,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,8,Global,all,TRUE +5703,-0.322582664438964,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,5,5,6,5,7,2,1,1,2,1,1,1,1,2,1,1,2,1,2,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|VanLange|Alter|Huang|Kay|Hauser|Graham|Inbar|Critcher|Miyamoto|Bauer|Anderson|Ross.Slate1,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,12,Global,all,TRUE +5713,0.171442864587666,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,7,7,7,7,4,3,1,1,4,3,1,1,1,3,1,1,4,1,3,1,1,2,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Rottenstrich|Inbar|Miyamoto|Hauser|Anderson|Ross.Slate1|Critcher|Alter|Kay|Huang|Bauer|VanLange,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +5714,0.288219558207636,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,5,6,5,6,1,3,2,3,1,4,1,1,3,3,1,1,4,1,3,1,5,3,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Huang|Hauser|Bauer|Alter|Anderson|Ross.Slate1|VanLange|Kay|Rottenstrich|Graham|Inbar|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,6,Global,all,TRUE +5715,-1.06941572227068,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,2,7,6,7,2,5,2,3,2,4,2,3,4,3,3,3,2,3,5,1,2,5,4,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Inbar|Ross.Slate1|Huang|Anderson|Graham|Miyamoto|Bauer|Critcher|Kay|Hauser|Rottenstrich|Alter,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,5,Global,all,TRUE +5716,-0.552722194374409,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,5,5,5,5,3,2,3,4,4,2,3,2,2,3,2,1,3,1,4,1,1,2,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Rottenstrich|Graham|Hauser|Inbar|Ross.Slate1|Critcher|Miyamoto|Huang|Alter|Kay|VanLange|Anderson,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +5717,0.247095602253356,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,7,7,6,7,7,3,3,3,5,5,2,3,3,4,2,1,4,1,1,3,5,4,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Rottenstrich|Anderson|Huang|Hauser|Kay|VanLange|Graham|Inbar|Bauer|Ross.Slate1|Miyamoto|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,3,Global,all,TRUE +5719,-0.490377188112821,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,5,5,5,3,3,2,3,3,2,1,3,1,2,2,2,4,4,2,2,2,2,2,1,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Inbar|Critcher|Anderson|Hauser|Kay|Bauer|Graham|VanLange|Ross.Slate1|Rottenstrich|Huang|Miyamoto,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,4,Global,all,TRUE +5720,0.288092979776237,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,5,6,6,3,3,3,5,4,1,1,2,1,2,3,1,1,2,1,1,2,3,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|VanLange|Critcher|Graham|Miyamoto|Anderson|Ross.Slate1|Kay|Inbar|Rottenstrich|Alter|Bauer|Huang,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,6,Global,all,TRUE +5721,0.747842883954255,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,5,6,6,6,6,1,2,3,2,2,1,1,1,2,1,1,2,1,1,1,1,2,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Bauer|Graham|Critcher|Alter|Anderson|Ross.Slate1|Kay|VanLange|Huang|Inbar|Rottenstrich|Miyamoto,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +5724,0.152200144006159,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,6,5,6,6,6,1,1,2,2,3,1,1,3,3,2,1,3,1,3,2,2,2,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Alter|Kay|Graham|Huang|Bauer|Miyamoto|Inbar|Hauser|VanLange|Critcher|Ross.Slate1|Anderson,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +5725,-0.878026211344682,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,7,7,7,7,5,5,1,1,5,3,1,1,4,5,1,2,4,1,3,1,1,3,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Inbar|Bauer|Ross.Slate1|VanLange|Kay|Hauser|Graham|Rottenstrich|Huang|Miyamoto|Critcher|Anderson,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,13,Global,all,TRUE +5726,-0.127247915045002,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,2,2,2,2,3,1,1,2,4,1,1,1,2,1,3,1,1,1,3,1,1,1,2,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Kay|VanLange|Ross.Slate1|Huang|Critcher|Bauer|Hauser|Graham|Miyamoto|Rottenstrich|Alter|Inbar,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +5728,0.0828643562826691,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,5,3,6,5,5,5,2,2,2,2,2,1,4,3,3,1,4,1,4,1,1,4,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Ross.Slate1|Rottenstrich|Miyamoto|Inbar|Huang|Alter|Hauser|Graham|Kay|Critcher|Bauer|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,1,Global,all,TRUE +5729,0.581759886689166,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,5,6,4,2,3,5,1,2,3,4,1,2,1,1,1,1,3,1,5,1,1,3,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Hauser|Kay|Huang|Miyamoto|Anderson|Critcher|Alter|VanLange|Graham|Rottenstrich|Ross.Slate1|Inbar,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood,6,Global,all,TRUE +5730,-0.365418146802012,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,4,6,6,4,6,3,1,1,3,1,1,1,1,1,1,1,1,1,4,1,1,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Rottenstrich|Ross.Slate1|Miyamoto|Huang|Hauser|Anderson|Alter|Critcher|Graham|Kay|VanLange|Inbar,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +5731,0.0886613460450373,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,2,5,3,6,1,3,3,3,4,2,4,4,1,3,2,4,3,4,4,1,2,3,3,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Miyamoto|Critcher|Anderson|Ross.Slate1|Huang|VanLange|Bauer|Alter|Inbar|Rottenstrich|Hauser|Kay,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing,4,Global,all,TRUE +5733,0.31774953463718,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,5,6,6,6,5,3,1,1,3,4,1,1,4,2,1,1,4,1,3,1,4,4,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Critcher|Anderson|Kay|VanLange|Ross.Slate1|Rottenstrich|Bauer|Huang|Hauser|Graham|Inbar|Alter,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,3,Global,all,TRUE +5738,0.184354988772736,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,5,6,6,6,6,3,2,1,3,3,1,1,3,3,2,2,3,1,3,1,2,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Kay|Critcher|Miyamoto|Alter|Anderson|Ross.Slate1|VanLange|Inbar|Hauser|Bauer|Huang|Rottenstrich,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,6,Global,all,TRUE +5739,0.238266715951287,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,6,6,6,6,6,2,2,1,3,1,1,2,1,3,1,1,2,1,3,1,1,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Miyamoto|VanLange|Alter|Ross.Slate1|Graham|Rottenstrich|Inbar|Hauser|Bauer|Huang|Critcher|Anderson,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,13,Global,all,TRUE +5741,-1.19726643523555,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,6,6,6,7,7,3,2,4,3,4,1,3,4,3,3,4,3,4,3,1,2,3,1,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Critcher|Huang|Hauser|Alter|Kay|Bauer|Ross.Slate1|Rottenstrich|Miyamoto|VanLange|Anderson|Inbar,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,12,Global,all,TRUE +5742,-0.0737317950854834,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,4,5,5,3,4,2,3,1,2,1,1,3,2,2,2,1,1,1,2,1,3,2,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Huang|Graham|Bauer|Inbar|Rottenstrich|Kay|Anderson|VanLange|Hauser|Alter|Miyamoto|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood,8,Global,all,TRUE +5745,0.604161082241773,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,6,6,6,6,5,4,3,3,3,2,1,2,2,2,1,1,3,1,5,1,1,2,2,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Alter|Miyamoto|Inbar|Rottenstrich|Critcher|Huang|Hauser|Kay|Anderson|VanLange|Ross.Slate1|Bauer,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,10,Global,all,TRUE +5746,-1.79080426702645,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,6,7,6,5,5,3,2,2,2,4,1,2,1,3,2,1,3,1,2,2,1,1,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Miyamoto|Ross.Slate1|Inbar|Graham|Kay|Alter|Bauer|Rottenstrich|Hauser|Critcher|Anderson|Huang,ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,12,Global,all,TRUE +5747,1.53421494976288,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,3,4,6,5,5,3,2,3,2,4,1,1,4,4,1,1,3,1,3,1,1,4,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Graham|Kay|Alter|Anderson|Huang|Rottenstrich|VanLange|Critcher|Ross.Slate1|Hauser|Miyamoto|Bauer,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +5749,0.438218309862318,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,3,6,4,4,3,3,1,2,2,4,1,2,4,3,3,2,3,1,2,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Bauer|Graham|Kay|Anderson|Alter|Miyamoto|Critcher|Rottenstrich|Ross.Slate1|Huang|Hauser|VanLange,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,5,Global,all,TRUE +5751,0.168537546479363,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,5,6,6,6,6,3,2,1,1,1,1,1,1,3,1,1,3,1,3,1,1,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|VanLange|Inbar|Hauser|Huang|Critcher|Bauer|Graham|Kay|Miyamoto|Alter|Ross.Slate1|Anderson,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,13,Global,all,TRUE +5752,0.590068812811404,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,5,5,6,6,2,2,1,1,2,2,1,1,3,2,1,1,3,2,2,1,2,3,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|VanLange|Rottenstrich|Ross.Slate1|Inbar|Kay|Anderson|Bauer|Graham|Critcher|Hauser|Alter|Miyamoto,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,7,Global,all,TRUE +5756,-2.04493216596247,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,5,7,7,6,5,5,2,1,4,5,1,1,3,4,2,2,3,2,4,1,1,5,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Graham|Anderson|Inbar|Hauser|Miyamoto|Alter|Critcher|Rottenstrich|Bauer|Ross.Slate1|Kay|Huang,ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,3,Global,all,TRUE +5757,-0.450964758567308,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,3,2,6,5,2,4,1,2,1,3,1,2,2,2,4,1,2,4,2,1,1,3,4,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Kay|VanLange|Anderson|Rottenstrich|Alter|Critcher|Hauser|Bauer|Graham|Miyamoto|Huang|Ross.Slate1,ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,4,Global,all,TRUE +5760,-0.217931331507199,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,5,5,5,7,7,2,2,1,2,3,1,2,1,3,1,1,2,1,2,1,1,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Alter|Kay|Anderson|Huang|Bauer|Rottenstrich|Inbar|VanLange|Miyamoto|Critcher|Graham|Ross.Slate1,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five,4,Global,all,TRUE +5761,-0.752409210439006,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,2,2,6,3,6,3,1,2,2,1,1,1,2,3,1,1,3,1,3,1,3,1,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Huang|Inbar|Alter|Bauer|Kay|Rottenstrich|Anderson|Hauser|Ross.Slate1|Critcher|VanLange|Miyamoto,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing,8,Global,all,TRUE +5763,-0.0469783328622427,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,6,6,6,6,5,4,1,3,4,3,2,1,2,3,1,1,4,1,4,1,1,3,3,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Miyamoto|Kay|Rottenstrich|Anderson|Graham|VanLange|Critcher|Alter|Hauser|Ross.Slate1|Bauer|Huang,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,5,Global,all,TRUE +5769,-0.209495826953563,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,4,4,5,4,6,2,1,1,3,3,1,1,2,3,1,1,4,1,3,1,1,1,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Huang|Ross.Slate1|Critcher|Inbar|Graham|Anderson|Kay|Rottenstrich|Hauser|Miyamoto|Alter|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,7,Global,all,TRUE +5770,-0.943796495894403,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,4,5,4,5,5,3,1,1,2,1,1,1,1,3,1,1,2,1,3,1,1,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|VanLange|Ross.Slate1|Inbar|Critcher|Graham|Hauser|Miyamoto|Bauer|Alter|Kay|Huang|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,13,Global,all,TRUE +5774,1.37103727060609,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,6,6,6,6,3,4,3,1,1,4,1,1,4,5,1,1,3,1,3,1,1,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Graham|Critcher|Ross.Slate1|Inbar|Miyamoto|VanLange|Bauer|Anderson|Hauser|Rottenstrich|Huang|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,9,Global,all,TRUE +5776,-0.566687885373379,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,6,7,7,6,6,4,1,1,4,3,1,2,3,3,1,2,3,1,3,1,1,2,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Bauer|Huang|Anderson|Kay|Ross.Slate1|VanLange|Miyamoto|Hauser|Rottenstrich|Inbar|Critcher|Graham,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,4,Global,all,TRUE +5777,0.631979532262549,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,5,7,6,3,5,3,1,1,3,4,1,1,2,3,1,1,2,1,3,1,1,5,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Critcher|Inbar|VanLange|Miyamoto|Hauser|Graham|Ross.Slate1|Anderson|Rottenstrich|Bauer|Kay|Alter,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,9,Global,all,TRUE +5778,-0.933904847265397,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,5,5,5,5,4,4,2,2,3,3,1,1,2,3,3,1,4,2,4,1,2,3,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Miyamoto|VanLange|Ross.Slate1|Inbar|Kay|Rottenstrich|Anderson|Critcher|Bauer|Graham|Hauser|Huang,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +5779,0.573717763883963,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,6,6,6,6,6,5,1,2,1,2,1,1,1,1,1,1,3,1,3,2,3,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Graham|Ross.Slate1|Miyamoto|Kay|Alter|Critcher|Inbar|Huang|Rottenstrich|Bauer|Anderson|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five,12,Global,all,TRUE +5781,0.542740838892086,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,5,5,5,5,5,3,4,2,3,2,4,3,3,4,4,4,3,3,3,3,5,3,4,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Graham|Bauer|Miyamoto|Kay|Inbar|Rottenstrich|Alter|Hauser|VanLange|Critcher|Huang|Anderson,ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,13,Global,all,TRUE +5782,0.368095758641962,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,1,7,2,3,2,1,4,2,1,2,1,3,2,3,1,2,2,2,2,3,2,1,2,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Miyamoto|VanLange|Hauser|Kay|Huang|Anderson|Critcher|Inbar|Ross.Slate1|Graham|Alter|Bauer,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,7,Global,all,TRUE +5783,-0.52187407328453,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,5,7,6,5,6,3,2,3,1,2,1,1,2,3,2,2,4,1,2,1,1,3,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Kay|Hauser|Anderson|Inbar|Huang|Miyamoto|Critcher|Graham|Rottenstrich|Alter|Bauer|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,4,Global,all,TRUE +5784,0.0145821353730786,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,7,7,7,7,7,4,1,2,5,5,1,1,4,4,2,2,3,1,5,1,2,5,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Hauser|Graham|Alter|Huang|Ross.Slate1|Critcher|Anderson|Bauer|Inbar|Rottenstrich|VanLange|Miyamoto,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,8,Global,all,TRUE +5785,0.0417404003283888,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,5,6,6,7,4,4,1,3,4,4,1,1,3,1,4,1,3,1,4,1,3,1,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Critcher|Hauser|Miyamoto|Inbar|Graham|Ross.Slate1|Anderson|Alter|Rottenstrich|Huang|Kay|Bauer,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,8,Global,all,TRUE +5786,-1.92564353598263,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,6,5,7,5,4,3,1,3,3,4,1,1,4,2,4,3,4,2,2,1,3,3,2,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Ross.Slate1|Critcher|Rottenstrich|Graham|VanLange|Kay|Anderson|Bauer|Inbar|Hauser|Miyamoto|Alter,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,8,Global,all,TRUE +5788,0.0365899491772514,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,4,5,7,6,3,3,2,3,3,4,3,3,4,4,4,2,4,3,4,3,2,4,4,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Huang|Anderson|VanLange|Miyamoto|Graham|Rottenstrich|Alter|Bauer|Ross.Slate1|Critcher|Inbar|Hauser,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,3,Global,all,TRUE +5790,-2.06879395653164,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,7,7,7,7,7,3,1,2,2,2,3,1,4,3,2,5,4,4,4,1,1,2,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Anderson|Kay|Inbar|Bauer|Huang|Ross.Slate1|Critcher|Rottenstrich|Alter|Graham|Miyamoto|VanLange,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood,2,Global,all,TRUE +5793,-0.259715472526946,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,5,3,3,3,2,4,2,1,2,3,2,5,2,1,5,3,2,4,2,1,5,3,1,1,4,,,,,,,,,,,,,,,,,,,,,,,,,,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Anderson|VanLange|Huang|Hauser|Graham|Rottenstrich|Bauer|Kay|Miyamoto|Critcher|Ross.Slate1|Alter,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,2,Global,all,TRUE +5798,-0.182072984151818,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,6,6,5,5,6,4,3,4,4,3,4,4,4,4,4,4,4,4,4,4,4,3,5,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Inbar|Anderson|Rottenstrich|Hauser|Ross.Slate1|Kay|Bauer|Alter|Miyamoto|Critcher|Graham|VanLange,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five,3,Global,all,TRUE +5800,0.424112393977713,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,7,7,7,7,7,2,2,4,3,3,3,2,4,4,1,1,5,1,4,2,3,3,4,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Kay|Bauer|Rottenstrich|Huang|Inbar|Miyamoto|Anderson|Graham|Ross.Slate1|VanLange|Critcher|Hauser,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,8,Global,all,TRUE +5805,0.282155765128234,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,5,6,7,6,6,3,2,2,2,3,2,1,4,3,1,3,4,1,2,1,1,4,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Bauer|Ross.Slate1|Graham|Kay|Critcher|Huang|Hauser|VanLange|Miyamoto|Anderson|Inbar|Alter,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +5806,0.354256646074391,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,7,7,7,7,5,5,1,2,5,3,1,2,5,5,1,3,5,1,5,1,1,5,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Bauer|Critcher|VanLange|Hauser|Rottenstrich|Ross.Slate1|Alter|Miyamoto|Inbar|Huang|Anderson|Graham,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +5807,-0.785364465156684,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,6,5,6,6,6,3,2,1,3,3,1,1,2,3,3,1,5,2,4,1,3,3,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Inbar|Ross.Slate1|Rottenstrich|Huang|Alter|Hauser|VanLange|Graham|Bauer|Critcher|Kay|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,1,Global,all,TRUE +5809,-1.242082472795,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,5,5,5,6,2,2,3,2,3,3,1,4,3,2,3,1,2,3,3,1,1,2,3,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|VanLange|Hauser|Miyamoto|Rottenstrich|Graham|Kay|Alter|Ross.Slate1|Critcher|Huang|Anderson|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,12,Global,all,TRUE +5811,0.522711354813714,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,3,3,5,5,4,4,1,2,3,1,1,1,1,3,1,1,1,1,4,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Anderson|Bauer|Rottenstrich|Huang|Miyamoto|Critcher|VanLange|Inbar|Hauser|Ross.Slate1|Alter|Kay,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +5812,0.370074088367764,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,6,6,6,6,2,3,1,1,2,2,1,1,2,3,1,1,4,1,3,1,1,4,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Huang|Rottenstrich|Miyamoto|Inbar|Bauer|VanLange|Critcher|Kay|Hauser|Graham|Anderson,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,13,Global,all,TRUE +5813,-0.102461361563926,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,6,5,6,6,6,3,1,2,3,1,2,1,2,2,2,2,2,1,3,1,1,2,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Graham|Miyamoto|Anderson|VanLange|Kay|Inbar|Critcher|Alter|Bauer|Hauser|Rottenstrich|Ross.Slate1,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,4,Global,all,TRUE +5814,-1.14269452299154,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,7,5,7,7,7,5,2,4,1,3,2,4,5,5,3,1,5,1,4,1,1,4,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Huang|Critcher|Ross.Slate1|VanLange|Miyamoto|Inbar|Anderson|Kay|Rottenstrich|Bauer|Alter|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,8,Global,all,TRUE +5819,0.216512059009911,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,6,6,7,7,5,3,1,1,3,2,1,1,1,1,2,1,2,1,3,1,1,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Bauer|Inbar|Rottenstrich|Huang|Hauser|VanLange|Anderson|Critcher|Ross.Slate1|Alter|Miyamoto|Kay,ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood,8,Global,all,TRUE +5820,0.378776396238434,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,5,6,5,6,2,4,3,1,5,2,1,1,2,4,1,2,4,1,4,2,4,5,5,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Inbar|Anderson|Hauser|Graham|VanLange|Ross.Slate1|Kay|Miyamoto|Alter|Bauer|Huang|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,3,Global,all,TRUE +5821,-2.11175601732609,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,6,7,5,5,4,4,2,3,2,3,3,2,3,4,4,1,5,4,3,1,3,3,4,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Kay|Critcher|Anderson|Rottenstrich|VanLange|Huang|Hauser|Alter|Bauer|Miyamoto|Ross.Slate1|Inbar,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,4,Global,all,TRUE +5824,-0.719591955136363,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,6,7,7,6,6,4,1,1,4,4,1,1,4,4,4,1,5,1,4,1,3,3,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Critcher|Anderson|VanLange|Alter|Miyamoto|Rottenstrich|Inbar|Hauser|Graham|Ross.Slate1|Kay|Bauer,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,3,Global,all,TRUE +5825,-0.981623977462548,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,6,6,7,7,7,3,2,1,2,3,1,1,4,4,1,1,5,1,4,1,1,5,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Ross.Slate1|Critcher|Miyamoto|Inbar|Graham|Huang|Bauer|Rottenstrich|VanLange|Kay|Anderson|Alter,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,12,Global,all,TRUE +5827,-0.537958318894936,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,6,5,6,7,6,5,3,4,5,4,1,1,5,4,5,1,4,3,4,1,4,5,2,3,5,,,,,,,,,,,,,,,,,,,,,,,,,,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|VanLange|Kay|Alter|Inbar|Miyamoto|Graham|Critcher|Rottenstrich|Ross.Slate1|Bauer|Anderson|Huang,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,12,Global,all,TRUE +5829,0.169324309976229,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,5,5,5,6,5,4,2,1,2,3,1,1,2,1,1,1,3,1,2,1,1,3,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Alter|Huang|Critcher|Ross.Slate1|Hauser|Bauer|Kay|Miyamoto|VanLange|Graham|Inbar|Anderson,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,13,Global,all,TRUE +5831,0.214671728699146,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,2,3,3,5,1,3,2,2,1,1,2,2,1,1,1,3,1,1,2,2,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Kay|Graham|Bauer|Hauser|Alter|Rottenstrich|Huang|Critcher|Anderson|Ross.Slate1|Miyamoto|VanLange,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,10,Global,all,TRUE +5834,0.681145611022033,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,6,6,6,6,5,3,5,5,1,1,3,5,2,3,5,1,3,5,4,1,5,1,4,1,5,,,,,,,,,,,,,,,,,,,,,,,,,,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Ross.Slate1|Graham|Anderson|Miyamoto|Huang|Inbar|VanLange|Bauer|Hauser|Critcher|Rottenstrich|Kay,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,4,Global,all,TRUE +5835,0.570952670661297,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,7,7,7,6,6,3,1,3,1,1,1,3,1,2,3,1,1,1,3,1,4,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Rottenstrich|Huang|Inbar|Anderson|Alter|Graham|Critcher|Ross.Slate1|Bauer|Kay|Miyamoto|VanLange,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +5836,-1.00416317243019,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,3,2,5,6,5,5,3,1,5,4,3,2,4,2,2,3,5,1,5,2,4,5,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|VanLange|Kay|Hauser|Huang|Alter|Inbar|Ross.Slate1|Graham|Miyamoto|Critcher|Anderson|Bauer,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,12,Global,all,TRUE +5837,-0.443316017510537,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,7,7,7,6,7,4,1,1,5,3,1,1,1,5,1,1,3,1,4,1,1,1,4,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Alter|Miyamoto|Ross.Slate1|Huang|Kay|Bauer|Hauser|Anderson|Critcher|VanLange|Rottenstrich|Inbar,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,9,Global,all,TRUE +5838,0.386551715726603,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,6,6,7,6,5,4,2,1,3,1,1,1,2,1,1,1,4,1,3,1,1,3,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|VanLange|Miyamoto|Kay|Alter|Inbar|Hauser|Anderson|Huang|Critcher|Bauer|Graham|Rottenstrich,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood,8,Global,all,TRUE +5840,-0.56656130694198,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,5,6,5,2,5,2,2,4,4,1,1,4,3,2,4,1,3,5,3,4,2,2,2,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Inbar|VanLange|Rottenstrich|Graham|Critcher|Anderson|Kay|Miyamoto|Hauser|Huang|Bauer|Ross.Slate1,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,7,Global,all,TRUE +5845,0.438876269457186,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,5,5,3,6,5,4,4,3,4,3,3,4,4,4,4,3,3,2,3,3,4,2,2,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Bauer|VanLange|Rottenstrich|Ross.Slate1|Miyamoto|Alter|Hauser|Critcher|Inbar|Graham|Kay|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,1,Global,all,TRUE +5846,-0.386906000426354,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,mariantab,2,2,3,5,4,5,4,3,3,3,1,4,5,2,1,1,3,1,3,3,5,3,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,mariantab,USA,"Marian University, Indianapolis, IN",English,1,legal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Rottenstrich|Inbar|Miyamoto|Kay|VanLange|Huang|Critcher|Anderson|Bauer|Hauser|Graham|Alter,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,9,Global,all,TRUE +5849,0.254997500172924,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,6,7,7,7,6,2,1,1,4,4,1,1,4,5,1,1,5,1,4,1,1,5,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Bauer|Graham|Alter|Anderson|Inbar|Hauser|Miyamoto|Kay|VanLange|Critcher|Huang|Rottenstrich,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection,5,Global,all,TRUE +5850,0.432421320099951,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,5,3,4,4,2,2,3,1,2,1,1,1,1,2,1,1,4,1,2,1,1,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Critcher|Kay|Inbar|VanLange|Alter|Anderson|Hauser|Ross.Slate1|Bauer|Rottenstrich|Graham|Huang,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,7,Global,all,TRUE +5852,-1.67019749238627,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,6,4,6,5,2,4,4,4,3,2,1,2,3,4,3,1,5,2,5,1,3,1,3,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Rottenstrich|Huang|Inbar|Kay|Bauer|Miyamoto|Ross.Slate1|Alter|VanLange|Graham|Critcher|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,13,Global,all,TRUE +5853,-0.286202131433153,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,5,6,6,5,6,2,2,2,4,2,1,2,4,2,1,1,4,1,2,1,1,1,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|VanLange|Kay|Alter|Anderson|Graham|Ross.Slate1|Rottenstrich|Huang|Bauer|Inbar|Hauser|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,5,Global,all,TRUE +5854,0.69261301211537,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,7,7,7,7,7,3,3,2,4,2,3,3,4,3,2,1,4,2,4,1,2,3,3,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Rottenstrich|Inbar|Miyamoto|VanLange|Alter|Ross.Slate1|Bauer|Critcher|Huang|Kay|Anderson|Graham,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection,12,Global,all,TRUE +5855,-1.62985807445826,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,6,4,3,6,4,3,3,2,4,2,3,4,2,3,4,1,4,4,4,1,4,2,2,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Kay|Rottenstrich|Miyamoto|Critcher|Graham|Inbar|Huang|Hauser|Ross.Slate1|Anderson|Alter|VanLange,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,11,Global,all,TRUE +5859,-0.119725752419631,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,3,6,3,7,3,4,2,1,1,2,1,1,3,2,2,1,1,1,1,4,2,1,2,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Kay|Graham|Anderson|VanLange|Miyamoto|Ross.Slate1|Bauer|Huang|Critcher|Inbar|Hauser|Rottenstrich,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five,4,Global,all,TRUE +5864,0.113040871323444,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,4,3,6,3,6,5,1,1,5,2,1,2,1,5,1,1,5,1,3,1,1,2,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Hauser|Miyamoto|Inbar|Kay|Graham|Critcher|VanLange|Huang|Ross.Slate1|Anderson|Rottenstrich|Alter,ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,11,Global,all,TRUE +5866,0.0894481095419026,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,7,7,7,7,5,4,2,1,4,1,1,3,1,1,1,1,1,1,2,1,1,3,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Hauser|Inbar|VanLange|Alter|Critcher|Ross.Slate1|Miyamoto|Bauer|Anderson|Kay|Huang|Graham,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,10,Global,all,TRUE +5867,0.12807377559055,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,2,2,4,4,1,1,1,1,2,1,3,3,1,1,1,1,2,1,2,2,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Kay|Critcher|VanLange|Graham|Rottenstrich|Anderson|Inbar|Bauer|Alter|Miyamoto|Huang|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,7,Global,all,TRUE +5868,0.167483979665464,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,6,6,7,5,2,3,2,1,3,3,1,1,1,5,2,1,4,1,4,1,2,2,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Anderson|Kay|Graham|Huang|Inbar|Alter|Ross.Slate1|Rottenstrich|Hauser|Critcher|Bauer|VanLange,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing,2,Global,all,TRUE +5871,-0.418669688915097,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,1,5,2,4,7,1,3,1,1,1,1,3,1,1,1,1,2,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Huang|Alter|Bauer|Kay|VanLange|Anderson|Critcher|Hauser|Ross.Slate1|Rottenstrich|Graham|Miyamoto,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,7,Global,all,TRUE +5875,0.345554338203721,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,4,5,7,6,5,2,1,2,1,2,1,1,1,4,1,1,2,1,4,1,1,2,5,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Critcher|Graham|Rottenstrich|Hauser|VanLange|Ross.Slate1|Bauer|Huang|Miyamoto|Anderson|Kay|Inbar,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,11,Global,all,TRUE +5876,1.07419824226783,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,7,6,7,7,6,3,1,1,4,3,1,1,2,2,1,1,3,1,4,1,1,2,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Huang|Hauser|Inbar|Anderson|Critcher|VanLange|Rottenstrich|Ross.Slate1|Bauer|Graham|Kay|Alter,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,5,Global,all,TRUE +5881,0.123988312236949,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,3,6,6,6,5,3,3,3,4,2,1,1,3,3,4,1,4,2,3,1,1,2,4,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Alter|Graham|Huang|Miyamoto|Kay|Ross.Slate1|Inbar|Rottenstrich|Hauser|Bauer|Anderson|VanLange,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,12,Global,all,TRUE +5882,1.42903223566765,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,2,3,6,5,3,3,2,2,3,1,1,1,1,1,1,1,2,1,4,1,1,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Hauser|Ross.Slate1|Critcher|VanLange|Rottenstrich|Anderson|Kay|Bauer|Inbar|Miyamoto|Graham|Huang,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE,7,Global,all,TRUE +5883,-0.482194840421983,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,5,3,6,6,5,4,1,1,5,2,1,1,2,2,3,1,3,1,4,1,2,3,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Ross.Slate1|Huang|Inbar|Miyamoto|Rottenstrich|Anderson|Graham|Alter|Kay|Hauser|VanLange|Bauer,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,7,Global,all,TRUE +5884,0.362958953945061,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,5,6,5,3,3,4,1,1,1,1,1,1,1,1,1,1,1,1,3,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Rottenstrich|Bauer|Miyamoto|Hauser|Alter|Critcher|Inbar|Kay|VanLange|Huang|Graham|Ross.Slate1,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing,1,Global,all,TRUE +5885,0.338439203781019,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,5,6,5,5,3,2,2,1,2,1,1,2,2,1,4,2,3,1,3,1,1,1,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Graham|Huang|Miyamoto|Bauer|Anderson|Critcher|Rottenstrich|Alter|Ross.Slate1|Inbar|Hauser|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,6,Global,all,TRUE +5891,0.119764849468313,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,4,4,4,3,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Graham|Huang|Critcher|Miyamoto|Ross.Slate1|Bauer|Hauser|Kay|VanLange|Inbar|Rottenstrich|Anderson,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,13,Global,all,TRUE +5892,0.396700972159605,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,6,6,6,4,2,4,1,3,4,3,1,1,4,4,2,1,4,1,4,5,1,5,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Huang|Anderson|Bauer|Critcher|Graham|Ross.Slate1|Inbar|Rottenstrich|Alter|Kay|Hauser|VanLange,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +5893,0.0336982775231856,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,5,5,6,6,4,2,4,3,3,1,1,1,1,1,2,1,1,1,3,1,1,1,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Ross.Slate1|Hauser|Miyamoto|Huang|Rottenstrich|Alter|VanLange|Kay|Critcher|Anderson|Inbar|Bauer,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +5895,0.20267294644234,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,5,4,6,4,4,4,2,1,3,3,1,1,3,3,1,1,4,1,4,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Rottenstrich|Miyamoto|Hauser|Bauer|Ross.Slate1|Graham|VanLange|Huang|Alter|Inbar|Anderson|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,12,Global,all,TRUE +5897,0.465503153249028,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,4,5,4,5,5,4,1,2,3,1,1,1,2,3,2,1,3,1,4,1,1,4,3,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Kay|Bauer|Hauser|Huang|Miyamoto|Ross.Slate1|Graham|Rottenstrich|VanLange|Alter|Inbar|Anderson,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,13,Global,all,TRUE +5898,-0.0731981884514155,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,4,5,5,7,4,3,3,1,3,1,1,1,1,3,1,4,4,1,4,1,1,1,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Kay|Critcher|Hauser|Huang|Ross.Slate1|Anderson|Miyamoto|Bauer|Inbar|VanLange|Alter|Rottenstrich,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,7,Global,all,TRUE +5901,-0.48629172475922,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,4,5,6,5,2,4,1,2,2,4,1,1,4,3,1,1,3,2,3,1,1,1,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Miyamoto|Graham|Critcher|Rottenstrich|Anderson|Kay|Hauser|Huang|Alter|Ross.Slate1|Bauer|VanLange,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,6,Global,all,TRUE +5902,0.0637482141325621,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,5,4,6,5,3,3,1,1,1,2,1,1,2,3,1,1,3,1,3,1,1,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Kay|Rottenstrich|Bauer|Anderson|Alter|Ross.Slate1|Miyamoto|Inbar|Graham|VanLange|Critcher|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,5,Global,all,TRUE +5904,-0.493929044832354,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,5,5,5,6,7,3,2,2,1,1,1,2,2,3,1,1,2,1,4,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Bauer|VanLange|Huang|Critcher|Anderson|Alter|Rottenstrich|Miyamoto|Inbar|Kay|Ross.Slate1|Hauser,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood,6,Global,all,TRUE +5905,0.0363367923144536,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,2,5,5,4,2,2,2,1,3,1,1,1,1,4,1,1,1,1,3,1,2,1,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Graham|Huang|Critcher|Kay|Hauser|Anderson|Bauer|Inbar|Ross.Slate1|Rottenstrich|Miyamoto|Alter,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,7,Global,all,TRUE +5906,0.141252703092655,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,6,6,6,7,3,4,1,1,1,1,1,1,4,1,1,1,1,1,4,1,1,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Critcher|VanLange|Ross.Slate1|Bauer|Graham|Inbar|Huang|Miyamoto|Anderson|Hauser|Rottenstrich|Alter,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,10,Global,all,TRUE +5909,0.271882155734432,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,5,3,3,3,3,3,2,2,4,1,1,1,4,2,4,1,3,2,3,1,2,3,2,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|VanLange|Miyamoto|Inbar|Anderson|Kay|Bauer|Critcher|Graham|Rottenstrich|Huang|Alter|Hauser,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,5,Global,all,TRUE +5910,-0.641680437973602,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,3,6,3,5,2,4,4,2,3,3,1,2,4,2,2,1,3,2,2,1,1,4,2,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|VanLange|Inbar|Hauser|Ross.Slate1|Kay|Anderson|Graham|Bauer|Critcher|Huang|Miyamoto|Rottenstrich,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,7,Global,all,TRUE +5911,0.518094510296645,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,5,6,6,6,6,3,2,1,3,4,1,1,3,4,1,1,5,1,4,1,1,4,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Kay|Alter|Miyamoto|Bauer|Graham|Rottenstrich|Hauser|Anderson|Critcher|Inbar|Huang|Ross.Slate1,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,9,Global,all,TRUE +5912,-0.132117916424869,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,2,2,1,2,1,3,1,3,3,5,2,3,4,3,1,2,4,2,3,2,1,3,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Huang|Bauer|Anderson|Rottenstrich|Miyamoto|Kay|VanLange|Graham|Critcher|Inbar|Hauser,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +5916,-1.08140308354385,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,3,3,4,7,4,1,2,2,1,3,5,3,1,1,1,4,3,1,2,1,1,2,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Miyamoto|Anderson|Huang|Inbar|Hauser|Ross.Slate1|Critcher|Graham|Rottenstrich|Alter|VanLange|Kay,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood,3,Global,all,TRUE +5920,-0.11669385587993,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,5,5,6,6,5,3,2,2,4,2,1,1,1,2,2,1,3,1,3,1,1,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Critcher|Kay|Graham|Bauer|Rottenstrich|Miyamoto|VanLange|Anderson|Alter|Ross.Slate1|Huang|Inbar,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,9,Global,all,TRUE +5923,0.14968820764629,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,1,1,2,6,2,5,1,5,3,3,3,4,1,2,4,4,4,4,4,1,1,3,3,1,4,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occidtab,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Hauser|VanLange|Anderson|Inbar|Critcher|Ross.Slate1|Graham|Rottenstrich|Miyamoto|Alter|Huang|Bauer,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,4,Global,all,TRUE +5925,-0.694678823223888,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,4,5,3,3,2,4,3,3,4,3,3,4,4,3,4,3,4,4,4,3,3,3,3,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|VanLange|Kay|Rottenstrich|Alter|Bauer|Ross.Slate1|Huang|Inbar|Critcher|Miyamoto|Graham|Anderson,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,13,Global,all,TRUE +5928,-0.44832624377604,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,5,5,5,5,3,3,1,2,4,3,1,1,2,4,4,1,4,1,3,3,3,3,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Graham|Anderson|Critcher|Huang|VanLange|Kay|Inbar|Rottenstrich|Miyamoto|Bauer|Alter|Hauser,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,3,Global,all,TRUE +5929,0.701175095100405,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,3,4,3,2,2,3,2,4,3,1,1,1,2,3,2,2,2,1,3,2,3,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Anderson|Miyamoto|Graham|Hauser|Huang|Rottenstrich|VanLange|Alter|Kay|Bauer|Inbar|Ross.Slate1,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,2,Global,all,TRUE +5930,-1.33447741566597,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,3,4,5,5,7,4,1,4,3,4,1,1,4,5,1,1,5,1,4,4,2,5,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Hauser|Ross.Slate1|Bauer|Kay|Graham|Inbar|Critcher|Alter|Rottenstrich|VanLange|Huang|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,13,Global,all,TRUE +5941,0.501490304506407,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,5,5,5,5,5,3,3,1,3,3,1,1,2,3,1,1,2,1,4,1,1,4,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Huang|Alter|Ross.Slate1|Graham|Kay|Hauser|Bauer|Critcher|Rottenstrich|Anderson|Miyamoto|Inbar,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,11,Global,all,TRUE +5943,0.113307674640478,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,6,7,7,7,7,4,2,2,4,3,1,2,4,4,2,1,4,3,4,1,3,3,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|VanLange|Inbar|Alter|Graham|Anderson|Huang|Ross.Slate1|Kay|Miyamoto|Hauser|Critcher|Bauer,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,6,Global,all,TRUE +5944,0.426624330337582,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,5,6,5,6,1,2,1,1,2,1,1,1,1,1,3,1,2,1,2,1,2,1,1,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Graham|Critcher|Bauer|Huang|Rottenstrich|Anderson|Miyamoto|Hauser|Ross.Slate1|VanLange|Inbar|Alter,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood,7,Global,all,TRUE +5945,0.50188368625484,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,6,6,6,6,6,2,2,1,2,3,1,1,1,1,1,1,1,1,2,1,1,3,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Bauer|Hauser|VanLange|Inbar|Critcher|Rottenstrich|Kay|Anderson|Ross.Slate1|Miyamoto|Graham|Huang,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,9,Global,all,TRUE +5949,-1.08800048325732,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,4,4,5,4,3,4,3,1,1,1,1,1,1,4,1,1,4,1,4,1,1,1,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Rottenstrich|VanLange|Alter|Kay|Graham|Miyamoto|Bauer|Hauser|Anderson|Critcher|Ross.Slate1|Huang,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,10,Global,all,TRUE +5950,-0.567614873755879,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,4,1,6,3,3,4,1,1,3,1,1,1,1,3,2,1,3,1,3,1,1,2,1,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Rottenstrich|Kay|Ross.Slate1|Miyamoto|VanLange|Inbar|Alter|Huang|Critcher|Graham|Hauser|Bauer,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,1,Global,all,TRUE +5953,-0.744113930771004,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,5,6,6,6,5,2,1,1,3,2,1,1,2,2,1,1,2,1,3,1,1,3,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Critcher|Graham|Anderson|Rottenstrich|Miyamoto|Inbar|Bauer|Ross.Slate1|Huang|Hauser|Kay|Alter,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood,4,Global,all,TRUE +5954,0.222322695226515,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,5,6,7,5,6,4,2,3,1,5,2,1,3,4,2,2,4,1,4,1,2,4,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Hauser|Bauer|Miyamoto|Anderson|Graham|Ross.Slate1|Huang|Alter|Inbar|VanLange|Kay|Rottenstrich,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +5956,0.0716637585063659,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,3,5,7,5,6,3,2,2,2,2,1,4,3,3,3,1,4,1,4,1,1,2,3,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Bauer|Graham|Rottenstrich|Ross.Slate1|Inbar|Kay|Critcher|Alter|Hauser|VanLange|Anderson|Huang,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,12,Global,all,TRUE +5957,0.808869745555508,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,6,7,6,7,5,4,2,1,3,1,4,1,1,3,1,1,4,1,4,1,1,3,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Ross.Slate1|VanLange|Graham|Kay|Hauser|Bauer|Critcher|Rottenstrich|Alter|Huang|Inbar|Anderson,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,13,Global,all,TRUE +5958,-0.523065639513465,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,1,4,5,5,1,4,2,2,3,1,1,1,5,4,3,1,4,1,5,1,1,3,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Bauer|Hauser|Huang|Anderson|Rottenstrich|VanLange|Inbar|Miyamoto|Kay|Critcher|Ross.Slate1|Alter,ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +5959,0.767605564715593,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,5,6,6,7,5,2,2,1,3,1,1,1,3,1,1,1,4,1,4,1,1,3,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Ross.Slate1|Miyamoto|VanLange|Alter|Bauer|Kay|Anderson|Graham|Hauser|Huang|Critcher|Inbar,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,8,Global,all,TRUE +5960,-0.220556199844231,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,5,7,6,2,5,4,1,1,3,1,1,2,1,2,1,1,3,1,4,1,1,4,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Hauser|Ross.Slate1|Anderson|Miyamoto|Inbar|Critcher|Bauer|Huang|Rottenstrich|Graham|Kay|Alter,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,4,Global,all,TRUE +5967,-1.02763158125093,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,3,5,4,3,5,2,2,3,4,1,1,1,1,2,1,1,4,1,4,1,2,2,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Hauser|Critcher|Graham|Anderson|Alter|Inbar|Miyamoto|Rottenstrich|Kay|Huang|VanLange|Bauer,ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,5,Global,all,TRUE +5968,0.633564480239918,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,5,7,5,5,3,1,4,4,1,1,2,3,1,3,2,2,2,1,2,4,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Ross.Slate1|Hauser|Alter|Critcher|Huang|VanLange|Inbar|Bauer|Graham|Rottenstrich|Anderson|Kay,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood,12,Global,all,TRUE +5970,-0.30636961492656,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,7,7,7,7,7,3,1,2,4,5,1,1,2,5,1,1,5,1,4,1,1,4,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|VanLange|Miyamoto|Graham|Hauser|Critcher|Alter|Inbar|Ross.Slate1|Anderson|Rottenstrich|Huang|Bauer,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,10,Global,all,TRUE +5971,0.382468477843601,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,5,6,7,4,7,5,3,2,5,4,1,3,5,5,2,1,5,1,4,1,3,4,4,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Alter|Bauer|Miyamoto|Anderson|Inbar|Ross.Slate1|Hauser|Huang|VanLange|Rottenstrich|Graham|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection,5,Global,all,TRUE +5975,-2.46659001072591,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,6,6,6,6,6,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Kay|Miyamoto|Inbar|Critcher|Anderson|Ross.Slate1|Alter|Hauser|Graham|VanLange|Huang|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five,6,Global,all,TRUE +5977,-0.112608392526329,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,3,4,3,4,4,3,1,1,1,1,1,1,1,1,4,1,1,1,1,1,5,3,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Huang|VanLange|Anderson|Miyamoto|Kay|Rottenstrich|Hauser|Bauer|Inbar|Ross.Slate1|Critcher|Alter,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing,4,Global,all,TRUE +5978,0.557240136525124,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,4,2,7,7,5,4,1,4,4,2,1,1,4,4,1,2,4,1,4,1,1,1,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Rottenstrich|Critcher|Anderson|VanLange|Kay|Miyamoto|Inbar|Graham|Alter|Bauer|Huang|Ross.Slate1,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,4,Global,all,TRUE +5980,-1.30376729399112,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,6,7,6,5,3,3,1,2,3,2,1,1,1,2,1,2,3,1,3,1,1,2,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Anderson|Inbar|VanLange|Huang|Hauser|Alter|Kay|Graham|Bauer|Ross.Slate1|Rottenstrich|Miyamoto,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood,2,Global,all,TRUE +5982,-0.655139815246976,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,1,2,3,2,6,3,1,1,4,3,1,1,1,1,1,1,1,1,4,1,1,4,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Critcher|Kay|Anderson|Huang|Rottenstrich|Bauer|Miyamoto|VanLange|Hauser|Alter|Ross.Slate1|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,4,Global,all,TRUE +5987,-0.513969949894362,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,3,6,1,6,3,3,5,4,4,2,2,2,1,3,4,1,4,2,4,1,1,1,1,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|VanLange|Rottenstrich|Miyamoto|Graham|Ross.Slate1|Alter|Inbar|Huang|Hauser|Critcher|Anderson|Kay,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,12,Global,all,TRUE +5988,1.15671295749342,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,5,5,4,5,2,5,1,2,4,4,2,2,4,5,5,1,3,4,1,3,3,4,5,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Huang|Alter|Graham|Kay|VanLange|Anderson|Rottenstrich|Hauser|Ross.Slate1|Critcher|Inbar|Miyamoto,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +5989,0.340810915255253,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,7,7,7,7,7,4,5,5,3,4,4,5,5,3,5,4,5,4,4,5,4,4,4,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Bauer|Inbar|Alter|Miyamoto|Hauser|Graham|Anderson|Rottenstrich|Huang|Ross.Slate1|Critcher|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,8,Global,all,TRUE +5992,1.07762352055596,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,4,5,6,3,5,5,5,2,5,2,1,4,5,5,4,1,5,1,5,1,1,5,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Graham|Miyamoto|Huang|Critcher|Inbar|Ross.Slate1|Bauer|Anderson|VanLange|Rottenstrich|Hauser|Alter,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,9,Global,all,TRUE +5993,-0.403650431102226,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,7,7,7,7,5,5,1,2,5,5,1,1,5,5,1,1,5,1,5,2,5,5,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Miyamoto|Bauer|Graham|VanLange|Anderson|Ross.Slate1|Hauser|Alter|Rottenstrich|Critcher|Inbar|Huang,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood,6,Global,all,TRUE +5998,-0.506461433723227,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,4,3,5,6,1,1,1,2,2,1,2,3,1,1,2,3,1,2,1,1,1,1,1,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Alter|Huang|Anderson|Critcher|Miyamoto|Graham|Ross.Slate1|VanLange|Inbar|Kay|Rottenstrich|Hauser,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood,4,Global,all,TRUE +6000,-1.94278134840693,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,4,5,5,4,4,3,3,3,3,2,2,2,1,3,2,2,3,2,2,2,2,2,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Miyamoto|Huang|Inbar|Alter|Hauser|Rottenstrich|Bauer|Kay|VanLange|Anderson|Ross.Slate1|Critcher,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +6002,0.917084356190444,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,7,7,7,6,6,2,1,1,4,1,1,1,4,3,2,1,5,1,4,1,1,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Miyamoto|Hauser|Anderson|VanLange|Graham|Huang|Alter|Rottenstrich|Inbar|Kay|Ross.Slate1|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,4,Global,all,TRUE +6006,-0.131853338578434,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,1,1,6,3,2,3,4,3,3,2,1,2,3,3,1,1,4,1,4,1,1,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Rottenstrich|Kay|Miyamoto|Alter|Huang|Anderson|Inbar|Graham|Bauer|VanLange|Hauser|Critcher,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,7,Global,all,TRUE +6007,-0.309274933034862,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,5,5,6,7,1,1,1,1,1,1,1,2,3,2,1,1,5,1,1,2,1,1,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Alter|Graham|Hauser|Anderson|Bauer|Rottenstrich|Miyamoto|Kay|Huang|VanLange|Ross.Slate1|Inbar,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,5,Global,all,TRUE +6010,-0.503429537183526,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,3,5,5,7,2,4,3,3,4,4,2,3,4,4,3,1,3,2,4,3,2,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Graham|Alter|Critcher|Ross.Slate1|Miyamoto|Bauer|Hauser|Anderson|VanLange|Huang|Rottenstrich|Kay,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,9,Global,all,TRUE +6012,-0.403383627785192,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,6,6,6,6,6,4,2,4,3,3,2,2,4,4,4,2,4,2,4,2,2,4,3,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Graham|Hauser|Kay|Anderson|Miyamoto|Critcher|Inbar|Ross.Slate1|Huang|Rottenstrich|VanLange|Alter,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing,5,Global,all,TRUE +6016,-0.459667066437978,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,6,7,7,7,6,3,1,1,4,1,1,1,1,3,1,1,2,1,3,1,1,2,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Hauser|Kay|VanLange|Graham|Ross.Slate1|Huang|Miyamoto|Rottenstrich|Alter|Inbar|Bauer|Anderson,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,13,Global,all,TRUE +6018,0.512957705599744,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,6,7,7,6,6,1,2,1,3,1,1,1,1,1,1,1,2,1,4,1,2,1,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Rottenstrich|Graham|Huang|Alter|Bauer|Anderson|Hauser|VanLange|Kay|Ross.Slate1|Miyamoto|Critcher,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +6019,-1.18460746791328,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,4,5,6,3,1,2,1,5,1,4,1,2,2,1,3,1,1,4,1,1,1,4,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Huang|Bauer|Inbar|Miyamoto|Anderson|Ross.Slate1|VanLange|Rottenstrich|Alter|Critcher|Kay|Hauser,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,6,Global,all,TRUE +6020,0.434666453142786,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,6,6,6,6,6,3,1,1,4,3,1,1,3,4,1,1,4,1,3,1,1,5,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Rottenstrich|Alter|Critcher|Huang|Miyamoto|Kay|Ross.Slate1|Anderson|Inbar|Graham|VanLange|Hauser,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,9,Global,all,TRUE +6022,-0.428156534812033,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,1,5,6,4,1,3,2,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Inbar|Bauer|VanLange|Alter|Anderson|Graham|Kay|Miyamoto|Ross.Slate1|Rottenstrich|Huang|Hauser,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +6024,0.650168686030156,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,4,5,6,4,5,1,1,2,1,1,1,1,2,3,1,1,3,1,3,1,2,1,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Bauer|Graham|Anderson|Alter|Inbar|Ross.Slate1|Huang|VanLange|Critcher|Rottenstrich|Hauser|Miyamoto,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,4,Global,all,TRUE +6025,-0.672937812736749,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,4,6,6,5,3,1,5,1,1,2,1,1,2,3,1,1,3,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Hauser|Ross.Slate1|Alter|Kay|Rottenstrich|Critcher|Inbar|Graham|Anderson|Huang|VanLange|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,10,Global,all,TRUE +6026,-0.305978458648726,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,5,6,7,5,6,4,1,1,5,4,1,1,3,4,2,1,4,2,4,1,1,4,5,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Critcher|Graham|VanLange|Ross.Slate1|Miyamoto|Bauer|Inbar|Alter|Rottenstrich|Huang|Kay|Hauser,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,1,Global,all,TRUE +6029,0.52349811831058,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,6,6,6,5,4,3,1,2,3,1,1,1,3,3,1,1,4,1,3,1,1,3,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Miyamoto|Graham|Bauer|Huang|Ross.Slate1|Rottenstrich|Kay|Hauser|Anderson|Alter|Critcher|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,10,Global,all,TRUE +6030,0.404476291647774,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,5,5,5,5,4,3,2,3,1,3,1,2,3,3,2,2,3,2,3,1,1,3,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Huang|Bauer|Inbar|Critcher|Kay|Alter|Hauser|Ross.Slate1|Anderson|Rottenstrich|Graham|VanLange,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,10,Global,all,TRUE +6031,-0.414584225561496,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,7,7,6,6,7,1,2,4,3,3,1,1,4,4,1,1,5,1,3,1,1,3,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Rottenstrich|Hauser|Graham|Huang|VanLange|Critcher|Kay|Bauer|Alter|Inbar|Anderson|Ross.Slate1,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,12,Global,all,TRUE +6033,-1.63183640418406,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,6,7,7,7,7,2,1,3,1,1,1,1,2,2,1,1,3,1,1,1,1,1,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Kay|Critcher|Inbar|VanLange|Huang|Bauer|Graham|Hauser|Alter|Ross.Slate1|Anderson|Rottenstrich,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood,12,Global,all,TRUE +6035,-0.237174052088705,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,7,7,7,7,7,2,1,1,1,1,1,1,2,1,1,1,3,1,3,1,2,1,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Bauer|Alter|Miyamoto|Huang|Inbar|Critcher|VanLange|Hauser|Graham|Rottenstrich|Ross.Slate1|Anderson,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,13,Global,all,TRUE +6038,-1.13399444059146,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,7,7,6,6,6,4,1,1,3,4,1,1,3,3,3,1,4,1,3,1,4,3,2,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Huang|Graham|Anderson|Hauser|Kay|Alter|Ross.Slate1|VanLange|Critcher|Miyamoto|Rottenstrich|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,4,Global,all,TRUE +6043,-0.619154889460196,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,6,6,6,5,6,3,1,1,4,3,1,1,4,4,1,1,4,1,3,1,1,3,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Alter|Miyamoto|Graham|Critcher|Ross.Slate1|Huang|Hauser|Rottenstrich|Kay|Anderson|Bauer|VanLange,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +6045,0.672710106468397,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,4,5,6,5,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Kay|Alter|Inbar|Critcher|VanLange|Rottenstrich|Bauer|Anderson|Huang|Miyamoto|Graham|Ross.Slate1,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,9,Global,all,TRUE +6050,-0.480888116745285,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,6,7,6,6,5,4,1,1,1,2,1,1,5,5,1,1,5,1,5,1,1,4,4,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|Inbar|VanLange|Critcher|Rottenstrich|Ross.Slate1|Anderson|Huang|Alter|Kay|Bauer|Graham,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,8,Global,all,TRUE +6052,-0.760322529342211,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,6,6,6,6,5,3,1,1,3,3,1,1,4,4,1,1,4,1,3,1,1,2,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Graham|Inbar|Rottenstrich|Bauer|VanLange|Huang|Ross.Slate1|Kay|Alter|Miyamoto|Anderson|Hauser,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,12,Global,all,TRUE +6053,0.367702376893529,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,6,6,6,6,4,2,2,2,2,2,1,1,2,2,1,1,2,1,2,2,2,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Ross.Slate1|Critcher|Anderson|Hauser|Alter|VanLange|Rottenstrich|Inbar|Kay|Huang|Graham|Bauer,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,4,Global,all,TRUE +6056,0.00311473427974142,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,6,6,7,6,6,2,2,1,3,1,1,1,2,3,2,1,3,1,3,1,1,1,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Inbar|Rottenstrich|Miyamoto|VanLange|Kay|Alter|Ross.Slate1|Anderson|Hauser|Huang|Graham|Bauer,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,9,Global,all,TRUE +6061,-0.918225404387061,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,4,3,6,6,4,3,2,3,5,3,1,1,2,2,4,2,4,3,4,3,4,3,1,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Kay|Bauer|Miyamoto|Rottenstrich|Ross.Slate1|Inbar|VanLange|Hauser|Anderson|Graham|Alter|Huang,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,10,Global,all,TRUE +6063,-0.20975120928696,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,3,3,4,2,2,5,3,2,5,4,1,1,3,3,4,1,5,2,3,3,5,3,2,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|VanLange|Huang|Ross.Slate1|Kay|Rottenstrich|Alter|Hauser|Bauer|Anderson|Graham|Critcher|Miyamoto,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +6064,-0.562211265741944,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,4,2,2,3,2,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Inbar|Hauser|VanLange|Critcher|Graham|Alter|Kay|Bauer|Rottenstrich|Huang|Anderson|Ross.Slate1,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,12,Global,all,TRUE +6067,-1.4548196124597,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,3,5,3,5,6,4,1,4,4,2,1,1,3,1,1,1,3,3,4,1,1,2,3,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Graham|Bauer|Alter|Huang|Hauser|Rottenstrich|Ross.Slate1|Critcher|Kay|Inbar|Anderson|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,12,Global,all,TRUE +6069,-1.82124758538426,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,5,5,5,4,4,3,1,1,1,2,1,1,2,2,2,1,3,2,1,1,1,2,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Hauser|Inbar|Anderson|Ross.Slate1|Miyamoto|Huang|Graham|Alter|Bauer|Kay|Rottenstrich|Critcher,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,4,Global,all,TRUE +6071,0.673496869965263,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,6,5,6,6,5,4,3,1,4,4,1,1,4,4,1,1,5,1,4,1,1,4,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|VanLange|Anderson|Graham|Kay|Miyamoto|Ross.Slate1|Critcher|Rottenstrich|Hauser|Huang|Inbar|Bauer,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,3,Global,all,TRUE +6072,0.520999828404947,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,3,4,3,3,2,3,3,3,5,3,3,3,2,3,4,3,4,4,4,2,4,2,2,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Ross.Slate1|Kay|Bauer|Miyamoto|Alter|VanLange|Graham|Rottenstrich|Critcher|Huang|Inbar|Hauser,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five,1,Global,all,TRUE +6073,-1.00680391269206,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,5,6,6,6,6,4,3,1,4,2,1,1,2,3,2,1,4,1,2,1,1,2,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Rottenstrich|Alter|Inbar|Huang|Miyamoto|Critcher|Anderson|Ross.Slate1|VanLange|Bauer|Kay|Graham,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,8,Global,all,TRUE +6074,-0.678987959361915,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,5,6,7,6,7,5,3,1,1,5,1,1,2,5,1,1,5,1,4,1,1,5,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Alter|Graham|Bauer|VanLange|Huang|Inbar|Kay|Anderson|Miyamoto|Critcher|Ross.Slate1|Hauser,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,9,Global,all,TRUE +6076,1.32358271825538,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,5,6,6,5,5,1,1,1,2,1,1,1,3,3,1,1,3,1,2,1,1,1,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Kay|Miyamoto|Bauer|Anderson|Critcher|Hauser|Alter|Inbar|Huang|Graham|Rottenstrich|VanLange,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +6077,-0.687030082167118,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,5,3,6,6,2,2,2,1,3,3,1,1,1,5,1,1,3,1,3,2,1,2,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Graham|Ross.Slate1|VanLange|Bauer|Alter|Anderson|Rottenstrich|Miyamoto|Kay|Huang|Critcher|Inbar,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,7,Global,all,TRUE +6079,-0.555487287597075,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,6,6,7,6,5,5,1,3,4,5,1,1,5,5,1,2,5,1,4,1,2,5,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Anderson|Hauser|Huang|Bauer|Ross.Slate1|Rottenstrich|Graham|Alter|Critcher|Miyamoto|Inbar|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,2,Global,all,TRUE +6082,0.922221160887345,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,6,7,7,6,5,4,3,1,3,3,1,1,1,3,3,1,5,1,3,1,3,3,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Critcher|VanLange|Ross.Slate1|Miyamoto|Bauer|Huang|Inbar|Graham|Hauser|Rottenstrich|Kay|Alter,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood,1,Global,all,TRUE +6086,0.465503153249028,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,2,1,2,3,2,2,3,3,3,2,1,2,2,3,1,1,1,1,3,1,1,1,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Graham|Miyamoto|Hauser|Huang|Critcher|VanLange|Rottenstrich|Kay|Alter|Inbar|Anderson|Bauer,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,12,Global,all,TRUE +6088,0.938698788246184,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,6,6,5,7,6,2,1,2,3,3,2,1,3,4,2,1,3,1,2,1,3,3,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Hauser|Kay|Ross.Slate1|Huang|Critcher|Miyamoto|Bauer|Anderson|Graham|VanLange|Alter|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,9,Global,all,TRUE +6089,-0.483653209967952,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marianipad,5,5,5,6,5,5,1,2,5,1,1,1,5,5,2,1,5,1,5,1,2,4,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,marianipad,USA,"Marian University, Indianapolis, IN",English,1,legal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|VanLange|Ross.Slate1|Bauer|Kay|Hauser|Graham|Inbar|Huang|Alter|Rottenstrich|Anderson|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,12,Global,all,TRUE +6093,0.720417815681911,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,5,6,5,5,3,3,1,1,3,3,1,3,3,3,2,1,3,1,3,1,1,2,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Anderson|Miyamoto|Huang|Kay|Bauer|Critcher|Hauser|Alter|Ross.Slate1|Rottenstrich|Graham|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,2,Global,all,TRUE +6095,0.701973279580908,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,5,5,6,5,5,2,1,1,5,1,1,1,3,3,1,3,2,1,3,1,1,2,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Inbar|Anderson|Hauser|Bauer|Ross.Slate1|Kay|Huang|Miyamoto|Rottenstrich|VanLange|Graham|Alter,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,3,Global,all,TRUE +6097,0.379956541483732,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,6,7,6,6,5,3,2,3,1,3,1,1,1,4,3,1,4,1,3,1,1,1,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Ross.Slate1|Alter|Inbar|Kay|Graham|Huang|Rottenstrich|Critcher|Anderson|Bauer|VanLange|Miyamoto,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,10,Global,all,TRUE +6098,0.321174812925314,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,5,5,6,6,2,2,2,1,2,1,1,2,3,1,1,2,3,1,3,1,2,2,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Alter|Miyamoto|Bauer|Kay|Huang|Rottenstrich|Ross.Slate1|Anderson|Inbar|Critcher|Hauser|Graham,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,9,Global,all,TRUE +6099,0.0475373900907567,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,5,6,5,5,5,3,1,1,4,1,1,1,3,4,1,1,4,1,4,1,1,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Alter|Ross.Slate1|Graham|Huang|VanLange|Bauer|Miyamoto|Rottenstrich|Kay|Inbar|Anderson|Hauser,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,12,Global,all,TRUE +6103,0.0866830163192358,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,6,6,6,4,3,4,1,1,5,3,1,1,3,5,1,1,5,1,5,1,1,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Graham|Alter|Kay|VanLange|Ross.Slate1|Hauser|Rottenstrich|Critcher|Miyamoto|Huang|Anderson|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,12,Global,all,TRUE +6104,0.170909257953597,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,5,6,5,6,2,1,2,1,2,1,1,3,1,1,2,1,1,1,3,1,2,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Miyamoto|Graham|Anderson|Critcher|Ross.Slate1|Hauser|Huang|Inbar|Rottenstrich|Bauer|Alter|VanLange,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,4,Global,all,TRUE +6106,0.527721581079217,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,4,4,1,4,2,1,1,3,1,1,1,1,1,3,1,1,5,1,4,1,1,4,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Bauer|Huang|Graham|Ross.Slate1|Miyamoto|Inbar|VanLange|Hauser|Kay|Critcher|Anderson|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood,12,Global,all,TRUE +6108,0.587163494703101,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,3,6,5,6,3,3,3,3,3,4,1,4,4,3,4,1,4,1,3,1,5,3,4,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Rottenstrich|Critcher|Alter|Miyamoto|Hauser|Ross.Slate1|Inbar|Bauer|Kay|VanLange|Graham|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five,1,Global,all,TRUE +6110,-1.70894751139572,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,5,5,6,6,6,4,1,1,3,3,1,1,3,4,1,1,4,1,4,1,1,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Graham|Alter|Anderson|Critcher|VanLange|Miyamoto|Huang|Bauer|Hauser|Inbar|Kay|Rottenstrich,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection,4,Global,all,TRUE +6113,-0.251799928153142,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,3,3,4,4,3,4,4,2,3,3,1,4,4,4,3,1,4,1,4,1,5,3,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Miyamoto|Ross.Slate1|Hauser|Critcher|Graham|Rottenstrich|Kay|Huang|VanLange|Bauer|Inbar|Anderson,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing,13,Global,all,TRUE +6116,0.418708785963779,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,3,5,5,6,4,3,5,5,2,2,1,2,2,3,4,1,4,4,3,2,4,2,2,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Ross.Slate1|Anderson|Miyamoto|Hauser|Bauer|Graham|Huang|Alter|Inbar|VanLange|Rottenstrich|Kay,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,3,Global,all,TRUE +6119,-0.576050378309516,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,5,4,5,5,3,4,2,3,3,4,1,4,4,3,3,1,4,2,4,1,1,3,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Alter|Rottenstrich|Critcher|Hauser|Ross.Slate1|Miyamoto|Anderson|Graham|Inbar|Bauer|Kay|Huang,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,8,Global,all,TRUE +6122,0.157463527134459,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,5,6,6,7,3,5,1,3,2,3,1,1,4,4,1,1,4,1,5,1,1,4,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Hauser|Miyamoto|Bauer|Critcher|VanLange|Inbar|Ross.Slate1|Huang|Anderson|Kay|Graham|Alter,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,10,Global,all,TRUE +6125,0.451270658933024,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,2,2,4,3,2,2,2,1,2,1,1,1,1,1,1,1,3,1,3,1,1,3,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|VanLange|Miyamoto|Ross.Slate1|Critcher|Bauer|Hauser|Anderson|Inbar|Graham|Huang|Rottenstrich|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,8,Global,all,TRUE +6131,0.0277610628751828,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,4,5,6,3,3,4,3,3,2,4,1,1,3,2,1,1,4,1,5,2,2,2,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Miyamoto|Alter|Anderson|Inbar|Hauser|Bauer|Huang|Kay|Critcher|VanLange|Rottenstrich|Graham,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,4,Global,all,TRUE +6136,0.389583612266303,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,5,5,5,5,5,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|VanLange|Anderson|Inbar|Miyamoto|Kay|Graham|Alter|Hauser|Ross.Slate1|Bauer|Rottenstrich|Huang,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood,3,Global,all,TRUE +6137,0.538528797107087,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,4,5,6,6,3,1,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Hauser|Ross.Slate1|Miyamoto|Kay|Rottenstrich|VanLange|Alter|Graham|Anderson|Huang|Critcher|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,10,Global,all,TRUE +6138,-0.207377272342127,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,2,4,5,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Alter|Hauser|Bauer|Critcher|Graham|Huang|Ross.Slate1|Inbar|Anderson|Miyamoto|VanLange|Kay,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,10,Global,all,TRUE +6145,-0.453336470041542,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marianipad,4,6,5,5,2,4,1,1,2,1,3,2,1,1,2,3,3,1,4,1,1,1,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,marianipad,USA,"Marian University, Indianapolis, IN",English,1,legal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Alter|Miyamoto|Inbar|Critcher|Rottenstrich|Graham|Kay|Huang|Hauser|Ross.Slate1|Bauer|VanLange,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +6147,0.407634766618875,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,6,5,7,6,6,4,2,2,4,4,1,1,4,4,1,1,5,1,4,1,1,3,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Ross.Slate1|Hauser|Alter|Critcher|Bauer|Kay|VanLange|Anderson|Miyamoto|Graham|Huang|Rottenstrich,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,9,Global,all,TRUE +6148,0.415676889424078,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,6,6,6,6,3,3,1,1,3,1,1,1,1,1,1,1,1,1,3,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Kay|Graham|Rottenstrich|Critcher|Hauser|Ross.Slate1|Huang|Alter|Inbar|Miyamoto|VanLange|Anderson,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +6149,0.882948956227467,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,6,3,5,5,1,1,4,1,3,1,2,4,1,4,3,1,1,4,4,1,5,1,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Kay|Miyamoto|Critcher|Ross.Slate1|Bauer|Rottenstrich|Anderson|VanLange|Hauser|Huang|Inbar|Graham,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,8,Global,all,TRUE +6151,-1.17670334452311,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,5,5,5,5,3,1,3,2,1,1,1,3,1,2,1,1,1,1,1,1,1,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|Alter|VanLange|Huang|Anderson|Graham|Critcher|Inbar|Rottenstrich|Ross.Slate1|Bauer|Kay,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,6,Global,all,TRUE +6154,1.05786083979463,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,5,5,6,3,4,4,3,2,3,4,1,1,3,3,2,2,3,1,4,1,3,4,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|VanLange|Anderson|Bauer|Hauser|Graham|Alter|Rottenstrich|Critcher|Miyamoto|Inbar|Kay|Huang,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,3,Global,all,TRUE +6157,0.748236265702688,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,7,7,7,7,7,2,1,1,4,4,1,1,4,5,1,1,3,1,4,1,1,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Graham|Inbar|Critcher|Anderson|Huang|Alter|Ross.Slate1|VanLange|Hauser|Bauer|Miyamoto|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,5,Global,all,TRUE +6158,0.144677981380788,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,5,4,6,4,6,3,1,1,2,3,1,1,4,3,1,1,4,1,3,1,1,3,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Critcher|Rottenstrich|Graham|Ross.Slate1|Kay|Hauser|Miyamoto|Alter|Bauer|Huang|Anderson|Inbar,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing,12,Global,all,TRUE +6159,0.219417377118214,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,3,3,5,3,2,3,2,2,2,2,1,1,2,2,2,2,2,3,1,1,3,2,2,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Anderson|Ross.Slate1|Critcher|Kay|Graham|Huang|Inbar|Rottenstrich|Hauser|Alter|VanLange|Bauer,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,2,Global,all,TRUE +6160,0.617480234629512,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,6,6,6,5,5,5,1,1,3,4,1,1,3,3,1,2,5,1,5,1,2,3,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Critcher|Huang|Anderson|Kay|VanLange|Miyamoto|Ross.Slate1|Graham|Bauer|Rottenstrich|Alter|Inbar,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +6161,0.858822587811858,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,5,4,5,4,4,4,2,4,3,3,3,2,3,4,4,3,4,1,4,3,4,3,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Ross.Slate1|Hauser|Bauer|Kay|Inbar|Anderson|Graham|Miyamoto|VanLange|Critcher|Alter|Huang,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,7,Global,all,TRUE +6162,-1.01247209855243,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,3,5,5,2,3,3,3,4,3,2,2,3,1,1,4,1,4,3,3,1,2,1,2,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Critcher|Anderson|VanLange|Graham|Huang|Miyamoto|Bauer|Kay|Inbar|Rottenstrich|Ross.Slate1|Hauser,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,3,Global,all,TRUE +6165,-0.873940747991081,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,4,4,4,4,4,1,2,3,1,3,3,3,3,3,2,3,3,1,2,1,2,2,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Alter|Anderson|Bauer|Ross.Slate1|Huang|Rottenstrich|Hauser|Inbar|Graham|VanLange|Kay|Critcher,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,3,Global,all,TRUE +6169,0.412518414452978,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,6,7,6,6,6,3,2,4,4,3,2,2,4,3,3,2,5,2,5,1,2,3,2,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Ross.Slate1|Bauer|Huang|Rottenstrich|Anderson|Inbar|Critcher|Kay|Alter|Miyamoto|VanLange|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,6,Global,all,TRUE +6171,0.31010079358041,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,6,4,6,7,5,3,3,1,4,1,1,1,1,1,1,1,4,1,5,3,2,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Inbar|Kay|Alter|Miyamoto|Ross.Slate1|Anderson|Huang|Rottenstrich|Graham|Hauser|Bauer|VanLange,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,7,Global,all,TRUE +6172,-1.06216036296234,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,2,3,3,2,1,4,3,2,4,3,2,3,5,4,4,4,5,1,4,3,2,4,3,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Alter|Ross.Slate1|Hauser|Anderson|Huang|Bauer|Miyamoto|Graham|Kay|Rottenstrich|VanLange|Critcher,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE,5,Global,all,TRUE +6174,0.5810997016237,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,5,6,6,5,5,2,1,1,1,1,1,1,2,1,1,1,2,1,2,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Miyamoto|VanLange|Kay|Anderson|Alter|Ross.Slate1|Graham|Critcher|Rottenstrich|Bauer|Hauser|Huang,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,5,Global,all,TRUE +6175,-0.563796213719313,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,7,7,7,6,7,2,2,1,3,4,1,1,3,3,3,1,4,1,1,1,4,2,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Graham|Ross.Slate1|Alter|Rottenstrich|Miyamoto|Critcher|Huang|Inbar|Anderson|VanLange|Kay|Bauer,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood,10,Global,all,TRUE +6178,0.695644908655071,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,6,6,6,6,3,1,3,3,2,3,1,1,3,3,1,1,4,1,2,2,3,3,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Kay|Alter|Critcher|Bauer|Graham|Huang|Ross.Slate1|Miyamoto|Hauser|VanLange|Anderson|Rottenstrich,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,12,Global,all,TRUE +6181,0.814273353569443,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,5,3,3,5,3,2,4,4,4,3,1,2,3,4,2,2,5,3,4,1,2,3,2,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Ross.Slate1|Inbar|Kay|Alter|Graham|Critcher|VanLange|Anderson|Bauer|Hauser|Miyamoto|Rottenstrich,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +6182,-0.658171711786677,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,7,7,7,7,4,5,2,4,4,1,1,1,1,3,2,1,5,3,4,1,3,2,5,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Graham|VanLange|Critcher|Ross.Slate1|Bauer|Inbar|Alter|Miyamoto|Anderson|Rottenstrich|Hauser|Huang,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection,10,Global,all,TRUE +6183,0.814273353569443,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,4,6,5,7,3,3,3,1,3,1,1,1,1,4,4,1,1,1,3,1,4,2,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Inbar|Critcher|Alter|Graham|Bauer|Hauser|Huang|Miyamoto|Kay|Rottenstrich|Anderson|VanLange,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,12,Global,all,TRUE +6192,0.152326722437559,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,3,3,3,3,3,3,1,1,3,3,1,1,2,4,1,1,3,1,2,1,1,3,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Ross.Slate1|Bauer|Kay|Graham|Miyamoto|Critcher|VanLange|Inbar|Huang|Alter|Rottenstrich|Hauser,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +6193,-0.702987749346125,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,5,6,5,2,3,3,5,5,3,2,1,3,3,3,3,1,4,2,3,1,1,1,1,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Miyamoto|Rottenstrich|Huang|Hauser|Ross.Slate1|Critcher|VanLange|Graham|Alter|Bauer|Inbar|Anderson,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,13,Global,all,TRUE +6195,0.0495157198165578,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,5,6,6,6,3,3,1,3,4,3,1,1,3,3,1,1,2,1,3,1,2,2,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Alter|Kay|Bauer|Ross.Slate1|Rottenstrich|Graham|Huang|Hauser|VanLange|Inbar|Miyamoto|Critcher,ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,1,Global,all,TRUE +6197,-0.429743708260001,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marianipad,5,5,5,5,5,4,1,1,4,4,1,1,3,5,3,1,4,1,4,1,2,3,3,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,marianipad,USA,"Marian University, Indianapolis, IN",English,1,legal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Kay|Anderson|Graham|Alter|VanLange|Bauer|Inbar|Huang|Hauser|Critcher|Miyamoto|Ross.Slate1,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,3,Global,all,TRUE +6202,-0.315198501228629,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,6,5,6,5,6,4,2,2,4,3,2,1,5,3,2,1,4,1,4,1,1,4,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Kay|Huang|Graham|Rottenstrich|VanLange|Hauser|Bauer|Anderson|Inbar|Critcher|Ross.Slate1|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,9,Global,all,TRUE +6203,-0.315718461408461,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,6,6,7,6,1,3,2,2,2,3,1,1,3,4,3,1,3,1,3,1,2,3,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Huang|Rottenstrich|Anderson|Alter|Bauer|Inbar|Ross.Slate1|VanLange|Miyamoto|Kay|Critcher|Graham,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,4,Global,all,TRUE +6206,-0.0108509567192285,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,4,5,5,5,4,4,2,3,3,4,3,2,4,3,3,3,4,3,3,2,2,3,5,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Bauer|Rottenstrich|Alter|Anderson|Kay|Ross.Slate1|VanLange|Miyamoto|Huang|Hauser|Critcher|Inbar,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,5,Global,all,TRUE +6207,0.247222180684755,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,7,7,7,7,2,5,1,5,3,4,2,3,4,5,3,2,5,3,5,1,4,5,5,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|VanLange|Bauer|Inbar|Kay|Miyamoto|Critcher|Anderson|Alter|Huang|Hauser|Rottenstrich|Ross.Slate1,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,8,Global,all,TRUE +6209,-0.181817601818421,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,5,6,6,6,2,2,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Graham|Kay|Alter|Critcher|Inbar|Anderson|Miyamoto|Bauer|VanLange|Ross.Slate1|Rottenstrich|Huang,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE,7,Global,all,TRUE +6211,0.249860695476023,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,3,7,5,6,6,3,1,4,2,2,1,2,1,2,2,3,3,2,3,2,1,1,4,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Critcher|Rottenstrich|VanLange|Ross.Slate1|Miyamoto|Hauser|Alter|Anderson|Kay|Huang|Graham|Inbar,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,9,Global,all,TRUE +6215,0.582026690006201,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,6,4,6,5,3,1,5,5,1,5,1,5,1,2,5,3,2,5,3,5,5,1,2,1,4,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Ross.Slate1|Critcher|Graham|VanLange|Rottenstrich|Bauer|Alter|Inbar|Kay|Hauser|Miyamoto|Anderson,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,13,Global,all,TRUE +6216,0.182643462363968,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,5,4,5,5,3,3,1,1,3,3,1,1,3,4,1,1,5,1,3,1,1,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Rottenstrich|Bauer|Inbar|Miyamoto|VanLange|Kay|Ross.Slate1|Huang|Hauser|Alter|Anderson|Graham,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,12,Global,all,TRUE +6217,0.174334536241731,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,5,5,5,5,5,3,1,3,4,4,1,1,4,3,3,1,5,2,4,1,4,5,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Rottenstrich|Graham|Hauser|Inbar|Kay|Alter|Ross.Slate1|Anderson|Bauer|Critcher|Miyamoto|Huang,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,9,Global,all,TRUE +6220,-0.978072120743015,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,4,4,4,3,3,2,1,1,3,1,1,1,1,2,1,1,1,1,2,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Alter|Hauser|Bauer|Graham|Critcher|Rottenstrich|Inbar|Anderson|Ross.Slate1|Kay|VanLange|Miyamoto,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE,9,Global,all,TRUE +6221,-0.231897022506169,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,6,4,7,3,2,4,2,3,3,4,2,2,4,4,3,1,4,3,4,4,4,3,5,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Bauer|Huang|Inbar|Kay|Rottenstrich|Anderson|VanLange|Graham|Critcher|Miyamoto|Alter|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,7,Global,all,TRUE +6222,0.172496431401565,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,6,6,6,7,6,3,2,1,4,3,1,1,4,3,1,1,4,1,4,1,1,1,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Bauer|Miyamoto|Graham|Kay|Hauser|Inbar|Alter|Rottenstrich|Anderson|VanLange|Critcher|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,10,Global,all,TRUE +6223,-0.367789858276247,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,2,3,6,3,6,4,5,3,5,5,1,3,5,5,1,2,5,1,3,5,1,5,5,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|VanLange|Huang|Inbar|Kay|Hauser|Miyamoto|Anderson|Alter|Rottenstrich|Critcher|Graham|Ross.Slate1,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,8,Global,all,TRUE +6227,0.0623012655702291,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,7,7,7,7,7,3,1,1,5,3,1,1,4,5,1,1,5,1,5,1,3,4,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Anderson|Inbar|Hauser|Graham|VanLange|Ross.Slate1|Miyamoto|Critcher|Bauer|Alter|Kay|Rottenstrich,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,2,Global,all,TRUE +6228,1.06339102623996,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,3,4,3,1,1,5,2,3,5,5,4,3,5,5,3,3,5,2,5,1,2,2,5,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Inbar|Graham|VanLange|Alter|Anderson|Huang|Bauer|Miyamoto|Hauser|Ross.Slate1|Kay|Rottenstrich,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,6,Global,all,TRUE +6229,1.34888923191629,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,5,6,6,5,7,5,1,1,4,3,1,1,5,4,1,1,4,1,3,1,4,3,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Graham|Bauer|Rottenstrich|Anderson|Hauser|Critcher|Huang|Kay|Alter|Inbar|VanLange|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,5,Global,all,TRUE +6232,0.435059834891219,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,5,7,7,7,6,5,1,1,4,1,1,1,2,1,3,1,4,1,3,1,1,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Bauer|Huang|Hauser|Anderson|Rottenstrich|Critcher|Kay|Graham|VanLange|Miyamoto|Inbar|Alter,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,5,Global,all,TRUE +6235,0.307209121926344,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,6,7,7,7,7,5,1,2,4,4,1,1,5,5,2,1,5,1,4,1,1,5,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Ross.Slate1|VanLange|Anderson|Graham|Miyamoto|Hauser|Inbar|Bauer|Huang|Critcher|Rottenstrich|Alter,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,4,Global,all,TRUE +6238,-0.0509235713302085,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,2,5,6,5,1,4,2,2,4,2,4,2,2,4,3,1,4,1,3,5,3,3,3,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Miyamoto|Kay|Critcher|Huang|Anderson|Alter|Ross.Slate1|Hauser|Rottenstrich|Inbar|VanLange|Bauer,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,6,Global,all,TRUE +6239,0.589141824428903,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,4,2,4,5,3,5,3,3,4,2,1,2,4,5,3,1,5,1,4,2,1,3,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Inbar|Kay|Ross.Slate1|Alter|Miyamoto|VanLange|Graham|Critcher|Hauser|Rottenstrich|Huang|Anderson,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +6241,-0.211336157264328,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,2,5,5,3,3,1,5,2,5,2,3,4,5,3,3,4,3,4,5,4,2,5,5,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Graham|Rottenstrich|Alter|Hauser|Critcher|Miyamoto|Ross.Slate1|Anderson|VanLange|Kay|Inbar|Bauer,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing,9,Global,all,TRUE +6242,-0.0755698999256496,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,4,3,5,1,4,5,2,3,5,3,2,4,5,5,3,1,5,3,3,2,3,5,5,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Ross.Slate1|Rottenstrich|Graham|Kay|Huang|Anderson|Bauer|VanLange|Alter|Critcher|Miyamoto|Hauser,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,7,Global,all,TRUE +6243,0.193984285025906,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,2,3,5,7,4,3,2,2,4,2,1,1,1,3,1,1,1,1,4,1,4,3,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Alter|Ross.Slate1|Critcher|Hauser|Anderson|VanLange|Huang|Rottenstrich|Graham|Kay|Bauer|Inbar,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing,6,Global,all,TRUE +6245,-0.00189549198576056,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,6,6,5,5,5,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Huang|Bauer|Critcher|Kay|Anderson|Miyamoto|Graham|Inbar|VanLange|Hauser|Alter|Rottenstrich,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,6,Global,all,TRUE +6247,0.164187505279328,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marianipad,4,4,4,5,4,2,2,2,3,2,1,2,1,3,1,1,2,1,3,2,1,2,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,marianipad,USA,"Marian University, Indianapolis, IN",English,1,legal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Hauser|Kay|Critcher|Inbar|Anderson|Huang|Ross.Slate1|Graham|Miyamoto|Alter|Bauer|VanLange,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,6,Global,all,TRUE +6249,-0.116300474131497,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,mariantab,5,5,5,5,5,3,2,2,2,3,1,2,3,3,2,2,3,2,3,2,2,3,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,mariantab,USA,"Marian University, Indianapolis, IN",English,1,legal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Rottenstrich|Huang|Ross.Slate1|Hauser|Graham|Critcher|Miyamoto|Anderson|Inbar|Bauer|Kay|VanLange,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,9,Global,all,TRUE +6251,-0.53927646355527,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,6,6,5,5,3,4,1,3,3,4,2,3,3,3,3,2,4,4,3,1,1,3,3,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Hauser|Graham|VanLange|Kay|Inbar|Bauer|Rottenstrich|Critcher|Anderson|Miyamoto|Alter|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,10,Global,all,TRUE +6252,0.25711605478436,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,6,6,6,6,6,4,1,2,3,4,1,1,4,4,2,1,5,1,4,1,4,5,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Miyamoto|Rottenstrich|Inbar|Hauser|Bauer|Critcher|Ross.Slate1|Kay|Anderson|VanLange|Huang|Graham,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,10,Global,all,TRUE +6253,-0.171530345970382,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,5,7,7,7,3,5,5,1,5,5,1,1,5,5,2,1,5,1,5,2,1,5,4,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Miyamoto|Hauser|Critcher|Bauer|Kay|Rottenstrich|Anderson|Alter|Huang|Graham|Ross.Slate1|Inbar,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing,8,Global,all,TRUE +6254,0.515329417073978,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,5,5,5,5,4,2,2,1,3,1,1,1,1,3,1,1,3,1,2,1,1,1,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Huang|Rottenstrich|Graham|Miyamoto|Alter|Hauser|Kay|Anderson|Critcher|VanLange|Inbar|Bauer,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,9,Global,all,TRUE +6255,-1.20873383632889,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,4,5,5,5,3,4,3,4,3,3,3,3,3,3,2,3,4,2,3,3,3,3,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Graham|Hauser|Huang|Ross.Slate1|Rottenstrich|Kay|Anderson|Critcher|VanLange|Miyamoto|Alter|Bauer,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,8,Global,all,TRUE +6256,0.225087788449183,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,5,6,7,7,5,1,2,1,1,2,1,1,1,1,1,1,1,1,3,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Miyamoto|Rottenstrich|Kay|Critcher|Bauer|Inbar|Alter|Hauser|VanLange|Anderson|Graham|Ross.Slate1,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,11,Global,all,TRUE +6257,-0.303871325020927,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,3,4,6,5,1,2,3,2,2,3,2,1,1,1,1,1,1,2,3,1,3,2,1,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Bauer|Graham|Huang|Ross.Slate1|Alter|Miyamoto|Rottenstrich|Hauser|Anderson|Inbar|VanLange|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,10,Global,all,TRUE +6259,-0.201186900831326,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,4,6,3,4,7,4,5,3,1,1,1,1,1,4,2,1,5,2,5,1,5,3,1,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Ross.Slate1|Inbar|Huang|Hauser|Miyamoto|Anderson|Kay|Bauer|Graham|Alter|VanLange|Rottenstrich,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,7,Global,all,TRUE +6260,0.936060273454916,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,6,5,6,5,6,4,3,3,2,3,2,2,4,4,3,1,4,2,3,1,3,3,2,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Critcher|Huang|Ross.Slate1|Bauer|VanLange|Graham|Kay|Anderson|Inbar|Miyamoto|Alter|Rottenstrich,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +6261,-0.326932705639,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,5,5,5,5,6,3,3,3,4,2,1,2,3,3,4,1,4,1,3,2,2,1,2,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Inbar|Miyamoto|Alter|Anderson|VanLange|Kay|Critcher|Bauer|Graham|Huang|Ross.Slate1|Hauser,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,5,Global,all,TRUE +6266,0.670731776742596,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,6,6,6,5,3,4,1,1,5,5,1,2,4,5,1,1,5,1,4,1,1,4,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Inbar|Kay|Hauser|Alter|Huang|Anderson|Miyamoto|Critcher|Rottenstrich|Ross.Slate1|Bauer|VanLange,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +6268,-1.22599822718459,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,3,3,4,3,2,4,1,2,1,2,1,1,1,2,1,1,3,2,3,1,1,2,2,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|Bauer|Alter|Anderson|Ross.Slate1|Graham|Kay|Huang|VanLange|Inbar|Critcher|Rottenstrich,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,5,Global,all,TRUE +6271,-1.34212838219333,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,6,6,6,6,5,4,4,3,4,3,2,2,3,4,3,3,4,2,3,2,4,4,3,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Huang|Graham|Ross.Slate1|Critcher|Anderson|Kay|Bauer|Inbar|Hauser|Rottenstrich|Alter|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,6,Global,all,TRUE +6275,0.0501759048820246,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,2,3,3,3,3,3,2,1,2,3,1,2,2,2,5,2,5,1,3,1,4,3,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Hauser|Graham|Bauer|Kay|VanLange|Rottenstrich|Anderson|Miyamoto|Ross.Slate1|Critcher|Alter|Inbar,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +6276,0.473545276054231,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,5,5,6,6,6,4,4,3,3,2,1,3,3,3,4,1,4,3,3,1,3,2,2,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Rottenstrich|Alter|Huang|Ross.Slate1|Inbar|Bauer|Kay|Critcher|Miyamoto|VanLange|Hauser|Graham,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing,1,Global,all,TRUE +6277,-0.182857522178084,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,1,6,1,4,4,3,5,5,1,1,2,5,1,1,4,1,3,1,1,2,5,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|VanLange|Kay|Inbar|Graham|Miyamoto|Ross.Slate1|Huang|Rottenstrich|Critcher|Hauser|Anderson|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,12,Global,all,TRUE +6281,0.307588857220541,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,2,3,1,5,1,2,4,1,3,1,1,1,3,4,1,1,4,1,3,1,1,1,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Kay|Hauser|Inbar|Bauer|Critcher|Huang|Alter|Rottenstrich|Miyamoto|Anderson|VanLange|Ross.Slate1,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five,11,Global,all,TRUE +6282,0.69261301211537,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marianipad,6,3,6,7,7,4,3,1,3,1,1,1,4,4,1,1,3,2,1,1,1,5,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,marianipad,USA,"Marian University, Indianapolis, IN",English,1,legal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Rottenstrich|Inbar|Critcher|Miyamoto|Anderson|Hauser|Bauer|Graham|VanLange|Kay|Ross.Slate1|Huang,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,6,Global,all,TRUE +6287,0.734003771386684,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,5,5,6,5,5,4,2,2,4,5,2,2,5,4,2,3,5,2,4,3,1,5,5,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Graham|Miyamoto|Kay|Ross.Slate1|VanLange|Critcher|Alter|Bauer|Rottenstrich|Hauser|Huang|Inbar,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,1,Global,all,TRUE +6289,-2.07234358778057,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,2,5,3,3,1,5,2,2,1,1,2,1,1,1,1,2,4,1,5,1,1,1,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Bauer|Huang|VanLange|Alter|Ross.Slate1|Miyamoto|Graham|Anderson|Inbar|Hauser|Critcher|Kay,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,9,Global,all,TRUE +6291,-1.13070938718897,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,4,5,6,6,5,1,1,1,1,1,1,1,2,3,1,1,1,1,3,1,1,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Hauser|Rottenstrich|Graham|Huang|Miyamoto|Anderson|Inbar|Kay|Bauer|Ross.Slate1|Alter|Critcher,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +6292,-0.219771661817964,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,6,6,7,6,6,4,1,1,5,3,1,1,4,5,1,1,5,1,4,1,1,3,4,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Kay|Ross.Slate1|Graham|Huang|Hauser|Rottenstrich|Inbar|Bauer|Miyamoto|Alter|Anderson|Critcher,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +6293,0.537477455763786,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,5,5,7,5,5,5,1,1,4,3,1,1,4,4,1,1,5,1,4,1,1,2,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Inbar|Anderson|Rottenstrich|VanLange|Graham|Bauer|Alter|Critcher|Kay|Ross.Slate1|Huang|Miyamoto,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,3,Global,all,TRUE +6297,0.356501779117226,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,7,7,7,5,5,4,1,2,3,4,1,1,3,4,2,1,4,1,3,1,2,4,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Critcher|Anderson|Kay|Huang|Rottenstrich|Alter|Graham|Bauer|VanLange|Inbar|Miyamoto|Hauser,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +6301,-1.04199065399833,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,6,7,6,6,5,3,2,3,1,4,1,1,2,4,2,2,4,1,2,2,2,4,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Anderson|Inbar|Alter|Graham|Ross.Slate1|Critcher|VanLange|Rottenstrich|Hauser|Miyamoto|Bauer|Kay,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +6302,1.09950475592874,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,7,7,7,7,6,2,1,3,4,3,1,1,3,4,1,1,2,1,4,3,1,2,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Ross.Slate1|Inbar|Huang|Rottenstrich|Graham|Alter|Hauser|Miyamoto|VanLange|Kay|Bauer|Anderson,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,13,Global,all,TRUE +6304,0.875300215170697,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,3,5,3,3,3,3,3,2,4,2,2,2,2,1,4,1,5,4,5,2,1,1,3,1,4,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Rottenstrich|Huang|Inbar|Miyamoto|Bauer|Ross.Slate1|Critcher|Alter|Graham|Anderson|VanLange|Kay,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,11,Global,all,TRUE +6305,0.254477539993092,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,6,6,6,6,6,2,1,1,2,2,1,1,1,1,1,1,2,1,2,1,1,2,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Bauer|Graham|VanLange|Rottenstrich|Inbar|Huang|Anderson|Alter|Kay|Critcher|Ross.Slate1|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,8,Global,all,TRUE +6307,0.0497825231335917,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,3,6,5,5,5,2,3,1,3,1,1,1,2,1,2,1,4,1,3,3,1,3,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Huang|Rottenstrich|Critcher|Alter|Inbar|Bauer|Hauser|Kay|Graham|Anderson|Miyamoto|Ross.Slate1,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,11,Global,all,TRUE +6308,0.439803257839687,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,5,6,6,5,5,2,3,2,2,1,1,2,1,2,2,1,3,1,2,1,2,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Ross.Slate1|Graham|Kay|Bauer|Rottenstrich|Alter|Hauser|Anderson|Critcher|Miyamoto|Inbar|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,9,Global,all,TRUE +6309,-0.36805666159328,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,5,5,3,7,6,2,1,1,3,1,1,1,1,2,1,1,2,1,4,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occidtab,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Alter|Ross.Slate1|Kay|Inbar|Rottenstrich|Huang|Critcher|VanLange|Graham|Hauser|Bauer|Anderson,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +6311,0.300611722212874,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,7,7,7,6,5,5,2,1,4,4,1,1,3,4,1,1,4,1,4,1,3,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|VanLange|Miyamoto|Anderson|Kay|Critcher|Alter|Hauser|Graham|Rottenstrich|Ross.Slate1|Bauer|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,4,Global,all,TRUE +6313,0.114094438137344,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,5,6,6,5,6,3,1,1,2,2,1,1,2,3,2,1,3,1,2,1,2,2,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Alter|VanLange|Graham|Critcher|Ross.Slate1|Kay|Rottenstrich|Huang|Miyamoto|Hauser|Inbar|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,1,Global,all,TRUE +6314,0.625915739183147,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,2,6,6,5,6,3,1,1,1,1,1,1,1,1,2,1,1,1,3,1,2,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Alter|Hauser|Anderson|Rottenstrich|Bauer|Critcher|Miyamoto|VanLange|Kay|Inbar|Huang|Ross.Slate1,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,4,Global,all,TRUE +6318,-0.361868515553079,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,2,4,4,4,4,4,3,1,2,2,1,1,2,3,3,1,3,1,4,1,2,2,3,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Rottenstrich|Kay|Huang|Ross.Slate1|Miyamoto|Bauer|VanLange|Alter|Inbar|Critcher|Anderson|Graham,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,12,Global,all,TRUE +6319,0.598237514048005,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,6,6,7,2,6,5,2,4,5,4,3,5,4,5,3,2,5,1,5,3,3,5,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Anderson|Kay|Miyamoto|Graham|Critcher|Rottenstrich|Hauser|Inbar|Bauer|Huang|VanLange|Alter,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection,2,Global,all,TRUE +6320,0.476310369276898,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,5,6,6,5,5,4,2,1,4,3,2,1,3,3,2,2,4,1,4,1,1,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Kay|Bauer|Graham|Huang|Alter|Inbar|Miyamoto|Anderson|Rottenstrich|VanLange|Critcher|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five,9,Global,all,TRUE +6321,-0.700082431237823,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,3,6,3,3,1,4,3,2,4,1,3,3,1,2,4,4,2,2,4,2,5,1,1,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Kay|Bauer|Inbar|Hauser|Graham|Huang|Ross.Slate1|Anderson|VanLange|Rottenstrich|Alter|Critcher,ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,9,Global,all,TRUE +6325,-0.304124481883725,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,2,6,6,6,2,4,4,5,3,4,1,4,4,4,5,1,5,4,2,1,4,3,4,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Huang|Ross.Slate1|Miyamoto|Graham|Inbar|Anderson|VanLange|Hauser|Critcher|Alter|Rottenstrich|Kay,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,7,Global,all,TRUE +6327,-0.761111518309676,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,7,7,7,7,6,5,1,3,5,5,1,1,4,5,4,1,5,2,5,1,1,5,5,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Critcher|Alter|Hauser|Rottenstrich|VanLange|Inbar|Bauer|Graham|Ross.Slate1|Miyamoto|Huang|Kay,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +6328,-0.605568933755423,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,6,6,6,6,5,4,1,1,5,1,2,1,4,5,2,4,5,2,5,1,1,1,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occidtab,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Bauer|Alter|Rottenstrich|Critcher|Hauser|Miyamoto|Graham|Ross.Slate1|Inbar|Kay|Anderson|Huang,ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,12,Global,all,TRUE +6329,-0.0928342907813546,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,5,4,5,4,4,1,2,2,2,1,1,2,1,1,2,1,1,1,2,1,2,1,1,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Alter|Kay|Hauser|Rottenstrich|Huang|Miyamoto|VanLange|Ross.Slate1|Graham|Inbar|Critcher|Bauer,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing,1,Global,all,TRUE +6330,-1.29335345971168,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,6,5,6,7,5,1,2,1,2,1,1,1,4,3,1,1,3,1,1,1,2,2,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Inbar|Huang|Alter|Bauer|VanLange|Kay|Anderson|Hauser|Ross.Slate1|Miyamoto|Critcher|Rottenstrich,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,8,Global,all,TRUE +6333,0.542740838892086,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,6,6,7,6,6,4,2,1,2,2,1,2,1,1,1,1,4,1,2,1,2,2,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|VanLange|Miyamoto|Critcher|Alter|Hauser|Kay|Graham|Rottenstrich|Inbar|Huang|Bauer|Anderson,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,13,Global,all,TRUE +6338,-0.882111674698282,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,6,6,7,5,5,4,1,1,4,4,1,1,2,4,1,1,3,1,4,1,1,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Ross.Slate1|Bauer|Kay|Anderson|Hauser|Rottenstrich|Graham|Alter|Huang|VanLange|Critcher|Inbar,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five,5,Global,all,TRUE +6339,0.233256489685785,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,3,5,5,5,3,1,2,1,1,1,1,1,1,1,1,1,1,1,5,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Alter|Inbar|VanLange|Anderson|Graham|Kay|Hauser|Miyamoto|Bauer|Critcher|Ross.Slate1|Rottenstrich,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +6341,-0.226100032743801,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,7,7,7,7,7,3,1,1,3,3,1,1,3,3,1,1,4,1,3,1,1,4,2,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Anderson|Ross.Slate1|Kay|Graham|Miyamoto|Bauer|Rottenstrich|Alter|VanLange|Inbar|Critcher|Huang,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +6342,0.709484021222642,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,3,3,4,2,1,5,2,4,2,3,3,2,4,3,2,1,4,2,1,1,3,3,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Ross.Slate1|Anderson|Inbar|Miyamoto|Huang|Alter|Critcher|VanLange|Bauer|Graham|Hauser|Rottenstrich,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE,3,Global,all,TRUE +6343,0.298900195804107,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,3,5,5,3,7,3,3,3,2,2,3,1,3,2,3,3,3,3,2,1,2,3,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Kay|Hauser|Miyamoto|Ross.Slate1|Anderson|Graham|Rottenstrich|VanLange|Alter|Bauer|Inbar|Critcher,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,6,Global,all,TRUE +6345,0.310887557077276,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,4,5,5,4,4,3,1,1,5,1,1,1,1,4,1,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Ross.Slate1|Rottenstrich|Anderson|Alter|VanLange|Huang|Inbar|Critcher|Kay|Hauser|Miyamoto|Bauer,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,4,Global,all,TRUE +6347,0.199121089722808,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,7,7,7,6,6,3,1,2,4,3,1,1,2,3,1,1,2,1,4,1,1,3,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Critcher|Huang|Rottenstrich|Hauser|Graham|VanLange|Ross.Slate1|Kay|Miyamoto|Anderson|Inbar|Alter,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +6350,0.348459656312023,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marianipad,2,6,5,2,4,2,3,4,5,3,1,3,2,5,1,1,5,1,5,1,1,3,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,marianipad,USA,"Marian University, Indianapolis, IN",English,1,legal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Kay|Graham|Alter|VanLange|Rottenstrich|Bauer|Miyamoto|Ross.Slate1|Critcher|Inbar|Anderson|Hauser,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,12,Global,all,TRUE +6351,-0.976487172765647,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,4,5,7,6,2,5,1,2,4,3,1,2,3,4,1,1,4,2,4,2,1,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Kay|Miyamoto|Bauer|Graham|Anderson|Alter|Huang|Inbar|Hauser|Rottenstrich|VanLange|Critcher,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,6,Global,all,TRUE +6355,0.0769271416346661,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marianipad,2,1,1,4,2,2,3,5,2,1,1,5,2,1,5,3,3,5,3,2,5,3,1,2,5,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,marianipad,USA,"Marian University, Indianapolis, IN",English,1,legal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Critcher|Bauer|Rottenstrich|Hauser|Kay|Alter|Huang|VanLange|Miyamoto|Graham|Ross.Slate1|Anderson,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,13,Global,all,TRUE +6361,-0.00466058520842775,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,6,6,6,6,3,3,1,1,1,3,1,2,4,2,1,1,2,1,4,1,1,3,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Huang|Kay|Inbar|Miyamoto|VanLange|Bauer|Hauser|Critcher|Graham|Anderson|Alter|Rottenstrich,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five,11,Global,all,TRUE +6362,-0.28475518287082,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,6,2,4,5,3,5,3,3,2,4,2,2,1,4,3,1,3,3,1,2,1,4,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Hauser|Miyamoto|Kay|VanLange|Rottenstrich|Alter|Inbar|Anderson|Critcher|Huang|Graham|Ross.Slate1,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,9,Global,all,TRUE +6365,0.943709014511686,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,3,5,4,5,6,4,2,2,4,2,2,2,3,3,2,1,3,1,5,1,2,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Miyamoto|Kay|Rottenstrich|Critcher|Huang|Bauer|Ross.Slate1|VanLange|Hauser|Inbar|Alter|Anderson,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,13,Global,all,TRUE +6367,0.562123784359227,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,5,6,6,5,5,3,5,1,4,4,1,1,3,4,2,1,4,1,3,1,1,3,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occidtab,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Hauser|Miyamoto|Huang|Ross.Slate1|Rottenstrich|Bauer|Alter|Critcher|Anderson|Kay|Inbar|VanLange,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +6370,-0.177720717481183,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,5,5,5,3,2,3,1,3,4,2,1,2,2,3,2,1,3,4,3,1,1,1,3,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Anderson|VanLange|Critcher|Ross.Slate1|Graham|Hauser|Kay|Rottenstrich|Huang|Inbar|Miyamoto|Bauer,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,2,Global,all,TRUE +6374,0.723323133790213,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,6,6,6,7,6,3,2,2,2,2,1,2,1,1,1,1,3,1,4,1,1,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Rottenstrich|Graham|Huang|Miyamoto|Hauser|Bauer|Inbar|Alter|VanLange|Anderson|Ross.Slate1|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,11,Global,all,TRUE +6375,0.501490304506407,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,3,6,6,4,7,4,1,1,1,2,1,1,1,1,2,1,3,1,3,1,2,2,1,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occidtab,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Ross.Slate1|Kay|VanLange|Critcher|Bauer|Alter|Rottenstrich|Graham|Anderson|Inbar|Miyamoto|Huang,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,10,Global,all,TRUE +6377,-0.577635326286884,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,5,5,5,5,3,2,2,2,3,1,1,3,1,1,2,1,2,3,2,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occidtab,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Anderson|Inbar|Hauser|Huang|Ross.Slate1|Critcher|Miyamoto|Rottenstrich|Bauer|Graham|Kay|VanLange,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing,2,Global,all,TRUE +6379,0.720558040567546,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,3,2,4,5,2,2,1,1,4,1,1,4,2,4,2,1,4,3,2,1,1,2,4,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Miyamoto|Huang|Anderson|Alter|Kay|Graham|Ross.Slate1|VanLange|Rottenstrich|Hauser|Inbar|Critcher,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,4,Global,all,TRUE +6380,0.0909064790878721,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,5,6,5,7,6,2,1,1,3,1,1,1,1,3,1,1,1,1,3,1,1,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Graham|Miyamoto|Alter|Inbar|Critcher|Kay|VanLange|Anderson|Huang|Hauser|Ross.Slate1|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,9,Global,all,TRUE +6383,0.0281544446236157,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,6,7,6,4,1,4,2,5,4,1,1,3,3,1,2,1,5,5,3,2,1,3,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Miyamoto|Kay|Anderson|Bauer|Hauser|Alter|Ross.Slate1|Inbar|Huang|Critcher|VanLange|Graham,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,4,Global,all,TRUE +6384,0.664934786980228,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,5,5,6,7,6,3,2,2,4,5,1,2,2,3,1,1,4,1,4,1,3,5,1,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Hauser|Alter|Anderson|Rottenstrich|Huang|Graham|Ross.Slate1|Inbar|Miyamoto|VanLange|Kay|Bauer,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +6386,0.216652283895547,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,5,6,6,5,5,2,4,1,2,3,1,4,3,4,2,1,3,1,2,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Hauser|Bauer|Ross.Slate1|Anderson|Huang|Inbar|Graham|Critcher|Miyamoto|Alter|VanLange|Kay,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five,5,Global,all,TRUE +6388,-0.59793161368229,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,5,4,5,6,3,3,1,1,2,2,1,1,2,2,1,1,2,1,3,1,3,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Bauer|Anderson|Graham|Miyamoto|VanLange|Hauser|Ross.Slate1|Critcher|Alter|Kay|Huang|Inbar,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,3,Global,all,TRUE +6389,-1.07415914521915,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,5,7,5,5,2,2,3,3,2,2,1,2,1,2,1,2,3,2,4,1,2,1,3,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occidtab,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Bauer|Anderson|Alter|Hauser|VanLange|Miyamoto|Ross.Slate1|Rottenstrich|Critcher|Huang|Kay|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,3,Global,all,TRUE +6390,-0.0742495297947158,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,4,4,4,7,4,4,4,2,4,4,1,1,4,4,3,1,5,2,4,1,2,4,5,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Inbar|VanLange|Anderson|Hauser|Alter|Rottenstrich|Kay|Miyamoto|Critcher|Ross.Slate1|Bauer|Huang,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,4,Global,all,TRUE +6393,-0.805393949235056,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,5,6,5,1,3,2,1,1,1,1,1,1,1,4,1,1,2,1,4,1,1,1,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Graham|Bauer|Inbar|Kay|Anderson|Critcher|VanLange|Alter|Rottenstrich|Hauser|Huang|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,6,Global,all,TRUE +6394,0.341204297003686,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,7,7,7,7,7,3,1,5,5,4,1,1,4,5,1,1,5,1,5,1,1,4,3,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|VanLange|Rottenstrich|Bauer|Graham|Hauser|Alter|Miyamoto|Ross.Slate1|Anderson|Inbar|Kay|Huang,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +6398,1.16620202886096,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,6,7,5,5,6,4,4,3,2,5,2,3,4,4,3,1,4,2,3,4,3,4,4,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Huang|Critcher|Bauer|Anderson|Kay|Miyamoto|Hauser|VanLange|Inbar|Graham|Ross.Slate1|Alter,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,5,Global,all,TRUE +6402,0.255531106806992,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,3,5,4,5,3,1,1,1,2,1,1,3,1,1,1,2,1,1,2,1,1,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Alter|Graham|Huang|Anderson|Ross.Slate1|Bauer|Inbar|Kay|Critcher|Rottenstrich|VanLange|Miyamoto,ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE,5,Global,all,TRUE +6403,-0.58607083084052,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,6,6,6,6,6,4,1,1,4,4,1,1,4,4,1,2,4,1,4,1,1,4,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Huang|Critcher|Kay|Miyamoto|Rottenstrich|Ross.Slate1|Bauer|Alter|VanLange|Hauser|Graham|Anderson,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,13,Global,all,TRUE +6404,0.627500687160516,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,6,6,6,6,6,4,3,3,3,4,2,2,3,4,3,3,3,3,3,2,3,4,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Anderson|Alter|Ross.Slate1|VanLange|Kay|Graham|Inbar|Miyamoto|Bauer|Critcher|Huang|Hauser,ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,2,Global,all,TRUE +6406,0.066653532240864,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,5,6,7,7,5,3,3,1,2,1,1,1,1,1,1,1,1,1,1,1,4,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Hauser|Huang|Anderson|VanLange|Ross.Slate1|Miyamoto|Critcher|Rottenstrich|Inbar|Kay|Graham|Bauer,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,4,Global,all,TRUE +6407,0.576089475358197,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,5,6,6,4,5,3,3,3,2,3,1,2,1,1,1,1,1,1,1,1,1,2,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|VanLange|Huang|Alter|Miyamoto|Ross.Slate1|Anderson|Critcher|Bauer|Kay|Inbar|Hauser|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,7,Global,all,TRUE +6409,-1.1220070793183,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,6,7,6,5,5,3,1,4,2,2,1,1,2,3,3,1,4,3,3,2,1,2,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Miyamoto|Hauser|Critcher|Kay|Huang|VanLange|Inbar|Bauer|Anderson|Alter|Graham|Ross.Slate1,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection,10,Global,all,TRUE +6410,-0.119205792239799,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,3,6,6,3,4,4,2,2,4,3,1,1,4,4,1,1,4,1,4,1,1,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Bauer|Graham|Anderson|Hauser|Miyamoto|Huang|Inbar|Kay|VanLange|Critcher|Alter|Rottenstrich,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,4,Global,all,TRUE +6412,0.617747037946546,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,3,6,6,6,1,3,2,3,3,3,2,1,4,4,2,2,4,2,4,1,1,3,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Hauser|Bauer|Graham|Anderson|Miyamoto|Kay|Alter|Critcher|Inbar|Rottenstrich|Ross.Slate1|Huang,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +6415,-0.768758033895846,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,7,7,7,1,7,4,1,1,3,3,1,1,4,3,1,1,2,1,3,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occidtab,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|VanLange|Graham|Hauser|Miyamoto|Kay|Anderson|Bauer|Critcher|Ross.Slate1|Alter|Huang|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,7,Global,all,TRUE +6417,-0.252066731470176,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,7,7,7,7,7,3,1,1,3,4,1,1,3,4,1,1,3,1,3,1,2,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|VanLange|Alter|Hauser|Inbar|Critcher|Rottenstrich|Kay|Graham|Miyamoto|Anderson|Huang|Bauer,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +6418,0.531680466001418,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,6,7,7,7,5,1,1,5,1,1,1,1,1,3,1,1,5,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Alter|Critcher|Hauser|Ross.Slate1|Huang|Miyamoto|Anderson|Rottenstrich|VanLange|Kay|Inbar|Bauer,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,8,Global,all,TRUE +6420,0.330928462139285,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,6,6,6,6,6,3,2,4,3,2,1,1,4,5,3,1,5,1,3,2,1,2,3,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Miyamoto|Alter|Bauer|Huang|Anderson|Inbar|Kay|VanLange|Graham|Hauser|Ross.Slate1|Rottenstrich,ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,6,Global,all,TRUE +6422,0.891384460781103,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,2,2,3,2,2,3,1,1,2,2,1,1,3,3,1,1,3,1,3,1,1,3,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Bauer|Graham|Huang|Kay|Ross.Slate1|VanLange|Anderson|Alter|Inbar|Hauser|Miyamoto|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,8,Global,all,TRUE +6426,-1.0273647779339,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,3,6,4,3,2,3,1,1,3,2,1,1,1,1,2,1,2,1,4,1,4,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Critcher|Huang|Inbar|Alter|Rottenstrich|Hauser|Miyamoto|Anderson|Ross.Slate1|VanLange|Graham|Bauer,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +6427,0.490149481844469,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,5,5,5,5,5,3,3,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Inbar|Alter|Miyamoto|Critcher|Rottenstrich|VanLange|Huang|Anderson|Ross.Slate1|Hauser|Bauer|Kay,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,9,Global,all,TRUE +6428,-0.0025556770512275,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,7,6,6,6,4,3,2,5,3,4,1,1,3,3,3,1,4,2,3,1,2,3,3,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Critcher|Rottenstrich|Huang|Alter|Anderson|Miyamoto|Bauer|Ross.Slate1|VanLange|Graham|Hauser|Kay,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,6,Global,all,TRUE +6430,-0.371481939881414,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,4,4,5,6,3,5,2,2,5,5,5,3,1,3,2,3,1,3,2,4,4,5,2,4,5,,,,,,,,,,,,,,,,,,,,,,,,,,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Kay|Huang|Inbar|Bauer|Rottenstrich|Hauser|Ross.Slate1|VanLange|Miyamoto|Alter|Critcher|Anderson,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,13,Global,all,TRUE +6431,0.266338322834862,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,5,7,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Critcher|Alter|Hauser|Graham|VanLange|Anderson|Huang|Ross.Slate1|Inbar|Bauer|Miyamoto|Kay,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +6432,-0.144512305900707,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,6,6,6,6,5,4,2,1,1,4,1,1,4,4,4,1,4,4,4,1,4,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Ross.Slate1|Inbar|Graham|Kay|Hauser|Bauer|Rottenstrich|Alter|Huang|Critcher|VanLange|Anderson,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +6433,0.0725771004346305,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,7,7,5,6,6,4,2,2,2,4,1,2,4,4,3,1,3,1,3,1,1,3,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Huang|Rottenstrich|Critcher|Graham|Ross.Slate1|Inbar|Kay|VanLange|Anderson|Alter|Bauer|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,10,Global,all,TRUE +6434,0.927764993786915,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,7,7,7,7,5,1,1,3,1,1,3,1,1,5,4,5,5,3,2,1,3,1,2,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Kay|VanLange|Graham|Inbar|Rottenstrich|Anderson|Huang|Bauer|Critcher|Ross.Slate1|Alter|Miyamoto,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,7,Global,all,TRUE +6437,0.236021582908452,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,6,6,7,6,5,4,1,1,2,4,2,2,3,2,3,3,3,1,3,1,4,4,2,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Graham|Kay|Hauser|Anderson|Critcher|Ross.Slate1|Alter|Bauer|Huang|Miyamoto|VanLange|Inbar,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,5,Global,all,TRUE +6438,-0.0579121273215117,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,6,6,7,7,7,4,1,1,3,4,1,1,5,4,2,1,5,1,5,1,2,3,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Huang|Rottenstrich|Ross.Slate1|Bauer|Miyamoto|Alter|Critcher|Kay|Graham|Inbar|VanLange|Hauser,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,1,Global,all,TRUE +6439,-1.2431338141383,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,5,5,6,5,2,3,1,1,3,1,1,1,2,2,1,1,3,1,4,1,1,2,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|VanLange|Critcher|Alter|Rottenstrich|Ross.Slate1|Inbar|Huang|Anderson|Miyamoto|Bauer|Hauser|Graham,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood,9,Global,all,TRUE +6440,0.747576080637221,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,1,6,5,6,7,1,1,1,3,2,1,1,2,1,2,1,2,1,3,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Huang|Alter|Miyamoto|Rottenstrich|Critcher|Kay|Hauser|Anderson|VanLange|Bauer|Inbar|Ross.Slate1,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,9,Global,all,TRUE +6441,-1.69141854269358,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,6,6,6,6,6,2,3,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Inbar|Critcher|Huang|Kay|VanLange|Graham|Ross.Slate1|Alter|Anderson|Hauser|Miyamoto|Bauer,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,10,Global,all,TRUE +6442,0.659657757397692,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,7,7,7,7,7,2,2,2,3,4,1,3,4,4,2,1,5,1,4,1,3,5,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Ross.Slate1|Graham|VanLange|Kay|Hauser|Anderson|Huang|Miyamoto|Alter|Bauer|Rottenstrich|Inbar,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,7,Global,all,TRUE +6443,0.420953919006614,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,6,6,6,2,2,3,1,1,3,2,1,1,3,4,1,1,3,1,3,1,1,2,2,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Inbar|Graham|Bauer|Critcher|Huang|VanLange|Alter|Anderson|Ross.Slate1|Rottenstrich|Kay|Miyamoto,ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,9,Global,all,TRUE +6446,0.052674194787658,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,6,6,6,7,7,1,4,2,1,1,1,1,1,1,1,1,1,1,1,1,5,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Miyamoto|VanLange|Ross.Slate1|Graham|Critcher|Inbar|Rottenstrich|Anderson|Kay|Hauser|Huang|Bauer,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE,9,Global,all,TRUE +6447,-0.235448879225701,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,3,5,5,5,2,5,1,1,5,5,1,1,5,3,1,5,5,1,4,1,1,5,5,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occidtab,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Anderson|Ross.Slate1|Rottenstrich|Miyamoto|Huang|Bauer|VanLange|Inbar|Critcher|Hauser|Kay|Graham,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,2,Global,all,TRUE +6448,-0.898322498740087,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,7,7,7,6,7,1,4,1,1,3,2,1,1,1,3,4,3,1,1,2,3,1,1,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|VanLange|Ross.Slate1|Miyamoto|Alter|Kay|Huang|Critcher|Hauser|Anderson|Graham|Bauer|Rottenstrich,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,10,Global,all,TRUE +6451,-0.396001690045456,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,6,7,7,7,6,4,1,3,3,4,1,2,4,5,2,1,2,1,3,1,4,5,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Kay|Rottenstrich|Huang|Critcher|Graham|Alter|Miyamoto|Bauer|Anderson|VanLange|Inbar|Ross.Slate1,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,10,Global,all,TRUE +6453,0.991683527042234,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,5,5,6,2,6,4,1,2,4,4,1,1,4,3,1,1,4,1,4,1,2,3,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Huang|Inbar|Graham|Anderson|Miyamoto|Critcher|Rottenstrich|Kay|Hauser|VanLange|Ross.Slate1|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,5,Global,all,TRUE +6455,-0.126587729979535,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,6,6,6,5,5,4,3,3,5,4,2,3,5,5,4,3,4,3,4,3,2,4,3,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Inbar|Graham|Miyamoto|Alter|Huang|Hauser|Rottenstrich|Anderson|Bauer|Kay|Ross.Slate1|VanLange,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,9,Global,all,TRUE +6458,0.307068897040709,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,4,4,4,4,6,1,2,1,2,1,1,1,1,1,1,1,1,1,2,2,3,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Rottenstrich|Alter|Huang|VanLange|Bauer|Miyamoto|Kay|Ross.Slate1|Hauser|Critcher|Inbar|Anderson,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,13,Global,all,TRUE +6460,-0.085590352456654,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,3,5,5,1,2,1,1,4,2,2,5,1,1,3,1,4,3,1,3,1,5,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|VanLange|Bauer|Anderson|Miyamoto|Huang|Ross.Slate1|Graham|Hauser|Alter|Inbar|Kay|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing,4,Global,all,TRUE +6461,0.424112393977713,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,6,6,7,6,6,4,3,5,3,4,1,1,4,4,5,1,5,2,4,2,1,4,2,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|VanLange|Kay|Anderson|Rottenstrich|Graham|Miyamoto|Critcher|Huang|Alter|Inbar|Bauer|Hauser,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,4,Global,all,TRUE +6462,-1.45653336433907,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,6,6,6,6,6,2,3,4,2,4,1,2,2,2,3,1,4,2,2,1,3,1,2,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Inbar|Critcher|VanLange|Hauser|Kay|Graham|Anderson|Miyamoto|Rottenstrich|Bauer|Ross.Slate1|Alter,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,8,Global,all,TRUE +6465,0.20834335777331,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,3,5,5,4,3,3,1,2,3,1,2,1,1,1,3,3,2,1,3,1,1,1,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Critcher|Huang|Anderson|Graham|Kay|VanLange|Inbar|Hauser|Alter|Ross.Slate1|Rottenstrich|Miyamoto,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +6466,-0.445561150553372,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,7,7,7,7,7,2,1,1,1,2,1,1,2,3,1,1,3,1,2,1,1,2,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Critcher|Kay|Miyamoto|Anderson|VanLange|Bauer|Alter|Hauser|Huang|Rottenstrich|Ross.Slate1|Inbar,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +6468,0.20267294644234,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,4,5,6,5,5,1,3,5,2,1,1,3,1,1,5,1,2,3,2,1,2,1,1,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|VanLange|Ross.Slate1|Huang|Inbar|Graham|Hauser|Alter|Bauer|Rottenstrich|Anderson|Critcher|Miyamoto,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,11,Global,all,TRUE +6471,-0.0722712000689149,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,6,5,6,7,2,2,2,3,2,4,1,2,2,2,5,1,5,4,3,2,4,3,2,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Hauser|Inbar|Huang|Kay|Miyamoto|Bauer|Critcher|Alter|Graham|Ross.Slate1|Anderson|VanLange,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,12,Global,all,TRUE +6472,-0.112734970957728,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,5,6,5,3,2,2,1,1,1,1,1,1,2,1,3,1,4,1,4,1,3,1,1,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Kay|Huang|Alter|Inbar|Bauer|Rottenstrich|Critcher|Anderson|Ross.Slate1|Hauser|Miyamoto|VanLange,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,9,Global,all,TRUE +6473,-0.836902255390401,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,5,6,6,5,5,3,3,1,3,1,1,1,2,1,1,1,1,1,1,1,1,2,1,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Huang|Bauer|Alter|VanLange|Critcher|Rottenstrich|Anderson|Ross.Slate1|Hauser|Kay|Inbar|Graham,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +6475,-0.214888013983861,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,4,4,2,2,2,3,1,2,4,2,1,1,1,3,1,1,4,1,3,1,1,2,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Ross.Slate1|Inbar|Hauser|VanLange|Bauer|Miyamoto|Rottenstrich|Kay|Critcher|Anderson|Graham|Alter,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,11,Global,all,TRUE +6476,-0.242844463419674,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,4,6,6,6,6,2,3,2,2,4,1,1,3,4,1,1,3,1,3,1,1,3,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Anderson|Ross.Slate1|Inbar|Kay|Rottenstrich|Miyamoto|Alter|Graham|Huang|Critcher|Hauser|VanLange,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,2,Global,all,TRUE +6478,0.0529409981046916,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,6,7,7,7,7,4,1,2,4,5,1,1,4,4,4,1,4,1,4,1,4,4,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Miyamoto|Huang|Graham|Alter|Critcher|Kay|Bauer|Ross.Slate1|Rottenstrich|Anderson|Inbar|Hauser,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,11,Global,all,TRUE +6480,0.237999912634253,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,4,3,5,2,2,2,1,1,1,1,1,1,1,2,1,1,2,1,2,1,1,1,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Bauer|Critcher|Ross.Slate1|Rottenstrich|Alter|Anderson|Huang|Graham|VanLange|Inbar|Kay|Miyamoto,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,7,Global,all,TRUE +6484,-1.09010539141452,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,5,3,6,5,3,1,2,4,2,1,3,2,2,1,3,3,4,1,1,2,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Huang|Rottenstrich|Kay|Graham|Miyamoto|Ross.Slate1|Anderson|VanLange|Hauser|Inbar|Alter|Bauer,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +6487,-0.0544868490333779,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,5,5,6,6,6,2,1,1,4,3,1,1,3,3,1,1,3,1,4,1,1,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Bauer|Hauser|Rottenstrich|Huang|VanLange|Kay|Anderson|Miyamoto|Graham|Ross.Slate1|Alter|Critcher,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +6488,0.656625860857991,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,5,6,6,5,5,4,2,3,3,4,1,1,5,4,2,1,5,1,4,1,3,4,5,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Bauer|Rottenstrich|Ross.Slate1|VanLange|Anderson|Kay|Miyamoto|Huang|Critcher|Inbar|Alter|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,6,Global,all,TRUE +6492,-1.37376326678008,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,5,4,5,5,4,3,2,4,3,2,1,1,3,1,2,1,4,1,3,1,3,3,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Miyamoto|Rottenstrich|Hauser|Inbar|Anderson|Graham|VanLange|Ross.Slate1|Critcher|Kay|Alter|Huang,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood,6,Global,all,TRUE +6493,-0.121310700396999,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,5,6,6,6,2,5,4,3,4,4,1,2,4,4,2,2,4,3,5,1,4,2,1,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Huang|VanLange|Kay|Ross.Slate1|Alter|Inbar|Miyamoto|Hauser|Anderson|Graham|Bauer|Critcher,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,10,Global,all,TRUE +6500,0.241425190922387,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,mariantab,2,5,5,3,2,4,2,2,3,3,2,2,5,2,3,2,2,3,4,1,3,4,3,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,mariantab,USA,"Marian University, Indianapolis, IN",English,1,legal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Bauer|Miyamoto|Graham|Anderson|Alter|Hauser|Ross.Slate1|Rottenstrich|Inbar|Huang|Critcher|Kay,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five,5,Global,all,TRUE +6504,0.908382048319774,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,4,7,7,5,4,2,1,1,4,1,1,1,1,1,1,1,2,1,3,1,2,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occidtab,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Graham|VanLange|Miyamoto|Alter|Huang|Hauser|Rottenstrich|Critcher|Anderson|Bauer|Ross.Slate1|Kay,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,10,Global,all,TRUE +6505,0.316038008228413,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,6,6,6,6,6,1,2,1,3,1,1,1,1,2,1,1,2,1,3,2,3,1,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Anderson|Bauer|Inbar|Rottenstrich|Huang|Miyamoto|Hauser|Graham|Critcher|Ross.Slate1|VanLange|Kay,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,2,Global,all,TRUE +6506,-0.121577503714033,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,6,4,7,7,7,5,1,1,5,5,1,1,5,5,1,1,5,1,5,1,1,5,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Alter|Inbar|Anderson|Ross.Slate1|Kay|Bauer|Graham|Huang|VanLange|Miyamoto|Rottenstrich|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,4,Global,all,TRUE +6507,0.739800761149052,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marianipad,5,7,1,1,1,5,3,3,3,4,2,2,4,5,3,3,5,3,5,2,3,4,5,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,marianipad,USA,"Marian University, Indianapolis, IN",English,1,legal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Rottenstrich|Alter|Huang|VanLange|Critcher|Miyamoto|Kay|Inbar|Ross.Slate1|Anderson|Hauser|Graham,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,11,Global,all,TRUE +6508,-1.21902109217693,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,5,5,6,5,4,4,2,3,4,4,1,1,4,3,3,1,4,3,3,1,3,3,3,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Bauer|Graham|Critcher|Rottenstrich|Inbar|Ross.Slate1|Kay|VanLange|Alter|Miyamoto|Anderson|Huang,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,12,Global,all,TRUE +6512,1.12138599130151,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,6,7,7,7,5,4,2,2,3,4,1,1,3,4,3,1,2,3,4,1,4,4,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Alter|Huang|Bauer|Rottenstrich|Anderson|Inbar|Miyamoto|Kay|Hauser|VanLange|Ross.Slate1|Critcher,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +6515,0.701175095100405,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,5,6,6,3,5,1,4,3,4,1,1,2,1,2,2,1,3,1,3,3,1,2,2,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Inbar|Hauser|Ross.Slate1|Alter|Anderson|Critcher|Bauer|VanLange|Rottenstrich|Miyamoto|Kay|Graham,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood,6,Global,all,TRUE +6516,-0.39218303000889,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,4,5,5,5,2,3,2,2,2,1,1,1,1,1,1,1,1,1,3,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Bauer|Huang|Critcher|Graham|Hauser|Ross.Slate1|Rottenstrich|Inbar|Alter|VanLange|Miyamoto|Kay,ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,1,Global,all,TRUE +6517,0.190418781852137,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,6,6,7,6,6,2,2,2,2,3,1,1,2,4,4,1,3,1,3,1,2,1,1,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Miyamoto|VanLange|Critcher|Alter|Graham|Huang|Anderson|Bauer|Inbar|Rottenstrich|Hauser|Ross.Slate1,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,8,Global,all,TRUE +6518,0.609044730075876,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,6,6,6,6,6,3,2,2,1,1,1,1,1,2,2,1,2,3,2,1,1,2,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Critcher|Bauer|Kay|VanLange|Miyamoto|Rottenstrich|Alter|Graham|Ross.Slate1|Anderson|Inbar|Huang,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +6522,0.291251454747337,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,6,6,6,6,6,1,5,1,1,1,3,3,1,1,1,1,1,1,1,3,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Graham|VanLange|Rottenstrich|Critcher|Alter|Ross.Slate1|Kay|Huang|Miyamoto|Inbar|Anderson|Hauser,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,12,Global,all,TRUE +6524,0.0829909347140678,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,6,6,1,6,7,4,2,1,3,3,1,1,3,4,1,1,5,1,3,1,1,2,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Kay|Alter|Graham|Inbar|Anderson|Huang|Critcher|Hauser|Bauer|VanLange|Miyamoto|Ross.Slate1,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,6,Global,all,TRUE +6529,-1.01563057352353,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,6,7,6,7,6,4,1,1,3,3,1,1,2,3,1,1,4,1,4,1,1,4,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|VanLange|Rottenstrich|Bauer|Critcher|Hauser|Kay|Miyamoto|Ross.Slate1|Graham|Huang|Alter|Anderson,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,13,Global,all,TRUE +6537,0.475650184211431,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,5,5,6,5,5,5,2,4,5,5,1,2,5,5,2,2,5,2,5,2,1,5,5,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Kay|Anderson|Hauser|Bauer|VanLange|Inbar|Graham|Critcher|Huang|Ross.Slate1|Rottenstrich|Alter,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,3,Global,all,TRUE +6538,0.860407535789226,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,5,7,6,2,3,1,1,1,3,1,1,1,1,1,1,1,1,1,3,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Rottenstrich|Kay|Bauer|Ross.Slate1|Anderson|Critcher|Miyamoto|Alter|VanLange|Huang|Inbar|Graham,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood,6,Global,all,TRUE +6540,0.353596461008924,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,6,7,6,6,6,3,2,2,3,3,2,1,5,4,3,1,5,3,3,1,2,3,5,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Huang|Graham|Miyamoto|Inbar|Bauer|Ross.Slate1|Critcher|Anderson|Rottenstrich|Kay|Alter|VanLange,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +6542,-0.963039216475909,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,7,7,7,7,7,3,1,1,3,4,3,3,3,1,1,3,4,1,4,1,1,4,1,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Anderson|VanLange|Miyamoto|Bauer|Kay|Inbar|Huang|Critcher|Ross.Slate1|Graham|Hauser|Alter,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,2,Global,all,TRUE +6544,1.29827620459447,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,5,5,6,5,5,1,1,2,3,2,1,1,1,2,3,1,3,1,3,1,1,2,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Kay|Graham|Anderson|Miyamoto|Huang|Critcher|VanLange|Rottenstrich|Alter|Hauser|Inbar|Ross.Slate1,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,4,Global,all,TRUE +6545,-0.245864938975738,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,4,5,5,5,6,3,3,2,3,4,1,2,1,1,1,1,2,1,3,1,3,4,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Inbar|Bauer|Huang|Anderson|Alter|Critcher|Miyamoto|VanLange|Rottenstrich|Kay|Graham|Ross.Slate1,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing,5,Global,all,TRUE +6548,0.304303803818042,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,5,6,6,6,6,3,1,4,3,3,1,2,4,4,1,1,4,1,4,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Kay|Ross.Slate1|Inbar|Anderson|Miyamoto|Alter|Graham|Critcher|Rottenstrich|Hauser|VanLange|Bauer,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +6549,0.65043548934719,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,7,7,6,7,7,5,1,3,5,5,3,1,3,4,2,3,5,1,5,1,2,5,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Hauser|Rottenstrich|Anderson|Critcher|Huang|Ross.Slate1|Graham|Alter|VanLange|Inbar|Bauer|Miyamoto,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,4,Global,all,TRUE +6551,-0.133564864987202,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,6,7,7,7,6,1,1,2,2,3,1,1,1,3,2,1,4,1,1,1,1,2,2,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Huang|Alter|Miyamoto|Inbar|Graham|Rottenstrich|Bauer|Ross.Slate1|Anderson|VanLange|Kay|Hauser,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +6553,-0.585539449677051,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,4,6,5,5,3,3,3,1,4,3,1,1,4,4,1,1,4,1,4,1,1,4,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Bauer|Rottenstrich|Ross.Slate1|Anderson|Inbar|Hauser|Critcher|Alter|VanLange|Miyamoto|Huang|Graham,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,5,Global,all,TRUE +6555,0.345821141520755,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,5,6,5,5,6,1,2,2,3,1,1,1,1,1,2,1,3,1,3,1,3,3,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Graham|Kay|Alter|Anderson|Rottenstrich|Inbar|Hauser|Bauer|Critcher|VanLange|Huang|Miyamoto,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,5,Global,all,TRUE +6556,0.341077718572287,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,7,7,7,7,7,1,1,1,4,1,1,1,1,4,1,1,1,1,3,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Alter|Inbar|Bauer|Miyamoto|Hauser|Graham|Critcher|Ross.Slate1|Kay|Rottenstrich|Anderson|VanLange,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,12,Global,all,TRUE +6557,0.315897783342778,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,4,4,3,4,1,3,1,1,3,1,1,1,1,3,1,1,1,1,1,1,1,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Hauser|VanLange|Anderson|Bauer|Rottenstrich|Ross.Slate1|Miyamoto|Critcher|Alter|Graham|Kay|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,4,Global,all,TRUE +6561,0.741118905809386,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,6,6,6,6,6,4,4,3,3,4,2,3,2,4,4,1,3,3,4,1,4,4,3,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Miyamoto|Kay|Bauer|Huang|Critcher|VanLange|Graham|Hauser|Inbar|Alter|Ross.Slate1|Rottenstrich,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,1,Global,all,TRUE +6562,-1.28281304700085,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,5,6,7,7,5,3,2,2,4,4,1,2,3,4,1,1,3,1,3,1,1,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|Anderson|Kay|Huang|Alter|VanLange|Critcher|Bauer|Rottenstrich|Ross.Slate1|Inbar|Graham,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +6563,-0.350918849168975,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,6,6,6,6,6,4,4,2,3,4,1,1,4,4,2,3,4,1,3,2,1,4,2,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Rottenstrich|VanLange|Kay|Hauser|Anderson|Alter|Huang|Graham|Ross.Slate1|Critcher|Inbar|Bauer,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,6,Global,all,TRUE +6564,0.537337230878151,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,6,6,6,6,6,3,1,1,3,3,1,1,3,4,1,1,4,1,4,1,3,3,5,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Huang|Critcher|Ross.Slate1|Graham|Anderson|Alter|Kay|Inbar|Miyamoto|Bauer|VanLange|Hauser,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,6,Global,all,TRUE +6566,0.301005103961307,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,6,5,6,3,5,2,1,2,2,2,1,1,1,3,1,1,3,1,1,1,1,1,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Kay|Critcher|Hauser|VanLange|Graham|Huang|Alter|Miyamoto|Ross.Slate1|Anderson|Inbar|Bauer,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,11,Global,all,TRUE +6567,-0.653554867269608,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,2,5,3,3,2,2,1,2,4,2,2,1,3,2,2,3,4,1,2,1,2,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Rottenstrich|Hauser|Kay|VanLange|Miyamoto|Huang|Bauer|Critcher|Anderson|Graham|Inbar,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,11,Global,all,TRUE +6569,0.0945985606930399,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,3,6,5,6,3,5,4,3,5,4,2,2,1,2,5,3,5,5,5,3,4,4,2,5,3,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Ross.Slate1|Kay|Graham|Huang|VanLange|Anderson|Bauer|Hauser|Critcher|Miyamoto|Rottenstrich|Inbar,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing,7,Global,all,TRUE +6572,-0.672137402785647,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,1,4,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Kay|Rottenstrich|Hauser|Alter|Graham|Huang|Miyamoto|VanLange|Inbar|Critcher|Ross.Slate1|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,13,Global,all,TRUE +6575,0.45205742242989,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,6,7,5,7,3,2,2,1,2,1,1,1,1,1,1,1,1,1,2,1,3,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Inbar|Miyamoto|Ross.Slate1|Rottenstrich|Bauer|Kay|Anderson|VanLange|Huang|Hauser|Graham|Critcher,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,8,Global,all,TRUE +6576,0.665201590297262,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,5,7,7,7,7,5,1,1,4,5,1,1,4,5,1,1,5,1,4,1,4,5,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Rottenstrich|Inbar|Graham|Miyamoto|Bauer|Huang|Hauser|Anderson|Critcher|VanLange|Alter|Ross.Slate1,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,9,Global,all,TRUE +6577,0.612076626615576,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,6,7,6,7,5,4,2,4,3,5,2,2,2,2,2,3,4,2,3,1,3,4,4,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occidtab,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Miyamoto|Kay|Graham|Bauer|Hauser|Anderson|Critcher|Inbar|VanLange|Rottenstrich|Alter|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,7,Global,all,TRUE +6581,-1.04528935385507,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,5,6,6,3,3,3,2,1,3,3,1,1,4,3,2,1,4,1,3,1,1,2,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occidtab,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|VanLange|Huang|Rottenstrich|Ross.Slate1|Anderson|Graham|Alter|Critcher|Kay|Inbar|Bauer|Hauser,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE,6,Global,all,TRUE +6583,-0.562604647490377,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,2,6,7,4,5,5,3,1,3,1,1,4,3,1,1,1,5,1,1,1,3,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Bauer|Alter|Graham|Ross.Slate1|VanLange|Hauser|Huang|Inbar|Rottenstrich|Critcher|Miyamoto|Kay,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +6585,0.985099773783,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,6,6,7,6,6,1,4,1,3,1,1,1,1,1,1,1,2,1,2,3,2,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Kay|Huang|Ross.Slate1|Alter|Inbar|Miyamoto|VanLange|Bauer|Rottenstrich|Graham|Critcher|Anderson,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,13,Global,all,TRUE +6589,-0.492355517838622,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,5,5,6,6,6,4,1,2,3,4,2,3,4,3,4,3,3,1,3,1,2,4,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Anderson|Rottenstrich|Miyamoto|Ross.Slate1|VanLange|Alter|Graham|Bauer|Hauser|Huang|Critcher|Kay,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,2,Global,all,TRUE +6590,0.617086852881079,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,5,6,6,7,5,3,1,1,2,1,1,1,1,3,1,1,1,1,3,1,1,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Miyamoto|Graham|Critcher|Inbar|Huang|Bauer|Hauser|Ross.Slate1|VanLange|Alter|Kay|Rottenstrich,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +6596,-0.817786113240294,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marianipad,5,5,5,5,5,5,1,4,5,5,1,1,5,5,1,1,5,1,5,1,1,5,1,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,marianipad,USA,"Marian University, Indianapolis, IN",English,1,legal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Huang|Bauer|Hauser|Graham|Ross.Slate1|Inbar|Alter|Anderson|Critcher|Kay|Rottenstrich|VanLange,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +6599,0.331195265456318,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,1,3,4,1,2,5,4,2,3,5,1,2,5,4,1,1,5,1,3,1,1,5,5,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Ross.Slate1|Anderson|Alter|Rottenstrich|Inbar|Kay|Critcher|VanLange|Bauer|Graham|Huang|Miyamoto,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,3,Global,all,TRUE +6602,0.236819767388954,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,4,4,4,3,4,3,1,2,3,1,1,1,2,3,1,1,3,1,2,1,3,1,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Rottenstrich|Hauser|Alter|Anderson|VanLange|Miyamoto|Bauer|Ross.Slate1|Kay|Graham|Critcher|Huang,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,5,Global,all,TRUE +6603,-0.262480565749613,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,6,6,6,6,6,4,1,1,3,3,1,1,3,3,1,1,5,1,5,1,1,3,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Anderson|Miyamoto|Hauser|Huang|Ross.Slate1|Graham|Critcher|Bauer|Kay|Alter|VanLange|Rottenstrich,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,2,Global,all,TRUE +6604,-1.66479165890174,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,3,4,5,3,2,1,1,1,5,2,1,1,1,1,1,1,3,1,4,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Anderson|Alter|Hauser|Kay|VanLange|Miyamoto|Rottenstrich|Huang|Critcher|Inbar|Graham|Bauer,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing,2,Global,all,TRUE +6606,0.274253867208666,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,6,5,5,6,4,2,2,2,2,2,2,2,2,2,2,2,3,1,2,2,2,2,2,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Critcher|Bauer|Kay|Inbar|Hauser|Miyamoto|Alter|Anderson|Huang|Rottenstrich|Ross.Slate1|Graham,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,9,Global,all,TRUE +6608,0.579121371897898,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,5,5,5,6,4,4,3,3,4,5,3,3,5,5,3,3,5,3,4,3,3,4,5,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Kay|Huang|Graham|Critcher|Anderson|Rottenstrich|Inbar|Alter|Ross.Slate1|VanLange|Miyamoto|Hauser,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,6,Global,all,TRUE +6609,0.493321603269805,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marianipad,6,4,6,7,1,4,2,1,3,1,1,2,4,3,1,1,4,1,5,1,1,1,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,marianipad,USA,"Marian University, Indianapolis, IN",English,1,legal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Bauer|Inbar|Critcher|Kay|VanLange|Alter|Graham|Hauser|Huang|Ross.Slate1|Anderson|Miyamoto,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +6610,0.403155921516841,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,mariantab,5,6,4,5,1,3,2,2,3,1,1,2,2,3,2,1,3,1,4,1,2,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,mariantab,USA,"Marian University, Indianapolis, IN",English,1,legal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Hauser|Miyamoto|Ross.Slate1|Inbar|Rottenstrich|Graham|Critcher|Bauer|Kay|Alter|Anderson|VanLange,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,12,Global,all,TRUE +6614,0.396700972159605,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,mariantab,6,5,7,6,6,4,1,1,3,2,1,1,3,4,1,1,3,1,3,1,1,2,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,mariantab,USA,"Marian University, Indianapolis, IN",English,1,legal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Miyamoto|Rottenstrich|Anderson|Critcher|Bauer|Alter|Graham|Hauser|Huang|VanLange|Kay|Ross.Slate1,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,4,Global,all,TRUE +6616,0.543401023957553,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marianipad,3,5,6,2,4,4,3,4,3,1,2,4,3,3,4,3,4,2,2,3,4,3,3,5,4,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,marianipad,USA,"Marian University, Indianapolis, IN",English,1,legal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Graham|Rottenstrich|VanLange|Kay|Hauser|Inbar|Bauer|Huang|Alter|Ross.Slate1|Critcher|Anderson,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,13,Global,all,TRUE +6618,0.119638271036914,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,mariantab,3,4,3,5,2,3,1,4,4,1,4,4,4,1,4,2,3,4,4,2,4,2,2,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,mariantab,USA,"Marian University, Indianapolis, IN",English,1,legal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Ross.Slate1|Graham|Miyamoto|Alter|Huang|Critcher|Rottenstrich|Bauer|Kay|Hauser|Inbar|VanLange,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,1,Global,all,TRUE +6623,-0.412999277584127,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,4,3,4,6,1,2,1,3,5,3,2,1,4,3,4,1,5,2,4,1,4,2,2,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|VanLange|Miyamoto|Ross.Slate1|Huang|Kay|Inbar|Hauser|Graham|Bauer|Rottenstrich|Alter|Anderson,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,13,Global,all,TRUE +6626,-0.400478309676891,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,1,6,6,1,1,4,1,1,4,3,1,1,4,4,1,1,5,1,5,1,2,3,2,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Critcher|Inbar|Rottenstrich|Bauer|Huang|Kay|Alter|Graham|VanLange|Miyamoto|Anderson|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,12,Global,all,TRUE +6627,0.206629605893943,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,6,6,6,7,5,4,2,2,3,4,2,2,4,4,3,2,5,2,4,2,3,4,5,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Inbar|Graham|Anderson|Huang|Bauer|Critcher|Kay|Hauser|Alter|Miyamoto|Ross.Slate1|Rottenstrich,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,4,Global,all,TRUE +6633,0.316164586659812,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,4,6,7,5,5,4,2,2,3,2,1,1,2,3,2,1,4,1,3,1,2,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Bauer|VanLange|Critcher|Anderson|Graham|Rottenstrich|Miyamoto|Inbar|Hauser|Kay|Ross.Slate1|Alter,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing,5,Global,all,TRUE +6635,-0.112608392526329,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,3,5,5,5,2,5,3,2,1,4,1,2,4,2,1,1,3,1,3,1,1,4,1,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|VanLange|Kay|Bauer|Anderson|Critcher|Huang|Rottenstrich|Inbar|Alter|Graham|Miyamoto|Ross.Slate1,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,5,Global,all,TRUE +6636,-0.505536670811326,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,6,7,7,6,5,3,1,1,3,2,1,1,2,3,2,1,3,1,2,1,2,2,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Anderson|Graham|Huang|Kay|Inbar|Rottenstrich|VanLange|Critcher|Bauer|Alter|Ross.Slate1|Hauser,ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,2,Global,all,TRUE +6642,0.21915057380118,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,2,3,4,1,2,4,2,5,3,4,2,5,4,3,4,2,4,3,2,2,3,4,4,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Anderson|Alter|Ross.Slate1|Huang|VanLange|Kay|Critcher|Graham|Miyamoto|Bauer|Inbar|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,2,Global,all,TRUE +6647,-0.843624008064671,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,5,5,5,4,3,3,1,2,4,3,2,2,4,3,2,2,4,2,4,1,2,4,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occidtab,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Critcher|Graham|Anderson|Hauser|Inbar|Kay|VanLange|Ross.Slate1|Bauer|Huang|Alter|Rottenstrich,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +6649,-0.0800465195570838,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,mariantab,7,6,7,3,6,5,4,3,5,5,3,2,5,5,4,5,5,2,4,2,4,4,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,mariantab,USA,"Marian University, Indianapolis, IN",English,1,legal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Miyamoto|Huang|Anderson|Critcher|Hauser|Alter|Rottenstrich|Ross.Slate1|Bauer|VanLange|Kay|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood,4,Global,all,TRUE +6650,-0.759397766430309,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,3,4,5,3,7,4,2,4,1,1,1,1,1,1,1,1,3,1,1,3,3,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occidtab,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Bauer|Ross.Slate1|Huang|Hauser|Kay|Alter|Graham|Rottenstrich|Critcher|Inbar|Miyamoto|Anderson,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing,13,Global,all,TRUE +6656,-0.57064677029558,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,mariantab,5,4,5,5,3,3,3,3,2,3,2,1,4,2,4,2,4,2,3,1,2,2,3,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,mariantab,USA,"Marian University, Indianapolis, IN",English,1,legal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Hauser|Anderson|VanLange|Rottenstrich|Bauer|Alter|Inbar|Miyamoto|Ross.Slate1|Graham|Critcher|Huang,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +6658,-0.786682609817018,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,5,5,5,5,1,2,1,1,2,1,1,1,1,1,1,2,1,1,3,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Alter|Inbar|Graham|Rottenstrich|Ross.Slate1|Anderson|Hauser|Bauer|Critcher|Miyamoto|Kay|Huang,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,7,Global,all,TRUE +6661,0.0977570356641397,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,3,3,3,5,2,3,3,4,2,2,1,3,2,3,3,1,3,2,2,1,2,2,2,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Inbar|Miyamoto|Huang|VanLange|Anderson|Rottenstrich|Alter|Kay|Ross.Slate1|Graham|Critcher|Hauser,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,6,Global,all,TRUE +6662,0.559752072884993,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,7,7,7,7,7,1,5,1,1,5,1,1,1,5,1,1,1,1,1,1,5,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Alter|Inbar|Miyamoto|Huang|Hauser|Ross.Slate1|Graham|VanLange|Rottenstrich|Critcher|Anderson|Bauer,ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,12,Global,all,TRUE +6663,-0.0273285840780677,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,1,2,3,1,1,3,3,1,3,1,1,1,1,3,1,1,5,1,4,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Anderson|Graham|Inbar|Ross.Slate1|Hauser|Critcher|Huang|Rottenstrich|Bauer|Kay|VanLange|Miyamoto,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,2,Global,all,TRUE +6664,0.284794279919502,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,1,6,6,4,1,4,3,3,4,2,1,2,4,5,3,2,4,2,4,2,1,1,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occidtab,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Miyamoto|Huang|Alter|Ross.Slate1|Graham|VanLange|Rottenstrich|Critcher|Inbar|Anderson|Hauser|Kay,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,11,Global,all,TRUE +6666,0.869896607156762,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,6,7,6,6,7,4,2,3,3,4,1,2,3,4,3,1,4,2,3,1,1,4,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Rottenstrich|Graham|Alter|Huang|Anderson|Miyamoto|VanLange|Ross.Slate1|Critcher|Hauser|Bauer|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood,6,Global,all,TRUE +6668,-0.0830920625510209,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,5,5,5,5,3,2,1,4,2,2,3,4,2,1,3,3,2,3,3,1,4,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Hauser|Huang|Inbar|Anderson|Kay|Miyamoto|VanLange|Alter|Critcher|Graham|Bauer|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,5,Global,all,TRUE +6670,0.219417377118214,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marianipad,3,6,5,2,3,2,2,2,4,1,3,3,2,2,4,2,2,2,3,1,2,1,1,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,marianipad,USA,"Marian University, Indianapolis, IN",English,1,legal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Bauer|Anderson|Rottenstrich|Critcher|Kay|Ross.Slate1|Hauser|Huang|Inbar|Miyamoto|Alter|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,3,Global,all,TRUE +6674,0.207949976024876,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,6,4,6,5,7,3,1,2,3,1,1,1,4,3,1,1,5,1,4,3,1,2,1,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Rottenstrich|Hauser|Bauer|Huang|Ross.Slate1|Anderson|VanLange|Graham|Critcher|Inbar|Alter|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,7,Global,all,TRUE +6676,0.648190356304355,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,4,6,5,5,5,4,1,4,3,3,1,1,5,4,4,1,5,1,3,1,1,1,5,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Rottenstrich|Bauer|Alter|VanLange|Huang|Ross.Slate1|Critcher|Kay|Graham|Inbar|Miyamoto|Anderson,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,13,Global,all,TRUE +6677,-0.124216018505301,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,5,5,6,4,3,1,2,1,3,3,1,1,1,3,2,1,3,1,3,2,1,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Bauer|Critcher|Hauser|Kay|Alter|Ross.Slate1|VanLange|Huang|Miyamoto|Rottenstrich|Anderson|Inbar,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,12,Global,all,TRUE +6678,0.421347300755046,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,5,2,5,5,2,3,3,1,4,4,1,1,4,1,2,3,4,2,4,1,1,3,1,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Bauer|Anderson|Ross.Slate1|Alter|Inbar|Huang|Hauser|Critcher|Miyamoto|Kay|Rottenstrich|Graham,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,3,Global,all,TRUE +6679,0.435059834891219,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,5,5,5,5,3,3,4,3,2,2,2,1,2,3,4,1,4,3,2,1,3,3,4,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Graham|Inbar|Kay|VanLange|Huang|Hauser|Bauer|Critcher|Anderson|Alter|Miyamoto|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,10,Global,all,TRUE +6680,0.0883945427280031,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,5,5,4,6,6,2,1,1,3,2,1,1,4,4,1,1,4,1,3,1,1,1,1,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Miyamoto|Hauser|Critcher|Kay|VanLange|Graham|Rottenstrich|Bauer|Huang|Alter|Inbar|Ross.Slate1,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,1,Global,all,TRUE +6683,-0.114055341088662,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,mariantab,1,1,3,4,1,4,2,1,4,3,1,1,4,3,3,1,3,1,3,1,3,3,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,marian,marian,mariantab,USA,"Marian University, Indianapolis, IN",English,1,legal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Kay|VanLange|Critcher|Ross.Slate1|Anderson|Hauser|Rottenstrich|Bauer|Alter|Graham|Miyamoto|Inbar,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +6685,0.283209331942134,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,5,6,5,4,5,3,1,1,4,3,1,1,2,4,2,1,3,1,4,1,2,2,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Graham|Bauer|Inbar|Ross.Slate1|Anderson|Alter|Rottenstrich|Kay|Critcher|VanLange|Huang|Hauser,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,6,Global,all,TRUE +6686,-0.559572750950676,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,4,4,5,5,5,2,3,3,4,2,1,3,2,2,2,1,4,1,4,1,3,1,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Miyamoto|Anderson|Kay|Bauer|VanLange|Inbar|Alter|Critcher|Graham|Hauser|Ross.Slate1|Rottenstrich,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,3,Global,all,TRUE +6689,0.747969462385654,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,2,5,3,7,6,3,4,1,1,2,1,1,1,3,1,1,5,1,5,1,1,2,1,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Alter|Huang|Bauer|Miyamoto|Kay|Graham|Critcher|Ross.Slate1|VanLange|Rottenstrich|Anderson|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection,12,Global,all,TRUE +6691,-0.221356609795332,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,6,7,6,6,2,3,4,4,3,3,1,3,2,3,3,3,3,3,3,4,3,3,3,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Hauser|VanLange|Graham|Kay|Huang|Rottenstrich|Miyamoto|Ross.Slate1|Inbar|Critcher|Bauer|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,13,Global,all,TRUE +6692,0.276752157114299,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,6,7,7,5,7,5,3,4,5,5,1,2,5,5,3,4,5,3,5,2,4,4,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Inbar|Ross.Slate1|Critcher|Anderson|Bauer|Huang|VanLange|Kay|Graham|Miyamoto|Hauser|Alter,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,5,Global,all,TRUE +6693,0.251445643453391,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,4,4,5,5,5,3,1,1,3,3,1,1,3,4,2,1,4,1,3,1,2,3,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Critcher|Miyamoto|Alter|Ross.Slate1|Hauser|Rottenstrich|Graham|Inbar|Kay|Anderson|Huang|Bauer,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,11,Global,all,TRUE +6694,0.224160800066681,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,4,4,5,4,3,4,1,1,3,4,1,1,4,4,1,1,4,1,4,1,2,4,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Bauer|Anderson|Graham|Ross.Slate1|Hauser|Miyamoto|Rottenstrich|Huang|Alter|VanLange|Critcher|Kay,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,3,Global,all,TRUE +6695,0.789753603405401,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,5,6,6,5,5,4,1,2,3,4,1,1,3,4,2,1,4,2,3,1,2,4,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Critcher|Graham|Kay|Huang|Anderson|VanLange|Rottenstrich|Bauer|Inbar|Hauser|Alter|Ross.Slate1,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +6697,0.186335543969136,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,5,7,4,5,5,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occidtab,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|VanLange|Alter|Critcher|Graham|Rottenstrich|Bauer|Anderson|Hauser|Ross.Slate1|Huang|Kay|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,8,Global,all,TRUE +6699,-1.25670612338884,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,5,6,6,5,6,3,2,4,3,3,1,1,3,4,4,1,3,2,3,1,2,3,5,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|VanLange|Inbar|Miyamoto|Hauser|Alter|Graham|Anderson|Rottenstrich|Kay|Bauer|Ross.Slate1|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,8,Global,all,TRUE +6700,-0.605566708284824,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,5,7,7,7,4,3,1,1,3,4,1,1,4,4,1,1,5,1,4,1,1,4,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occidtab,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Graham|Anderson|VanLange|Critcher|Huang|Alter|Rottenstrich|Ross.Slate1|Hauser|Inbar|Miyamoto|Bauer,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,3,Global,all,TRUE +6702,0.426230948589149,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,5,3,5,7,7,3,2,2,3,3,4,5,3,4,3,4,3,3,4,1,3,4,2,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Bauer|Rottenstrich|Miyamoto|Anderson|Alter|Inbar|Ross.Slate1|Critcher|Kay|Hauser|Graham|Huang,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,5,Global,all,TRUE +6709,-0.97793189585738,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,5,6,6,6,2,4,2,1,3,3,1,1,3,2,2,2,2,3,3,1,4,3,4,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Anderson|VanLange|Kay|Miyamoto|Inbar|Hauser|Graham|Huang|Critcher|Rottenstrich|Ross.Slate1|Alter,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing,2,Global,all,TRUE +6710,0.186335543969136,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,5,6,7,5,6,3,2,1,3,2,1,2,2,2,1,2,3,1,4,1,2,2,1,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Rottenstrich|Ross.Slate1|Graham|Inbar|Hauser|Alter|Anderson|Bauer|Miyamoto|Critcher|VanLange|Kay,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,8,Global,all,TRUE +6713,0.194377666774339,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,4,7,5,3,5,3,1,5,3,2,1,1,3,4,4,4,4,3,4,1,4,2,1,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Hauser|Miyamoto|Graham|Huang|Inbar|Ross.Slate1|Rottenstrich|Critcher|Kay|Anderson|VanLange|Alter,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,11,Global,all,TRUE +6715,-0.77534178715508,High,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,5,6,6,6,4,2,1,1,4,1,1,1,1,3,1,1,1,1,4,1,1,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Graham|Anderson|Critcher|Kay|Huang|Ross.Slate1|Alter|Miyamoto|Bauer|Rottenstrich|Hauser|Inbar,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,3,Global,all,TRUE +6718,0.200174656536707,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,3,4,5,5,1,4,1,1,4,1,1,1,1,2,1,1,3,1,4,1,1,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Huang|Inbar|Bauer|Rottenstrich|Anderson|Kay|Hauser|Graham|Ross.Slate1|Miyamoto|Critcher|Alter,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,6,Global,all,TRUE +6720,-1.24787723708677,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,5,5,6,5,5,3,1,1,4,1,1,1,1,3,1,1,4,1,4,1,1,2,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Hauser|Bauer|Ross.Slate1|Inbar|VanLange|Alter|Graham|Critcher|Huang|Rottenstrich|Kay|Anderson,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,13,Global,all,TRUE +6721,0.540635930734886,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,2,2,3,5,1,2,2,3,1,1,1,1,1,1,3,1,3,1,1,2,1,1,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Critcher|Bauer|Anderson|Huang|Graham|Alter|Hauser|Rottenstrich|Miyamoto|Inbar|Ross.Slate1|Kay,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,4,Global,all,TRUE +6723,-0.555740444459874,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,4,5,6,2,2,4,1,1,5,3,1,1,4,3,1,1,3,1,5,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Critcher|Bauer|VanLange|Miyamoto|Anderson|Hauser|Huang|Inbar|Rottenstrich|Alter|Ross.Slate1|Kay,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,6,Global,all,TRUE +6725,-0.120917318648566,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,6,6,7,7,7,5,1,1,5,4,1,1,4,4,1,1,5,1,5,1,1,4,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|VanLange|Kay|Bauer|Alter|Huang|Rottenstrich|Ross.Slate1|Inbar|Miyamoto|Critcher|Anderson|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood,12,Global,all,TRUE +6728,0.266605126151896,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,7,7,7,7,7,1,1,1,1,1,1,1,1,1,1,1,1,1,3,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Anderson|Alter|VanLange|Rottenstrich|Ross.Slate1|Critcher|Inbar|Miyamoto|Hauser|Graham|Bauer|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,2,Global,all,TRUE +6729,0.0728439037516647,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,7,7,7,7,7,5,1,1,5,5,1,1,5,1,1,1,5,1,5,1,1,5,5,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Rottenstrich|Inbar|Bauer|Graham|Hauser|Miyamoto|Anderson|VanLange|Ross.Slate1|Alter|Critcher|Kay,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,8,Global,all,TRUE +6734,0.994588845150536,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,4,4,5,5,2,2,1,1,4,2,1,1,2,3,1,1,4,1,4,1,1,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Inbar|Rottenstrich|VanLange|Kay|Hauser|Anderson|Alter|Miyamoto|Bauer|Critcher|Ross.Slate1|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,7,Global,all,TRUE +6735,-0.61954604573803,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,7,6,7,7,3,4,1,1,1,4,1,1,1,3,1,1,3,1,4,1,1,5,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Kay|Alter|VanLange|Graham|Bauer|Critcher|Inbar|Anderson|Miyamoto|Ross.Slate1|Huang|Hauser,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing,9,Global,all,TRUE +6736,0.817431828540543,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,3,3,5,5,2,2,4,2,3,2,1,2,2,2,3,1,3,1,2,1,3,2,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Anderson|Hauser|Alter|Critcher|Inbar|Graham|VanLange|Miyamoto|Rottenstrich|Kay|Huang|Ross.Slate1,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood,2,Global,all,TRUE +6738,-0.231630219189135,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,3,5,6,6,3,4,1,1,4,3,1,2,3,4,2,1,4,2,4,1,1,4,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Alter|VanLange|Kay|Critcher|Rottenstrich|Inbar|Graham|Hauser|Huang|Bauer|Miyamoto|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,1,Global,all,TRUE +6739,0.554348464871058,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,3,4,5,5,2,4,1,1,4,2,1,1,4,4,1,1,4,1,4,1,1,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Huang|Miyamoto|Ross.Slate1|Kay|VanLange|Alter|Hauser|Graham|Rottenstrich|Inbar|Critcher|Anderson,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing,13,Global,all,TRUE +6740,0.745471172480021,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,5,5,5,5,6,3,2,2,3,4,2,2,3,3,3,2,2,2,3,3,3,2,3,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Rottenstrich|Kay|Bauer|Critcher|Anderson|Miyamoto|Hauser|Alter|Graham|VanLange|Huang|Inbar,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,6,Global,all,TRUE +6745,-0.00464693875419179,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,7,5,4,5,6,4,2,2,4,2,1,1,4,3,1,1,5,1,4,1,1,3,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Anderson|Rottenstrich|Miyamoto|Kay|Ross.Slate1|Huang|Hauser|Graham|VanLange|Alter|Inbar|Bauer,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,2,Global,all,TRUE +6746,0.73717589281202,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,7,6,6,7,7,4,1,1,5,2,1,1,3,1,1,1,3,1,5,1,1,2,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|VanLange|Kay|Huang|Bauer|Anderson|Alter|Hauser|Inbar|Miyamoto|Critcher|Rottenstrich|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,6,Global,all,TRUE +6748,-0.0267949774439999,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,5,5,6,6,3,4,1,1,5,2,1,1,2,3,1,1,3,1,5,1,1,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Graham|Bauer|Inbar|Huang|Kay|Rottenstrich|Anderson|Critcher|Miyamoto|Alter|Ross.Slate1|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing,8,Global,all,TRUE +6750,0.32750540932175,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,5,5,6,6,6,4,1,1,5,2,1,1,3,3,1,1,4,1,5,1,1,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|VanLange|Ross.Slate1|Huang|Inbar|Kay|Miyamoto|Hauser|Alter|Graham|Rottenstrich|Bauer|Anderson,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,13,Global,all,TRUE +6751,0.435453216639652,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,6,6,6,6,6,4,2,1,4,2,1,1,2,2,1,1,4,1,4,1,1,2,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Rottenstrich|Alter|Inbar|VanLange|Graham|Huang|Ross.Slate1|Anderson|Kay|Bauer|Hauser|Miyamoto,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,9,Global,all,TRUE +6753,0.297062090963941,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,6,3,5,5,5,3,1,1,5,1,1,1,2,1,1,1,3,1,5,1,1,3,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Anderson|Critcher|Huang|Alter|VanLange|Graham|Hauser|Miyamoto|Rottenstrich|Bauer|Inbar|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood,2,Global,all,TRUE +6756,0.958601693893157,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,5,5,6,5,6,4,1,1,4,2,1,1,3,3,1,1,5,1,5,1,1,2,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Miyamoto|Rottenstrich|Huang|Inbar|Bauer|Critcher|Kay|Alter|Hauser|VanLange|Anderson|Ross.Slate1,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,12,Global,all,TRUE +6757,0.53114685936735,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,7,5,7,5,7,5,2,1,4,2,1,1,4,3,1,1,5,1,5,1,1,2,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Inbar|Rottenstrich|Hauser|Graham|Critcher|Alter|Miyamoto|Anderson|Huang|Ross.Slate1|VanLange|Kay,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,9,Global,all,TRUE +6760,0.77591449083783,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,3,3,3,3,1,3,1,1,3,1,1,1,1,1,1,1,1,1,5,1,1,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Inbar|Anderson|VanLange|Critcher|Graham|Huang|Ross.Slate1|Rottenstrich|Miyamoto|Alter|Hauser|Bauer,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing,3,Global,all,TRUE +6762,-0.0960041867360913,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,6,6,6,6,6,3,1,1,3,3,1,1,3,4,1,1,4,1,5,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Anderson|Inbar|Graham|Critcher|Ross.Slate1|Huang|Bauer|Kay|Rottenstrich|Alter|VanLange|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing,2,Global,all,TRUE +6763,1.29629787486867,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,5,6,7,6,5,4,1,1,5,3,1,1,4,5,1,1,5,1,5,1,1,3,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Critcher|VanLange|Hauser|Bauer|Kay|Inbar|Ross.Slate1|Graham|Alter|Huang|Anderson|Rottenstrich,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,12,Global,all,TRUE +6765,0.822975661440113,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,5,2,5,5,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Miyamoto|Inbar|Critcher|Ross.Slate1|Bauer|Alter|Huang|Hauser|VanLange|Graham|Anderson|Rottenstrich,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,12,Global,all,TRUE +6766,0.413305177949843,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,6,6,7,7,6,4,1,1,4,1,1,1,2,1,1,1,2,1,4,1,1,3,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Inbar|Kay|Bauer|Miyamoto|VanLange|Huang|Anderson|Critcher|Hauser|Graham|Rottenstrich|Ross.Slate1,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,8,Global,all,TRUE +6770,0.252766013584324,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,2,3,3,3,2,2,1,1,4,1,1,1,1,3,1,1,4,1,4,1,1,1,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Rottenstrich|Miyamoto|Ross.Slate1|Kay|Huang|Alter|Inbar|Critcher|Graham|Hauser|Bauer|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,13,Global,all,TRUE +6772,-0.525297126102065,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,7,5,6,6,6,4,1,1,3,3,1,1,4,4,1,1,4,1,4,1,2,4,3,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Kay|Ross.Slate1|Rottenstrich|Miyamoto|Critcher|Inbar|Bauer|Anderson|Hauser|Graham|Alter|Huang,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,9,Global,all,TRUE +6775,0.255404528375593,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,3,2,3,3,2,3,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Critcher|Rottenstrich|Inbar|Ross.Slate1|VanLange|Bauer|Anderson|Kay|Alter|Miyamoto|Graham|Huang,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,8,Global,all,TRUE +6777,-0.263127104360844,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,1,3,3,2,2,4,1,2,5,4,1,1,4,3,1,1,5,1,5,1,2,4,5,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Miyamoto|Critcher|Alter|Bauer|Ross.Slate1|Kay|Hauser|Huang|Graham|Anderson|Inbar|Rottenstrich,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,11,Global,all,TRUE +6785,1.06378440798839,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,2,2,2,2,2,2,1,2,3,1,1,1,1,2,1,1,2,2,3,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Huang|Inbar|Anderson|Miyamoto|Hauser|Ross.Slate1|Rottenstrich|VanLange|Graham|Kay|Alter|Critcher,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +6787,1.20732598481524,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,5,6,5,5,2,4,1,1,5,3,1,1,4,4,1,1,4,1,4,1,1,3,1,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|Bauer|VanLange|Alter|Ross.Slate1|Anderson|Huang|Graham|Kay|Rottenstrich|Inbar|Critcher,ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +6788,0.250000920361658,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,6,7,7,6,5,5,1,2,1,5,2,2,5,5,1,4,2,1,1,3,1,4,5,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Bauer|Critcher|Rottenstrich|Graham|VanLange|Hauser|Ross.Slate1|Alter|Miyamoto|Anderson|Kay|Inbar,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,11,Global,all,TRUE +6792,-0.505661023772125,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,7,6,7,6,6,4,1,1,2,3,1,1,3,3,1,2,4,1,3,1,1,4,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Rottenstrich|Kay|Critcher|Inbar|Huang|Hauser|Graham|VanLange|Alter|Bauer|Ross.Slate1|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,1,Global,all,TRUE +6793,-0.728027459689999,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,5,5,6,5,4,5,1,1,3,2,1,1,1,1,1,1,1,1,5,1,1,2,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Critcher|Anderson|Kay|Hauser|Graham|Inbar|Rottenstrich|Miyamoto|Huang|Alter|Bauer|VanLange,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,3,Global,all,TRUE +6794,1.45631707905436,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,4,3,5,4,2,3,1,1,2,1,1,1,2,2,1,1,4,1,5,1,1,2,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Critcher|Rottenstrich|Alter|Miyamoto|Huang|Ross.Slate1|Inbar|Anderson|Bauer|Kay|Hauser|Graham,ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,9,Global,all,TRUE +6796,-0.543097349062436,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,5,5,5,5,4,2,1,1,3,1,1,1,1,1,1,1,3,1,3,1,1,2,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Rottenstrich|VanLange|Inbar|Miyamoto|Alter|Huang|Kay|Critcher|Ross.Slate1|Hauser|Anderson|Bauer,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,12,Global,all,TRUE +6797,0.438218309862318,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,3,3,3,3,3,2,4,3,2,1,1,3,1,1,2,3,1,2,2,2,1,1,1,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Bauer|Miyamoto|Kay|Huang|Critcher|Inbar|VanLange|Graham|Alter|Anderson|Rottenstrich|Ross.Slate1,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,11,Global,all,TRUE +6798,0.492661418204338,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,6,6,6,6,6,4,1,1,5,2,1,1,2,1,1,1,5,1,5,1,1,2,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Bauer|Rottenstrich|Kay|Huang|VanLange|Critcher|Anderson|Ross.Slate1|Miyamoto|Alter|Inbar|Hauser,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,8,Global,all,TRUE +6799,0.155892225611327,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,6,6,6,7,7,3,1,1,3,3,1,1,4,3,1,1,3,1,4,1,1,3,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Huang|Critcher|VanLange|Graham|Ross.Slate1|Alter|Kay|Inbar|Rottenstrich|Bauer|Hauser|Anderson,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,13,Global,all,TRUE +6800,-0.547178361474838,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,5,5,5,5,2,5,1,1,4,2,1,1,3,4,1,1,4,1,5,1,1,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Inbar|Miyamoto|Bauer|VanLange|Alter|Graham|Rottenstrich|Anderson|Hauser|Huang|Kay|Critcher,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,9,Global,all,TRUE +6801,0.0808860265568677,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,5,7,6,5,4,5,1,1,5,3,1,1,5,4,1,1,3,1,5,1,1,5,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|VanLange|Critcher|Graham|Inbar|Kay|Hauser|Anderson|Rottenstrich|Ross.Slate1|Bauer|Miyamoto|Alter,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing,8,Global,all,TRUE +6802,-0.672137402785647,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,3,5,5,6,3,3,1,1,4,1,1,1,3,3,1,1,4,1,4,1,1,2,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Inbar|Critcher|Ross.Slate1|Kay|VanLange|Anderson|Huang|Rottenstrich|Miyamoto|Hauser|Alter|Bauer,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,7,Global,all,TRUE +6804,-0.0710910548236159,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,6,6,6,5,4,5,1,1,5,5,1,1,5,5,1,1,5,1,5,1,1,5,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Miyamoto|Rottenstrich|Anderson|Ross.Slate1|Hauser|Inbar|Graham|Kay|Critcher|Bauer|Alter|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,4,Global,all,TRUE +6808,-0.170870160904915,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,5,6,5,5,5,4,1,1,4,1,1,1,1,1,1,1,2,1,4,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Bauer|Hauser|Graham|Rottenstrich|Critcher|Miyamoto|Kay|VanLange|Anderson|Huang|Alter|Inbar,ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +6809,-0.401138494742358,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,7,6,7,7,6,5,1,1,5,2,1,1,3,3,1,1,5,1,5,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Inbar|Rottenstrich|Kay|Huang|Ross.Slate1|Hauser|Alter|Graham|Critcher|Miyamoto|Anderson|Bauer,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing,12,Global,all,TRUE +6811,0.0533343798531248,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,2,5,1,5,1,3,2,2,3,2,3,2,3,2,2,5,3,1,4,1,2,3,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Anderson|VanLange|Huang|Ross.Slate1|Alter|Critcher|Hauser|Kay|Graham|Miyamoto|Bauer|Inbar,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +6814,0.13269062010762,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,5,5,6,6,3,4,3,1,3,2,1,1,1,3,2,2,4,1,4,1,2,4,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Critcher|Miyamoto|Anderson|Kay|Hauser|Ross.Slate1|Bauer|Rottenstrich|Graham|VanLange|Huang|Alter,ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,4,Global,all,TRUE +6818,0.30799588542321,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,6,6,6,5,7,5,2,1,5,4,2,1,4,5,1,1,5,1,5,1,1,4,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Rottenstrich|Ross.Slate1|Bauer|Graham|Miyamoto|Inbar|VanLange|Alter|Kay|Huang|Hauser|Anderson,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +6820,0.0587516343212956,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,4,3,5,5,2,3,3,2,2,1,2,1,1,2,2,1,1,1,1,2,2,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Bauer|Alter|Anderson|Hauser|VanLange|Inbar|Huang|Critcher|Kay|Graham|Miyamoto|Ross.Slate1,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,4,Global,all,TRUE +6826,0.640288458384786,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,1,1,1,1,1,3,1,1,5,1,1,1,5,1,1,1,5,1,5,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Rottenstrich|Ross.Slate1|Anderson|Miyamoto|VanLange|Inbar|Hauser|Graham|Kay|Critcher|Bauer|Alter,ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,4,Global,all,TRUE +6830,0.354916831139858,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,3,5,3,5,2,3,2,3,5,1,1,1,2,5,1,1,4,1,5,1,1,1,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Ross.Slate1|Huang|Rottenstrich|Hauser|VanLange|Bauer|Inbar|Kay|Miyamoto|Graham|Alter|Anderson,ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE,13,Global,all,TRUE +6831,-0.00518054538825976,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,5,5,6,5,5,4,1,2,4,2,3,1,3,3,2,2,4,1,4,1,2,4,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Critcher|Hauser|Huang|Bauer|Miyamoto|Ross.Slate1|Alter|Rottenstrich|Anderson|VanLange|Inbar|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,10,Global,all,TRUE +6835,1.73641167671675,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,5,5,5,6,7,5,1,1,5,3,1,1,3,3,1,1,5,1,5,1,1,4,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Graham|Miyamoto|Huang|Ross.Slate1|Alter|Anderson|VanLange|Critcher|Kay|Bauer|Hauser|Rottenstrich,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,7,Global,all,TRUE +6838,0.432421320099951,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,5,5,5,5,2,5,1,1,5,1,1,1,4,3,1,1,5,1,5,1,1,2,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Rottenstrich|Miyamoto|VanLange|Huang|Ross.Slate1|Kay|Inbar|Alter|Bauer|Critcher|Anderson|Graham,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +6844,-0.456888326761075,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,6,6,6,5,6,2,1,3,2,1,1,1,4,1,3,1,5,1,1,1,2,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Critcher|Alter|Inbar|Anderson|Bauer|Ross.Slate1|Kay|Miyamoto|Hauser|Rottenstrich|Graham|VanLange,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood,5,Global,all,TRUE +6851,0.842344960453019,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,6,5,6,5,5,4,1,1,4,4,1,1,4,4,2,1,4,1,4,1,1,4,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|VanLange|Hauser|Graham|Kay|Anderson|Critcher|Huang|Alter|Ross.Slate1|Inbar|Rottenstrich|Miyamoto,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,6,Global,all,TRUE +6852,0.737162246357784,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,5,5,6,6,3,4,1,1,3,1,1,1,1,3,1,1,3,1,4,1,1,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Miyamoto|Rottenstrich|Inbar|Alter|Bauer|Anderson|Hauser|Kay|Graham|Critcher|Huang|VanLange,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,7,Global,all,TRUE +6853,-0.359087550405576,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,5,6,5,7,4,2,3,2,1,4,1,4,3,2,3,2,3,3,2,2,3,4,1,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|VanLange|Critcher|Miyamoto|Ross.Slate1|Alter|Inbar|Anderson|Bauer|Huang|Hauser|Rottenstrich|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,8,Global,all,TRUE +6856,0.994588845150536,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,1,5,1,1,1,2,1,1,2,1,1,1,1,1,1,1,4,1,2,1,1,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Ross.Slate1|Alter|Critcher|Graham|Miyamoto|Kay|Bauer|Hauser|VanLange|Anderson|Huang|Inbar,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,11,Global,all,TRUE +6857,-0.306889575106392,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,6,6,6,6,6,3,2,1,4,3,1,1,3,3,1,1,4,1,4,1,3,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Bauer|Alter|Hauser|Huang|Critcher|Inbar|Ross.Slate1|VanLange|Anderson|Graham|Rottenstrich|Miyamoto,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +6858,-0.447008099115705,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,5,5,6,6,3,3,1,1,5,2,1,1,2,4,1,1,5,1,3,1,1,2,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Critcher|Anderson|Bauer|Inbar|Alter|Miyamoto|Huang|Rottenstrich|Hauser|Graham|Ross.Slate1|Kay,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,3,Global,all,TRUE +6859,-0.28475518287082,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,6,6,7,6,6,3,1,1,4,3,1,1,3,5,1,1,4,1,4,1,1,3,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|VanLange|Critcher|Hauser|Rottenstrich|Huang|Kay|Bauer|Alter|Anderson|Graham|Inbar|Ross.Slate1,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,10,Global,all,TRUE +6861,0.817305250109145,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,4,5,5,5,2,4,1,1,4,4,1,1,4,3,1,1,4,1,4,1,1,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Critcher|Kay|Anderson|Ross.Slate1|Inbar|Hauser|Miyamoto|Rottenstrich|Graham|Huang|VanLange|Alter,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +6862,0.709090639474209,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,6,6,6,5,5,5,1,1,4,5,1,1,5,4,1,1,4,1,5,1,1,5,4,5,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Inbar|VanLange|Alter|Anderson|Critcher|Huang|Ross.Slate1|Bauer|Hauser|Miyamoto|Rottenstrich|Kay,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE,5,Global,all,TRUE +6864,-0.192877974709089,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,6,5,6,6,5,3,1,1,4,3,1,1,2,3,1,1,5,1,4,1,1,3,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|VanLange|Ross.Slate1|Miyamoto|Graham|Rottenstrich|Bauer|Inbar|Hauser|Critcher|Kay|Huang|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,1,Global,all,TRUE +6869,0.730971874846983,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,1,1,1,1,1,3,1,1,4,1,1,1,1,1,1,1,3,1,4,1,1,2,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Kay|Graham|Rottenstrich|Hauser|Alter|Miyamoto|Inbar|Bauer|Ross.Slate1|Anderson|VanLange|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,11,Global,all,TRUE +6870,1.65890718775666,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,2,2,2,2,2,4,1,1,4,1,1,1,1,3,1,1,4,1,4,1,1,2,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Inbar|Miyamoto|Kay|Graham|Huang|Bauer|Anderson|Rottenstrich|VanLange|Ross.Slate1|Hauser|Alter,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood,8,Global,all,TRUE +6872,-0.417082515467129,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,6,6,6,6,6,5,1,1,1,3,1,1,4,4,1,1,3,1,5,1,1,4,5,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Huang|Graham|Kay|Critcher|Inbar|Rottenstrich|VanLange|Bauer|Alter|Anderson|Ross.Slate1|Miyamoto,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing,11,Global,all,TRUE +6873,1.39595040251857,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,5,4,5,5,3,3,2,2,3,2,2,1,3,1,1,3,3,1,3,3,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Miyamoto|Bauer|Huang|Alter|VanLange|Graham|Kay|Inbar|Rottenstrich|Critcher|Anderson|Hauser,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing,12,Global,all,TRUE +6874,0.39340227230287,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,6,6,6,6,6,2,1,1,2,2,1,1,1,2,1,1,3,1,2,1,1,3,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Anderson|Rottenstrich|Kay|Critcher|Hauser|VanLange|Huang|Bauer|Inbar|Miyamoto|Graham|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,2,Global,all,TRUE +6875,-0.208037457407593,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,2,1,6,6,6,3,1,1,3,1,1,1,1,3,1,1,4,1,4,2,1,1,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Alter|Anderson|Ross.Slate1|Kay|Huang|VanLange|Hauser|Bauer|Rottenstrich|Miyamoto|Graham|Critcher,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,3,Global,all,TRUE +6877,1.02226707028568,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,2,5,5,5,2,3,4,2,4,1,1,2,1,3,1,1,2,1,3,2,1,1,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Graham|Critcher|Miyamoto|Ross.Slate1|Hauser|Inbar|Kay|Alter|VanLange|Anderson|Huang|Bauer,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,11,Global,all,TRUE +6878,0.623544027708914,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,7,7,7,7,7,5,1,1,5,5,1,1,5,5,1,1,5,1,5,1,1,5,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Ross.Slate1|Rottenstrich|Anderson|Alter|VanLange|Huang|Inbar|Miyamoto|Bauer|Hauser|Critcher|Graham,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing,4,Global,all,TRUE +6879,-0.816859124857794,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,5,5,6,6,6,4,1,1,3,1,1,1,2,4,1,1,4,1,4,1,1,3,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Hauser|Huang|Rottenstrich|Inbar|Graham|Alter|Miyamoto|Kay|Ross.Slate1|Anderson|Bauer|Critcher,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing,11,Global,all,TRUE +6880,0.629214439039883,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Huang|Bauer|Alter|Anderson|Inbar|Critcher|Hauser|Rottenstrich|Miyamoto|Graham|Kay|VanLange,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,5,Global,all,TRUE +6881,0.308122463854609,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,2,3,2,3,2,1,2,1,3,1,1,1,1,1,1,1,2,1,3,1,2,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Critcher|Miyamoto|Ross.Slate1|Anderson|Inbar|Hauser|Kay|VanLange|Bauer|Alter|Huang|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five,5,Global,all,TRUE +6883,0.0645349776294276,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,5,5,6,5,5,4,2,1,4,1,1,2,4,4,2,1,4,2,4,1,3,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Alter|Critcher|Kay|Inbar|Huang|Graham|Rottenstrich|Anderson|Bauer|Hauser|VanLange|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,9,Global,all,TRUE +6884,-0.206983890593694,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,4,5,5,4,2,3,2,2,4,2,1,2,2,2,2,1,3,1,4,1,4,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Bauer|Rottenstrich|Critcher|Ross.Slate1|Hauser|Anderson|Huang|Miyamoto|Alter|Kay|Inbar|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,7,Global,all,TRUE +6886,1.32951993290338,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,5,5,5,6,2,4,1,1,5,1,1,1,2,2,1,1,5,1,5,1,1,2,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Alter|Inbar|Ross.Slate1|Graham|Bauer|Hauser|Rottenstrich|Kay|VanLange|Miyamoto|Anderson|Huang,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,12,Global,all,TRUE +6888,0.579135018352134,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,4,5,5,5,2,5,1,1,4,3,1,1,3,4,1,1,5,1,5,1,1,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Ross.Slate1|Bauer|Rottenstrich|Inbar|VanLange|Anderson|Critcher|Graham|Kay|Miyamoto|Hauser|Huang,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +6891,1.58140269879656,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,6,6,5,5,5,3,1,1,4,3,1,1,3,2,1,1,3,1,4,1,1,3,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Huang|VanLange|Miyamoto|Anderson|Rottenstrich|Ross.Slate1|Critcher|Alter|Bauer|Hauser|Kay|Graham,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,5,Global,all,TRUE +6892,-0.441995647379604,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,6,6,6,7,6,4,1,1,4,1,1,1,2,1,1,1,1,1,4,1,1,1,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Alter|Huang|Kay|Graham|Rottenstrich|Miyamoto|VanLange|Ross.Slate1|Anderson|Hauser|Bauer|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,10,Global,all,TRUE +6894,0.584791783228867,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,2,3,3,2,2,4,1,2,1,3,1,2,3,3,2,1,5,1,4,1,2,3,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Bauer|Inbar|Huang|Rottenstrich|Hauser|Graham|Kay|Critcher|Ross.Slate1|Anderson|Miyamoto|VanLange,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,11,Global,all,TRUE +6895,0.216652283895547,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,6,6,6,6,2,4,1,1,4,2,1,1,3,2,1,1,3,1,4,1,1,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Rottenstrich|Kay|Anderson|Huang|Miyamoto|Ross.Slate1|Hauser|Graham|Bauer|VanLange|Alter|Inbar,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,4,Global,all,TRUE +6896,0.582153268437599,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,5,5,6,5,2,4,1,1,5,1,2,1,2,2,1,1,3,1,5,1,1,4,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Graham|Anderson|Miyamoto|Kay|VanLange|Inbar|Bauer|Hauser|Rottenstrich|Alter|Ross.Slate1|Critcher,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +6897,-0.810795331778392,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,6,5,7,6,7,5,1,1,1,5,1,1,5,4,1,1,5,1,5,1,1,4,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Ross.Slate1|Kay|VanLange|Hauser|Anderson|Rottenstrich|Inbar|Bauer|Alter|Huang|Critcher|Miyamoto,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +6899,0.91155416974511,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,7,7,7,7,7,5,1,1,5,5,1,1,5,5,1,1,5,1,5,1,1,5,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Anderson|Bauer|Inbar|VanLange|Huang|Hauser|Kay|Ross.Slate1|Graham|Miyamoto|Rottenstrich|Critcher,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +6902,1.03610618285325,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,6,5,6,6,5,4,1,1,5,4,1,1,4,4,1,1,5,1,4,1,3,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Alter|Hauser|Kay|Critcher|Miyamoto|Rottenstrich|Bauer|VanLange|Anderson|Ross.Slate1|Graham|Inbar,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +6904,0.277018960431333,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,3,3,4,3,2,2,3,2,1,4,2,1,2,3,2,2,3,2,3,2,3,3,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Alter|Ross.Slate1|Huang|Critcher|Miyamoto|Kay|Inbar|Bauer|Rottenstrich|Graham|VanLange|Anderson,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,13,Global,all,TRUE +6905,0.770384304392496,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,5,5,5,5,5,2,3,4,2,4,3,2,4,3,3,3,5,1,3,1,4,4,4,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Rottenstrich|Kay|VanLange|Hauser|Ross.Slate1|Alter|Critcher|Graham|Inbar|Bauer|Miyamoto|Anderson,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing,13,Global,all,TRUE +6906,-0.154125730229042,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,2,1,2,2,1,3,1,1,2,1,1,1,1,1,1,1,1,1,3,1,1,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Critcher|Alter|Miyamoto|Huang|Inbar|Anderson|Graham|VanLange|Hauser|Bauer|Ross.Slate1|Kay,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,7,Global,all,TRUE +6908,1.0859324466782,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,2,2,2,2,1,5,3,2,4,1,1,1,1,2,2,1,4,1,4,1,2,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Anderson|VanLange|Hauser|Critcher|Kay|Rottenstrich|Bauer|Graham|Miyamoto|Inbar|Ross.Slate1|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,2,Global,all,TRUE +6910,0.241691994239421,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,2,5,5,3,1,4,2,1,4,1,1,1,1,2,1,1,4,1,4,1,2,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Rottenstrich|Critcher|VanLange|Hauser|Kay|Inbar|Huang|Alter|Miyamoto|Anderson|Bauer|Graham,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,11,Global,all,TRUE +6911,-0.043412829688474,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,5,6,5,5,5,4,2,2,4,4,2,2,4,4,2,2,4,2,4,2,2,4,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|VanLange|Inbar|Bauer|Rottenstrich|Kay|Alter|Miyamoto|Ross.Slate1|Huang|Critcher|Hauser|Anderson,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,13,Global,all,TRUE +6912,-0.0380092216745387,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,6,6,6,6,6,4,1,1,1,4,1,1,5,5,1,1,5,1,1,1,1,5,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Bauer|Rottenstrich|Alter|Critcher|Ross.Slate1|Inbar|Huang|Anderson|Miyamoto|Graham|VanLange|Kay,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,9,Global,all,TRUE +6914,0.712249114445309,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,5,4,5,6,2,5,1,2,5,2,1,1,5,1,3,1,5,2,5,1,1,2,4,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Alter|Bauer|Ross.Slate1|Rottenstrich|Critcher|Inbar|Anderson|Kay|Miyamoto|Hauser|VanLange|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,8,Global,all,TRUE +6916,-0.295422174013055,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,2,3,2,1,2,3,1,2,3,2,2,1,1,2,3,1,3,2,3,1,2,2,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Bauer|Rottenstrich|Ross.Slate1|Miyamoto|Huang|Critcher|Hauser|Graham|VanLange|Kay|Alter|Anderson,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,13,Global,all,TRUE +6917,-0.19023945991782,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,3,3,3,6,2,3,1,1,3,2,1,1,3,3,1,1,5,1,4,1,2,2,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Inbar|Bauer|Alter|Hauser|Graham|Huang|Ross.Slate1|Miyamoto|Rottenstrich|Kay|Anderson|Critcher,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +6918,0.620905512917645,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,7,7,7,6,2,4,1,1,4,1,1,2,1,3,1,1,4,1,4,1,1,2,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Hauser|Kay|Rottenstrich|Alter|Miyamoto|Graham|Ross.Slate1|VanLange|Anderson|Critcher|Inbar|Bauer,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,10,Global,all,TRUE +6919,1.45130685278885,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,5,6,6,5,2,2,1,1,4,1,1,1,1,2,1,1,4,1,4,1,1,1,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Miyamoto|Kay|Alter|Ross.Slate1|Graham|Inbar|Bauer|Hauser|Anderson|VanLange|Huang|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,10,Global,all,TRUE +6920,-0.569326400164647,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,7,7,7,7,4,3,1,1,5,1,1,1,1,1,1,1,4,1,5,1,1,3,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Miyamoto|Anderson|Hauser|Alter|Graham|Ross.Slate1|Kay|VanLange|Rottenstrich|Bauer|Inbar|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,3,Global,all,TRUE +6921,-0.571953493972278,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,5,4,3,3,6,3,4,1,4,5,2,3,2,4,4,3,3,2,5,4,3,2,2,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Anderson|Hauser|Alter|VanLange|Graham|Huang|Bauer|Inbar|Rottenstrich|Miyamoto|Kay|Critcher,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing,2,Global,all,TRUE +6923,1.38764147639633,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,1,2,1,2,2,4,3,2,4,2,2,2,2,3,3,3,5,2,5,1,2,2,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Kay|VanLange|Miyamoto|Anderson|Bauer|Alter|Ross.Slate1|Graham|Hauser|Critcher|Rottenstrich|Huang,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing,5,Global,all,TRUE +6924,-0.303604521703893,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,6,6,6,6,6,4,1,2,4,4,2,1,4,4,2,2,4,1,4,4,4,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Graham|Alter|Anderson|Critcher|Kay|Hauser|Miyamoto|Rottenstrich|Ross.Slate1|Inbar|Huang|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood,4,Global,all,TRUE +6925,0.139274373366853,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,1,1,1,1,1,2,5,5,3,2,4,5,1,2,5,4,2,5,3,5,5,1,2,1,5,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Alter|Kay|Ross.Slate1|Graham|Huang|Critcher|Miyamoto|Anderson|Hauser|Inbar|Rottenstrich|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,9,Global,all,TRUE +6927,0.46286463845776,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,5,5,5,6,5,2,5,3,5,1,1,4,1,2,1,1,5,2,5,5,1,2,4,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Huang|VanLange|Anderson|Kay|Inbar|Bauer|Miyamoto|Alter|Hauser|Graham|Rottenstrich|Critcher,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,4,Global,all,TRUE +6928,-1.34357310528507,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,3,3,3,3,2,4,1,2,2,3,1,1,2,2,1,1,3,1,3,1,1,2,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Bauer|Huang|Rottenstrich|Hauser|Alter|Inbar|Ross.Slate1|Miyamoto|Kay|Graham|Anderson|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,12,Global,all,TRUE +6932,1.18835006755077,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,5,5,6,5,5,3,2,2,3,2,1,1,3,3,3,1,3,2,4,2,3,3,4,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Hauser|Alter|Kay|Critcher|Miyamoto|Bauer|Inbar|VanLange|Ross.Slate1|Graham|Anderson|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,12,Global,all,TRUE +6934,-1.15890534703334,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,3,3,2,4,5,1,1,3,3,3,2,3,3,3,2,3,4,5,2,2,3,4,2,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Rottenstrich|Bauer|VanLange|Graham|Kay|Huang|Inbar|Miyamoto|Alter|Critcher|Ross.Slate1|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,1,Global,all,TRUE +6937,1.05548912832039,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,2,3,2,3,1,5,2,1,5,4,1,1,3,2,3,1,3,2,4,1,2,3,4,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|VanLange|Miyamoto|Ross.Slate1|Hauser|Critcher|Kay|Huang|Inbar|Bauer|Alter|Rottenstrich|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,1,Global,all,TRUE +6938,0.496353499809506,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,4,6,4,6,3,3,2,1,4,1,1,1,2,1,1,1,3,1,5,1,1,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Bauer|Critcher|Kay|Huang|Anderson|Miyamoto|Rottenstrich|Inbar|Hauser|Ross.Slate1|Alter|VanLange,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,6,Global,all,TRUE +6940,-1.03276838594783,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,2,2,2,3,2,4,2,1,4,2,1,2,2,3,1,1,3,1,4,1,1,3,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Inbar|Kay|Huang|Miyamoto|VanLange|Hauser|Rottenstrich|Anderson|Ross.Slate1|Graham|Bauer|Critcher,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +6941,0.952931282562188,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,2,3,3,5,1,3,1,2,4,2,2,1,3,2,1,1,3,1,4,1,1,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Anderson|Huang|Rottenstrich|VanLange|Inbar|Bauer|Critcher|Kay|Alter|Hauser|Miyamoto|Graham,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +6944,1.57296719424293,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,3,5,5,7,5,3,3,3,5,1,1,1,1,1,2,1,5,1,5,1,1,1,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Rottenstrich|VanLange|Bauer|Alter|Graham|Kay|Huang|Ross.Slate1|Inbar|Hauser|Miyamoto|Critcher,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,1,Global,all,TRUE +6945,0.60708004680431,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,1,1,4,4,1,1,1,1,3,1,1,1,1,1,1,1,1,1,3,1,1,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Critcher|Rottenstrich|Bauer|Miyamoto|Alter|Graham|VanLange|Huang|Inbar|Kay|Hauser|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,13,Global,all,TRUE +6946,-0.434093749460036,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,1,1,1,2,2,2,2,2,4,1,3,2,1,1,1,3,1,1,4,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Alter|Ross.Slate1|Miyamoto|VanLange|Graham|Rottenstrich|Anderson|Inbar|Huang|Bauer|Kay|Critcher,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood,8,Global,all,TRUE +6949,0.45205742242989,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,2,4,2,2,2,2,3,1,4,1,1,2,1,1,1,2,1,1,4,1,3,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Alter|Ross.Slate1|Anderson|Rottenstrich|Miyamoto|VanLange|Inbar|Kay|Hauser|Bauer|Critcher|Huang,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,4,Global,all,TRUE +6950,-1.12015310255329,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,6,6,6,6,5,2,1,1,2,1,1,1,1,1,1,1,1,1,3,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|VanLange|Huang|Miyamoto|Anderson|Hauser|Bauer|Kay|Inbar|Critcher|Alter|Ross.Slate1|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,5,Global,all,TRUE +6951,0.43809173143092,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,5,5,5,5,3,4,1,1,4,4,1,1,4,4,1,1,4,1,4,1,1,4,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Rottenstrich|Critcher|Inbar|Graham|Alter|Kay|VanLange|Hauser|Miyamoto|Bauer|Ross.Slate1|Anderson,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing,13,Global,all,TRUE +6958,0.410146702978744,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,5,5,4,4,4,1,1,1,3,1,1,1,1,1,1,1,3,1,1,1,1,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Inbar|Bauer|Anderson|VanLange|Miyamoto|Rottenstrich|Huang|Alter|Hauser|Kay|Ross.Slate1|Critcher,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing,4,Global,all,TRUE +6959,0.969282331489628,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,3,4,5,3,3,4,1,1,3,4,1,1,4,4,1,1,3,1,4,2,1,3,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Kay|Inbar|Ross.Slate1|Bauer|Hauser|Rottenstrich|VanLange|Miyamoto|Critcher|Anderson|Alter|Huang,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +6961,-0.818444072835162,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,2,2,1,3,1,2,2,1,3,1,2,3,1,1,2,1,1,1,4,2,2,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Kay|Critcher|Ross.Slate1|Bauer|Huang|Rottenstrich|Hauser|Anderson|Miyamoto|Inbar|Graham|VanLange,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,9,Global,all,TRUE +6963,-0.0339123373373014,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,2,3,4,3,1,4,2,1,4,1,1,1,1,1,2,1,4,1,5,1,2,3,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Hauser|Kay|Inbar|Critcher|VanLange|Alter|Graham|Ross.Slate1|Bauer|Huang|Anderson|Miyamoto,ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,12,Global,all,TRUE +6968,1.0859324466782,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,7,6,7,6,5,3,1,1,3,3,1,1,2,3,1,1,4,1,2,1,1,3,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Rottenstrich|Bauer|Miyamoto|Anderson|Inbar|Alter|Graham|Hauser|Ross.Slate1|Kay|Huang|Critcher,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,5,Global,all,TRUE +6970,0.415943692741112,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,4,5,5,5,1,3,1,2,3,1,1,1,2,1,2,1,3,1,4,1,1,2,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Inbar|Kay|Critcher|Rottenstrich|VanLange|Miyamoto|Alter|Ross.Slate1|Anderson|Bauer|Graham|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood,10,Global,all,TRUE +6971,-0.181944180249819,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,4,6,6,5,5,5,1,1,5,4,1,1,3,4,1,1,4,1,5,1,1,4,4,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Huang|VanLange|Kay|Hauser|Critcher|Miyamoto|Bauer|Alter|Inbar|Ross.Slate1|Anderson|Graham,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +6972,0.565549062647361,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,3,4,3,5,2,4,1,1,4,4,1,1,4,3,1,1,5,1,5,1,1,4,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Critcher|Kay|Huang|Alter|Hauser|Rottenstrich|Anderson|Inbar|Ross.Slate1|Graham|Miyamoto|VanLange,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,8,Global,all,TRUE +6973,-0.425391441589366,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,5,6,7,6,5,5,1,1,4,5,1,1,5,4,1,1,5,1,4,1,1,5,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Hauser|Inbar|Ross.Slate1|Rottenstrich|Critcher|Miyamoto|Bauer|VanLange|Anderson|Huang|Alter|Kay,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing,10,Global,all,TRUE +6976,0.410273281410142,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,3,3,4,5,2,3,1,1,3,3,1,1,2,2,2,1,3,1,4,1,1,3,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Rottenstrich|Miyamoto|Huang|Critcher|Anderson|Inbar|Kay|Hauser|Alter|Ross.Slate1|VanLange|Graham,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five,6,Global,all,TRUE +6978,-0.842305863404337,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,6,6,6,7,7,3,1,1,2,2,1,1,2,2,1,1,3,1,2,1,1,3,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Rottenstrich|Miyamoto|VanLange|Critcher|Anderson|Huang|Alter|Hauser|Graham|Inbar|Kay|Ross.Slate1,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,6,Global,all,TRUE +6979,0.881097204933065,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,1,6,1,2,7,2,1,2,5,1,1,2,1,5,1,1,1,1,5,3,1,1,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Bauer|VanLange|Ross.Slate1|Alter|Rottenstrich|Graham|Huang|Kay|Anderson|Hauser|Inbar|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,10,Global,all,TRUE +6980,0.698016620129305,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,2,3,4,3,4,3,5,2,4,1,1,3,2,3,2,1,3,1,4,2,2,1,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|VanLange|Miyamoto|Hauser|Ross.Slate1|Rottenstrich|Graham|Huang|Critcher|Kay|Alter|Bauer|Anderson,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,13,Global,all,TRUE +6981,-0.193411581343157,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,2,2,3,2,3,3,1,1,3,1,1,1,2,1,1,1,3,1,4,1,1,2,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Anderson|Hauser|Kay|Ross.Slate1|Bauer|Critcher|Rottenstrich|Inbar|Alter|Miyamoto|VanLange|Huang,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +6982,-0.220165043566397,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,2,2,2,3,1,4,1,1,5,1,1,1,1,2,1,1,5,1,5,1,1,1,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Critcher|Alter|Graham|Huang|Miyamoto|Anderson|Bauer|Ross.Slate1|Hauser|Kay|Inbar|Rottenstrich,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,7,Global,all,TRUE +6984,1.17121225512646,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,4,4,3,5,4,4,1,1,5,3,1,1,3,3,1,2,4,1,4,3,1,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Huang|Alter|Rottenstrich|Bauer|Miyamoto|Anderson|Kay|Ross.Slate1|Graham|Critcher|VanLange|Inbar,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,7,Global,all,TRUE +6986,0.817038446792111,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,5,5,5,6,6,3,2,2,3,3,1,1,3,4,1,3,4,2,4,2,4,3,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Ross.Slate1|Critcher|Alter|VanLange|Anderson|Rottenstrich|Hauser|Bauer|Huang|Inbar|Graham|Kay,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood,6,Global,all,TRUE +6989,-0.751102486762308,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,1,1,1,1,1,2,1,1,2,1,1,4,2,1,1,4,3,1,3,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Bauer|Huang|Alter|Graham|Ross.Slate1|Inbar|Kay|Rottenstrich|VanLange|Hauser|Critcher|Anderson,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,13,Global,all,TRUE +6991,-0.104439691289727,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,3,5,4,4,3,2,2,1,3,2,1,1,2,2,3,2,3,1,4,2,5,2,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Inbar|Ross.Slate1|Anderson|Bauer|Hauser|Miyamoto|Critcher|Kay|Alter|Rottenstrich|Graham|VanLange,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,4,Global,all,TRUE +6992,0.759043481730558,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,5,5,5,5,6,3,1,1,3,1,1,1,1,2,1,1,2,1,4,1,1,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Miyamoto|Rottenstrich|Bauer|VanLange|Ross.Slate1|Kay|Alter|Anderson|Hauser|Huang|Graham|Inbar,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE,9,Global,all,TRUE +6993,-0.700475812986256,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,6,6,7,6,5,1,1,1,3,3,1,1,1,1,1,1,1,1,3,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|VanLange|Inbar|Hauser|Kay|Huang|Critcher|Miyamoto|Alter|Graham|Ross.Slate1|Anderson|Bauer,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +6994,0.762075378270259,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,5,6,6,3,2,4,1,1,3,1,1,1,2,5,1,1,2,1,4,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Ross.Slate1|Bauer|Miyamoto|Kay|VanLange|Critcher|Anderson|Rottenstrich|Huang|Alter|Graham|Inbar,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +6996,-0.830445080562567,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,1,1,1,1,1,1,2,2,2,1,1,2,1,1,2,1,2,2,3,2,1,1,1,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Inbar|Anderson|Graham|Critcher|Kay|Miyamoto|Huang|Alter|Rottenstrich|VanLange|Ross.Slate1|Hauser,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,3,Global,all,TRUE +7000,0.111062541597643,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,6,5,5,3,7,4,4,5,3,3,2,1,2,3,4,3,2,1,4,5,5,5,2,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Hauser|Bauer|Alter|Kay|VanLange|Ross.Slate1|Graham|Huang|Rottenstrich|Miyamoto|Anderson|Inbar,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +7003,-0.855878172654874,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,4,4,4,5,7,3,3,5,4,5,2,4,1,4,3,4,4,4,1,3,2,5,4,5,4,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Kay|Alter|Hauser|Anderson|Miyamoto|Graham|Ross.Slate1|Inbar|Critcher|VanLange|Rottenstrich|Huang,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,5,Global,all,TRUE +7005,-0.0738561480462831,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,5,5,5,4,4,4,4,1,3,3,3,3,4,5,1,1,2,2,1,3,3,2,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Anderson|Miyamoto|Inbar|Alter|Bauer|Critcher|Ross.Slate1|Rottenstrich|Huang|VanLange|Graham|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood,2,Global,all,TRUE +7006,0.266071519517828,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,2,3,2,2,3,5,2,3,3,1,1,3,4,3,2,2,5,2,4,1,4,3,4,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Huang|Rottenstrich|Inbar|Kay|VanLange|Ross.Slate1|Hauser|Alter|Miyamoto|Graham|Anderson|Bauer,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing,12,Global,all,TRUE +7008,0.0887879244764359,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,4,5,5,5,2,3,1,1,2,3,1,1,3,2,2,2,3,1,5,1,5,2,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Hauser|Inbar|Bauer|Critcher|Miyamoto|VanLange|Graham|Anderson|Kay|Alter|Ross.Slate1|Rottenstrich,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,9,Global,all,TRUE +7009,0.110022621237979,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,2,2,2,2,2,2,1,1,3,1,1,1,1,1,2,1,2,1,3,1,2,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Inbar|Hauser|Miyamoto|Kay|VanLange|Bauer|Ross.Slate1|Anderson|Critcher|Graham|Huang|Alter,ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +7010,-0.597664810365256,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,3,3,4,5,4,4,1,1,4,3,1,1,2,3,1,1,5,1,5,1,1,2,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Alter|Huang|Anderson|Bauer|Miyamoto|Ross.Slate1|Critcher|Rottenstrich|VanLange|Hauser|Inbar|Kay,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,4,Global,all,TRUE +7016,-0.534139658858369,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,6,6,6,6,6,4,1,1,4,4,1,1,4,4,1,1,4,1,4,1,1,4,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Anderson|Huang|Alter|Ross.Slate1|Inbar|Bauer|Hauser|Kay|VanLange|Critcher|Miyamoto|Rottenstrich,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,2,Global,all,TRUE +7017,-1.10697417505119,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,5,5,4,3,4,4,1,1,4,4,1,1,4,3,2,1,4,1,3,1,1,4,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Graham|Rottenstrich|Inbar|Critcher|Kay|Bauer|Anderson|VanLange|Ross.Slate1|Miyamoto|Hauser|Alter,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +7018,0.174994721307198,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,1,3,1,2,1,2,3,1,3,1,3,2,1,1,2,1,2,1,4,1,1,1,2,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Rottenstrich|Graham|Bauer|Hauser|Miyamoto|Alter|Anderson|Inbar|Huang|Kay|VanLange|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,8,Global,all,TRUE +7021,0.905350151780073,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,7,7,7,7,7,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Inbar|Critcher|Ross.Slate1|Bauer|Huang|Kay|Miyamoto|Alter|VanLange|Hauser|Anderson|Rottenstrich,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +7023,0.255531106806992,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,5,5,5,5,6,4,1,1,2,2,1,1,2,2,1,1,4,1,3,1,2,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Bauer|Kay|Ross.Slate1|Hauser|Inbar|Anderson|Alter|Critcher|Miyamoto|VanLange|Graham|Rottenstrich,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,7,Global,all,TRUE +7026,-0.100089650089692,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,5,5,6,3,6,5,1,1,5,3,1,1,3,3,1,1,3,1,5,1,1,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Critcher|Huang|Alter|VanLange|Rottenstrich|Graham|Hauser|Anderson|Bauer|Ross.Slate1|Kay|Inbar,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,9,Global,all,TRUE +7028,1.03334108963058,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,3,4,5,4,3,4,1,1,4,2,1,1,4,4,1,1,4,1,4,1,1,3,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Bauer|Rottenstrich|Graham|Hauser|Inbar|Huang|Kay|Critcher|Ross.Slate1|Miyamoto|VanLange|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing,1,Global,all,TRUE +7029,-0.134883009647536,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,1,1,1,1,1,3,2,1,4,1,2,1,1,1,1,2,3,1,4,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Critcher|Hauser|Rottenstrich|Alter|Bauer|Anderson|Graham|Kay|Inbar|Ross.Slate1|Miyamoto|Huang,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,7,Global,all,TRUE +7031,-0.0295737171209028,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,5,6,6,5,3,5,1,1,3,4,1,1,2,1,1,1,3,1,3,1,1,3,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Critcher|Ross.Slate1|Huang|Hauser|Bauer|Kay|VanLange|Graham|Alter|Rottenstrich|Miyamoto|Anderson,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,13,Global,all,TRUE +7032,-0.167053726338948,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,2,3,3,3,2,4,1,1,4,1,1,1,1,3,1,1,4,1,4,1,1,2,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Huang|Kay|Hauser|Rottenstrich|Miyamoto|Bauer|Alter|Graham|Anderson|Ross.Slate1|VanLange|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,10,Global,all,TRUE +7033,0.0529409981046916,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,7,7,7,7,7,5,1,1,5,5,1,1,5,5,1,1,5,1,5,1,1,5,5,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Inbar|Huang|VanLange|Critcher|Rottenstrich|Hauser|Graham|Miyamoto|Bauer|Kay|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,13,Global,all,TRUE +7035,-0.577761904718282,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,5,5,5,6,2,3,1,1,5,3,1,2,4,3,2,1,5,2,5,1,3,3,4,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Critcher|VanLange|Hauser|Alter|Bauer|Inbar|Ross.Slate1|Huang|Graham|Rottenstrich|Kay|Anderson,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection,13,Global,all,TRUE +7036,0.194630823637137,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,6,5,6,6,5,3,1,1,2,2,1,1,2,3,1,1,3,1,3,1,2,3,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Ross.Slate1|Anderson|Hauser|Bauer|Inbar|Huang|Alter|Critcher|Rottenstrich|Kay|Graham|VanLange,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection,3,Global,all,TRUE +7038,-0.343410332997839,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,6,6,6,6,5,4,1,1,4,1,1,1,1,3,1,1,2,1,4,1,1,3,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Rottenstrich|Critcher|Kay|Miyamoto|VanLange|Ross.Slate1|Graham|Bauer|Inbar|Hauser|Alter|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five,1,Global,all,TRUE +7041,-0.390864885348555,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,2,5,3,4,2,3,1,1,4,2,1,3,3,4,1,1,1,1,3,1,1,1,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Bauer|Inbar|Critcher|Alter|Miyamoto|Kay|Graham|Hauser|Rottenstrich|Ross.Slate1|VanLange|Huang,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,1,Global,all,TRUE +7044,-0.230452299414436,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,2,2,2,2,2,1,1,1,3,1,1,1,1,1,1,1,1,1,3,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Miyamoto|Critcher|Alter|Inbar|Huang|Hauser|Bauer|Kay|Rottenstrich|Ross.Slate1|VanLange|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,13,Global,all,TRUE +7045,-0.132904679921735,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,6,5,6,6,6,3,1,2,3,4,1,1,2,2,2,1,4,1,4,1,1,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Inbar|Graham|Bauer|Kay|Alter|Huang|VanLange|Critcher|Anderson|Hauser|Rottenstrich|Miyamoto,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,10,Global,all,TRUE +7046,0.858822587811858,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,3,4,4,5,3,3,1,1,4,3,1,1,2,4,1,1,4,1,4,1,1,3,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|VanLange|Miyamoto|Bauer|Rottenstrich|Anderson|Hauser|Graham|Ross.Slate1|Critcher|Huang|Alter|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,6,Global,all,TRUE +7047,-0.924286971995863,High,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,2,2,2,2,1,1,1,1,2,1,2,1,1,1,1,2,1,1,3,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|VanLange|Hauser|Kay|Bauer|Rottenstrich|Anderson|Ross.Slate1|Inbar|Alter|Huang|Miyamoto|Critcher,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood,7,Global,all,TRUE +7048,0.554475043302457,High,Slate_1_Deutsch__Austria_Revised_Version_2__Kopieren_teamb_r_manuallyrecode_vanp21_text.csv,grazvienna,5,5,7,6,6,3,2,1,3,1,1,1,2,4,1,1,1,1,4,1,1,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Kay|Ross.Slate1|Inbar|Anderson|Alter|Huang|Hauser|Rottenstrich|Miyamoto|Critcher|VanLange|Bauer,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,5,Global,all,TRUE +7050,-0.464803871134879,High,Slate_1_Deutsch__Austria_Revised_Version_2__Kopieren_teamb_r_manuallyrecode_vanp21_text.csv,grazvienna,6,7,7,7,3,4,1,1,4,2,1,1,2,3,1,1,4,1,3,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Anderson|Rottenstrich|Bauer|Miyamoto|Graham|Hauser|Critcher|Huang|Inbar|VanLange|Ross.Slate1|Alter,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE,2,Global,all,TRUE +7051,-0.252460113218609,High,Slate_1_Deutsch__Austria_Revised_Version_2__Kopieren_teamb_r_manuallyrecode_vanp21_text.csv,grazvienna,5,6,6,3,5,2,2,1,3,1,1,2,2,2,1,1,2,1,3,1,1,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Bauer|Alter|Hauser|Rottenstrich|Miyamoto|Inbar|Critcher|Graham|Huang|Anderson|Ross.Slate1|Kay,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,11,Global,all,TRUE +7055,0.874906833422264,High,Slate_1_Deutsch__Austria_Revised_Version_2__Kopieren_teamb_r_manuallyrecode_vanp21_text.csv,grazvienna,6,7,6,6,7,3,4,1,3,3,1,2,3,5,1,1,4,1,2,1,3,1,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Kay|Bauer|Alter|Inbar|Critcher|Huang|Hauser|Anderson|Rottenstrich|VanLange|Miyamoto|Ross.Slate1,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +7057,0.476970554342365,High,Slate_1_Deutsch__Austria_Revised_Version_2__Kopieren_teamb_r_manuallyrecode_vanp21_text.csv,grazvienna,5,5,7,5,7,1,2,1,1,2,1,2,1,4,1,1,3,1,3,1,1,1,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Ross.Slate1|Miyamoto|Kay|Hauser|Huang|Rottenstrich|Graham|Alter|Bauer|Inbar|Critcher|Anderson,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,13,Global,all,TRUE +7060,-0.844284193130138,High,Slate_1_Deutsch__Austria_Revised_Version_2__Kopieren_teamb_r_manuallyrecode_vanp21_text.csv,grazvienna,5,5,5,5,5,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|VanLange|Inbar|Alter|Kay|Bauer|Critcher|Huang|Anderson|Ross.Slate1|Miyamoto|Hauser|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,9,Global,all,TRUE +7061,0.0193255583215466,High,Slate_1_Deutsch__Austria_Revised_Version_2__Kopieren_teamb_r_manuallyrecode_vanp21_text.csv,grazvienna,5,6,6,6,6,4,1,1,3,2,1,1,3,2,1,1,3,1,2,1,1,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|VanLange|Critcher|Huang|Alter|Anderson|Inbar|Rottenstrich|Graham|Miyamoto|Kay|Ross.Slate1|Bauer,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,6,Global,all,TRUE +7064,0.130965447244616,High,Slate_1_Deutsch__Austria_Revised_Version_2__Kopieren_teamc_r_manuallyrecode_vanp21_text.csv,grazvienna,5,6,6,7,6,4,4,1,1,1,2,4,4,1,3,2,2,2,2,2,1,1,1,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Anderson|Huang|VanLange|Graham|Alter|Kay|Hauser|Miyamoto|Inbar|Bauer|Ross.Slate1|Rottenstrich,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +7065,0.720558040567546,High,Slate_1_Deutsch__Austria_Revised_Version_2__Kopieren_teamc_r_manuallyrecode_vanp21_text.csv,grazvienna,5,3,5,5,5,2,2,1,2,1,1,1,1,1,2,1,2,1,1,1,2,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Miyamoto|Critcher|Inbar|Ross.Slate1|Rottenstrich|Hauser|Anderson|VanLange|Huang|Alter|Kay|Graham,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,8,Global,all,TRUE +7066,1.18835006755077,High,Slate_1_Deutsch__Austria_Revised_Version_2__Kopieren_teamc_r_manuallyrecode_vanp21_text.csv,grazvienna,3,4,4,5,3,2,2,2,2,1,1,1,2,1,2,1,2,1,3,1,2,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Ross.Slate1|Graham|Critcher|Anderson|Inbar|Hauser|VanLange|Rottenstrich|Huang|Bauer|Kay|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,5,Global,all,TRUE +7071,0.521126406836346,High,Slate_1_Deutsch__Austria_Revised_Version_2__Kopieren_teamc_r_manuallyrecode_vanp21_text.csv,grazvienna,6,6,6,5,5,2,1,2,3,1,1,3,1,3,1,1,3,1,3,1,2,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Rottenstrich|Anderson|Inbar|Alter|VanLange|Miyamoto|Kay|Bauer|Critcher|Hauser|Ross.Slate1|Graham,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,3,Global,all,TRUE +7072,0.19186573041447,High,Slate_1_Deutsch__Austria_Revised_Version_2__Kopieren_teamc_r_manuallyrecode_vanp21_text.csv,grazvienna,3,6,5,4,5,1,4,3,1,2,1,2,3,1,1,1,1,1,1,2,3,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Rottenstrich|Ross.Slate1|Anderson|Alter|Hauser|VanLange|Kay|Bauer|Miyamoto|Inbar|Huang|Graham,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +7073,-1.17697014784015,High,Slate_1_Deutsch__Austria_Revised_Version_2__Kopieren_teamc_r_manuallyrecode_vanp21_text.csv,grazvienna,3,3,5,5,3,3,3,4,4,2,3,3,2,2,3,3,2,2,4,1,4,2,2,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Huang|Anderson|VanLange|Bauer|Rottenstrich|Ross.Slate1|Inbar|Alter|Hauser|Critcher|Miyamoto|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,3,Global,all,TRUE +7076,-0.100356453406726,High,Slate_1_Deutsch__Austria_Revised_Version_2_fady_r_manuallyrecode_vanp21_text.csv,grazvienna,6,7,6,7,7,4,1,2,4,2,1,1,2,2,1,1,2,1,3,1,1,2,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|VanLange|Alter|Hauser|Rottenstrich|Kay|Bauer|Huang|Inbar|Graham|Anderson|Critcher|Miyamoto,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,11,Global,all,TRUE +7079,0.595205617508305,High,Slate_1_Deutsch__Austria_Revised_Version_2_fady_r_manuallyrecode_vanp21_text.csv,grazvienna,3,5,4,3,2,4,5,3,3,1,4,4,1,2,4,3,4,1,2,2,3,1,2,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Bauer|VanLange|Critcher|Anderson|Alter|Inbar|Graham|Rottenstrich|Kay|Hauser|Ross.Slate1|Huang,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,5,Global,all,TRUE +7080,-0.0410411182142397,High,Slate_1_Deutsch__Austria_Revised_Version_2_fady_r_manuallyrecode_vanp21_text.csv,grazvienna,6,7,7,7,7,1,2,2,3,1,1,2,4,1,1,1,1,1,1,1,1,1,1,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Critcher|Kay|Inbar|Huang|Miyamoto|Graham|Alter|VanLange|Rottenstrich|Bauer|Ross.Slate1|Anderson,ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +7082,0.717526144027845,High,Slate_1_Deutsch__Austria_Revised_Version_2_fady_r_manuallyrecode_vanp21_text.csv,grazvienna,6,7,7,6,6,4,1,2,4,3,1,1,3,3,2,1,4,2,4,1,1,2,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Inbar|Rottenstrich|Alter|Anderson|VanLange|Ross.Slate1|Graham|Huang|Hauser|Kay|Miyamoto|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,5,Global,all,TRUE +7086,0.301932092343808,High,Slate_1_Deutsch__Austria_Revised_Version_2_fady_r_manuallyrecode_vanp21_text.csv,grazvienna,7,7,7,6,6,1,1,1,2,1,1,2,1,2,1,1,3,1,2,1,1,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Ross.Slate1|Miyamoto|Kay|Critcher|Graham|Hauser|Rottenstrich|Bauer|Alter|Anderson|Inbar|Huang,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,11,Global,all,TRUE +7087,0.443621917876254,High,Slate_1_Deutsch__Austria_Revised_Version_2_fady_r_manuallyrecode_vanp21_text.csv,grazvienna,4,4,5,5,5,4,1,2,3,2,1,1,2,3,2,1,3,1,3,1,1,1,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Hauser|Graham|Rottenstrich|Anderson|VanLange|Inbar|Alter|Kay|Ross.Slate1|Critcher|Huang|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,5,Global,all,TRUE +7092,0.634351243736784,High,Slate_1_Deutsch__Austria_Revised_Version_2_fady_r_manuallyrecode_vanp21_text.csv,grazvienna,3,5,6,3,5,4,1,2,4,2,1,1,1,3,1,1,4,1,2,1,2,1,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Huang|Critcher|Graham|Inbar|Kay|Bauer|Ross.Slate1|Rottenstrich|Anderson|Miyamoto|Hauser|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,10,Global,all,TRUE +7093,0.847621990035555,High,Slate_1_Deutsch__Austria_Revised_Version_2_fady_r_manuallyrecode_vanp21_text.csv,grazvienna,6,5,6,4,6,3,2,2,2,1,1,1,2,2,1,1,2,1,3,2,1,1,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Graham|Ross.Slate1|Anderson|Rottenstrich|Kay|Inbar|VanLange|Bauer|Miyamoto|Hauser|Huang|Critcher,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,4,Global,all,TRUE +7094,0.0445054935510558,High,Slate_1_Deutsch__Austria_Revised_Version_2_fady_r_manuallyrecode_vanp21_text.csv,grazvienna,5,4,5,6,4,2,4,4,2,1,1,1,3,2,3,2,1,1,1,2,3,1,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Alter|Critcher|Ross.Slate1|Graham|Huang|Rottenstrich|Kay|Hauser|Miyamoto|Anderson|VanLange|Bauer,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing,11,Global,all,TRUE +7096,-0.47548450873135,High,Slate_1_Deutsch__Austria_Revised_Version_2_fady_r_manuallyrecode_vanp21_text.csv,grazvienna,6,5,5,5,6,2,3,2,2,2,1,3,2,2,1,2,2,1,1,1,1,2,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Graham|Alter|Inbar|VanLange|Huang|Hauser|Ross.Slate1|Bauer|Miyamoto|Kay|Anderson|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,12,Global,all,TRUE +7102,-0.433826946143002,High,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,3,5,5,4,2,3,1,2,3,1,1,1,2,2,2,1,2,1,3,1,1,1,3,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Kay|Hauser|Anderson|Bauer|Miyamoto|Critcher|Graham|Rottenstrich|VanLange|Alter|Huang|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,4,Global,all,TRUE +7103,0.917084356190444,High,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,6,6,6,5,7,3,2,3,4,2,1,1,4,3,2,1,1,2,3,1,3,3,4,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Inbar|Alter|Miyamoto|Ross.Slate1|Critcher|Anderson|Huang|Graham|VanLange|Kay|Rottenstrich|Bauer,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,7,Global,all,TRUE +7104,0.828112466137015,High,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,6,7,7,7,7,4,2,1,4,1,1,1,1,3,1,1,3,1,4,1,1,3,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Kay|VanLange|Ross.Slate1|Miyamoto|Huang|Anderson|Rottenstrich|Graham|Hauser|Bauer|Critcher|Inbar,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,7,Global,all,TRUE +7106,0.747969462385654,High,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,5,6,7,5,2,3,1,2,4,3,1,1,4,4,1,1,4,1,3,1,2,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Critcher|Bauer|Hauser|VanLange|Huang|Graham|Alter|Rottenstrich|Ross.Slate1|Inbar|Kay|Anderson,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,13,Global,all,TRUE +7107,0.575569515178366,High,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,4,2,6,4,3,2,3,4,3,2,5,3,2,2,5,5,2,1,3,2,1,1,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Kay|Alter|Miyamoto|Rottenstrich|Inbar|Huang|Hauser|Ross.Slate1|Anderson|Graham|Bauer|Critcher,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +7108,0.661636087123493,High,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,6,6,6,6,6,3,1,2,4,1,1,1,1,1,2,1,4,1,3,1,1,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Critcher|VanLange|Ross.Slate1|Bauer|Alter|Graham|Hauser|Huang|Miyamoto|Anderson|Kay|Inbar,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +7116,1.06602954103123,High,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,6,6,7,6,6,3,1,1,4,2,1,1,3,1,1,1,3,1,3,1,3,2,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Critcher|Bauer|Ross.Slate1|Anderson|Graham|Miyamoto|Alter|Kay|VanLange|Inbar|Hauser|Rottenstrich,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,5,Global,all,TRUE +7118,0.498851789715139,High,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,3,6,2,4,3,3,1,2,2,1,1,3,3,2,1,1,4,1,1,4,4,3,2,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Rottenstrich|Critcher|VanLange|Anderson|Bauer|Alter|Hauser|Miyamoto|Graham|Huang|Kay|Ross.Slate1,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +7119,-0.312700211322996,High,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,2,2,2,2,1,1,2,2,3,1,2,1,1,1,1,1,3,1,3,1,2,2,1,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|VanLange|Anderson|Ross.Slate1|Kay|Miyamoto|Bauer|Inbar|Rottenstrich|Alter|Huang|Graham|Critcher,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,3,Global,all,TRUE +7130,0.39340227230287,High,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,6,7,6,6,7,4,1,2,4,4,1,1,4,4,1,1,5,1,3,1,1,3,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Inbar|Alter|Rottenstrich|Critcher|VanLange|Kay|Hauser|Anderson|Graham|Bauer|Ross.Slate1|Huang,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +7132,0.049909101564991,High,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,6,6,6,5,6,2,1,2,2,4,1,1,2,2,1,1,4,1,4,1,1,1,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Hauser|Anderson|Ross.Slate1|Critcher|Alter|Rottenstrich|Bauer|Inbar|VanLange|Miyamoto|Graham|Kay,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five,3,Global,all,TRUE +7134,0.565549062647361,High,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,2,2,4,5,4,2,2,3,2,1,1,2,2,2,2,2,2,1,3,3,1,1,1,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Anderson|Hauser|Rottenstrich|Huang|Alter|Kay|VanLange|Inbar|Graham|Miyamoto|Ross.Slate1|Bauer,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,2,Global,all,TRUE +7135,0.612076626615576,High,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,5,6,7,7,7,3,3,2,3,1,1,1,3,3,1,1,3,1,4,1,2,3,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Anderson|Bauer|Graham|Critcher|Ross.Slate1|Rottenstrich|Miyamoto|VanLange|Alter|Hauser|Kay|Inbar,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,2,Global,all,TRUE +7137,-0.079919941125685,High,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,6,7,6,6,6,4,1,2,4,3,1,1,2,4,1,1,3,1,3,1,1,3,4,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Miyamoto|Hauser|Inbar|Huang|VanLange|Bauer|Ross.Slate1|Graham|Rottenstrich|Alter|Kay|Critcher,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,1,Global,all,TRUE +7138,0.820070343331812,High,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,4,5,4,3,4,4,2,2,3,2,1,1,3,3,3,3,3,1,3,1,3,3,3,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Ross.Slate1|Hauser|Graham|Critcher|Alter|Bauer|Huang|Kay|VanLange|Inbar|Anderson|Rottenstrich,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,12,Global,all,TRUE +7140,-0.332729695401368,High,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,3,3,5,5,3,4,1,1,4,2,1,1,3,2,2,1,3,1,5,1,2,3,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Ross.Slate1|Bauer|Huang|Alter|Hauser|Anderson|Critcher|Kay|Graham|Rottenstrich|VanLange|Inbar,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +7141,0.368882522138829,High,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,5,6,6,5,5,3,5,4,2,1,2,1,1,5,5,5,2,1,2,1,5,1,4,4,5,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Inbar|VanLange|Graham|Rottenstrich|Hauser|Anderson|Ross.Slate1|Kay|Alter|Huang|Bauer|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,7,Global,all,TRUE +7142,0.28848636152467,High,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,4,6,6,5,4,4,1,1,3,3,1,1,2,3,1,1,4,1,4,1,1,2,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Miyamoto|Critcher|Rottenstrich|VanLange|Hauser|Graham|Ross.Slate1|Kay|Bauer|Alter|Inbar|Huang,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +7143,0.379169777986866,High,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,2,2,4,2,2,3,1,2,3,1,1,1,2,2,2,1,2,1,3,1,2,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Critcher|Miyamoto|Inbar|VanLange|Hauser|Ross.Slate1|Anderson|Huang|Bauer|Graham|Kay|Alter,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood,8,Global,all,TRUE +7147,0.582153268437599,High,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,5,6,5,6,4,1,3,1,3,2,2,1,3,1,1,1,2,1,3,2,1,3,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Kay|Graham|Rottenstrich|Huang|Inbar|Miyamoto|Hauser|VanLange|Alter|Critcher|Ross.Slate1|Anderson,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,13,Global,all,TRUE +7148,0.279910632085399,High,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,5,5,6,5,6,2,1,1,3,3,1,1,2,3,1,1,4,1,3,1,1,1,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Critcher|Huang|Hauser|Rottenstrich|Graham|Ross.Slate1|VanLange|Inbar|Bauer|Miyamoto|Kay|Alter,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +7149,-0.237567433837138,High,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,6,6,6,6,6,5,2,1,4,4,1,1,3,4,3,1,4,2,3,1,2,4,3,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Huang|Bauer|Critcher|Anderson|VanLange|Alter|Miyamoto|Inbar|Rottenstrich|Ross.Slate1|Hauser|Graham,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,5,Global,all,TRUE +7151,0.374552933469797,High,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,2,5,5,4,5,3,3,4,4,1,2,2,4,2,3,3,4,1,3,1,3,1,2,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Hauser|Inbar|Bauer|Critcher|Kay|Alter|Graham|Rottenstrich|Huang|Anderson|VanLange|Ross.Slate1,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,11,Global,all,TRUE +7155,0.348853038060456,High,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,5,7,5,7,5,3,1,1,2,3,1,1,2,2,1,2,3,1,3,1,1,2,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Alter|Miyamoto|Graham|Inbar|Ross.Slate1|Rottenstrich|VanLange|Huang|Anderson|Bauer|Critcher|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,10,Global,all,TRUE +7157,-0.552848772805807,High,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,2,6,5,3,5,4,2,2,4,3,1,1,4,4,1,2,3,1,4,1,2,3,4,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Hauser|Anderson|Miyamoto|Alter|Graham|Kay|Critcher|Huang|Ross.Slate1|VanLange|Bauer|Rottenstrich,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,3,Global,all,TRUE +7159,0.4813205955424,High,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,7,7,7,7,7,5,1,1,4,4,1,1,3,4,1,1,3,2,5,2,2,4,5,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Kay|Ross.Slate1|Miyamoto|Huang|Critcher|Anderson|Graham|Inbar|Rottenstrich|Bauer|Hauser|VanLange,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,7,Global,all,TRUE +7160,0.86383281407736,High,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,6,6,7,6,6,2,3,1,2,2,1,3,1,1,1,1,1,1,2,1,1,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Inbar|Miyamoto|Graham|VanLange|Critcher|Alter|Kay|Rottenstrich|Huang|Bauer|Anderson|Hauser,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,12,Global,all,TRUE +7162,-0.0655608683782821,High,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,6,5,6,6,7,5,1,1,4,4,1,1,5,1,1,1,4,1,1,1,1,3,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Miyamoto|Alter|Bauer|Critcher|Anderson|Hauser|Ross.Slate1|Rottenstrich|Graham|VanLange|Inbar|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,6,Global,all,TRUE +7163,-0.162701459668314,High,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,6,6,6,7,6,1,2,1,4,2,1,1,3,3,1,1,3,1,3,2,2,2,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Graham|Huang|Critcher|Inbar|Kay|Bauer|Hauser|Miyamoto|Alter|Rottenstrich|VanLange|Anderson,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,13,Global,all,TRUE +7170,0.761681996521826,High,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,5,6,6,6,6,3,1,2,3,1,1,1,1,1,1,1,3,1,3,1,1,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Kay|Inbar|Hauser|Miyamoto|Anderson|Bauer|Huang|Alter|Graham|Rottenstrich|Critcher|VanLange,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,6,Global,all,TRUE +7171,0.84432329017882,High,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,5,5,7,4,6,2,1,1,3,1,3,1,2,4,1,1,4,1,3,1,1,1,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Anderson|Rottenstrich|Graham|Hauser|VanLange|Critcher|Ross.Slate1|Inbar|Huang|Kay|Miyamoto|Alter,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,2,Global,all,TRUE +7175,0.230617974894517,High,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,3,4,5,3,3,3,1,2,3,1,2,1,2,1,1,3,2,1,2,1,3,1,1,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Inbar|Alter|Graham|Miyamoto|VanLange|Huang|Bauer|Kay|Rottenstrich|Anderson|Hauser|Critcher,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing,11,Global,all,TRUE +7178,-0.250214980175773,High,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,5,5,6,5,4,2,1,1,2,1,1,1,2,2,1,1,2,1,2,1,1,5,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Inbar|Critcher|Graham|Rottenstrich|Huang|Kay|VanLange|Hauser|Miyamoto|Anderson|Bauer,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +7179,0.000743022805507532,High,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,5,1,7,5,4,1,2,1,2,3,2,5,4,2,4,1,1,1,1,1,3,4,1,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Graham|Kay|Alter|VanLange|Anderson|Bauer|Ross.Slate1|Hauser|Rottenstrich|Miyamoto|Huang|Inbar,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,6,Global,all,TRUE +7180,-1.24234927611203,High,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,6,6,6,6,6,4,1,1,4,1,1,1,4,4,1,1,5,1,3,1,1,1,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Graham|Huang|Alter|Kay|VanLange|Anderson|Inbar|Ross.Slate1|Bauer|Rottenstrich|Hauser|Critcher,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,7,Global,all,TRUE +7181,0.224160800066681,High,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,5,5,5,5,5,3,1,1,3,4,1,1,2,3,1,1,4,1,3,1,1,3,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Kay|Rottenstrich|Anderson|Critcher|VanLange|Miyamoto|Ross.Slate1|Inbar|Alter|Graham|Bauer|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,4,Global,all,TRUE +7183,0.401837776856507,High,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,5,4,6,1,1,3,3,2,4,3,2,2,4,3,3,2,4,2,4,1,2,3,3,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Bauer|Alter|Ross.Slate1|Anderson|Kay|Critcher|Miyamoto|VanLange|Graham|Hauser|Inbar|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing,5,Global,all,TRUE +7184,0.0806192232398337,High,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,6,5,6,7,6,4,1,1,5,2,1,2,2,1,2,1,2,1,4,1,1,2,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Anderson|Huang|Miyamoto|VanLange|Alter|Bauer|Rottenstrich|Critcher|Hauser|Inbar|Kay|Ross.Slate1,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood,2,Global,all,TRUE +7189,-0.0187665010930327,High,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,6,6,7,6,5,4,1,1,4,3,1,1,3,3,1,1,3,1,4,1,1,3,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Huang|Bauer|Ross.Slate1|VanLange|Alter|Inbar|Miyamoto|Hauser|Graham|Rottenstrich|Kay|Critcher,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,1,Global,all,TRUE +7193,-0.943138536299536,High,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,5,3,6,5,3,4,1,1,2,3,1,2,2,3,2,1,4,2,2,1,3,2,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Bauer|Miyamoto|VanLange|Kay|Ross.Slate1|Hauser|Inbar|Graham|Huang|Rottenstrich|Critcher|Anderson,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,13,Global,all,TRUE +7194,0.255264303489958,High,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,3,2,5,4,4,4,1,1,4,2,1,1,1,2,1,1,1,1,4,1,1,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Hauser|Alter|Bauer|Inbar|Critcher|Ross.Slate1|VanLange|Kay|Graham|Anderson|Huang|Miyamoto,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,11,Global,all,TRUE +7195,-0.0824318774855542,High,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,6,5,6,6,6,3,1,2,3,1,1,1,2,3,1,1,2,1,3,1,1,1,3,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Huang|VanLange|Anderson|Graham|Rottenstrich|Inbar|Critcher|Ross.Slate1|Alter|Bauer|Kay|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing,4,Global,all,TRUE +7197,0.573717763883963,High,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,5,7,5,5,4,5,1,2,4,1,2,1,5,2,1,2,5,1,3,1,2,1,4,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Bauer|Critcher|Graham|Ross.Slate1|Hauser|Miyamoto|Huang|Inbar|Rottenstrich|Alter|Anderson|Kay,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,12,Global,all,TRUE +7198,1.18808326423373,High,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,5,5,5,3,3,2,1,3,2,1,2,1,2,2,1,1,2,1,3,1,3,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|VanLange|Miyamoto|Rottenstrich|Critcher|Hauser|Anderson|Kay|Graham|Ross.Slate1|Huang|Inbar|Bauer,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing,7,Global,all,TRUE +7199,-0.0103309965393965,High,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,6,6,6,5,5,4,1,1,3,2,1,1,1,1,1,1,4,1,3,1,1,1,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Ross.Slate1|Hauser|Anderson|Miyamoto|Kay|Graham|Huang|VanLange|Bauer|Rottenstrich|Inbar|Alter,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +7200,0.529561911389982,High,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,5,4,6,5,6,3,3,2,2,1,1,1,4,1,3,1,2,1,2,1,2,1,2,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Ross.Slate1|Huang|Anderson|Kay|Graham|Bauer|Critcher|Inbar|Miyamoto|Rottenstrich|Alter|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,4,Global,all,TRUE +7202,0.941730684785885,High,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,5,5,4,5,4,3,3,2,2,1,1,2,1,2,1,1,3,1,3,1,1,3,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Ross.Slate1|Inbar|Graham|Kay|VanLange|Miyamoto|Rottenstrich|Huang|Critcher|Anderson|Alter|Hauser,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,11,Global,all,TRUE +7203,-0.583432316049252,High,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,4,6,6,5,4,3,2,2,4,3,1,1,3,3,2,1,3,1,3,1,2,2,4,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Rottenstrich|Miyamoto|Graham|Huang|Alter|Anderson|Inbar|Ross.Slate1|VanLange|Critcher|Kay|Hauser,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,7,Global,all,TRUE +7204,0.933688561980682,High,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,6,6,7,7,6,3,1,1,3,4,1,1,3,3,2,1,4,1,3,1,2,4,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Critcher|Miyamoto|Inbar|Rottenstrich|Ross.Slate1|Graham|Anderson|Kay|Huang|VanLange|Bauer|Alter,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,8,Global,all,TRUE +7207,0.620512131169213,High,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,3,6,5,6,3,5,1,1,4,3,1,1,2,3,1,1,4,1,3,1,3,2,1,5,1,,,,,,,,,,,,,,,,,,,,,,,,,,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Rottenstrich|Bauer|Hauser|Kay|Ross.Slate1|Inbar|Miyamoto|Critcher|Anderson|Huang|Alter|VanLange,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,10,Global,all,TRUE +7210,0.51269090228271,High,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,5,6,6,5,6,4,1,1,3,2,1,1,1,1,1,1,2,1,3,1,1,2,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Bauer|Kay|Inbar|Graham|Alter|Anderson|VanLange|Ross.Slate1|Miyamoto|Rottenstrich|Critcher|Hauser,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +7211,0.0497825231335917,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,2,3,4,3,6,3,2,4,3,2,1,1,3,2,1,1,3,1,3,1,1,3,3,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Rottenstrich|Alter|Huang|Critcher|VanLange|Hauser|Graham|Kay|Anderson|Inbar|Ross.Slate1|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,10,Global,all,TRUE +7213,-1.26936731618171,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,5,3,5,6,6,3,1,2,4,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Critcher|Bauer|Rottenstrich|Huang|Anderson|Alter|VanLange|Inbar|Ross.Slate1|Graham|Miyamoto|Kay,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,6,Global,all,TRUE +7215,-0.556807657728009,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,5,5,6,6,5,3,3,2,4,2,1,2,3,2,1,1,4,1,3,1,2,2,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|VanLange|Bauer|Rottenstrich|Alter|Hauser|Anderson|Inbar|Miyamoto|Kay|Huang|Critcher|Graham,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,7,Global,all,TRUE +7216,0.728066556738681,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,5,7,6,7,6,3,2,1,3,1,1,2,1,4,1,1,3,1,3,1,2,1,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Miyamoto|Inbar|VanLange|Bauer|Ross.Slate1|Kay|Hauser|Rottenstrich|Alter|Graham|Huang|Anderson,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +7217,-0.0643693021493466,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,5,4,6,6,6,2,2,4,3,1,1,2,1,1,1,3,2,1,2,2,2,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Ross.Slate1|Critcher|Inbar|Huang|Anderson|Graham|Rottenstrich|Alter|Hauser|Kay|Miyamoto|VanLange,ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +7218,-1.48183765252938,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,2,3,3,5,2,3,1,3,4,1,2,1,2,1,3,3,1,1,4,1,3,1,2,1,3,,,,,,,,,,,,,,,,,,,,,,,,,,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Bauer|Graham|Critcher|Hauser|Kay|Inbar|Huang|Rottenstrich|Anderson|VanLange|Ross.Slate1|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,10,Global,all,TRUE +7223,-0.771258549272079,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,6,6,5,5,5,2,2,2,3,1,1,2,1,2,3,1,2,1,4,1,4,2,2,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Huang|Anderson|Ross.Slate1|Hauser|Bauer|Kay|VanLange|Inbar|Graham|Miyamoto|Alter|Rottenstrich,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,3,Global,all,TRUE +7229,0.426357527020549,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,3,4,5,6,3,3,2,3,3,2,2,2,3,4,2,2,4,1,4,1,3,2,2,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Anderson|Inbar|Alter|Graham|Rottenstrich|Huang|Critcher|Miyamoto|VanLange|Bauer|Kay|Ross.Slate1,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,2,Global,all,TRUE +7230,-0.134618431801102,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,6,6,5,7,3,4,4,3,4,1,1,2,3,4,1,2,3,1,2,1,3,2,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Anderson|Bauer|Critcher|Hauser|Graham|Miyamoto|Rottenstrich|Huang|Inbar|Ross.Slate1|VanLange|Kay,ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,2,Global,all,TRUE +7234,-0.590943057690986,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,4,6,6,4,4,2,3,1,3,1,1,1,2,1,1,1,1,1,1,1,4,1,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|Rottenstrich|Ross.Slate1|Alter|Anderson|Huang|Graham|Inbar|VanLange|Bauer|Kay|Critcher,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood,6,Global,all,TRUE +7237,0.216118677261479,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,6,6,6,6,6,4,1,1,5,5,1,1,1,4,1,1,4,1,2,1,1,5,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Alter|Anderson|VanLange|Critcher|Bauer|Inbar|Kay|Rottenstrich|Huang|Miyamoto|Hauser|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,3,Global,all,TRUE +7238,0.647530171238888,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,5,6,6,6,5,2,1,1,2,1,1,1,1,2,1,1,3,1,2,1,1,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Inbar|Hauser|Ross.Slate1|Miyamoto|Anderson|Alter|Huang|Graham|Rottenstrich|Critcher|Bauer|VanLange,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,6,Global,all,TRUE +7241,-0.557327617907841,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,5,4,6,6,5,3,1,2,3,2,1,1,2,3,1,1,2,1,3,1,2,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Bauer|Kay|Graham|Critcher|Alter|Rottenstrich|Huang|Anderson|Miyamoto|Ross.Slate1|Inbar|Hauser,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,9,Global,all,TRUE +7242,-2.21390683488162,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,2,5,4,5,6,1,1,3,4,1,2,1,1,2,3,1,1,2,4,1,4,1,2,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Bauer|Ross.Slate1|Graham|Alter|Inbar|Rottenstrich|Critcher|Hauser|VanLange|Huang|Miyamoto|Anderson,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing,13,Global,all,TRUE +7246,0.21902399536978,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,3,4,5,4,3,2,1,3,3,1,1,1,2,2,1,2,3,1,3,1,2,2,1,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Ross.Slate1|VanLange|Alter|Bauer|Kay|Miyamoto|Huang|Anderson|Rottenstrich|Graham|Critcher|Hauser,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,9,Global,all,TRUE +7249,0.176579669284567,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,5,5,7,6,6,2,1,1,3,2,1,1,2,3,1,1,1,1,3,1,1,2,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Bauer|VanLange|Hauser|Ross.Slate1|Miyamoto|Alter|Anderson|Graham|Rottenstrich|Huang|Kay|Critcher,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,8,Global,all,TRUE +7250,0.878332111710398,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,3,6,4,6,3,3,2,3,3,2,3,2,3,2,2,3,3,2,2,2,4,3,2,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Miyamoto|Critcher|Anderson|Huang|Alter|Graham|Kay|Bauer|Inbar|Ross.Slate1|Hauser|Rottenstrich,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,4,Global,all,TRUE +7252,-0.503949497363358,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,2,4,3,2,2,2,1,1,3,1,1,1,1,3,1,1,2,1,3,1,1,1,3,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Hauser|Anderson|Critcher|Graham|Rottenstrich|Huang|Kay|Miyamoto|Bauer|Ross.Slate1|Inbar|VanLange,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,3,Global,all,TRUE +7255,0.328823553982084,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,6,6,6,6,5,3,1,1,4,3,1,1,2,4,3,1,3,1,3,1,1,3,3,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Graham|Hauser|VanLange|Kay|Bauer|Critcher|Ross.Slate1|Anderson|Inbar|Alter|Rottenstrich|Huang,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,9,Global,all,TRUE +7256,0.40882633284781,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,6,7,7,6,5,3,1,1,3,2,1,1,3,4,2,1,3,1,3,1,1,4,2,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Critcher|Alter|Miyamoto|Inbar|Graham|Hauser|Bauer|Anderson|Ross.Slate1|Huang|VanLange|Kay,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,9,Global,all,TRUE +7260,-0.649204826069572,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,6,6,6,5,6,2,1,2,2,3,2,2,2,4,1,1,3,1,2,1,1,3,2,4,2,,,,,,,,,,,,,,,,,,,,,,,,,,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Ross.Slate1|Rottenstrich|Bauer|Anderson|Alter|Critcher|Inbar|VanLange|Hauser|Kay|Miyamoto|Graham,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +7262,-0.196176674565824,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,4,3,5,6,2,3,2,3,2,3,1,3,2,3,1,1,4,1,3,2,2,4,4,3,1,,,,,,,,,,,,,,,,,,,,,,,,,,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Kay|VanLange|Anderson|Alter|Critcher|Miyamoto|Ross.Slate1|Graham|Hauser|Bauer|Rottenstrich|Inbar,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,4,Global,all,TRUE +7263,0.379296356418265,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,5,6,6,6,6,4,1,1,4,2,1,1,3,2,1,1,3,1,4,1,1,3,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Anderson|Kay|Inbar|Miyamoto|Huang|VanLange|Hauser|Ross.Slate1|Bauer|Alter|Graham|Critcher,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,2,Global,all,TRUE +1,0.963611920158659,Low,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,,,,,,,,,,,,,,,,,,,,,,,,,,4,7,5,6,3,2,2,4,4,3,1,3,3,3,4,2,3,2,2,1,4,3,4,3,4,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,3,Global,all,TRUE +3,-0.917045259141762,Low,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,3,5,4,3,3,3,4,1,1,3,2,2,3,2,3,2,4,3,3,2,1,1,1,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Inbar|Critcher|Kay|VanLange|Anderson|Ross.Slate1|Miyamoto|Rottenstrich|Bauer|Alter|Huang|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,6,Global,all,TRUE +5,-1.38865594616155,Low,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,,,,,,,,,,,,,,,,,,,,,,,,,,4,2,5,6,2,4,2,1,1,2,2,2,4,2,1,1,4,2,3,2,3,4,3,3,2,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|Huang|VanLange|Anderson|Rottenstrich|Critcher|Bauer|Inbar|Kay|Graham|Ross.Slate1|Alter,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,5,Global,all,TRUE +9,0.60679959703304,Low,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,3,3,1,2,3,3,2,1,3,2,3,1,3,1,3,3,3,3,3,3,1,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Rottenstrich|Critcher|Anderson|Miyamoto|VanLange|Ross.Slate1|Alter|Bauer|Huang|Kay|Graham|Hauser,ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,4,Global,all,TRUE +11,-0.900034025148855,Low,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,7,6,5,4,3,3,3,2,1,4,4,2,1,1,5,1,3,2,2,3,1,3,1,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Inbar|Kay|VanLange|Ross.Slate1|Bauer|Critcher|Miyamoto|Hauser|Graham|Rottenstrich|Huang|Anderson,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,13,Global,all,TRUE +13,0.40882633284781,Low,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,5,5,4,1,2,3,2,2,3,3,2,1,3,3,2,4,1,2,2,3,1,2,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Anderson|Ross.Slate1|Miyamoto|Huang|Alter|Hauser|Kay|Graham|Critcher|VanLange|Bauer|Rottenstrich,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +18,0.315771204911379,Low,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,5,5,6,4,3,3,4,5,2,3,5,4,4,4,5,2,4,1,5,4,5,4,2,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Ross.Slate1|Critcher|Anderson|Alter|Graham|VanLange|Hauser|Bauer|Miyamoto|Kay|Inbar|Huang,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,4,Global,all,TRUE +19,-0.600963510221991,Low,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,,,,,,,,,,,,,,,,,,,,,,,,,,6,4,6,6,3,1,4,5,1,1,1,3,1,1,1,1,3,1,2,4,3,1,3,1,1,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Graham|Rottenstrich|Bauer|Kay|Miyamoto|Critcher|Huang|VanLange|Alter|Anderson|Hauser|Ross.Slate1,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +21,-0.302286377043559,Low,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,6,3,2,2,1,4,1,3,4,3,2,2,4,3,3,2,4,4,3,4,4,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Graham|Bauer|Kay|Rottenstrich|Anderson|Hauser|Miyamoto|Huang|Inbar|Critcher|Alter|VanLange,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +22,0.374552933469797,Low,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,5,4,2,3,2,3,4,2,3,2,4,1,3,4,3,1,4,3,4,1,1,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Anderson|Miyamoto|Ross.Slate1|Critcher|Huang|Hauser|Inbar|Kay|Alter|Rottenstrich|Bauer|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,2,Global,all,TRUE +25,-0.563796213719313,Low,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,5,5,2,4,4,3,4,3,2,2,2,4,3,2,4,5,4,1,1,3,4,3,1,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Alter|Ross.Slate1|Bauer|Critcher|VanLange|Kay|Rottenstrich|Miyamoto|Hauser|Graham|Huang|Anderson,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +28,-0.191039869868922,Low,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,5,5,3,3,1,2,4,3,1,1,4,3,2,1,4,2,4,1,2,3,3,4,1,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Bauer|Miyamoto|Alter|Hauser|Huang|Inbar|Graham|VanLange|Anderson|Ross.Slate1|Critcher|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,10,Global,all,TRUE +29,0.495159708109971,Low,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,5,6,3,4,1,1,4,2,3,3,3,1,1,3,5,2,4,1,3,3,4,3,3,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Bauer|Huang|VanLange|Anderson|Alter|Graham|Inbar|Hauser|Critcher|Rottenstrich|Miyamoto|Kay,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE,5,Global,all,TRUE +32,0.0640150174495955,Low,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,5,3,7,5,1,3,2,3,1,1,3,4,1,2,5,2,2,2,1,2,4,3,1,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Miyamoto|Alter|Ross.Slate1|Rottenstrich|Hauser|Bauer|Anderson|Critcher|Huang|VanLange|Graham|Kay,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,8,Global,all,TRUE +33,0.00272135253130859,Low,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,6,3,3,2,2,2,3,2,2,2,2,2,2,3,2,3,2,2,2,3,3,3,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Kay|Ross.Slate1|Inbar|Huang|Miyamoto|Critcher|Rottenstrich|Graham|Anderson|Hauser|Bauer|Alter,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +35,0.426624330337582,Low,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,3,5,2,3,4,4,3,1,4,3,2,2,5,3,5,1,4,5,5,4,2,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Bauer|Critcher|Anderson|VanLange|Rottenstrich|Ross.Slate1|Kay|Alter|Inbar|Hauser|Graham|Huang,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,4,Global,all,TRUE +38,-0.804480607306791,Low,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,5,6,3,5,1,2,2,3,1,3,4,4,2,1,5,2,3,4,1,3,4,2,1,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Anderson|Graham|Critcher|Inbar|Bauer|Hauser|Kay|Miyamoto|Huang|Rottenstrich|Ross.Slate1|Alter,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +41,-0.239939145311372,Low,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,3,5,3,1,3,1,3,3,3,3,1,3,3,1,3,1,3,1,2,3,1,3,1,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Huang|Alter|Ross.Slate1|VanLange|Kay|Critcher|Graham|Inbar|Rottenstrich|Anderson|Bauer|Miyamoto,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,11,Global,all,TRUE +42,-0.280798523419218,Low,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,3,4,3,2,4,5,1,2,4,5,1,1,4,2,3,1,5,5,4,3,2,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Bauer|Kay|Anderson|Rottenstrich|Miyamoto|Graham|Inbar|Ross.Slate1|Hauser|Critcher|Alter|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,4,Global,all,TRUE +44,-0.501718010774759,Low,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Alter|Inbar|Rottenstrich|Anderson|Bauer|Ross.Slate1|Critcher|Kay|Graham|Miyamoto|Hauser|Huang,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,5,Global,all,TRUE +46,0.313526071868544,Low,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,6,5,4,1,1,1,3,1,1,2,2,1,1,3,1,3,2,1,1,3,1,1,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Rottenstrich|Huang|Kay|Ross.Slate1|Miyamoto|Graham|Bauer|Anderson|Hauser|Inbar|VanLange|Alter,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,9,Global,all,TRUE +50,-0.229651889463333,Low,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,4,5,3,3,4,1,3,2,1,2,2,2,3,1,4,1,1,1,3,3,3,1,1,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Miyamoto|Kay|Graham|Hauser|Anderson|Critcher|Rottenstrich|Inbar|VanLange|Huang|Bauer|Alter,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,6,Global,all,TRUE +52,0.507287294268775,Low,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,5,3,2,4,5,3,5,3,4,3,4,4,3,4,4,2,2,2,3,4,3,1,2,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Anderson|Kay|Alter|Graham|Huang|Bauer|VanLange|Hauser|Inbar|Rottenstrich|Miyamoto|Critcher,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +54,-0.517004071904663,Low,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,2,6,1,3,2,2,4,2,1,2,1,2,3,4,3,3,4,2,2,3,2,3,2,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Ross.Slate1|Graham|Alter|VanLange|Anderson|Huang|Rottenstrich|Inbar|Hauser|Miyamoto|Bauer|Kay,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood,6,Global,all,TRUE +55,-0.127247915045002,Low,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,6,7,4,1,1,2,3,1,2,4,3,1,2,4,1,5,1,1,5,3,4,1,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Rottenstrich|Graham|Critcher|VanLange|Kay|Anderson|Huang|Bauer|Inbar|Hauser|Alter|Ross.Slate1,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,7,Global,all,TRUE +61,0.0071979721627428,Low,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,7,6,6,4,4,1,3,5,1,1,3,4,1,1,4,1,3,3,4,4,3,4,1,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Huang|VanLange|Rottenstrich|Anderson|Alter|Kay|Ross.Slate1|Hauser|Graham|Critcher|Inbar|Miyamoto,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood,5,Global,all,TRUE +62,-0.144372081015072,Low,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,5,4,2,2,1,1,1,1,1,1,1,3,1,1,4,1,3,1,1,1,2,1,1,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Alter|VanLange|Rottenstrich|Kay|Graham|Huang|Ross.Slate1|Bauer|Miyamoto|Hauser|Inbar|Anderson,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,13,Global,all,TRUE +63,-0.564316173899145,Low,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,4,6,4,5,4,4,1,5,3,1,1,3,5,5,5,4,1,1,2,1,1,1,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Inbar|Miyamoto|Bauer|Rottenstrich|Hauser|Kay|Ross.Slate1|VanLange|Graham|Critcher|Huang|Anderson,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,13,Global,all,TRUE +65,-0.628641735357133,Low,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,6,4,5,2,2,1,1,4,1,2,1,2,1,1,1,1,2,1,1,1,1,2,1,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Ross.Slate1|Rottenstrich|Graham|Kay|Inbar|Anderson|VanLange|Huang|Bauer|Critcher|Alter|Miyamoto,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,7,Global,all,TRUE +68,-1.72726546906533,Low,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,,,,,,,,,,,,,,,,,,,,,,,,,,6,4,5,6,3,4,2,2,4,4,2,2,5,3,3,1,4,2,5,1,4,4,4,1,1,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Rottenstrich|Huang|Miyamoto|Bauer|Kay|Ross.Slate1|Graham|Alter|VanLange|Critcher|Inbar|Anderson,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,13,Global,all,TRUE +69,1.13285339239485,Low,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,5,6,4,1,1,2,5,1,1,5,5,1,1,3,1,3,1,1,5,3,2,1,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Rottenstrich|Bauer|Huang|Miyamoto|Alter|Kay|Hauser|Inbar|Anderson|Ross.Slate1|VanLange|Critcher,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,10,Global,all,TRUE +71,-0.445827953870407,Low,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,3,3,1,4,1,1,3,2,2,1,1,1,1,1,1,1,3,1,1,1,1,1,1,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Kay|Bauer|Anderson|Ross.Slate1|Alter|Inbar|Critcher|Huang|Graham|VanLange|Miyamoto|Rottenstrich,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,4,Global,all,TRUE +72,-0.696783731381088,Low,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,1,3,1,3,2,2,1,1,4,4,1,1,1,2,3,1,3,1,2,1,1,3,1,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Bauer|Inbar|Huang|Ross.Slate1|Hauser|VanLange|Rottenstrich|Critcher|Anderson|Kay|Alter|Miyamoto,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,10,Global,all,TRUE +73,-0.447541705749773,Low,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,6,7,3,2,5,2,2,2,1,3,1,3,1,1,4,2,3,1,1,2,3,4,1,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|VanLange|Miyamoto|Anderson|Bauer|Inbar|Huang|Ross.Slate1|Alter|Rottenstrich|Kay|Critcher|Graham,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing,4,Global,all,TRUE +74,0.0587379878670597,Low,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,4,5,2,3,1,2,2,2,1,1,2,1,3,2,3,3,4,1,1,2,2,1,1,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Critcher|Graham|Rottenstrich|Huang|Ross.Slate1|Anderson|VanLange|Bauer|Alter|Inbar|Hauser|Miyamoto,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,7,Global,all,TRUE +75,0.836547970690651,Low,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,5,6,5,3,1,1,2,2,1,2,3,2,1,1,3,1,3,1,2,3,3,1,1,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|VanLange|Critcher|Anderson|Miyamoto|Bauer|Rottenstrich|Inbar|Huang|Hauser|Graham|Ross.Slate1|Kay,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,4,Global,all,TRUE +77,0.592960484465469,Low,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,,,,,,,,,,,,,,,,,,,,,,,,,,3,1,1,3,1,3,3,5,3,1,3,5,1,1,3,5,1,5,3,3,1,1,1,1,3,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Huang|Kay|Rottenstrich|Ross.Slate1|Anderson|Bauer|VanLange|Miyamoto|Critcher|Alter|Graham|Inbar,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,6,Global,all,TRUE +79,0.590462194559836,Low,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,2,2,6,1,2,5,2,1,1,2,3,1,2,2,1,4,3,2,2,1,1,1,4,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Ross.Slate1|Hauser|Inbar|Anderson|Bauer|Graham|Huang|Alter|Critcher|Rottenstrich|VanLange|Kay,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood,5,Global,all,TRUE +81,0.0724505220032319,Low,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,3,5,3,3,2,2,3,2,2,2,3,3,3,2,4,4,3,3,1,2,3,3,2,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Inbar|Kay|Ross.Slate1|Anderson|Alter|Rottenstrich|VanLange|Huang|Hauser|Miyamoto|Bauer|Graham,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,5,Global,all,TRUE +82,0.731365256595416,Low,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,5,5,3,3,1,1,2,1,1,1,1,1,2,1,2,1,3,1,2,1,2,1,1,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Ross.Slate1|Kay|Rottenstrich|Miyamoto|Graham|Bauer|Critcher|Hauser|Anderson|Huang|Alter|Inbar,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,10,Global,all,TRUE +84,0.506500530771909,Low,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,6,6,5,3,2,2,4,1,1,1,1,2,1,1,2,1,4,1,1,1,3,2,1,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Huang|Inbar|Anderson|Rottenstrich|Alter|Bauer|VanLange|Ross.Slate1|Critcher|Hauser|Miyamoto|Kay,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,4,Global,all,TRUE +86,-0.175615809323983,Low,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,3,5,3,3,5,2,1,1,2,4,1,1,2,3,2,3,3,2,1,1,1,2,2,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Critcher|Kay|Graham|Alter|Huang|Hauser|Rottenstrich|Anderson|VanLange|Bauer|Inbar|Ross.Slate1,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing,9,Global,all,TRUE +90,-0.561551080676478,Low,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,5,5,3,2,3,4,4,1,2,2,4,1,1,4,1,3,1,3,4,4,1,1,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|VanLange|Ross.Slate1|Rottenstrich|Graham|Miyamoto|Bauer|Critcher|Alter|Huang|Inbar|Kay|Anderson,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,13,Global,all,TRUE +93,0.928158375535348,Low,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,7,5,7,2,3,2,3,2,2,4,3,4,4,3,3,2,3,3,2,1,2,1,1,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Rottenstrich|Bauer|Ross.Slate1|Alter|Inbar|Critcher|Anderson|VanLange|Hauser|Graham|Huang|Miyamoto,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,8,Global,all,TRUE +94,-1.60178646757469,Low,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,6,6,4,2,1,2,4,1,1,4,3,1,2,3,2,4,1,2,3,2,1,1,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Graham|VanLange|Alter|Bauer|Huang|Hauser|Anderson|Inbar|Kay|Miyamoto|Critcher|Rottenstrich,ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +101,0.800560819433271,Low,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,5,5,6,1,1,1,1,1,1,1,1,1,1,1,1,1,3,1,1,1,1,1,1,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Alter|VanLange|Ross.Slate1|Rottenstrich|Anderson|Kay|Hauser|Miyamoto|Inbar|Critcher|Huang|Bauer,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +102,0.0230176399267145,Low,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,3,3,3,2,1,1,1,1,1,1,2,1,1,1,3,1,3,1,1,1,1,1,1,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Anderson|Huang|Miyamoto|Kay|VanLange|Bauer|Alter|Ross.Slate1|Critcher|Inbar|Rottenstrich|Graham,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE,2,Global,all,TRUE +103,-0.145830450561041,Low,ML2_Slate1_Brazil__Portuguese_execution_illegal_r.csv,brasilia,,,,,,,,,,,,,,,,,,,,,,,,,,6,2,4,6,6,4,1,1,1,2,4,1,3,2,2,1,3,1,3,1,1,2,3,2,1,brasilia,brasilia,brasilia,Brazil,"Social and Work Psychology Department, University of Brasilia, DF, Brazil",Portuguese,0,illegal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Alter|Miyamoto|Bauer|Inbar|Hauser|VanLange|Critcher|Huang|Anderson|Ross.Slate1|Rottenstrich|Graham,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,10,Global,all,TRUE +106,1.1714790584435,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,3,2,1,4,2,2,1,1,1,1,1,2,1,1,1,1,4,1,2,1,1,1,1,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Miyamoto|Graham|Bauer|Inbar|Rottenstrich|Alter|Kay|VanLange|Huang|Anderson|Hauser|Critcher,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,11,Global,all,TRUE +107,-0.424340100246065,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,6,6,6,4,2,2,3,5,1,2,5,5,2,2,5,2,4,3,2,5,4,5,2,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Rottenstrich|Graham|Alter|Ross.Slate1|Bauer|Hauser|VanLange|Miyamoto|Kay|Huang|Inbar|Critcher,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,1,Global,all,TRUE +110,0.548678053540089,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,6,7,3,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Ross.Slate1|VanLange|Huang|Bauer|Inbar|Graham|Miyamoto|Alter|Rottenstrich|Hauser|Kay|Critcher,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing,1,Global,all,TRUE +112,0.788966839908535,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,3,2,4,1,2,3,3,2,1,3,2,2,3,4,2,3,1,1,4,3,2,1,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Ross.Slate1|Hauser|Alter|Rottenstrich|Kay|Huang|Inbar|Anderson|Miyamoto|VanLange|Critcher|Bauer,ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,9,Global,all,TRUE +113,-0.287000315913655,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,6,5,4,1,1,4,3,1,1,3,3,1,1,3,1,5,1,1,3,2,4,1,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Hauser|Graham|VanLange|Ross.Slate1|Alter|Rottenstrich|Inbar|Anderson|Miyamoto|Bauer|Kay|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection,9,Global,all,TRUE +114,0.526670239735916,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,4,2,2,1,5,2,2,4,5,1,2,2,1,3,2,1,2,3,5,1,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|VanLange|Alter|Anderson|Hauser|Graham|Inbar|Critcher|Kay|Rottenstrich|Miyamoto|Huang|Ross.Slate1,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +115,0.759170060161957,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,3,3,3,2,4,3,1,2,3,2,3,3,2,1,4,1,3,3,4,3,2,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Bauer|Anderson|Huang|Hauser|Kay|Miyamoto|Alter|Inbar|Critcher|VanLange|Graham|Ross.Slate1,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE,3,Global,all,TRUE +116,0.384446807569402,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,6,7,3,1,1,4,3,1,1,3,3,2,1,4,1,4,1,1,3,3,3,1,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Ross.Slate1|Miyamoto|Kay|Bauer|Anderson|Alter|Graham|VanLange|Inbar|Huang|Hauser|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood,6,Global,all,TRUE +117,-0.297936335843523,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,,,,,,,,,,,,,,,,,,,,,,,,,,1,5,2,3,1,3,1,1,3,1,1,1,1,3,1,1,1,1,1,1,1,1,3,1,1,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|VanLange|Miyamoto|Bauer|Critcher|Alter|Hauser|Graham|Anderson|Ross.Slate1|Inbar|Kay|Huang,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,9,Global,all,TRUE +118,0.789627024974002,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,,,,,,,,,,,,,,,,,,,,,,,,,,4,7,6,5,2,2,3,2,4,3,3,1,2,4,3,3,5,1,5,1,4,4,2,2,2,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Huang|Inbar|Graham|Rottenstrich|Kay|Anderson|VanLange|Miyamoto|Alter|Critcher|Bauer|Ross.Slate1,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood,7,Global,all,TRUE +120,0.132030435042152,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,6,6,3,2,1,3,3,1,1,3,5,1,1,5,1,4,1,3,5,5,3,1,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Ross.Slate1|Anderson|Miyamoto|VanLange|Critcher|Hauser|Kay|Graham|Alter|Bauer|Huang|Inbar,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +126,-0.777575499214279,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,4,4,2,2,2,2,1,2,2,2,1,2,2,2,3,2,2,2,2,2,2,1,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Rottenstrich|Alter|Miyamoto|Huang|Anderson|Critcher|Ross.Slate1|Bauer|Kay|VanLange|Inbar|Graham,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +128,0.59599238100517,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,6,3,2,2,4,4,1,1,3,4,1,1,4,3,4,1,1,4,3,3,1,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Hauser|Inbar|Rottenstrich|Critcher|Graham|Anderson|VanLange|Kay|Bauer|Ross.Slate1|Huang|Alter,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,7,Global,all,TRUE +130,0.493588406586839,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,4,3,1,1,3,3,3,1,3,3,1,1,3,1,3,1,1,3,3,3,1,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Rottenstrich|Bauer|Anderson|Alter|Miyamoto|Hauser|Ross.Slate1|Graham|Huang|Critcher|Kay|VanLange,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,4,Global,all,TRUE +131,-0.791428258236086,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,6,6,4,2,2,2,4,2,2,4,3,4,2,4,2,3,2,2,4,4,5,2,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Kay|Ross.Slate1|Alter|Bauer|Anderson|Hauser|Critcher|Graham|Huang|VanLange|Miyamoto|Rottenstrich,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +133,0.847355186718521,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,7,5,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Kay|Critcher|Bauer|VanLange|Ross.Slate1|Huang|Rottenstrich|Graham|Miyamoto|Inbar|Anderson|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,12,Global,all,TRUE +134,0.346214523269188,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,7,5,3,1,1,1,2,1,1,2,4,1,1,3,1,2,1,2,2,1,2,1,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Ross.Slate1|Rottenstrich|Kay|Huang|Anderson|VanLange|Critcher|Hauser|Miyamoto|Inbar|Bauer|Graham,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,6,Global,all,TRUE +135,0.166826020070596,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,5,5,4,3,3,4,3,2,2,2,3,3,3,2,3,2,3,3,4,3,1,3,2,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Inbar|Alter|Anderson|Bauer|Ross.Slate1|Huang|VanLange|Miyamoto|Critcher|Graham|Rottenstrich|Kay,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,4,Global,all,TRUE +137,-0.110110102620696,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,5,3,2,3,2,3,1,1,3,2,2,4,2,1,4,2,2,1,1,2,3,3,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Rottenstrich|Graham|Huang|Alter|VanLange|Anderson|Hauser|Critcher|Kay|Ross.Slate1|Inbar|Miyamoto,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,7,Global,all,TRUE +138,0.45205742242989,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,7,4,1,5,5,1,2,1,4,1,1,5,1,3,4,3,5,5,1,1,1,4,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Kay|Miyamoto|Bauer|Graham|Critcher|Hauser|Ross.Slate1|Huang|Anderson|VanLange|Inbar|Rottenstrich,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE,10,Global,all,TRUE +139,0.457334452012425,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,6,5,4,2,2,1,3,2,1,1,1,4,1,1,2,1,3,1,1,1,1,3,1,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Hauser|Miyamoto|Alter|VanLange|Ross.Slate1|Critcher|Anderson|Rottenstrich|Kay|Graham|Bauer|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,8,Global,all,TRUE +141,-0.638524188473101,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,6,4,4,2,3,3,2,3,2,4,3,2,2,4,1,3,1,3,2,4,4,4,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Miyamoto|Anderson|Huang|VanLange|Critcher|Graham|Ross.Slate1|Hauser|Bauer|Rottenstrich|Alter|Kay,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,3,Global,all,TRUE +145,-0.0933656719448229,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,2,1,1,2,3,1,1,3,3,1,1,3,1,4,1,1,2,4,3,1,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Bauer|Rottenstrich|Ross.Slate1|Kay|Miyamoto|Huang|VanLange|Graham|Critcher|Alter|Inbar|Anderson,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +150,-0.35724944556541,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,7,6,4,1,3,4,5,1,1,5,3,3,2,5,1,5,1,1,5,3,5,1,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Anderson|Miyamoto|Inbar|Ross.Slate1|Huang|Graham|Kay|Bauer|Rottenstrich|Critcher|Alter|VanLange,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,2,Global,all,TRUE +151,0.670731776742596,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,,,,,,,,,,,,,,,,,,,,,,,,,,4,2,4,2,1,3,2,4,3,2,2,4,2,2,1,3,3,2,2,1,1,2,3,2,3,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Hauser|Ross.Slate1|Bauer|Huang|Miyamoto|Alter|Critcher|Kay|Graham|Inbar|Anderson|VanLange,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,12,Global,all,TRUE +152,0.590195391242802,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,4,3,3,1,2,1,1,1,1,1,1,1,1,1,1,1,3,1,1,1,1,1,1,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Graham|Huang|Bauer|Hauser|Rottenstrich|Kay|Inbar|Alter|Ross.Slate1|VanLange|Critcher|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing,13,Global,all,TRUE +155,-0.303997903452326,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,5,2,1,4,2,2,4,4,3,3,3,3,2,3,5,2,4,1,3,3,5,4,2,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Graham|Huang|Hauser|Alter|VanLange|Kay|Bauer|Ross.Slate1|Anderson|Rottenstrich|Miyamoto|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing,10,Global,all,TRUE +157,0.645818644830121,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,3,2,1,3,2,1,1,2,2,1,1,3,1,4,1,1,2,2,3,1,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Bauer|Graham|Miyamoto|Kay|Rottenstrich|Ross.Slate1|Huang|Critcher|VanLange|Hauser|Alter|Anderson,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,13,Global,all,TRUE +158,-0.386779421994955,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,2,3,1,4,2,2,1,2,1,1,4,1,2,4,3,1,4,2,2,2,4,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Ross.Slate1|Inbar|Alter|Huang|Bauer|Hauser|Critcher|Miyamoto|Graham|Kay|Rottenstrich|VanLange,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,1,Global,all,TRUE +159,-0.517928834816564,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,4,5,4,1,2,4,1,1,1,2,2,1,1,1,1,4,1,1,1,3,2,1,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Huang|VanLange|Alter|Ross.Slate1|Graham|Inbar|Miyamoto|Rottenstrich|Bauer|Anderson|Hauser|Critcher,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,11,Global,all,TRUE +160,-1.07112724867945,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,3,3,3,3,3,3,2,2,2,3,2,2,3,2,3,3,2,2,3,2,2,2,3,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Miyamoto|Graham|Inbar|VanLange|Kay|Rottenstrich|Bauer|Anderson|Huang|Alter|Hauser|Critcher,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood,9,Global,all,TRUE +161,-0.370034991319082,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,4,3,3,3,4,3,3,4,4,3,3,4,3,3,3,3,4,4,4,2,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Graham|Kay|Rottenstrich|Anderson|Ross.Slate1|VanLange|Alter|Hauser|Miyamoto|Inbar|Huang|Critcher,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,5,Global,all,TRUE +162,0.0670469139892968,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,3,4,3,3,3,2,3,3,4,3,2,2,1,3,4,3,3,3,4,3,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Miyamoto|Huang|Critcher|VanLange|Ross.Slate1|Rottenstrich|Inbar|Hauser|Graham|Bauer|Alter|Anderson,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,13,Global,all,TRUE +164,0.689707694007068,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,5,5,5,3,4,4,3,5,4,2,4,4,4,4,4,3,4,3,4,5,3,3,2,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Anderson|Rottenstrich|Miyamoto|Graham|Bauer|Huang|Critcher|Ross.Slate1|Hauser|VanLange|Alter|Kay,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five,2,Global,all,TRUE +165,-0.245609556642341,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,3,3,2,2,4,4,1,1,3,2,2,1,5,1,4,1,2,3,4,3,2,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Graham|Ross.Slate1|Hauser|VanLange|Critcher|Rottenstrich|Huang|Miyamoto|Inbar|Kay|Anderson|Alter,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,12,Global,all,TRUE +171,-0.143318514201172,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,4,2,2,2,3,2,2,4,3,2,2,2,3,2,4,3,2,4,2,2,2,3,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Bauer|Huang|Ross.Slate1|Anderson|Inbar|Rottenstrich|VanLange|Hauser|Miyamoto|Alter|Graham|Critcher,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood,5,Global,all,TRUE +172,-0.259448669209912,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,3,2,2,4,2,2,2,4,3,2,2,3,2,4,2,2,3,2,3,2,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Ross.Slate1|Inbar|Hauser|Bauer|Graham|Huang|Alter|VanLange|Rottenstrich|Anderson|Critcher|Kay,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,11,Global,all,TRUE +175,0.63962827331932,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,5,6,3,4,2,1,3,3,2,2,3,4,2,4,3,1,4,1,3,3,3,4,1,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Inbar|Miyamoto|Hauser|Critcher|Ross.Slate1|Graham|Bauer|Alter|Kay|VanLange|Huang|Anderson,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +176,-1.0385653757102,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,5,3,3,3,4,4,2,4,5,2,4,5,1,4,3,2,4,5,4,1,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Rottenstrich|Graham|Hauser|Inbar|VanLange|Critcher|Alter|Ross.Slate1|Bauer|Kay|Miyamoto|Anderson,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,13,Global,all,TRUE +178,-0.0825584559169531,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,2,3,2,4,3,1,3,3,3,2,2,4,2,3,2,2,2,2,3,3,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Graham|Bauer|Huang|Alter|Miyamoto|Critcher|Inbar|Hauser|Ross.Slate1|VanLange|Rottenstrich|Kay,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,1,Global,all,TRUE +180,-0.0103309965393965,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,3,3,3,2,3,1,2,2,1,2,1,2,1,1,2,1,3,2,1,1,1,2,1,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Ross.Slate1|Hauser|Graham|Huang|Critcher|Alter|Anderson|Miyamoto|Kay|Inbar|VanLange|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,8,Global,all,TRUE +181,0.565549062647361,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,5,4,5,3,1,1,3,2,1,1,2,1,1,1,2,1,2,1,1,2,1,1,1,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Alter|Critcher|Rottenstrich|Miyamoto|Huang|VanLange|Bauer|Ross.Slate1|Graham|Inbar|Anderson|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,12,Global,all,TRUE +182,-0.253778257878943,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,5,5,2,2,1,2,4,1,2,2,2,3,1,3,2,3,1,2,1,3,2,2,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Kay|Alter|Rottenstrich|Miyamoto|Inbar|Graham|Hauser|Ross.Slate1|Critcher|Bauer|Anderson|VanLange,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,12,Global,all,TRUE +184,0.083257738031102,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,5,4,3,4,5,4,2,4,5,3,3,5,1,5,3,4,2,4,4,2,2,3,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Hauser|Inbar|Rottenstrich|Critcher|Anderson|Kay|Bauer|Graham|Alter|Miyamoto|Ross.Slate1|VanLange,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,6,Global,all,TRUE +188,-0.327859694021501,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,6,4,1,2,4,4,1,1,4,3,1,1,4,1,4,1,4,4,4,3,1,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Kay|Inbar|Bauer|Huang|VanLange|Anderson|Hauser|Critcher|Alter|Rottenstrich|Graham|Ross.Slate1,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,7,Global,all,TRUE +189,-0.242844463419674,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,5,4,2,1,3,2,1,1,4,3,2,1,2,1,4,1,2,1,4,4,1,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Huang|Ross.Slate1|Anderson|Graham|Critcher|Hauser|Rottenstrich|Inbar|VanLange|Miyamoto|Kay|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,4,Global,all,TRUE +191,0.76867055251313,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,2,3,3,1,4,3,3,3,4,3,3,3,3,1,4,1,1,3,2,3,1,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Bauer|Alter|Kay|Inbar|Hauser|Huang|VanLange|Graham|Rottenstrich|Miyamoto|Critcher|Anderson,ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,13,Global,all,TRUE +193,1.42639372087638,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,7,6,5,3,1,1,4,4,1,1,4,4,1,1,5,1,4,1,1,4,5,4,1,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Kay|Alter|VanLange|Huang|Bauer|Hauser|Critcher|Inbar|Ross.Slate1|Rottenstrich|Graham|Miyamoto,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,1,Global,all,TRUE +194,0.867258092365494,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,4,2,3,2,2,4,2,2,3,3,3,3,2,4,3,3,2,2,2,4,2,3,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Bauer|VanLange|Kay|Alter|Huang|Graham|Miyamoto|Hauser|Inbar|Critcher|Rottenstrich|Anderson,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +195,0.00602005238804352,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY__pencilpapercritcher_wilfredlaur_r.csv,wilfredlaur,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,6,3,2,2,3,3,1,1,1,2,1,1,2,1,4,1,1,3,4,2,1,wilfredlaur,wilfredlaur,wilfredlaur,Canada,"Wilfrid Laurier University, Waterloo, Ontario, Canada",English,1,illegal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Alter|Bauer|Rottenstrich|Anderson|Inbar|Miyamoto|Kay|Graham|Hauser|Ross.Slate1|VanLange|Huang,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,5,Global,all,TRUE +199,-1.82916312975806,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,6,7,3,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,3,3,1,1,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Bauer|VanLange|Inbar|Critcher|Hauser|Graham|Ross.Slate1|Kay|Miyamoto|Huang|Anderson|Rottenstrich,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,12,Global,all,TRUE +200,-1.26633541964201,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,7,6,3,2,2,4,2,1,2,3,3,2,1,4,2,3,1,1,3,3,2,3,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Ross.Slate1|Alter|Hauser|Bauer|Anderson|Critcher|Miyamoto|Graham|Rottenstrich|Kay|Inbar|VanLange,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,6,Global,all,TRUE +201,0.41858220753238,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,7,6,2,3,1,1,2,2,1,1,3,2,1,1,4,1,4,1,2,4,4,3,1,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Anderson|VanLange|Alter|Hauser|Bauer|Inbar|Kay|Miyamoto|Critcher|Ross.Slate1|Huang|Graham,ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,2,Global,all,TRUE +203,-0.146350410740874,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,6,7,3,1,1,3,1,1,1,4,2,1,2,2,1,4,1,1,3,1,2,1,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Alter|Hauser|Miyamoto|Graham|Kay|Inbar|VanLange|Ross.Slate1|Bauer|Critcher|Rottenstrich|Huang,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,1,Global,all,TRUE +205,0.000349641057074264,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,4,5,2,4,3,3,4,1,1,2,4,1,1,3,1,2,1,4,3,2,2,1,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Critcher|VanLange|Anderson|Graham|Alter|Huang|Miyamoto|Rottenstrich|Ross.Slate1|Kay|Hauser|Bauer,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +206,0.318929679882479,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,6,2,1,1,1,2,1,1,1,1,1,1,2,1,3,1,1,1,2,1,1,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Alter|Inbar|Graham|Huang|Ross.Slate1|Hauser|Bauer|Critcher|Anderson|Miyamoto|Kay|Rottenstrich,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,10,Global,all,TRUE +208,0.655839097361125,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,4,3,2,3,1,3,2,2,2,2,2,1,2,2,2,1,2,1,1,2,1,2,1,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Critcher|Alter|VanLange|Inbar|Graham|Kay|Anderson|Bauer|Miyamoto|Rottenstrich|Huang|Hauser,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +211,0.148508062400991,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,5,6,3,1,1,3,2,1,1,1,1,1,1,2,1,3,1,1,2,1,1,1,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Anderson|Miyamoto|Rottenstrich|Hauser|Inbar|Graham|Ross.Slate1|Critcher|Bauer|VanLange|Kay|Alter,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,2,Global,all,TRUE +212,0.587430298020135,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,4,4,1,1,3,2,1,1,2,2,1,1,3,1,3,1,1,3,3,2,1,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Huang|Alter|Kay|Rottenstrich|Hauser|Graham|Ross.Slate1|Anderson|Inbar|Critcher|Miyamoto|Bauer,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing,9,Global,all,TRUE +215,0.734003771386684,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,5,5,2,2,1,1,3,1,1,1,1,1,1,1,3,1,2,1,1,1,1,1,1,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Hauser|Anderson|Alter|Rottenstrich|Inbar|Critcher|Kay|VanLange|Miyamoto|Huang|Bauer|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,3,Global,all,TRUE +216,-0.653554867269608,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,,,,,,,,,,,,,,,,,,,,,,,,,,1,5,2,3,2,4,2,4,3,1,2,1,2,2,4,1,1,1,3,3,2,2,1,2,1,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|VanLange|Graham|Rottenstrich|Alter|Huang|Hauser|Kay|Miyamoto|Critcher|Anderson|Ross.Slate1|Inbar,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,11,Global,all,TRUE +217,-0.575123389927015,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,4,5,1,1,4,4,1,1,4,3,1,1,4,1,5,1,2,5,5,3,1,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|VanLange|Anderson|Huang|Hauser|Ross.Slate1|Kay|Rottenstrich|Critcher|Graham|Alter|Miyamoto|Bauer,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +221,0.413305177949843,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,,,,,,,,,,,,,,,,,,,,,,,,,,7,5,7,7,2,5,1,1,4,2,1,1,5,5,1,1,4,1,5,1,1,4,5,3,1,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Huang|Rottenstrich|Bauer|Hauser|Anderson|Ross.Slate1|VanLange|Graham|Miyamoto|Kay|Critcher|Alter,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,6,Global,all,TRUE +223,-0.135290037850205,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,2,2,1,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Inbar|Bauer|Anderson|Graham|VanLange|Kay|Hauser|Alter|Critcher|Ross.Slate1|Miyamoto|Huang,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,4,Global,all,TRUE +225,-1.04093708718443,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Hauser|Inbar|Alter|Graham|Ross.Slate1|Kay|Huang|Anderson|Bauer|Miyamoto|Rottenstrich|VanLange,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,9,Global,all,TRUE +228,0.357948727679559,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,3,5,2,2,5,3,2,2,4,5,2,2,1,3,3,3,3,4,2,3,3,1,2,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Graham|Rottenstrich|Critcher|Huang|Alter|Hauser|Kay|Anderson|Ross.Slate1|Bauer|VanLange|Inbar,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,9,Global,all,TRUE +233,-0.808297041872759,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,6,4,7,4,4,3,1,1,1,1,1,1,3,1,1,1,1,1,1,1,1,2,1,1,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Huang|Rottenstrich|Hauser|Critcher|Anderson|Graham|Miyamoto|Kay|VanLange|Ross.Slate1|Alter|Inbar,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,6,Global,all,TRUE +234,-0.17732733573275,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,2,2,1,2,1,2,1,1,1,1,2,1,1,1,1,2,1,1,1,1,1,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Inbar|Anderson|Hauser|VanLange|Rottenstrich|Miyamoto|Huang|Critcher|Bauer|Kay|Ross.Slate1|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five,3,Global,all,TRUE +235,-0.209622405384961,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,7,6,5,2,3,3,4,5,2,3,5,1,1,5,3,5,4,4,2,5,5,2,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Hauser|Bauer|Inbar|Critcher|Anderson|Alter|Rottenstrich|Miyamoto|Graham|Huang|VanLange|Kay,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing,6,Global,all,TRUE +236,-1.61958223959386,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,4,1,1,2,1,5,5,3,3,1,1,4,2,3,1,1,2,4,2,4,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Kay|VanLange|Anderson|Ross.Slate1|Hauser|Graham|Huang|Bauer|Rottenstrich|Miyamoto|Alter|Inbar,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,4,Global,all,TRUE +237,-2.23368316209719,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,6,2,1,2,2,2,2,1,2,4,2,2,4,5,4,4,2,2,5,2,1,2,4,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Ross.Slate1|Rottenstrich|Inbar|Alter|Bauer|Hauser|Critcher|Huang|VanLange|Anderson|Miyamoto|Kay,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,11,Global,all,TRUE +238,0.199121089722808,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,6,6,4,1,2,4,4,1,1,4,4,4,1,5,1,4,1,1,4,3,3,1,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Anderson|Inbar|Hauser|Critcher|Rottenstrich|Alter|Graham|Huang|Ross.Slate1|Miyamoto|Kay|Bauer,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,2,Global,all,TRUE +239,0.169591113293263,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,6,5,2,3,1,1,5,4,1,1,2,4,1,1,2,1,4,1,2,3,3,3,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Huang|VanLange|Inbar|Critcher|Hauser|Anderson|Alter|Rottenstrich|Miyamoto|Ross.Slate1|Graham|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,7,Global,all,TRUE +242,0.446260432667522,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,7,5,1,1,4,3,1,1,3,3,2,1,4,2,4,1,2,4,4,3,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|VanLange|Anderson|Inbar|Kay|Miyamoto|Rottenstrich|Hauser|Graham|Critcher|Bauer|Huang|Alter,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,3,Global,all,TRUE +245,-1.05965984758611,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,2,2,1,4,2,2,3,1,2,2,2,2,2,1,1,1,3,1,2,2,2,3,1,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Alter|Hauser|Bauer|Ross.Slate1|Miyamoto|VanLange|Huang|Rottenstrich|Kay|Inbar|Graham|Critcher,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection,1,Global,all,TRUE +246,0.178026617846899,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,2,3,1,2,1,1,4,1,1,1,1,1,1,1,1,1,3,1,1,1,1,1,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Anderson|Alter|Huang|Miyamoto|Graham|Critcher|Hauser|Inbar|VanLange|Ross.Slate1|Kay|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,2,Global,all,TRUE +247,-0.234662115728836,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,5,4,3,4,3,2,1,5,3,3,2,2,1,3,5,3,5,4,4,2,2,5,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Alter|Rottenstrich|Huang|Miyamoto|Bauer|Critcher|Ross.Slate1|VanLange|Inbar|Hauser|Anderson|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,12,Global,all,TRUE +252,-0.323634005782265,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,6,7,5,1,3,2,4,1,1,1,2,4,1,1,4,1,4,1,1,1,2,3,3,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Critcher|Anderson|Hauser|Rottenstrich|Ross.Slate1|Huang|Kay|VanLange|Alter|Inbar|Graham|Bauer,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,3,Global,all,TRUE +255,0.850387083258222,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,4,3,3,4,2,4,2,3,2,3,4,2,4,2,4,1,4,2,3,3,2,3,1,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|VanLange|Ross.Slate1|Huang|Graham|Hauser|Miyamoto|Alter|Critcher|Anderson|Inbar|Kay|Bauer,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,10,Global,all,TRUE +258,-1.0455539317015,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,6,5,3,2,1,1,1,1,1,1,2,1,1,1,1,1,3,1,1,1,1,1,1,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Alter|VanLange|Graham|Kay|Miyamoto|Huang|Anderson|Hauser|Inbar|Rottenstrich|Ross.Slate1|Critcher,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,8,Global,all,TRUE +259,1.02767067829961,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,6,4,2,2,2,4,2,2,4,3,2,2,3,2,3,3,3,3,3,3,2,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Inbar|Anderson|Critcher|Miyamoto|Huang|VanLange|Kay|Rottenstrich|Hauser|Ross.Slate1|Alter|Bauer,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,3,Global,all,TRUE +262,-1.75178521922937,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,7,5,2,1,1,2,3,1,1,2,3,2,1,3,2,3,1,1,3,1,1,2,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Kay|Bauer|Rottenstrich|Huang|Miyamoto|Critcher|Inbar|Anderson|Hauser|VanLange|Ross.Slate1|Alter,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,9,Global,all,TRUE +263,-0.591994399034287,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,6,4,1,1,1,3,1,1,1,1,1,1,1,1,3,1,1,1,1,1,1,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Bauer|VanLange|Critcher|Rottenstrich|Graham|Alter|Kay|Ross.Slate1|Huang|Inbar|Anderson|Miyamoto,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,12,Global,all,TRUE +267,-0.130266165130467,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,2,3,1,1,3,1,3,1,5,1,1,2,1,4,1,1,2,4,3,1,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Huang|Anderson|Critcher|Alter|VanLange|Kay|Graham|Miyamoto|Ross.Slate1|Rottenstrich|Inbar|Bauer,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood,3,Global,all,TRUE +268,-1.07942252834745,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,3,5,1,3,2,1,3,1,1,2,1,3,1,1,2,1,4,1,2,1,1,2,1,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Graham|Bauer|Rottenstrich|Alter|Ross.Slate1|Huang|Miyamoto|Kay|Critcher|Anderson|Hauser|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,11,Global,all,TRUE +270,0.202152986262509,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,5,4,3,1,1,1,1,1,1,1,1,1,1,1,1,1,3,1,1,1,2,1,1,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Anderson|Bauer|Inbar|Huang|Miyamoto|Hauser|Ross.Slate1|Critcher|Kay|VanLange|Graham|Rottenstrich,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,2,Global,all,TRUE +271,0.138487609869987,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,5,6,3,4,1,1,4,1,1,1,2,2,5,1,4,2,5,1,4,2,4,2,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Inbar|Kay|Graham|Ross.Slate1|Bauer|Critcher|Alter|VanLange|Hauser|Anderson|Huang|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE,11,Global,all,TRUE +272,0.28637922789687,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,7,4,1,2,5,5,1,1,5,4,1,1,5,1,5,1,1,5,3,3,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Ross.Slate1|Hauser|Huang|Critcher|Bauer|Graham|Anderson|VanLange|Kay|Miyamoto|Inbar|Rottenstrich,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,8,Global,all,TRUE +275,-1.53364447155073,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,6,6,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Hauser|Miyamoto|Rottenstrich|Ross.Slate1|Bauer|Critcher|Kay|Graham|Alter|VanLange|Anderson|Huang,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,12,Global,all,TRUE +276,0.565282259330327,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,5,3,4,1,3,3,1,1,3,3,3,2,3,3,3,2,3,2,2,3,1,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Huang|Ross.Slate1|Alter|Bauer|VanLange|Graham|Hauser|Inbar|Anderson|Critcher|Miyamoto|Rottenstrich,ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing,10,Global,all,TRUE +278,0.280317660288068,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,6,5,2,4,4,4,3,2,4,2,5,1,5,3,3,2,3,4,1,3,4,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Kay|Miyamoto|VanLange|Hauser|Graham|Rottenstrich|Bauer|Critcher|Anderson|Huang|Alter|Inbar,ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,10,Global,all,TRUE +279,0.292443020976272,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,4,4,3,3,2,4,2,3,1,1,3,3,4,2,3,2,3,2,3,2,3,3,2,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|VanLange|Huang|Rottenstrich|Kay|Hauser|Alter|Critcher|Graham|Miyamoto|Ross.Slate1|Bauer|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood,13,Global,all,TRUE +281,0.479609069133633,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,7,6,3,1,2,1,2,1,1,3,1,2,1,1,1,1,2,1,1,1,1,1,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Graham|Miyamoto|VanLange|Ross.Slate1|Rottenstrich|Alter|Huang|Kay|Bauer|Hauser|Anderson|Critcher,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,12,Global,all,TRUE +282,0.244063705713655,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,2,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Huang|Graham|Hauser|Ross.Slate1|Kay|Miyamoto|Critcher|Inbar|Anderson|Bauer|Alter|VanLange,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +283,-1.22863451650526,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,3,6,1,1,1,2,1,2,2,4,2,2,5,1,2,5,2,2,3,1,1,3,4,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|VanLange|Anderson|Miyamoto|Alter|Rottenstrich|Graham|Kay|Bauer|Critcher|Hauser|Inbar|Ross.Slate1,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,3,Global,all,TRUE +285,0.102500458612608,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,5,2,2,5,2,3,3,4,4,3,5,3,4,4,5,2,2,4,2,4,4,3,4,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|VanLange|Miyamoto|Critcher|Anderson|Kay|Rottenstrich|Ross.Slate1|Alter|Hauser|Huang|Bauer|Inbar,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing,5,Global,all,TRUE +286,0.249734117044624,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,2,1,3,2,1,1,4,1,1,1,1,1,1,1,1,1,4,1,1,1,4,1,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Miyamoto|Graham|Kay|VanLange|Bauer|Alter|Anderson|Ross.Slate1|Critcher|Huang|Rottenstrich|Hauser,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,8,Global,all,TRUE +292,-1.37586817493728,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,5,6,5,2,1,1,1,2,1,2,1,1,1,1,1,2,1,1,2,1,1,2,2,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Miyamoto|Graham|Ross.Slate1|Inbar|Anderson|Huang|Hauser|VanLange|Alter|Critcher|Rottenstrich|Kay,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,6,Global,all,TRUE +293,-0.323507427350866,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,5,6,6,1,2,2,3,1,1,2,1,1,1,1,1,1,1,1,1,1,2,1,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Inbar|VanLange|Hauser|Miyamoto|Graham|Kay|Rottenstrich|Ross.Slate1|Bauer|Anderson|Critcher|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,11,Global,all,TRUE +294,0.20821677934191,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,3,1,1,4,3,1,1,4,3,1,1,4,1,4,1,1,3,3,3,1,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Bauer|Ross.Slate1|VanLange|Huang|Graham|Anderson|Hauser|Inbar|Kay|Critcher|Alter|Rottenstrich,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,7,Global,all,TRUE +295,0.919722870981712,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,,,,,,,,,,,,,,,,,,,,,,,,,,1,6,2,1,1,4,2,4,1,2,1,3,2,3,1,1,2,1,2,1,1,4,1,1,1,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Inbar|Graham|Bauer|Ross.Slate1|Huang|Rottenstrich|Kay|Anderson|Hauser|Critcher|Miyamoto|Alter,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,9,Global,all,TRUE +296,-0.301626191978092,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,4,5,1,2,1,1,2,2,4,1,1,1,5,5,1,1,2,3,3,1,1,2,2,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Bauer|Kay|Anderson|Ross.Slate1|Alter|Rottenstrich|VanLange|Critcher|Graham|Inbar|Hauser|Huang,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood,4,Global,all,TRUE +297,-0.763087622564878,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,5,6,4,3,1,1,4,3,1,2,3,3,2,1,3,1,4,1,1,3,3,2,1,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Anderson|Bauer|Critcher|Kay|Rottenstrich|Inbar|VanLange|Huang|Miyamoto|Alter|Graham|Hauser,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood,2,Global,all,TRUE +299,-0.109969877735061,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,5,6,1,5,2,2,3,3,1,1,1,1,1,1,4,1,4,1,1,3,3,1,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Miyamoto|Anderson|Rottenstrich|VanLange|Critcher|Hauser|Kay|Ross.Slate1|Alter|Huang|Bauer|Inbar,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,3,Global,all,TRUE +300,0.883862298155732,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,5,6,2,4,5,5,4,1,1,2,1,1,3,1,1,1,4,1,2,2,4,1,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Inbar|Bauer|Kay|VanLange|Critcher|Anderson|Hauser|Ross.Slate1|Miyamoto|Alter|Huang|Graham,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,7,Global,all,TRUE +301,-0.179965850524018,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,6,6,2,5,1,1,3,4,1,1,3,5,1,1,3,1,2,1,4,4,3,4,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Alter|Anderson|Inbar|Bauer|Miyamoto|Kay|Ross.Slate1|Hauser|Rottenstrich|Huang|Critcher|Graham,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,3,Global,all,TRUE +303,-0.85905029408021,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,7,3,5,7,2,4,1,3,2,4,3,2,5,2,1,1,4,1,2,1,1,3,3,4,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Alter|Rottenstrich|Critcher|Huang|Kay|Hauser|Anderson|Miyamoto|VanLange|Ross.Slate1|Graham|Bauer,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood,8,Global,all,TRUE +309,-0.512385001916994,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,3,5,2,3,3,3,2,2,2,4,1,1,4,1,2,1,2,2,1,1,2,1,3,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Graham|VanLange|Inbar|Critcher|Ross.Slate1|Alter|Rottenstrich|Anderson|Kay|Huang|Miyamoto|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,9,Global,all,TRUE +312,0.119638271036914,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,5,5,1,1,3,3,1,1,2,4,1,1,4,1,3,1,1,4,1,2,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Huang|VanLange|Alter|Bauer|Kay|Inbar|Ross.Slate1|Critcher|Anderson|Miyamoto|Graham|Hauser,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,10,Global,all,TRUE +315,0.637383140276485,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,5,7,3,1,2,4,1,1,1,3,4,1,1,4,1,4,2,1,3,1,2,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Inbar|Miyamoto|Anderson|Critcher|Alter|Hauser|Bauer|Huang|Kay|VanLange|Rottenstrich|Ross.Slate1,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,4,Global,all,TRUE +317,-0.434880512956902,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,5,6,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Huang|Bauer|VanLange|Graham|Kay|Alter|Anderson|Critcher|Inbar|Hauser|Ross.Slate1|Miyamoto,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,8,Global,all,TRUE +321,0.22469440670075,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,5,2,1,4,2,2,4,3,3,4,1,4,4,2,3,3,3,4,2,3,2,1,3,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Miyamoto|Inbar|Graham|Huang|VanLange|Ross.Slate1|Critcher|Alter|Kay|Bauer|Hauser|Anderson,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five,13,Global,all,TRUE +324,-0.398106598202657,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,3,3,2,2,3,1,1,1,1,2,1,2,1,1,4,3,3,3,1,2,2,1,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Anderson|Alter|Ross.Slate1|VanLange|Huang|Kay|Hauser|Inbar|Critcher|Graham|Bauer|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection,2,Global,all,TRUE +330,1.09133605469213,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,5,2,4,3,2,3,2,1,1,2,4,3,1,4,2,3,1,2,3,2,3,2,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Kay|Hauser|Huang|Bauer|Miyamoto|Alter|VanLange|Critcher|Anderson|Rottenstrich|Ross.Slate1|Inbar,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,10,Global,all,TRUE +332,-0.320208727494131,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,6,5,3,2,1,4,1,1,2,4,2,2,2,3,1,4,1,1,2,2,1,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Huang|Kay|Rottenstrich|Hauser|Inbar|Miyamoto|Alter|Ross.Slate1|VanLange|Bauer|Graham|Critcher,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,1,Global,all,TRUE +337,-0.229792114348969,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,5,3,4,2,1,1,2,3,1,1,2,1,4,1,3,3,1,1,1,3,1,1,3,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Ross.Slate1|Critcher|Rottenstrich|Graham|Miyamoto|Alter|Kay|Bauer|Anderson|Huang|Inbar|VanLange,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing,10,Global,all,TRUE +339,-0.471387624394112,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,4,7,7,6,1,4,1,3,1,4,5,3,2,1,2,4,2,3,3,1,3,3,4,1,2,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Rottenstrich|Alter|Inbar|Graham|Ross.Slate1|Anderson|Hauser|Critcher|Kay|Miyamoto|Bauer|Huang,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,7,Global,all,TRUE +342,-0.394948123231557,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,3,4,1,2,1,1,1,1,1,1,1,2,1,1,2,1,2,1,1,1,2,2,2,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Inbar|Rottenstrich|Hauser|Miyamoto|Huang|Graham|Ross.Slate1|Kay|Anderson|Critcher|VanLange|Alter,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection,10,Global,all,TRUE +343,0.0472705867737227,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,4,3,2,2,1,1,3,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Critcher|Inbar|Alter|VanLange|Miyamoto|Hauser|Rottenstrich|Ross.Slate1|Graham|Huang|Anderson|Bauer,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,12,Global,all,TRUE +346,-1.43293837708693,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,6,4,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Huang|Rottenstrich|Alter|Graham|Kay|Anderson|Inbar|VanLange|Miyamoto|Ross.Slate1|Hauser|Critcher,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five,7,Global,all,TRUE +348,0.17235620651593,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,6,7,6,3,1,2,4,4,1,1,2,4,2,1,3,2,4,1,1,4,4,5,1,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|VanLange|Kay|Miyamoto|Inbar|Alter|Critcher|Bauer|Hauser|Rottenstrich|Anderson|Ross.Slate1|Graham,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,11,Global,all,TRUE +349,-0.0438062114369068,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,6,7,4,1,2,3,1,2,1,2,2,2,1,3,1,4,1,2,4,2,1,1,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|VanLange|Bauer|Alter|Anderson|Kay|Miyamoto|Huang|Graham|Ross.Slate1|Rottenstrich|Hauser|Critcher,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,5,Global,all,TRUE +351,-0.697050534698122,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,6,3,1,1,3,1,1,1,1,1,1,1,2,1,3,1,1,3,1,1,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Bauer|Inbar|Alter|Graham|Critcher|Rottenstrich|VanLange|Ross.Slate1|Huang|Hauser|Miyamoto|Anderson,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,13,Global,all,TRUE +352,-0.430403893325467,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,7,2,4,3,4,3,1,1,3,1,3,1,1,5,1,4,1,4,1,3,3,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Hauser|Graham|Miyamoto|Anderson|Alter|Huang|Kay|Bauer|Critcher|Rottenstrich|VanLange|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,5,Global,all,TRUE +354,-0.342483344615338,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,6,5,6,3,2,4,4,3,1,2,2,3,2,1,4,2,4,1,3,2,3,3,2,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Inbar|Miyamoto|Bauer|Ross.Slate1|Kay|Critcher|Alter|Huang|VanLange|Rottenstrich|Hauser|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,13,Global,all,TRUE +359,-0.184582695041088,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,2,1,2,4,3,1,1,1,3,1,1,3,1,3,1,1,2,3,2,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Graham|VanLange|Hauser|Rottenstrich|Bauer|Inbar|Miyamoto|Kay|Huang|Critcher|Anderson|Ross.Slate1,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,12,Global,all,TRUE +360,-0.201186900831326,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,4,2,4,2,1,3,5,4,5,3,3,3,3,5,3,3,5,5,3,3,3,3,5,3,5,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Inbar|Hauser|Rottenstrich|Huang|Critcher|Alter|Kay|VanLange|Anderson|Bauer|Miyamoto|Graham,ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +361,-0.417742700532596,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,2,3,2,2,2,3,3,1,2,3,2,1,2,1,2,2,1,2,4,3,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Graham|Bauer|Kay|Ross.Slate1|Miyamoto|Huang|Hauser|Inbar|Anderson|VanLange|Critcher|Alter,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +362,-0.387299382174787,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,5,3,2,2,1,1,1,1,1,2,1,1,2,1,2,1,1,1,1,1,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Bauer|Kay|Rottenstrich|Critcher|VanLange|Alter|Inbar|Ross.Slate1|Hauser|Anderson|Miyamoto|Graham,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,11,Global,all,TRUE +364,-0.40812927620426,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,1,4,5,2,3,3,1,1,1,1,1,1,1,1,1,2,1,1,4,1,1,1,1,1,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Anderson|Inbar|Kay|Rottenstrich|Huang|Hauser|Alter|Miyamoto|Bauer|Critcher|Graham|Ross.Slate1,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing,2,Global,all,TRUE +367,-1.14467507818794,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,4,4,3,4,2,3,4,4,1,3,4,4,2,4,4,2,4,1,2,4,4,4,2,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|VanLange|Huang|Graham|Critcher|Alter|Kay|Rottenstrich|Hauser|Bauer|Anderson|Ross.Slate1|Miyamoto,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,11,Global,all,TRUE +368,-0.713923769275993,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,5,5,2,2,2,1,1,1,1,1,2,2,1,1,2,1,2,1,1,1,2,2,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Rottenstrich|Kay|Hauser|Inbar|Ross.Slate1|Bauer|Anderson|Critcher|Graham|Huang|Alter|Miyamoto,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,8,Global,all,TRUE +372,0.25711605478436,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,3,6,1,3,2,1,2,2,1,1,2,2,3,1,3,1,3,3,1,2,2,2,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Alter|Hauser|Anderson|Rottenstrich|Ross.Slate1|Huang|Miyamoto|Inbar|Bauer|Graham|Kay|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,4,Global,all,TRUE +373,0.173814576061899,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,2,4,2,2,1,2,1,2,2,1,1,2,2,1,2,1,1,1,2,2,1,2,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Inbar|Alter|Miyamoto|Critcher|Anderson|Bauer|Hauser|VanLange|Ross.Slate1|Rottenstrich|Graham|Huang,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,6,Global,all,TRUE +374,0.404869673396208,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,7,5,2,2,1,1,1,1,1,1,3,1,1,1,1,1,1,1,1,1,1,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Miyamoto|VanLange|Bauer|Huang|Rottenstrich|Ross.Slate1|Graham|Alter|Hauser|Inbar|Kay|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,13,Global,all,TRUE +375,0.0197189400699795,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,2,7,2,5,1,4,5,3,3,3,1,5,4,2,2,5,3,2,4,1,2,4,4,2,2,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Graham|VanLange|Huang|Inbar|Bauer|Critcher|Ross.Slate1|Anderson|Hauser|Kay|Miyamoto|Alter,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,9,Global,all,TRUE +377,-0.522405454447998,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,6,4,1,1,1,1,1,1,1,1,3,1,1,1,1,1,1,4,3,2,3,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Anderson|Miyamoto|Critcher|Bauer|Graham|VanLange|Alter|Kay|Rottenstrich|Ross.Slate1|Inbar|Huang,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +378,0.0336982775231856,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,5,5,3,2,4,4,3,2,2,1,2,3,1,1,3,1,4,1,2,1,2,3,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Ross.Slate1|Rottenstrich|Bauer|Alter|VanLange|Critcher|Inbar|Graham|Miyamoto|Kay|Hauser|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,13,Global,all,TRUE +379,0.518221088728044,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,5,3,3,3,4,2,3,2,1,3,2,3,2,1,3,1,3,3,1,2,2,3,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Bauer|Ross.Slate1|Huang|Alter|VanLange|Inbar|Kay|Hauser|Critcher|Rottenstrich|Miyamoto|Graham,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,1,Global,all,TRUE +381,0.43254789853135,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,4,2,6,3,1,1,2,3,1,1,4,2,1,2,4,1,2,1,1,5,3,1,3,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Alter|Miyamoto|Critcher|VanLange|Anderson|Huang|Graham|Hauser|Ross.Slate1|Bauer|Inbar|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,6,Global,all,TRUE +382,-0.0253502543522666,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,4,4,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Huang|Anderson|Critcher|Graham|Hauser|Rottenstrich|Miyamoto|Kay|Inbar|Ross.Slate1|Alter|Bauer,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +388,0.224427603383716,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,3,4,2,3,3,2,1,1,3,3,1,1,3,1,3,3,3,2,3,3,1,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Ross.Slate1|Bauer|Kay|Graham|Huang|Critcher|Miyamoto|Inbar|Hauser|VanLange|Rottenstrich|Alter,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,1,Global,all,TRUE +391,0.187920491946504,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,5,2,5,3,3,3,3,1,1,4,3,2,1,4,1,4,1,1,3,2,3,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|VanLange|Kay|Inbar|Alter|Ross.Slate1|Huang|Rottenstrich|Hauser|Anderson|Bauer|Graham|Miyamoto,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +392,0.150081589394723,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,5,3,3,4,1,2,2,2,1,1,1,2,1,1,1,1,4,1,1,4,1,1,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Alter|Kay|Rottenstrich|Anderson|Bauer|Ross.Slate1|Huang|Graham|Miyamoto|VanLange|Hauser|Critcher,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,5,Global,all,TRUE +393,-0.321262294308031,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,7,3,6,3,1,1,4,3,1,1,3,3,2,1,4,1,4,1,1,3,2,4,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Hauser|Alter|Kay|Huang|VanLange|Anderson|Miyamoto|Rottenstrich|Inbar|Graham|Bauer|Ross.Slate1,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,7,Global,all,TRUE +394,0.916424171124977,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,4,3,4,1,3,4,1,1,1,1,1,1,3,1,3,1,2,1,1,1,2,1,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Inbar|Critcher|VanLange|Miyamoto|Hauser|Graham|Huang|Kay|Alter|Bauer|Ross.Slate1|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection,13,Global,all,TRUE +396,0.0388350822200867,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,2,2,3,2,2,3,2,4,1,2,2,2,4,4,1,5,1,4,3,3,1,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Anderson|Huang|Kay|Alter|Graham|VanLange|Bauer|Critcher|Ross.Slate1|Miyamoto|Rottenstrich|Hauser,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,2,Global,all,TRUE +399,0.396700972159605,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,3,4,2,2,2,3,1,2,3,3,1,1,4,1,3,2,2,4,4,3,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Alter|VanLange|Bauer|Huang|Graham|Rottenstrich|Critcher|Ross.Slate1|Anderson|Kay|Hauser|Inbar,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five,10,Global,all,TRUE +400,-0.423413111863564,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,4,3,3,3,1,1,3,4,1,1,1,1,2,1,3,3,4,1,1,4,4,2,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Miyamoto|Kay|Bauer|Hauser|Anderson|Rottenstrich|Graham|Critcher|Huang|Alter|Inbar|VanLange,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,6,Global,all,TRUE +403,-0.583432316049252,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,3,4,1,2,4,4,1,3,4,4,3,1,5,3,4,2,4,5,4,4,4,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Anderson|Graham|Miyamoto|Ross.Slate1|Alter|Critcher|VanLange|Kay|Bauer|Hauser|Inbar|Rottenstrich,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE,2,Global,all,TRUE +405,0.532327004612649,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,6,7,3,2,1,2,3,1,1,3,3,1,1,2,1,4,1,1,4,2,3,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Inbar|Bauer|Ross.Slate1|Alter|VanLange|Huang|Rottenstrich|Critcher|Kay|Hauser|Anderson|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,12,Global,all,TRUE +406,-0.132244494856268,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,4,4,4,3,3,3,3,2,3,3,3,3,3,3,2,3,3,3,3,3,3,3,3,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Kay|Alter|Inbar|Bauer|VanLange|Anderson|Ross.Slate1|Graham|Critcher|Huang|Rottenstrich|Hauser,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,7,Global,all,TRUE +407,-1.04423578704117,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,1,4,2,3,1,3,2,3,2,1,1,3,1,1,1,1,1,1,2,2,2,2,2,1,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Ross.Slate1|Inbar|Critcher|Hauser|Graham|Alter|Miyamoto|Bauer|Anderson|VanLange|Kay|Huang,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,10,Global,all,TRUE +410,0.0505692866304577,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,5,4,2,4,2,2,4,2,1,3,3,3,3,2,4,1,2,1,2,3,2,2,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Inbar|Alter|Hauser|VanLange|Bauer|Kay|Ross.Slate1|Anderson|Graham|Miyamoto|Huang|Critcher,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,9,Global,all,TRUE +411,0.208469936204708,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,6,2,2,2,3,3,1,1,3,3,1,1,3,1,3,1,1,3,1,3,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Critcher|VanLange|Huang|Rottenstrich|Alter|Hauser|Ross.Slate1|Kay|Miyamoto|Anderson|Inbar|Graham,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,11,Global,all,TRUE +417,-1.73557439518756,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,5,6,6,5,2,3,1,3,2,2,4,4,2,1,4,2,3,2,2,4,4,3,2,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Hauser|Graham|Rottenstrich|Kay|Inbar|Anderson|Huang|Critcher|Miyamoto|Ross.Slate1|Bauer|VanLange,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection,7,Global,all,TRUE +421,-0.865631821868844,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,7,6,3,3,2,2,4,2,2,3,4,4,3,3,2,4,1,3,3,3,2,2,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|VanLange|Rottenstrich|Critcher|Kay|Hauser|Alter|Miyamoto|Bauer|Anderson|Huang|Ross.Slate1|Inbar,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,10,Global,all,TRUE +423,-0.981497399031149,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,3,3,3,1,1,2,2,1,1,1,2,1,1,2,1,2,1,1,2,2,3,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Kay|Ross.Slate1|Alter|VanLange|Anderson|Miyamoto|Huang|Hauser|Rottenstrich|Bauer|Critcher|Inbar,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,6,Global,all,TRUE +424,-0.0994294650242251,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,1,2,2,4,1,1,3,2,3,2,3,2,3,2,1,1,3,1,1,1,2,1,2,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Huang|Anderson|Ross.Slate1|Critcher|Bauer|Rottenstrich|Miyamoto|Kay|Hauser|Inbar|VanLange|Alter,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,3,Global,all,TRUE +425,-0.353292786113808,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,6,2,2,3,4,2,1,1,2,3,1,1,3,1,3,1,1,2,3,2,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Miyamoto|Critcher|Graham|Inbar|Alter|Hauser|Huang|Kay|Rottenstrich|Ross.Slate1|Anderson|Bauer,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,12,Global,all,TRUE +426,-0.156890823451709,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,6,6,4,2,4,4,4,2,2,4,4,2,2,4,2,4,2,2,4,4,4,2,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Bauer|VanLange|Anderson|Hauser|Huang|Graham|Kay|Ross.Slate1|Miyamoto|Rottenstrich|Critcher|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,4,Global,all,TRUE +429,-0.240599330376839,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,4,2,2,2,2,2,1,2,1,2,1,2,2,1,2,1,2,1,1,1,1,1,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Ross.Slate1|Inbar|Alter|Miyamoto|Hauser|Anderson|Huang|Bauer|Kay|Critcher|Graham|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,7,Global,all,TRUE +436,1.46475258360799,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,2,5,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Miyamoto|Kay|Inbar|Alter|Huang|VanLange|Bauer|Ross.Slate1|Hauser|Graham|Critcher|Rottenstrich,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing,1,Global,all,TRUE +437,-1.48566995902018,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,7,5,5,2,2,3,4,1,1,5,4,3,1,5,1,4,2,3,5,4,4,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Bauer|Hauser|Critcher|Miyamoto|Graham|Inbar|Ross.Slate1|Huang|Alter|Kay|Anderson|Rottenstrich,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +441,-0.267617370446514,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,5,3,2,1,4,4,1,1,1,1,2,3,1,1,3,2,1,2,1,1,1,2,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Hauser|Inbar|Anderson|Alter|Kay|Huang|Ross.Slate1|Critcher|VanLange|Bauer|Rottenstrich|Miyamoto,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,4,Global,all,TRUE +446,-1.03421533451017,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,6,5,3,4,1,1,5,3,1,1,2,3,1,2,1,1,5,1,1,3,5,3,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Rottenstrich|Critcher|Anderson|VanLange|Inbar|Bauer|Hauser|Kay|Graham|Alter|Ross.Slate1|Huang,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection,4,Global,all,TRUE +448,0.0330380924577188,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,4,4,2,3,3,4,5,3,2,3,3,5,2,3,3,3,3,5,5,3,1,3,2,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Anderson|Alter|Bauer|Rottenstrich|Kay|Hauser|Miyamoto|Critcher|Graham|Huang|Ross.Slate1|Inbar,ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +450,-0.171263542653349,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,4,2,1,4,3,3,2,1,2,4,1,4,1,4,2,2,3,4,3,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Anderson|Hauser|Miyamoto|Critcher|Graham|Rottenstrich|Kay|VanLange|Inbar|Bauer|Alter|Huang,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five,2,Global,all,TRUE +453,-0.633778540054033,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,7,5,4,1,1,4,4,1,2,2,4,2,4,4,1,4,1,4,3,3,3,2,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Critcher|Anderson|Huang|VanLange|Inbar|Kay|Bauer|Alter|Hauser|Graham|Miyamoto|Rottenstrich,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,3,Global,all,TRUE +454,-0.0438062114369068,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,1,2,3,2,4,4,3,1,1,4,1,3,1,1,1,2,4,3,1,2,3,1,3,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Bauer|Critcher|Miyamoto|VanLange|Inbar|Rottenstrich|Ross.Slate1|Kay|Graham|Huang|Anderson|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing,12,Global,all,TRUE +459,-0.251139743087675,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,6,6,4,3,3,2,2,1,1,1,4,2,1,1,2,1,2,2,2,2,1,2,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Critcher|Bauer|Rottenstrich|Miyamoto|Kay|Anderson|Alter|Huang|Graham|VanLange|Ross.Slate1|Hauser,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,7,Global,all,TRUE +462,-0.482068261990584,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,6,5,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Critcher|Kay|Graham|Bauer|Huang|VanLange|Anderson|Hauser|Alter|Rottenstrich|Inbar|Ross.Slate1,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,8,Global,all,TRUE +465,-0.141480409361006,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,5,3,4,1,2,4,4,1,1,3,4,2,1,4,2,4,1,1,2,3,3,2,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Critcher|Huang|Kay|Miyamoto|Alter|VanLange|Rottenstrich|Inbar|Bauer|Graham|Hauser|Ross.Slate1,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,1,Global,all,TRUE +468,0.957154745330824,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,6,6,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Graham|Bauer|Critcher|Inbar|Anderson|Miyamoto|VanLange|Ross.Slate1|Alter|Kay|Huang|Rottenstrich,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,6,Global,all,TRUE +472,-0.353824167277276,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,5,4,3,1,3,2,1,1,3,4,1,1,3,1,3,3,1,3,2,4,1,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Ross.Slate1|Graham|Alter|Anderson|Bauer|Kay|Rottenstrich|Hauser|Inbar|Critcher|VanLange|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,5,Global,all,TRUE +476,0.919849449413111,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,2,3,3,3,3,4,1,3,3,1,1,3,2,1,3,4,4,1,1,3,2,3,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Bauer|Huang|Critcher|Miyamoto|VanLange|Kay|Hauser|Inbar|Rottenstrich|Anderson|Graham,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +477,0.166306059890764,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,5,3,3,1,3,2,2,1,1,2,3,3,2,3,1,2,1,1,3,2,2,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Huang|Critcher|Miyamoto|Alter|Anderson|Bauer|Hauser|Graham|Inbar|Kay|VanLange|Ross.Slate1,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,6,Global,all,TRUE +478,0.202546368010941,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,4,2,1,2,2,2,2,1,1,2,2,4,2,1,3,2,2,1,2,2,2,2,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|VanLange|Anderson|Critcher|Miyamoto|Ross.Slate1|Graham|Rottenstrich|Alter|Bauer|Kay|Hauser|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,3,Global,all,TRUE +479,0.427144290517414,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,5,3,1,2,3,2,1,1,3,3,2,2,3,1,3,3,1,3,3,3,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Kay|Anderson|Hauser|VanLange|Alter|Critcher|Rottenstrich|Huang|Inbar|Miyamoto|Graham|Bauer,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,3,Global,all,TRUE +480,-1.32156529148089,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,6,5,3,2,2,1,3,2,1,1,1,2,1,1,2,1,3,1,1,2,2,1,1,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Kay|Huang|VanLange|Alter|Graham|Inbar|Miyamoto|Rottenstrich|Ross.Slate1|Bauer|Hauser|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing,13,Global,all,TRUE +484,-0.302019573726525,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,2,5,3,4,1,3,1,1,3,1,1,1,1,4,1,1,3,1,1,2,1,1,2,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Critcher|Rottenstrich|Inbar|Hauser|Graham|Ross.Slate1|Bauer|Huang|Miyamoto|Kay|VanLange|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE,1,Global,all,TRUE +485,-0.785895846320152,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,2,2,1,1,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Ross.Slate1|Graham|Kay|Miyamoto|VanLange|Rottenstrich|Inbar|Huang|Alter|Anderson|Critcher|Bauer,ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,11,Global,all,TRUE +487,-0.20869764247306,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,4,4,4,3,2,4,4,3,2,2,3,4,2,2,4,2,2,2,2,2,4,4,2,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Graham|Ross.Slate1|Kay|VanLange|Huang|Miyamoto|Bauer|Critcher|Alter|Anderson|Inbar|Rottenstrich,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +491,-0.402725668190325,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,5,3,2,1,4,2,1,2,3,4,2,2,4,1,4,3,2,3,1,2,3,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Hauser|Rottenstrich|Kay|Inbar|Alter|Huang|Graham|Ross.Slate1|Miyamoto|Anderson|Critcher|VanLange,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,11,Global,all,TRUE +492,-0.94340311414597,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,1,6,1,1,1,1,1,1,1,1,2,1,1,3,1,1,1,1,1,1,2,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Hauser|Ross.Slate1|Miyamoto|Critcher|Graham|Inbar|Kay|VanLange|Rottenstrich|Alter|Huang|Anderson,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,13,Global,all,TRUE +493,-0.0734649917684493,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,5,6,5,1,1,5,4,1,1,3,4,1,1,5,1,5,1,1,2,5,2,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Hauser|Inbar|Bauer|Miyamoto|Anderson|Ross.Slate1|Huang|Alter|Rottenstrich|Graham|Kay|VanLange,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing,6,Global,all,TRUE +495,-0.660405423845875,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,5,4,5,3,5,2,5,4,1,2,4,4,5,5,5,3,2,3,4,3,2,3,5,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Alter|Kay|Ross.Slate1|Rottenstrich|Anderson|Inbar|Graham|Hauser|Bauer|Huang|Critcher|Miyamoto,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,6,Global,all,TRUE +498,0.29929357755254,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,6,5,3,3,1,3,3,1,1,1,1,1,1,1,1,2,1,1,2,1,2,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Inbar|VanLange|Ross.Slate1|Hauser|Graham|Miyamoto|Anderson|Kay|Rottenstrich|Bauer|Huang|Critcher,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,8,Global,all,TRUE +501,-0.828860132585198,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,4,2,2,5,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Rottenstrich|Hauser|Alter|Ross.Slate1|VanLange|Graham|Miyamoto|Anderson|Kay|Inbar|Critcher|Huang,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +502,0.085756027936735,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,7,6,5,4,2,4,5,3,2,1,2,4,2,2,4,1,3,2,1,3,4,4,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|VanLange|Inbar|Bauer|Rottenstrich|Critcher|Hauser|Alter|Miyamoto|Huang|Ross.Slate1|Graham|Anderson,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,13,Global,all,TRUE +507,-0.812913886389828,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,3,5,5,2,2,4,4,1,2,4,3,3,2,4,1,4,1,3,3,4,3,1,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Ross.Slate1|Anderson|Hauser|Critcher|Alter|Inbar|Huang|VanLange|Rottenstrich|Graham|Kay|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,3,Global,all,TRUE +508,0.625522357434715,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,7,7,3,2,1,2,2,1,2,3,4,1,1,4,1,2,1,1,2,1,4,1,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Inbar|Hauser|Anderson|Bauer|Ross.Slate1|Rottenstrich|Critcher|Graham|Huang|Alter|VanLange|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,4,Global,all,TRUE +512,0.338172400463985,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,7,5,6,7,4,4,1,1,4,4,1,2,5,5,1,2,4,1,4,1,1,1,1,4,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Miyamoto|Rottenstrich|Kay|VanLange|Inbar|Critcher|Ross.Slate1|Hauser|Graham|Anderson|Alter|Huang,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,11,Global,all,TRUE +515,0.437824928113886,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,2,4,1,2,4,3,1,1,1,4,1,1,1,1,5,1,1,3,5,2,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Ross.Slate1|Bauer|Kay|Alter|Hauser|Miyamoto|VanLange|Inbar|Huang|Critcher|Graham|Rottenstrich,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,1,Global,all,TRUE +516,-1.05333147666027,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,3,2,2,4,4,4,2,4,2,4,4,2,4,4,2,5,2,2,4,4,2,4,4,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Critcher|Huang|Anderson|Ross.Slate1|Hauser|VanLange|Alter|Miyamoto|Rottenstrich|Graham|Bauer|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood,4,Global,all,TRUE +517,0.655839097361125,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,2,2,2,4,2,3,4,1,3,2,1,1,4,2,1,1,5,3,2,1,1,1,2,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Bauer|Ross.Slate1|Critcher|Hauser|Kay|Graham|Alter|Huang|Anderson|Miyamoto|Rottenstrich|Inbar,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection,10,Global,all,TRUE +518,0.343322851615123,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,2,1,1,2,1,2,2,1,3,4,1,3,4,4,3,2,2,1,4,1,1,1,2,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Alter|Kay|Hauser|Inbar|Graham|Huang|Bauer|Ross.Slate1|VanLange|Miyamoto|Critcher|Anderson,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing,13,Global,all,TRUE +519,1.00842795771811,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,6,5,4,1,3,3,5,1,2,3,4,1,3,5,4,4,1,3,5,3,5,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Anderson|Critcher|Inbar|Ross.Slate1|Alter|Hauser|Bauer|VanLange|Huang|Miyamoto|Kay|Rottenstrich,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,2,Global,all,TRUE +525,-0.110896866117562,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,2,3,5,1,4,5,3,1,4,5,2,2,5,4,4,1,3,1,2,2,3,1,2,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Huang|Ross.Slate1|Critcher|VanLange|Hauser|Miyamoto|Inbar|Anderson|Rottenstrich|Bauer|Kay|Alter,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing,9,Global,all,TRUE +526,0.39907268363384,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,2,3,2,2,4,1,1,2,4,3,1,1,4,2,4,1,1,2,3,2,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Rottenstrich|Graham|Hauser|Critcher|Alter|Kay|Huang|Ross.Slate1|Inbar|Anderson|Miyamoto|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,11,Global,all,TRUE +527,-0.256936732850043,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,4,7,3,4,5,5,4,3,2,3,4,2,3,2,5,3,4,1,5,2,4,3,4,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Anderson|Critcher|Kay|Alter|Miyamoto|Bauer|Graham|Rottenstrich|Inbar|Hauser|VanLange|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,2,Global,all,TRUE +535,-0.348153755946308,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,4,6,3,4,4,2,4,4,1,3,3,4,2,2,5,2,4,2,2,4,4,5,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Graham|Miyamoto|Rottenstrich|Huang|Critcher|Anderson|Ross.Slate1|Inbar|Bauer|Kay|Alter|Hauser,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,7,Global,all,TRUE +538,-0.814094031635127,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,5,3,2,2,4,3,1,1,4,4,2,1,4,1,3,1,1,2,3,4,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Rottenstrich|Anderson|Miyamoto|Inbar|VanLange|Hauser|Critcher|Huang|Graham|Alter|Kay|Bauer,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,3,Global,all,TRUE +543,-0.215026013398897,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,4,6,6,5,1,4,4,2,1,2,1,1,5,2,4,4,4,1,2,3,5,2,2,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Anderson|Alter|Critcher|Rottenstrich|Hauser|Miyamoto|VanLange|Graham|Bauer|Ross.Slate1|Kay|Huang,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood,2,Global,all,TRUE +544,-0.474953127567881,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,6,3,4,4,1,1,4,3,1,1,1,4,1,1,4,1,4,1,4,3,4,3,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Critcher|Anderson|VanLange|Bauer|Hauser|Huang|Graham|Alter|Miyamoto|Inbar|Rottenstrich|Ross.Slate1,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,3,Global,all,TRUE +545,-0.209622405384961,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,2,1,2,3,2,1,1,4,4,2,1,3,5,5,1,4,2,1,1,2,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Miyamoto|Inbar|Alter|VanLange|Rottenstrich|Graham|Critcher|Huang|Hauser|Bauer|Anderson|Ross.Slate1,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,12,Global,all,TRUE +547,-0.162968262985348,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,5,1,3,4,5,1,1,5,5,1,2,5,2,5,1,4,5,5,5,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Graham|Critcher|Huang|Ross.Slate1|Bauer|Anderson|Alter|Hauser|Miyamoto|VanLange|Inbar|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood,7,Global,all,TRUE +552,-0.165859934639413,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,7,5,4,1,1,1,4,1,1,3,4,3,1,4,1,4,1,3,4,3,3,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Miyamoto|Critcher|VanLange|Inbar|Kay|Huang|Alter|Ross.Slate1|Anderson|Rottenstrich|Hauser|Bauer,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,10,Global,all,TRUE +554,-0.551797431462507,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,7,3,6,2,2,1,3,1,1,1,1,1,1,1,3,1,3,1,3,1,1,1,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Graham|Kay|Alter|Inbar|Anderson|Ross.Slate1|Bauer|VanLange|Huang|Critcher|Hauser|Miyamoto,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,6,Global,all,TRUE +555,0.202939749759374,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,3,1,1,2,4,4,2,2,4,4,3,2,4,3,3,4,3,3,4,3,3,2,4,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Kay|Ross.Slate1|Alter|Hauser|Anderson|Huang|Inbar|Critcher|Bauer|Graham|Rottenstrich|VanLange,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,6,Global,all,TRUE +557,-1.4548196124597,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,4,3,4,1,1,4,2,1,1,1,1,1,1,3,1,4,1,1,3,4,3,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Anderson|Graham|Inbar|Alter|Miyamoto|Ross.Slate1|VanLange|Rottenstrich|Huang|Kay|Hauser|Bauer,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +561,1.17700924488883,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,5,6,3,4,3,3,3,4,3,3,4,4,4,3,4,3,2,3,4,4,4,5,3,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Rottenstrich|Huang|Hauser|Anderson|Miyamoto|Critcher|Alter|Graham|Ross.Slate1|Kay|Bauer|VanLange,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,5,Global,all,TRUE +562,0.269370219374563,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,6,6,4,3,3,3,3,3,3,2,3,3,3,3,4,3,2,4,3,1,3,4,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Miyamoto|Rottenstrich|Hauser|Anderson|VanLange|Bauer|Inbar|Huang|Critcher|Alter|Kay|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,5,Global,all,TRUE +567,0.0528144196732927,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,6,6,4,3,1,1,3,4,1,1,4,4,4,1,3,3,4,1,3,3,4,2,2,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Alter|Bauer|Hauser|Huang|Ross.Slate1|Inbar|VanLange|Graham|Rottenstrich|Anderson|Miyamoto|Kay,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing,11,Global,all,TRUE +568,0.360713820902226,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,1,5,2,1,2,1,2,4,2,1,1,2,1,1,3,1,2,2,2,1,1,1,1,1,2,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Ross.Slate1|Rottenstrich|Anderson|Alter|VanLange|Hauser|Bauer|Huang|Kay|Graham|Inbar|Miyamoto,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,4,Global,all,TRUE +569,-1.39958974062082,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,5,3,1,2,4,2,1,1,3,4,1,2,4,1,4,1,1,3,4,3,1,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Alter|VanLange|Inbar|Bauer|Critcher|Rottenstrich|Huang|Ross.Slate1|Miyamoto|Hauser|Graham|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,1,Global,all,TRUE +571,-0.486685106507653,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,4,6,3,1,1,3,3,1,1,1,5,2,1,1,2,1,3,1,4,1,1,1,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Bauer|Huang|VanLange|Hauser|Miyamoto|Anderson|Rottenstrich|Ross.Slate1|Alter|Kay|Critcher|Inbar,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,7,Global,all,TRUE +573,-0.0272020056466686,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,6,2,3,4,5,3,2,5,5,2,3,5,5,4,5,2,3,4,1,2,2,5,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Critcher|Alter|Kay|Inbar|Huang|Anderson|Bauer|Ross.Slate1|Rottenstrich|Graham|Hauser|Miyamoto,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,7,Global,all,TRUE +575,0.636989758528051,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,3,2,1,3,2,3,1,4,4,3,2,3,2,2,2,5,2,1,1,3,2,4,4,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Alter|Ross.Slate1|Graham|Hauser|Kay|VanLange|Inbar|Miyamoto|Critcher|Bauer|Rottenstrich|Anderson,ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +581,0.373766169972932,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,6,6,4,4,2,4,3,1,3,3,2,2,4,3,1,4,2,1,2,2,1,1,5,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Kay|Rottenstrich|Inbar|Critcher|Hauser|Bauer|Huang|Ross.Slate1|VanLange|Alter|Anderson|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,12,Global,all,TRUE +585,-1.5365361432048,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,2,4,3,2,3,4,3,3,4,3,2,2,4,2,3,3,3,3,3,4,2,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Critcher|Alter|Kay|Anderson|Inbar|VanLange|Ross.Slate1|Miyamoto|Bauer|Rottenstrich|Graham|Hauser,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,5,Global,all,TRUE +588,-0.713921543805394,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,7,5,5,1,1,5,5,1,1,3,4,1,1,4,1,4,4,1,4,4,4,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Bauer|Anderson|Inbar|Alter|Critcher|Ross.Slate1|VanLange|Rottenstrich|Hauser|Kay|Graham|Miyamoto,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +589,-1.18724598270455,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,4,5,1,5,1,1,5,1,1,1,2,1,1,1,3,1,5,1,1,3,1,2,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Miyamoto|Hauser|Rottenstrich|Ross.Slate1|Bauer|Anderson|Inbar|Critcher|Huang|Kay|VanLange|Graham,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +592,-0.636023673096869,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,2,7,5,5,2,2,4,4,4,2,1,4,3,3,3,1,3,2,2,2,4,1,2,4,2,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Ross.Slate1|Rottenstrich|Huang|Miyamoto|VanLange|Critcher|Inbar|Anderson|Graham|Alter|Kay|Bauer,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood,9,Global,all,TRUE +595,-1.92090011303416,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,6,5,3,2,4,1,2,1,1,1,1,1,1,1,3,1,3,1,1,1,1,1,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Ross.Slate1|VanLange|Kay|Hauser|Graham|Huang|Critcher|Rottenstrich|Anderson|Miyamoto|Alter|Bauer,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing,10,Global,all,TRUE +598,1.3902799911876,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,5,3,4,3,3,3,4,3,2,2,3,3,3,3,2,2,3,3,3,3,3,3,2,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Inbar|Hauser|Miyamoto|Critcher|VanLange|Alter|Anderson|Bauer|Ross.Slate1|Huang|Graham|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,8,Global,all,TRUE +600,-0.00742567843109469,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,6,6,1,1,5,1,1,1,1,1,1,4,1,1,1,1,3,2,4,1,1,1,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Alter|Huang|Hauser|Graham|Bauer|Critcher|VanLange|Anderson|Kay|Ross.Slate1|Rottenstrich|Inbar,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +602,0.650828871095623,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,5,7,5,3,5,5,3,1,4,5,1,1,5,4,1,5,4,1,2,1,2,4,5,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Graham|Ross.Slate1|Huang|Inbar|Hauser|Miyamoto|Critcher|Anderson|Kay|Rottenstrich|Bauer|VanLange,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,9,Global,all,TRUE +603,0.445600247602055,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,7,4,1,2,4,4,1,1,3,3,3,1,4,2,4,1,2,4,3,3,2,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Inbar|VanLange|Huang|Ross.Slate1|Graham|Kay|Miyamoto|Hauser|Rottenstrich|Alter|Critcher|Anderson,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five,13,Global,all,TRUE +605,0.761555418090427,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,6,7,7,4,4,3,2,4,2,3,4,3,3,1,1,1,2,2,2,3,2,2,2,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Graham|Rottenstrich|Alter|Ross.Slate1|Miyamoto|Huang|VanLange|Hauser|Bauer|Critcher|Kay|Anderson,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,13,Global,all,TRUE +606,-0.257076957735678,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,6,6,5,1,1,4,5,2,1,4,5,3,1,4,2,4,2,3,5,4,5,2,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Bauer|Hauser|Critcher|VanLange|Graham|Kay|Miyamoto|Ross.Slate1|Huang|Rottenstrich|Alter|Inbar,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,1,Global,all,TRUE +607,0.636989758528051,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,5,7,2,5,1,2,4,5,1,1,5,4,4,1,5,1,5,2,2,4,5,4,3,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Alter|Ross.Slate1|Bauer|Huang|Miyamoto|Graham|VanLange|Hauser|Critcher|Kay|Inbar|Anderson,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,13,Global,all,TRUE +608,-0.201186900831326,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,3,2,3,2,1,3,1,1,1,1,2,1,1,2,2,1,1,1,2,1,3,2,2,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Graham|Hauser|Miyamoto|Rottenstrich|Ross.Slate1|Critcher|Alter|Anderson|VanLange|Huang|Bauer|Inbar,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,9,Global,all,TRUE +610,0.324333287896414,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,7,6,6,5,2,2,2,3,1,1,1,2,1,1,2,1,2,1,1,2,1,1,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Kay|Alter|Huang|Rottenstrich|Anderson|Critcher|Ross.Slate1|Graham|Bauer|Miyamoto|VanLange|Hauser,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection,6,Global,all,TRUE +613,1.07143314904516,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,2,5,5,4,2,3,4,4,2,2,4,3,4,2,3,3,4,1,2,4,4,2,3,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Kay|Anderson|Hauser|Huang|Miyamoto|Alter|Inbar|Critcher|Bauer|Ross.Slate1|VanLange|Graham,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,3,Global,all,TRUE +614,-1.03711842714787,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,4,3,1,1,2,1,1,1,2,1,1,2,1,1,1,1,1,1,1,1,1,1,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Ross.Slate1|Kay|Huang|Rottenstrich|Anderson|VanLange|Bauer|Hauser|Miyamoto|Alter|Inbar|Critcher,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,6,Global,all,TRUE +615,0.843536526681954,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,3,4,3,3,2,3,2,2,3,4,2,3,4,2,2,2,3,2,4,4,2,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|VanLange|Critcher|Alter|Bauer|Anderson|Inbar|Rottenstrich|Kay|Huang|Ross.Slate1|Graham,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,7,Global,all,TRUE +617,0.0808860265568677,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,5,4,4,3,1,3,3,1,1,1,3,3,2,1,3,1,2,1,1,1,3,1,2,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Rottenstrich|Inbar|Huang|Ross.Slate1|Hauser|Anderson|Miyamoto|Bauer|Graham|Critcher|Alter|VanLange,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,7,Global,all,TRUE +620,0.29929357755254,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,3,2,1,3,1,2,1,1,2,1,1,1,1,3,1,2,1,1,1,1,3,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Bauer|Graham|Miyamoto|Kay|Critcher|VanLange|Huang|Rottenstrich|Inbar|Hauser|Anderson|Ross.Slate1,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,12,Global,all,TRUE +621,-0.37570540265005,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,3,7,3,3,7,3,4,1,4,3,3,3,4,5,3,1,3,1,5,1,4,2,5,2,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Miyamoto|VanLange|Kay|Huang|Anderson|Graham|Critcher|Bauer|Hauser|Rottenstrich|Inbar,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,7,Global,all,TRUE +622,-0.486420528661219,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,4,5,4,2,4,3,2,1,4,4,1,1,2,1,4,2,3,1,3,1,4,1,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Huang|Rottenstrich|Critcher|Ross.Slate1|Graham|Miyamoto|Hauser|VanLange|Inbar|Bauer|Alter|Kay,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE,1,Global,all,TRUE +624,1.09661308427467,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,6,4,1,1,3,1,1,1,2,1,2,1,1,1,3,1,2,1,1,1,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Kay|Alter|Hauser|Graham|Anderson|Huang|Critcher|Rottenstrich|Bauer|Ross.Slate1|Miyamoto|Inbar,ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,6,Global,all,TRUE +625,0.0396218457169525,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,1,5,5,1,1,4,1,1,1,2,1,1,5,4,1,1,4,1,3,1,1,4,1,2,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Ross.Slate1|Alter|Bauer|Huang|VanLange|Rottenstrich|Miyamoto|Kay|Graham|Anderson|Critcher|Inbar,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +627,-1.42687458400753,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,6,3,2,3,3,1,2,3,4,2,2,3,3,3,4,3,3,2,2,2,2,4,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Hauser|Graham|Kay|Ross.Slate1|Miyamoto|Alter|Rottenstrich|Inbar|VanLange|Bauer|Anderson|Huang,ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,12,Global,all,TRUE +632,1.24370651782105,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,4,6,4,3,4,1,4,3,1,1,3,5,1,1,5,1,3,3,2,2,3,4,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Hauser|Alter|Ross.Slate1|Inbar|Critcher|Kay|Rottenstrich|Bauer|Miyamoto|Huang|VanLange|Anderson,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,13,Global,all,TRUE +633,1.00816115440107,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,2,6,3,3,2,3,4,2,2,3,4,3,4,1,4,3,3,3,4,1,3,1,3,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Anderson|VanLange|Critcher|Miyamoto|Alter|Kay|Bauer|Hauser|Rottenstrich|Ross.Slate1|Huang|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,2,Global,all,TRUE +634,-0.210015787133395,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,4,3,3,3,2,3,3,3,1,2,3,5,3,1,2,2,3,1,2,3,3,3,3,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|VanLange|Hauser|Graham|Miyamoto|Ross.Slate1|Rottenstrich|Kay|Bauer|Huang|Critcher|Inbar|Alter,ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,1,Global,all,TRUE +636,-0.6314068285798,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,5,4,3,3,3,2,2,1,1,2,2,1,1,1,1,2,1,3,2,2,1,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Inbar|Miyamoto|VanLange|Critcher|Huang|Graham|Alter|Hauser|Bauer|Anderson|Kay|Rottenstrich,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,11,Global,all,TRUE +642,-1.46286173526491,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,5,3,1,1,2,2,2,1,3,2,2,1,3,1,3,1,2,3,2,4,1,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Critcher|Ross.Slate1|Graham|Rottenstrich|Kay|Inbar|Hauser|Alter|Huang|VanLange|Anderson|Miyamoto,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,12,Global,all,TRUE +644,-2.2509475529529,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,6,2,1,1,1,1,1,1,1,2,1,1,2,1,1,1,1,2,1,3,1,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Anderson|Hauser|Graham|Bauer|Alter|Inbar|Huang|VanLange|Critcher|Rottenstrich|Miyamoto|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing,2,Global,all,TRUE +646,-0.557594421224875,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,,,,,,,,,,,,,,,,,,,,,,,,,,3,7,5,2,1,5,1,1,5,1,2,1,5,5,4,4,5,5,5,1,1,4,2,1,5,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Huang|Kay|Miyamoto|Critcher|Graham|Rottenstrich|Inbar|Bauer|Ross.Slate1|Alter|Hauser|Anderson,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,13,Global,all,TRUE +650,-0.107078206080995,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,2,3,2,3,3,1,1,2,2,2,2,2,2,1,3,2,1,1,2,1,1,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Huang|Miyamoto|Hauser|VanLange|Anderson|Bauer|Graham|Inbar|Kay|Alter|Ross.Slate1|Critcher,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,6,Global,all,TRUE +652,-0.383874103886653,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Miyamoto|Bauer|Inbar|Rottenstrich|Graham|Huang|VanLange|Critcher|Alter|Anderson|Hauser|Ross.Slate1,ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection,11,Global,all,TRUE +653,0.701175095100405,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,3,4,1,1,1,2,1,1,1,3,1,1,1,1,1,1,1,3,2,2,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Huang|Hauser|Bauer|Rottenstrich|Anderson|Critcher|Inbar|Alter|Graham|Kay|Miyamoto|VanLange,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,6,Global,all,TRUE +654,-0.985049255750681,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,4,5,3,4,5,3,4,4,4,5,2,5,4,5,3,4,1,2,3,1,3,3,4,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Graham|Kay|Critcher|Rottenstrich|Huang|Anderson|Bauer|Ross.Slate1|Miyamoto|Hauser|Inbar|Alter,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE,7,Global,all,TRUE +657,0.975079321251996,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,5,1,2,2,4,1,1,1,1,1,2,1,1,1,1,3,1,4,1,1,1,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Alter|VanLange|Miyamoto|Graham|Bauer|Hauser|Anderson|Critcher|Inbar|Rottenstrich|Kay|Ross.Slate1,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing,8,Global,all,TRUE +658,0.515722798822411,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,6,3,3,2,3,3,3,2,3,4,2,1,3,3,3,2,2,4,4,3,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Miyamoto|Inbar|Graham|Rottenstrich|Hauser|Bauer|Anderson|Alter|Ross.Slate1|Huang|Critcher|Kay,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +659,0.304697185566475,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,5,3,1,1,3,2,1,1,1,2,1,1,3,1,3,1,2,3,1,1,1,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Graham|VanLange|Alter|Ross.Slate1|Kay|Inbar|Huang|Rottenstrich|Critcher|Miyamoto|Bauer|Anderson,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +660,0.103160643678075,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,6,5,3,1,3,3,3,2,1,1,4,3,1,1,3,1,2,1,1,2,2,3,2,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Hauser|Huang|Graham|Rottenstrich|Inbar|Bauer|Alter|VanLange|Critcher|Kay|Anderson|Ross.Slate1,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood,12,Global,all,TRUE +662,0.999725649847437,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,6,2,4,2,1,2,1,1,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Huang|Anderson|Critcher|Rottenstrich|Alter|VanLange|Ross.Slate1|Miyamoto|Kay|Bauer|Inbar|Graham,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,3,Global,all,TRUE +663,-0.980570410648648,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,4,4,1,1,2,1,2,1,3,3,1,1,3,1,2,1,2,3,3,4,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Miyamoto|Bauer|Kay|VanLange|Rottenstrich|Hauser|Huang|Critcher|Alter|Inbar|Graham|Ross.Slate1,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,1,Global,all,TRUE +665,-0.338400106732337,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,3,3,2,1,4,1,1,1,1,1,1,1,4,1,2,1,1,2,1,4,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Ross.Slate1|Critcher|Miyamoto|Huang|Rottenstrich|Alter|Inbar|Bauer|Graham|Hauser|VanLange|Kay,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,1,Global,all,TRUE +671,-0.0822916525999189,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,2,3,2,1,2,1,4,3,1,2,1,3,1,1,1,1,2,2,1,1,2,1,1,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Miyamoto|Huang|Alter|Ross.Slate1|Bauer|Inbar|Anderson|Hauser|Kay|Graham|Rottenstrich|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,8,Global,all,TRUE +672,-0.932062291484032,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,6,6,4,4,5,3,3,3,3,5,4,4,2,5,3,3,3,4,4,4,3,3,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Huang|VanLange|Critcher|Hauser|Graham|Alter|Rottenstrich|Inbar|Miyamoto|Kay|Bauer|Anderson,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +673,0.2776791454968,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,6,5,3,1,4,4,1,2,4,5,1,2,4,3,4,4,2,1,1,2,1,3,4,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Inbar|Anderson|Huang|Bauer|Critcher|Alter|Kay|Miyamoto|Rottenstrich|Graham|Ross.Slate1|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood,3,Global,all,TRUE +676,-0.00847924524499441,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,5,7,3,1,1,2,3,1,1,2,3,1,1,3,1,2,1,2,3,3,3,1,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|VanLange|Kay|Alter|Ross.Slate1|Inbar|Bauer|Rottenstrich|Huang|Hauser|Critcher|Anderson|Miyamoto,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,12,Global,all,TRUE +679,0.0532078014217255,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,5,2,2,3,3,1,1,2,1,1,2,4,4,1,3,2,4,3,3,2,3,2,4,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Graham|Rottenstrich|Alter|Anderson|Ross.Slate1|Hauser|Critcher|VanLange|Bauer|Inbar|Miyamoto|Huang,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE,5,Global,all,TRUE +681,0.424252618863349,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,5,3,1,4,2,2,2,2,2,2,3,2,3,1,3,2,4,2,3,2,2,3,2,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Bauer|Inbar|Miyamoto|Alter|VanLange|Huang|Critcher|Kay|Hauser|Rottenstrich|Anderson|Graham,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +684,0.263573229612195,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,5,1,1,3,4,1,1,1,4,1,1,2,1,1,3,1,3,2,1,1,1,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Kay|Bauer|VanLange|Miyamoto|Critcher|Inbar|Hauser|Alter|Huang|Graham|Ross.Slate1|Anderson,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,13,Global,all,TRUE +687,-0.241779475622137,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,7,1,3,1,2,3,4,1,1,3,3,2,1,4,2,4,1,1,3,4,4,2,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Graham|Critcher|Alter|Kay|Hauser|Bauer|Ross.Slate1|Huang|Rottenstrich|Miyamoto|Inbar|Anderson,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +688,0.457067648695392,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,5,6,4,2,2,3,1,1,1,1,3,1,1,3,1,3,2,1,3,2,3,1,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Ross.Slate1|Alter|Rottenstrich|Graham|Inbar|Huang|Kay|VanLange|Critcher|Bauer|Anderson|Hauser,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,12,Global,all,TRUE +689,-0.476004468911182,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,3,3,5,4,1,2,2,3,1,3,3,4,2,1,4,1,3,1,2,3,3,2,1,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Ross.Slate1|Miyamoto|Kay|Bauer|Huang|Rottenstrich|Graham|Anderson|VanLange|Inbar|Alter|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,9,Global,all,TRUE +690,-0.697443916446555,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,2,4,4,3,1,1,3,2,2,1,3,3,1,1,3,1,4,1,2,1,2,1,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|VanLange|Anderson|Critcher|Inbar|Ross.Slate1|Bauer|Kay|Graham|Alter|Hauser|Rottenstrich|Miyamoto,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +692,-0.799330156155654,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,7,7,6,2,4,5,2,1,3,2,3,2,5,3,4,4,3,1,4,2,1,4,3,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Rottenstrich|Huang|Inbar|Critcher|Anderson|VanLange|Ross.Slate1|Kay|Alter|Graham|Hauser|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing,6,Global,all,TRUE +693,-1.14902511938797,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,1,2,1,4,3,3,1,2,2,1,3,1,2,1,2,2,3,3,2,3,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Ross.Slate1|Alter|Bauer|Hauser|Critcher|Huang|Graham|Rottenstrich|Anderson|VanLange|Miyamoto|Inbar,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +696,-0.724070800238397,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,6,6,2,1,4,4,1,1,1,4,1,1,4,1,1,1,4,1,4,1,1,1,1,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|VanLange|Anderson|Ross.Slate1|Alter|Rottenstrich|Graham|Kay|Hauser|Huang|Bauer|Critcher|Inbar,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five,3,Global,all,TRUE +697,-0.599111758927588,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,toronto,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,3,4,3,3,4,3,2,2,4,4,3,1,4,2,4,2,2,3,4,4,3,toronto,toronto,toronto,Canada,"University of Toronto, Scarborough",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Hauser|Alter|Huang|Graham|Inbar|Ross.Slate1|Kay|Rottenstrich|Bauer|VanLange|Critcher|Anderson,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,13,Global,all,TRUE +698,-0.169945397993014,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,6,6,2,3,3,3,3,2,3,1,2,1,1,1,3,1,4,3,1,2,2,1,1,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Anderson|Kay|VanLange|Huang|Critcher|Inbar|Rottenstrich|Graham|Bauer|Alter|Hauser|Ross.Slate1,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,2,Global,all,TRUE +700,-1.15442872740191,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,4,3,4,4,1,1,3,3,1,1,5,5,1,1,5,1,4,1,1,4,4,3,1,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Bauer|VanLange|Critcher|Huang|Kay|Anderson|Alter|Graham|Rottenstrich|Hauser|Miyamoto|Inbar,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +701,-0.426445008403265,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,4,1,1,4,4,1,1,2,3,2,1,2,1,4,1,3,4,1,3,1,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Ross.Slate1|Inbar|Anderson|VanLange|Kay|Miyamoto|Bauer|Alter|Rottenstrich|Critcher|Graham|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,4,Global,all,TRUE +702,-0.386641422579919,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubctab,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,5,5,5,2,3,2,2,3,3,3,4,2,3,4,3,3,3,4,3,3,3,3,3,ubc,ubc,ubctab,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Critcher|Ross.Slate1|Graham|Kay|Miyamoto|Hauser|Rottenstrich|VanLange|Alter|Anderson|Huang|Bauer,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood,11,Global,all,TRUE +706,-0.367663279844847,Low,ML2_Slate1_CanadaEng_Inlab_execution_illegal_DEPLOY_r.csv,ubc,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,5,6,3,3,3,3,4,3,1,1,3,2,1,1,4,2,4,2,1,1,1,1,2,ubc,ubc,ubc,Canada,"University of British Columbia, Vancouver, Canada",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Miyamoto|VanLange|Rottenstrich|Graham|Bauer|Huang|Hauser|Kay|Critcher|Ross.Slate1|Anderson|Alter,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood,12,Global,all,TRUE +708,-0.296082359078522,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r__For_Andrew_Tang.csv,ouhktab,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,5,3,1,1,3,3,1,2,3,3,1,1,3,1,4,1,1,3,4,3,1,ouhk,ouhk,ouhktab,"Hong Kong, China",Open University of Hong Kong,Chinese (traditional),0,illegal,Yes,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|VanLange|Miyamoto|Kay|Rottenstrich|Anderson|Hauser|Alter|Ross.Slate1|Critcher|Graham|Bauer|Huang,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing,6,Global,all,TRUE +716,-0.898322498740087,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r__For_Andrew_Tang.csv,ouhktab,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,4,5,3,3,3,1,3,3,1,3,2,2,5,1,3,2,4,3,4,2,4,4,4,ouhk,ouhk,ouhktab,"Hong Kong, China",Open University of Hong Kong,Chinese (traditional),0,illegal,Yes,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Ross.Slate1|Alter|Kay|Miyamoto|Inbar|Critcher|VanLange|Huang|Hauser|Rottenstrich|Anderson|Bauer,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,12,Global,all,TRUE +720,0.0791722746775011,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r__For_Andrew_Tang.csv,ouhktab,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,5,4,3,1,1,1,1,1,1,1,1,1,1,1,2,1,5,1,1,1,2,1,1,ouhk,ouhk,ouhktab,"Hong Kong, China",Open University of Hong Kong,Chinese (traditional),0,illegal,Yes,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Kay|Ross.Slate1|Rottenstrich|Graham|Miyamoto|Hauser|Bauer|Anderson|Critcher|Huang|VanLange|Inbar,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,9,Global,all,TRUE +723,-0.0269352023296346,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r__For_Andrew_Tang.csv,ouhktab,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,4,3,4,2,1,3,4,2,3,3,3,3,3,3,3,4,2,2,4,4,3,3,ouhk,ouhk,ouhktab,"Hong Kong, China",Open University of Hong Kong,Chinese (traditional),0,illegal,Yes,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|VanLange|Inbar|Graham|Rottenstrich|Critcher|Huang|Kay|Hauser|Anderson|Ross.Slate1|Alter|Miyamoto,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,10,Global,all,TRUE +726,0.324473512782049,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r__For_Andrew_Tang.csv,ouhktab,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,5,3,2,2,4,4,3,2,2,4,2,3,2,2,3,1,3,3,2,3,4,3,1,ouhk,ouhk,ouhktab,"Hong Kong, China",Open University of Hong Kong,Chinese (traditional),0,illegal,Yes,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Hauser|VanLange|Ross.Slate1|Critcher|Graham|Bauer|Rottenstrich|Alter|Anderson|Inbar|Kay|Miyamoto,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,10,Global,all,TRUE +730,0.262126281049862,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r__For_Andrew_Tang.csv,ouhktab,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,4,4,3,5,3,2,4,4,3,3,3,3,3,3,4,3,2,3,3,4,2,3,2,ouhk,ouhk,ouhktab,"Hong Kong, China",Open University of Hong Kong,Chinese (traditional),0,illegal,Yes,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Inbar|Huang|Bauer|Miyamoto|Anderson|Graham|Ross.Slate1|Rottenstrich|Kay|Critcher|Hauser|Alter,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,6,Global,all,TRUE +737,-0.656853567126343,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r__For_Andrew_Tang.csv,ouhktab,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,5,1,1,1,4,1,1,4,4,1,1,4,1,5,1,1,5,5,4,1,ouhk,ouhk,ouhktab,"Hong Kong, China",Open University of Hong Kong,Chinese (traditional),0,illegal,Yes,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Hauser|VanLange|Anderson|Graham|Kay|Huang|Miyamoto|Critcher|Ross.Slate1|Inbar|Alter|Bauer,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +738,-1.76061410553144,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r__For_Andrew_Tang.csv,ouhktab,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,3,3,3,4,3,3,3,2,1,4,2,3,4,2,3,4,4,1,4,4,3,1,4,ouhk,ouhk,ouhktab,"Hong Kong, China",Open University of Hong Kong,Chinese (traditional),0,illegal,Yes,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Graham|Ross.Slate1|Bauer|VanLange|Alter|Inbar|Kay|Rottenstrich|Miyamoto|Huang|Anderson|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,12,Global,all,TRUE +740,0.684570889310167,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r__For_Andrew_Tang.csv,ouhktab,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,2,2,2,3,5,4,4,3,4,5,4,3,4,3,3,4,3,2,4,4,4,3,5,ouhk,ouhk,ouhktab,"Hong Kong, China",Open University of Hong Kong,Chinese (traditional),0,illegal,Yes,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Critcher|Anderson|Alter|Kay|Huang|Rottenstrich|Miyamoto|Hauser|Ross.Slate1|Graham|VanLange|Inbar,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +741,-1.22098800091909,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r__For_Andrew_Tang.csv,ouhktab,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,4,5,2,4,5,1,2,5,1,5,1,5,2,1,4,3,1,1,1,3,4,3,2,ouhk,ouhk,ouhktab,"Hong Kong, China",Open University of Hong Kong,Chinese (traditional),0,illegal,Yes,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Miyamoto|Alter|VanLange|Huang|Kay|Hauser|Rottenstrich|Inbar|Bauer|Critcher|Graham|Anderson,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,13,Global,all,TRUE +742,-0.572231718272948,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r__For_Andrew_Tang.csv,ouhktab,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,5,5,1,1,2,4,1,1,1,5,2,1,3,2,2,1,1,4,4,3,2,ouhk,ouhk,ouhktab,"Hong Kong, China",Open University of Hong Kong,Chinese (traditional),0,illegal,Yes,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Anderson|Miyamoto|Graham|Rottenstrich|Inbar|Critcher|Alter|VanLange|Hauser|Ross.Slate1|Kay|Bauer,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,2,Global,all,TRUE +743,-0.477985024107582,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r__For_Andrew_Tang.csv,ouhktab,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,4,4,3,1,1,1,3,1,1,3,3,1,1,3,1,3,1,3,3,3,3,1,ouhk,ouhk,ouhktab,"Hong Kong, China",Open University of Hong Kong,Chinese (traditional),0,illegal,Yes,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Hauser|Inbar|Rottenstrich|Critcher|Ross.Slate1|Anderson|Graham|Huang|Bauer|Kay|VanLange|Miyamoto,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,7,Global,all,TRUE +744,-0.699817853391388,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r__For_Andrew_Tang.csv,ouhktab,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,1,3,6,2,2,1,3,1,2,2,1,5,3,1,2,2,1,1,3,3,1,2,2,ouhk,ouhk,ouhktab,"Hong Kong, China",Open University of Hong Kong,Chinese (traditional),0,illegal,Yes,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Bauer|Huang|Alter|Critcher|Anderson|Miyamoto|Rottenstrich|Ross.Slate1|Inbar|Graham|Kay|Hauser,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,6,Global,all,TRUE +746,0.514009046943044,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r__For_Andrew_Tang.csv,ouhktab,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,4,3,3,2,2,2,4,1,1,3,5,2,1,4,1,3,1,2,5,5,4,1,ouhk,ouhk,ouhktab,"Hong Kong, China",Open University of Hong Kong,Chinese (traditional),0,illegal,Yes,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Huang|Alter|Bauer|VanLange|Graham|Kay|Rottenstrich|Inbar|Anderson|Hauser|Miyamoto|Ross.Slate1,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,10,Global,all,TRUE +749,-0.244417990413405,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,3,4,4,4,3,4,3,4,3,3,4,2,3,3,4,2,4,4,4,3,4,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Kay|Alter|Huang|Hauser|Inbar|Critcher|Bauer|Rottenstrich|VanLange|Graham|Anderson|Ross.Slate1,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,12,Global,all,TRUE +750,-0.101801176498459,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,1,1,3,5,5,3,1,3,5,1,3,5,3,3,5,2,3,3,3,3,1,5,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Inbar|Critcher|VanLange|Huang|Alter|Anderson|Graham|Miyamoto|Rottenstrich|Bauer|Hauser|Ross.Slate1,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,7,Global,all,TRUE +752,0.117126334677045,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,,,,,,,,,,,,,,,,,,,,,,,,,,2,1,3,2,2,2,4,5,4,2,4,5,2,4,4,4,4,3,3,4,4,2,2,2,4,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Inbar|Ross.Slate1|Graham|Kay|Miyamoto|Hauser|Bauer|Rottenstrich|VanLange|Alter|Critcher|Anderson,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,13,Global,all,TRUE +754,-0.934967609592334,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,4,2,1,3,3,2,5,3,2,3,3,2,3,2,4,4,4,4,3,3,4,4,2,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Miyamoto|VanLange|Hauser|Huang|Ross.Slate1|Alter|Inbar|Anderson|Rottenstrich|Graham|Bauer|Critcher,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE,9,Global,all,TRUE +755,-0.435540698022368,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,4,3,3,3,2,4,3,4,4,3,2,4,3,2,3,2,3,4,4,2,3,3,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Rottenstrich|VanLange|Ross.Slate1|Huang|Bauer|Hauser|Inbar|Graham|Anderson|Miyamoto|Critcher|Alter,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE,10,Global,all,TRUE +757,-1.00034673786422,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,3,2,2,3,3,2,4,2,4,3,4,3,3,2,3,2,3,2,3,3,4,2,4,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|Inbar|Critcher|Kay|Alter|Huang|Rottenstrich|Ross.Slate1|Bauer|VanLange|Anderson|Graham,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,12,Global,all,TRUE +758,-0.446614717367272,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,3,5,3,3,4,3,3,4,3,4,2,3,3,4,3,2,3,3,4,4,4,3,3,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Kay|Inbar|Hauser|Alter|VanLange|Rottenstrich|Huang|Bauer|Miyamoto|Ross.Slate1|Graham|Anderson,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,13,Global,all,TRUE +760,-1.90772118553205,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,5,3,2,3,2,2,1,2,3,2,3,1,2,1,5,2,5,2,2,3,3,1,3,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Inbar|Ross.Slate1|Huang|Graham|VanLange|Kay|Anderson|Rottenstrich|Miyamoto|Bauer|Critcher|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,8,Global,all,TRUE +761,-0.857463120632242,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,5,6,2,1,4,5,1,1,1,5,1,1,4,1,2,4,2,1,5,1,2,1,2,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Inbar|Kay|Alter|Graham|Bauer|Huang|Critcher|Hauser|Ross.Slate1|Anderson|VanLange|Miyamoto,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,11,Global,all,TRUE +763,-1.27384393581314,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,4,5,2,3,4,4,4,3,3,3,2,1,4,2,3,2,4,2,4,3,3,2,2,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Miyamoto|Inbar|Ross.Slate1|VanLange|Graham|Anderson|Alter|Rottenstrich|Huang|Bauer|Hauser|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,7,Global,all,TRUE +764,-0.171530345970382,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,5,3,1,1,4,2,2,2,1,4,2,3,4,3,2,1,5,1,2,4,2,3,4,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Critcher|Hauser|Ross.Slate1|Kay|Anderson|Inbar|Miyamoto|Huang|Bauer|Graham|Alter|VanLange,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +765,-0.883163016041583,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,2,2,1,4,5,5,5,1,5,4,4,1,4,5,4,2,1,2,4,4,4,2,3,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Anderson|Graham|Ross.Slate1|VanLange|Kay|Bauer|Miyamoto|Huang|Rottenstrich|Hauser|Critcher|Inbar,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE,2,Global,all,TRUE +768,0.19186573041447,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,5,3,3,2,2,1,1,2,1,2,1,1,2,1,2,1,2,1,1,1,3,1,2,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Critcher|Graham|Alter|Anderson|Miyamoto|Hauser|Ross.Slate1|Inbar|Bauer|Rottenstrich|VanLange|Huang,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +770,-0.929690580009798,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,5,2,3,3,2,3,3,2,3,2,1,4,2,3,3,3,1,3,3,3,2,3,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Alter|Miyamoto|Inbar|Rottenstrich|Anderson|Bauer|Graham|Hauser|Ross.Slate1|VanLange|Kay|Huang,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing,6,Global,all,TRUE +772,-0.876441263367313,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,3,3,3,1,1,1,3,1,1,2,2,1,1,2,1,2,1,1,2,2,2,1,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Hauser|Alter|Inbar|Anderson|Miyamoto|Huang|Rottenstrich|Graham|Bauer|Ross.Slate1|VanLange|Critcher,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +774,-0.567741452187279,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,,,,,,,,,,,,,,,,,,,,,,,,,,1,4,4,1,1,4,4,2,4,3,1,4,3,3,3,1,3,3,3,3,4,4,4,4,4,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Bauer|Ross.Slate1|Hauser|Inbar|Critcher|Graham|Rottenstrich|VanLange|Anderson|Huang|Kay|Miyamoto,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,10,Global,all,TRUE +776,-0.735538201331734,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,2,2,2,4,4,3,4,3,2,3,3,3,4,2,3,2,4,3,4,3,4,3,3,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Ross.Slate1|Rottenstrich|Miyamoto|Huang|VanLange|Anderson|Graham|Bauer|Kay|Inbar|Hauser|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,7,Global,all,TRUE +778,-1.19146944547319,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,4,2,4,2,3,3,3,1,4,3,2,2,2,3,3,4,3,2,3,1,1,2,4,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Inbar|Hauser|Ross.Slate1|Kay|Alter|VanLange|Rottenstrich|Graham|Bauer|Critcher|Huang|Miyamoto,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE,1,Global,all,TRUE +780,-0.350260889574107,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,4,3,2,2,4,4,3,3,3,3,3,3,5,2,2,2,3,5,4,4,3,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Anderson|Critcher|Alter|Rottenstrich|Bauer|Miyamoto|Huang|Ross.Slate1|Graham|Inbar|Hauser|Kay,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,2,Global,all,TRUE +784,-1.98811734614621,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,6,3,5,3,5,3,4,4,2,2,4,5,4,3,4,3,2,3,3,4,3,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|VanLange|Kay|Miyamoto|Bauer|Huang|Anderson|Ross.Slate1|Hauser|Critcher|Graham|Alter|Inbar,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,7,Global,all,TRUE +786,0.393669075619904,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,6,1,1,4,1,2,1,1,1,3,1,1,1,1,3,1,4,1,1,1,2,1,1,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Miyamoto|Kay|Critcher|Huang|Alter|Rottenstrich|Hauser|Anderson|Ross.Slate1|VanLange|Bauer|Graham,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,9,Global,all,TRUE +788,-0.148988925532141,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,6,6,4,3,2,3,3,1,4,4,2,1,4,4,2,3,3,1,1,2,2,3,2,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Hauser|Huang|Ross.Slate1|Anderson|Critcher|Bauer|Miyamoto|Alter|Inbar|Rottenstrich|Graham|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,5,Global,all,TRUE +793,-0.479429747199316,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,3,3,3,2,3,2,2,3,4,2,4,3,4,2,4,4,2,2,4,4,4,3,4,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Hauser|Bauer|Miyamoto|Huang|Anderson|Kay|Graham|Ross.Slate1|Critcher|Alter|Inbar|Rottenstrich,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +794,-0.317179056425029,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,5,3,2,2,2,2,2,1,1,2,3,2,2,3,2,2,1,1,2,3,3,2,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Kay|VanLange|Rottenstrich|Graham|Inbar|Alter|Ross.Slate1|Critcher|Hauser|Miyamoto|Huang|Bauer,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,1,Global,all,TRUE +796,-2.25358606774417,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,5,3,5,1,2,1,1,1,1,2,1,2,1,1,2,1,4,1,1,1,2,1,2,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Kay|Miyamoto|Huang|Anderson|Critcher|Alter|Rottenstrich|Graham|Inbar|VanLange|Bauer|Hauser,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,5,Global,all,TRUE +797,-0.244417990413405,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,4,2,2,2,4,2,2,3,4,4,2,4,2,4,2,2,4,4,4,2,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Anderson|Critcher|Ross.Slate1|Rottenstrich|Miyamoto|Huang|Graham|VanLange|Kay|Bauer|Hauser|Inbar,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,2,Global,all,TRUE +799,-0.592134623919921,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,,,,,,,,,,,,,,,,,,,,,,,,,,2,1,3,2,1,1,5,2,5,2,4,4,4,2,4,4,5,4,4,2,4,2,4,5,5,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Ross.Slate1|Critcher|Huang|Miyamoto|Bauer|Hauser|Alter|Kay|Rottenstrich|Graham|VanLange|Inbar,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,1,Global,all,TRUE +801,-0.458740078055477,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,7,4,3,2,1,4,1,2,4,4,2,2,4,1,3,1,1,4,4,4,2,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Kay|Graham|Hauser|Rottenstrich|Anderson|Huang|Bauer|Ross.Slate1|Alter|Miyamoto|Inbar|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,6,Global,all,TRUE +802,-0.745685232294137,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,4,5,4,1,2,2,1,1,1,2,1,1,4,1,1,4,1,1,1,1,1,1,2,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Miyamoto|Hauser|Graham|Rottenstrich|Anderson|Inbar|Ross.Slate1|Critcher|Huang|Bauer|Kay|VanLange,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,6,Global,all,TRUE +803,-0.673190969599547,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,6,3,1,4,5,4,4,3,4,5,2,1,4,4,2,4,3,3,5,3,2,2,5,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Anderson|Hauser|Ross.Slate1|Inbar|VanLange|Critcher|Graham|Miyamoto|Kay|Rottenstrich|Bauer|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,2,Global,all,TRUE +805,-0.671744021037214,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,3,3,1,1,1,1,1,1,2,1,1,1,1,1,2,5,1,2,1,1,1,2,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Alter|Rottenstrich|Ross.Slate1|Graham|Critcher|Hauser|Bauer|Miyamoto|VanLange|Anderson|Inbar|Kay,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,11,Global,all,TRUE +807,-1.39141881391362,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,4,5,2,3,2,2,2,3,2,2,2,3,2,2,3,2,3,1,2,3,3,2,2,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Rottenstrich|Bauer|Inbar|VanLange|Ross.Slate1|Critcher|Hauser|Graham|Anderson|Miyamoto|Alter|Kay,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,10,Global,all,TRUE +809,0.0424005853938554,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,7,4,2,2,1,3,2,2,2,4,3,2,4,2,4,2,1,3,3,3,2,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|VanLange|Graham|Hauser|Miyamoto|Rottenstrich|Alter|Kay|Ross.Slate1|Huang|Inbar|Bauer|Anderson,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,13,Global,all,TRUE +810,-1.12463194765533,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,3,3,4,3,4,4,2,4,3,4,3,3,5,3,3,2,2,3,4,4,3,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Bauer|Miyamoto|Ross.Slate1|Inbar|Hauser|Graham|Anderson|Kay|Alter|Huang|Critcher|Rottenstrich,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,8,Global,all,TRUE +813,-1.2360186797156,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,4,1,1,2,2,1,1,1,1,2,3,2,1,2,3,2,2,2,4,1,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Rottenstrich|Critcher|Huang|Ross.Slate1|Alter|Inbar|VanLange|Anderson|Miyamoto|Kay|Bauer|Hauser,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood,9,Global,all,TRUE +816,-2.09567177171568,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,3,3,4,3,2,4,4,3,3,3,3,3,3,4,3,3,3,3,4,3,4,2,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Anderson|Ross.Slate1|Graham|Bauer|Critcher|Miyamoto|VanLange|Kay|Alter|Inbar|Hauser|Huang,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood,2,Global,all,TRUE +817,-0.471261045962714,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,3,2,2,1,2,1,1,2,2,2,3,1,2,3,1,4,1,3,1,1,1,4,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Huang|Rottenstrich|Bauer|Alter|Ross.Slate1|Kay|Hauser|Miyamoto|Anderson|Inbar|Graham|VanLange,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,10,Global,all,TRUE +818,-0.238747579082437,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,2,2,2,3,3,2,2,2,4,3,3,2,2,2,3,2,3,2,2,2,2,4,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Inbar|Anderson|Ross.Slate1|VanLange|Kay|Huang|Alter|Graham|Rottenstrich|Hauser|Bauer|Critcher,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,3,Global,all,TRUE +822,-0.199335149536924,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,,,,,,,,,,,,,,,,,,,,,,,,,,1,5,2,2,2,3,4,4,2,3,3,4,4,3,3,2,4,1,3,1,4,3,3,2,2,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Inbar|Ross.Slate1|Anderson|Alter|Rottenstrich|Bauer|Miyamoto|Graham|Huang|Critcher|Kay|VanLange,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE,4,Global,all,TRUE +824,0.0637482141325621,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,4,3,1,1,3,3,1,1,2,2,2,1,4,1,4,2,2,2,3,1,1,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Graham|Bauer|Kay|Inbar|Critcher|Huang|Miyamoto|Rottenstrich|Anderson|Hauser|VanLange|Ross.Slate1,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,10,Global,all,TRUE +825,0.00193458903444284,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Huang|Anderson|Hauser|Critcher|Inbar|Alter|Bauer|Graham|Miyamoto|Kay|Rottenstrich|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,3,Global,all,TRUE +831,-1.19753323855259,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,,,,,,,,,,,,,,,,,,,,,,,,,,1,3,3,2,1,3,2,1,2,2,4,4,1,2,1,2,1,1,3,1,1,3,3,2,2,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Huang|Kay|Bauer|Ross.Slate1|Graham|VanLange|Alter|Inbar|Hauser|Miyamoto|Anderson|Critcher,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,12,Global,all,TRUE +832,0.437558124796852,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,5,3,3,2,1,4,2,1,1,4,3,1,1,3,1,3,1,3,5,4,3,1,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Rottenstrich|Ross.Slate1|Hauser|Anderson|Huang|Alter|VanLange|Kay|Bauer|Miyamoto|Inbar|Graham,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,5,Global,all,TRUE +835,0.0893215311105039,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,3,1,1,1,2,2,1,1,1,4,2,1,3,1,1,1,5,1,1,1,1,1,1,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Critcher|VanLange|Kay|Hauser|Huang|Rottenstrich|Miyamoto|Bauer|Anderson|Graham|Alter|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,10,Global,all,TRUE +837,0.495426511427005,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,4,2,3,3,4,2,1,1,1,4,1,1,1,1,2,2,3,1,2,2,1,1,3,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Anderson|Ross.Slate1|Alter|Graham|Hauser|VanLange|Huang|Inbar|Rottenstrich|Miyamoto|Critcher|Bauer,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,2,Global,all,TRUE +838,-0.700602391417655,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,,,,,,,,,,,,,,,,,,,,,,,,,,7,2,2,3,4,3,3,1,2,1,1,3,1,1,1,1,1,1,3,1,2,1,2,1,1,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Critcher|Alter|Hauser|Inbar|Ross.Slate1|Bauer|Huang|VanLange|Graham|Kay|Rottenstrich|Anderson,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,13,Global,all,TRUE +843,-0.0786017964653506,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,3,4,3,3,2,1,3,1,1,4,1,3,2,1,4,1,3,1,2,1,2,1,1,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Bauer|Inbar|Rottenstrich|VanLange|Anderson|Hauser|Ross.Slate1|Huang|Critcher|Graham|Kay|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood,6,Global,all,TRUE +844,-0.738834675717869,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,3,6,3,2,2,1,1,2,2,2,1,1,1,2,1,1,4,1,1,1,2,1,1,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Graham|Alter|Anderson|Kay|Miyamoto|Ross.Slate1|Critcher|Inbar|Huang|Hauser|Rottenstrich|Bauer,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,4,Global,all,TRUE +851,-0.243097620282472,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkust,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,5,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,4,1,1,1,1,1,1,hkust,hkust,hkust,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,Yes,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Critcher|Graham|Bauer|VanLange|Huang|Alter|Inbar|Hauser|Rottenstrich|Anderson|Miyamoto|Ross.Slate1,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,11,Global,all,TRUE +852,0.416995034084412,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkusttab,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,3,2,1,1,1,2,3,1,1,4,1,3,2,2,1,1,4,2,3,2,hkust,hkust,hkusttab,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Critcher|Huang|Anderson|Graham|Bauer|Ross.Slate1|Hauser|Miyamoto|Alter|Rottenstrich|Kay|Inbar,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,4,Global,all,TRUE +853,0.00905194892774464,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkusttab,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,3,2,3,1,5,4,2,2,1,5,1,3,1,1,2,1,2,1,1,2,2,2,1,hkust,hkust,hkusttab,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Huang|Inbar|Miyamoto|Alter|Kay|Graham|Anderson|Bauer|Rottenstrich|Hauser|Ross.Slate1|VanLange,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,8,Global,all,TRUE +854,-1.12186685443266,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkusttab,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,2,3,3,1,4,3,4,1,2,3,1,3,4,3,3,3,2,2,1,3,3,2,4,hkust,hkust,hkusttab,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Critcher|Anderson|Inbar|Rottenstrich|VanLange|Miyamoto|Huang|Alter|Ross.Slate1|Kay|Hauser|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,3,Global,all,TRUE +855,-0.383342722723184,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkusttab,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,2,2,2,4,4,3,1,1,4,3,1,3,3,3,3,3,3,3,2,3,2,4,hkust,hkust,hkusttab,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Huang|Graham|Rottenstrich|Kay|VanLange|Inbar|Ross.Slate1|Critcher|Hauser|Miyamoto|Anderson|Alter,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing,12,Global,all,TRUE +857,-0.140820224295539,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkusttab,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,6,2,2,2,3,2,4,4,4,2,4,2,3,2,2,2,2,3,4,3,4,3,3,hkust,hkust,hkusttab,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Rottenstrich|Miyamoto|Hauser|Inbar|Alter|Graham|Ross.Slate1|Huang|Bauer|Anderson|VanLange|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood,11,Global,all,TRUE +860,-0.063048932018413,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkusttab,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,5,3,2,3,2,2,3,2,1,4,3,3,4,1,4,2,4,3,2,3,3,3,3,hkust,hkust,hkusttab,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Kay|Anderson|Miyamoto|Critcher|Ross.Slate1|Inbar|Huang|Bauer|Hauser|VanLange|Rottenstrich|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,3,Global,all,TRUE +863,-0.00254203059699139,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkusttab,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,5,4,4,4,3,3,2,3,3,3,2,2,3,2,4,2,3,1,3,3,4,3,2,hkust,hkust,hkusttab,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Bauer|Inbar|Alter|Kay|Ross.Slate1|Miyamoto|Anderson|Critcher|Huang|Rottenstrich|Graham|Hauser,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +864,0.578727990149465,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkusttab,,,,,,,,,,,,,,,,,,,,,,,,,,2,1,2,2,1,1,2,2,3,1,3,2,1,2,2,1,2,1,4,1,4,1,2,1,1,hkust,hkust,hkusttab,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Anderson|Inbar|Rottenstrich|Kay|VanLange|Ross.Slate1|Graham|Huang|Hauser|Alter|Critcher|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,2,Global,all,TRUE +866,0.330270502544417,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkusttab,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,4,2,5,2,2,5,4,3,5,2,3,3,2,5,3,4,4,4,3,2,3,3,2,hkust,hkust,hkusttab,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Hauser|Rottenstrich|Kay|Graham|Critcher|Ross.Slate1|Inbar|Alter|Miyamoto|Huang|VanLange|Bauer,ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,1,Global,all,TRUE +870,0.73373696806965,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkusttab,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,5,5,2,3,1,1,2,3,1,2,4,4,2,1,4,3,4,1,1,2,4,2,2,hkust,hkust,hkusttab,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Hauser|Graham|Ross.Slate1|Alter|Bauer|Anderson|Miyamoto|Rottenstrich|Huang|VanLange|Inbar|Kay,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +872,-0.038402603422972,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkusttab,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,4,5,3,2,1,2,4,2,1,2,4,1,1,3,1,4,1,2,4,4,4,1,hkust,hkust,hkusttab,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|VanLange|Miyamoto|Rottenstrich|Bauer|Graham|Critcher|Ross.Slate1|Alter|Huang|Inbar|Kay|Hauser,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +873,0.609578336709943,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkusttab,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,5,4,2,1,4,4,1,2,2,3,1,2,5,4,4,1,4,3,3,3,1,hkust,hkust,hkusttab,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Huang|VanLange|Bauer|Ross.Slate1|Rottenstrich|Miyamoto|Anderson|Graham|Alter|Critcher|Kay|Inbar,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,8,Global,all,TRUE +876,0.620512131169213,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkusttab,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,4,3,2,2,2,2,2,1,2,1,2,1,1,2,1,2,1,1,1,2,1,1,hkust,hkust,hkusttab,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Hauser|Inbar|Rottenstrich|Alter|VanLange|Anderson|Graham|Miyamoto|Critcher|Huang|Bauer|Ross.Slate1,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +877,-1.044755747221,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkusttab,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,4,3,3,2,1,1,2,1,4,1,2,4,1,3,3,3,1,2,3,2,3,3,hkust,hkust,hkusttab,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Anderson|Critcher|Rottenstrich|Kay|Inbar|Ross.Slate1|Bauer|Miyamoto|VanLange|Graham|Alter|Huang,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,2,Global,all,TRUE +878,-0.583432316049252,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkusttab,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,2,5,4,3,1,2,3,1,2,4,3,5,1,4,1,4,2,2,3,4,3,1,hkust,hkust,hkusttab,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Critcher|Rottenstrich|Huang|Ross.Slate1|Graham|Hauser|Kay|Alter|Bauer|Inbar|Miyamoto|Anderson,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +879,-0.285275143050652,Low,ML2_Slate1_Chinese_Inlab_execution_illegal_DEPLOY__Hong_Kong_r.csv,hkusttab,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,2,2,3,3,2,3,3,3,4,3,3,3,3,3,2,3,3,4,3,3,3,2,hkust,hkust,hkusttab,"Hong Kong, China","Division of Social Science, The Hong Kong University of Science and Technology, Hong Kong, China",Chinese (traditional),0,illegal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Rottenstrich|Alter|Graham|Huang|Bauer|Kay|Miyamoto|Critcher|VanLange|Anderson|Hauser|Ross.Slate1,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing,11,Global,all,TRUE +883,0.207556594276443,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,,,,,,,,,,,,,,,,,,,,,,,,,,6,4,5,5,5,4,2,2,2,3,1,2,3,4,2,1,4,1,4,1,3,4,4,2,1,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Kay|Critcher|Inbar|Alter|Graham|Ross.Slate1|Rottenstrich|Anderson|Miyamoto|Bauer|VanLange|Huang,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,9,Global,all,TRUE +884,-0.301092585344024,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,6,4,3,1,1,4,4,2,4,4,2,1,4,1,4,1,4,5,4,4,1,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Rottenstrich|Huang|Anderson|Ross.Slate1|Graham|Critcher|Miyamoto|Kay|Inbar|VanLange|Hauser|Bauer,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +892,-0.357376023996809,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,3,3,1,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Graham|Ross.Slate1|VanLange|Hauser|Kay|Miyamoto|Huang|Anderson|Alter|Critcher|Bauer|Rottenstrich,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,9,Global,all,TRUE +895,-1.08350799170105,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,6,2,2,5,1,1,3,3,1,1,2,3,1,1,4,1,5,1,4,3,4,3,1,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Miyamoto|Kay|Ross.Slate1|Rottenstrich|Alter|Inbar|Huang|VanLange|Anderson|Critcher|Hauser|Graham,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,10,Global,all,TRUE +896,-1.01299205873226,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,5,3,2,4,2,1,3,5,1,1,4,3,1,1,1,1,5,1,4,5,1,2,1,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|VanLange|Hauser|Kay|Bauer|Miyamoto|Rottenstrich|Inbar|Alter|Graham|Critcher|Huang|Ross.Slate1,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,1,Global,all,TRUE +898,0.382861859592034,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,5,4,3,4,3,1,2,4,1,3,3,3,2,1,3,2,4,1,2,3,4,3,1,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Critcher|Rottenstrich|Huang|Alter|Hauser|Ross.Slate1|Kay|Graham|Inbar|VanLange|Anderson|Bauer,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood,12,Global,all,TRUE +900,1.06062593301729,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,,,,,,,,,,,,,,,,,,,,,,,,,,1,6,4,3,2,2,2,1,1,2,2,1,1,1,1,2,2,1,3,1,3,2,2,1,1,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|VanLange|Alter|Critcher|Graham|Miyamoto|Inbar|Bauer|Rottenstrich|Ross.Slate1|Anderson|Hauser|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,11,Global,all,TRUE +901,-1.45573295438797,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,6,5,4,4,1,1,3,4,1,1,4,4,1,1,5,1,4,1,3,4,4,4,1,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Hauser|VanLange|Graham|Rottenstrich|Huang|Anderson|Alter|Critcher|Inbar|Bauer|Ross.Slate1|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five,7,Global,all,TRUE +902,-0.717080018776494,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,1,1,4,2,2,3,2,2,2,3,2,2,1,4,1,4,1,3,4,4,3,2,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Huang|Critcher|Bauer|Miyamoto|Rottenstrich|Hauser|Kay|Graham|Anderson|Inbar|VanLange|Alter,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,10,Global,all,TRUE +904,-0.0960041867360913,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,4,3,2,1,1,4,2,1,2,4,2,1,4,1,4,2,4,3,4,3,1,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Anderson|Graham|Kay|Huang|Critcher|Bauer|VanLange|Rottenstrich|Miyamoto|Ross.Slate1|Hauser|Alter,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +906,0.410146702978744,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,6,5,3,4,1,1,1,4,1,1,3,1,1,1,3,1,5,1,1,3,3,4,1,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Anderson|Miyamoto|Inbar|Rottenstrich|Ross.Slate1|Huang|Bauer|VanLange|Hauser|Kay|Alter|Critcher,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection,2,Global,all,TRUE +907,-0.207377272342127,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,3,3,3,4,2,1,1,3,1,1,3,3,2,1,4,1,4,1,1,4,4,1,1,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Alter|Inbar|Anderson|Graham|Miyamoto|Hauser|Huang|Rottenstrich|VanLange|Bauer|Ross.Slate1|Critcher,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,4,Global,all,TRUE +909,0.570826092229897,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,5,3,3,3,1,1,3,2,1,2,3,4,2,1,3,1,5,1,1,4,5,2,1,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Anderson|Miyamoto|Inbar|Huang|Rottenstrich|VanLange|Alter|Graham|Hauser|Critcher|Kay|Bauer,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,2,Global,all,TRUE +911,-0.677414432368183,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,3,2,2,2,3,3,2,1,3,4,3,2,2,3,4,2,4,1,5,1,1,1,2,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Rottenstrich|Kay|Critcher|Inbar|VanLange|Graham|Alter|Anderson|Ross.Slate1|Miyamoto|Bauer|Huang,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,9,Global,all,TRUE +912,-1.13861128510853,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,4,5,2,4,1,1,1,2,1,1,1,3,1,1,1,1,4,1,1,4,4,1,1,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Anderson|Graham|Critcher|Miyamoto|Rottenstrich|Alter|Inbar|Huang|VanLange|Hauser|Kay|Bauer,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,2,Global,all,TRUE +913,-0.608078644644693,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,,,,,,,,,,,,,,,,,,,,,,,,,,4,2,3,2,1,3,3,1,3,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|VanLange|Huang|Alter|Hauser|Graham|Bauer|Anderson|Rottenstrich|Kay|Inbar|Critcher|Ross.Slate1,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,8,Global,all,TRUE +914,-0.165593131322379,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,3,2,2,3,2,2,4,4,2,2,4,3,3,2,4,2,3,1,4,3,4,3,2,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Inbar|VanLange|Bauer|Miyamoto|Huang|Hauser|Critcher|Kay|Rottenstrich|Alter|Graham|Anderson,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +919,0.0777275515857679,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,2,2,1,2,2,3,3,1,2,2,2,2,2,5,1,4,1,1,2,3,1,1,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Bauer|Graham|Kay|Alter|Rottenstrich|Anderson|Ross.Slate1|VanLange|Miyamoto|Critcher|Hauser|Inbar,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,7,Global,all,TRUE +920,-1.06110679614844,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,3,6,2,2,1,1,2,1,3,2,1,2,1,2,1,4,1,3,2,2,2,1,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Bauer|Huang|Inbar|Graham|Alter|VanLange|Ross.Slate1|Miyamoto|Anderson|Kay|Hauser|Rottenstrich,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,10,Global,all,TRUE +921,-0.689134990324318,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,1,1,5,1,1,2,5,1,1,5,5,2,1,5,1,5,1,3,5,5,3,1,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|VanLange|Rottenstrich|Alter|Ross.Slate1|Hauser|Inbar|Huang|Bauer|Graham|Anderson|Kay|Critcher,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +922,-0.60319499681059,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,,,,,,,,,,,,,,,,,,,,,,,,,,4,2,4,3,3,3,2,1,1,1,1,1,1,1,1,1,2,1,4,1,2,2,3,1,1,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Graham|Miyamoto|Critcher|Rottenstrich|Anderson|VanLange|Hauser|Inbar|Alter|Kay|Ross.Slate1|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,6,Global,all,TRUE +928,0.154838658797428,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,4,5,1,4,1,1,1,2,1,1,3,3,1,1,3,1,4,1,2,5,4,2,1,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Kay|VanLange|Critcher|Inbar|Hauser|Anderson|Huang|Bauer|Rottenstrich|Alter|Graham|Miyamoto,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE,7,Global,all,TRUE +929,0.0221042979984496,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,4,3,2,4,1,1,1,3,1,2,1,1,1,2,3,1,4,1,3,3,4,1,2,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Inbar|Graham|Hauser|Kay|Critcher|Anderson|Bauer|Alter|Miyamoto|Rottenstrich|Huang|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,7,Global,all,TRUE +930,0.343716233363555,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,3,2,2,1,2,2,3,1,2,2,1,2,1,2,2,1,3,1,4,1,2,1,2,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Miyamoto|Ross.Slate1|Critcher|Hauser|VanLange|Huang|Kay|Anderson|Alter|Rottenstrich|Bauer|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,9,Global,all,TRUE +931,0.512831127168345,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,,,,,,,,,,,,,,,,,,,,,,,,,,6,4,5,6,2,2,4,1,3,3,1,4,1,1,4,1,3,1,4,1,1,2,3,1,1,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Inbar|Hauser|Alter|Bauer|Graham|VanLange|Kay|Anderson|Critcher|Miyamoto|Ross.Slate1|Rottenstrich,ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,9,Global,all,TRUE +933,-0.878812974841548,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Inbar|Critcher|Kay|Anderson|Bauer|Miyamoto|VanLange|Alter|Huang|Rottenstrich|Hauser|Ross.Slate1,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +934,-1.15284377942454,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,4,5,5,1,1,3,3,1,2,4,4,1,1,5,1,4,1,2,4,4,5,1,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Graham|Hauser|Critcher|VanLange|Bauer|Kay|Anderson|Alter|Ross.Slate1|Inbar|Huang|Rottenstrich,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing,8,Global,all,TRUE +935,0.612610233249645,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,4,4,2,3,1,1,1,3,1,2,2,3,1,1,3,1,3,1,2,3,3,3,1,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Inbar|Critcher|Hauser|Anderson|Bauer|Ross.Slate1|Kay|Rottenstrich|Graham|Huang|VanLange|Alter,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,5,Global,all,TRUE +938,0.781318098851766,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,2,6,7,3,3,4,5,4,5,1,3,5,4,3,5,1,5,4,2,4,4,4,1,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Kay|Alter|Bauer|VanLange|Inbar|Critcher|Ross.Slate1|Miyamoto|Rottenstrich|Graham|Hauser|Anderson,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing,13,Global,all,TRUE +940,-0.0108509567192285,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,6,4,2,4,1,1,2,4,1,1,4,4,1,1,5,1,4,1,1,5,5,1,1,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Hauser|Ross.Slate1|Bauer|Miyamoto|Inbar|Rottenstrich|Graham|Alter|VanLange|Anderson|Huang|Critcher,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +942,0.174474761127367,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,2,1,2,3,2,2,2,1,1,2,1,3,4,5,3,2,5,1,1,2,3,2,3,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Hauser|VanLange|Inbar|Miyamoto|Rottenstrich|Alter|Anderson|Huang|Ross.Slate1|Critcher|Bauer|Kay,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE,8,Global,all,TRUE +944,-0.11564028906603,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,6,5,3,4,1,1,2,2,1,1,3,1,1,1,3,1,3,1,2,2,3,2,1,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Kay|VanLange|Rottenstrich|Ross.Slate1|Graham|Critcher|Anderson|Miyamoto|Huang|Hauser|Bauer|Alter,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,8,Global,all,TRUE +945,0.0116904637190124,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,3,2,3,1,2,1,2,2,2,2,2,2,2,3,1,3,1,2,3,3,2,1,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Rottenstrich|Critcher|Miyamoto|Inbar|Graham|Kay|Hauser|Anderson|Ross.Slate1|Alter|VanLange|Bauer,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,9,Global,all,TRUE +948,0.294156772855639,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,4,1,1,3,1,1,2,2,1,1,2,5,1,1,2,1,3,1,2,3,3,2,1,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Ross.Slate1|Alter|Kay|Graham|Rottenstrich|VanLange|Huang|Bauer|Inbar|Miyamoto|Hauser|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood,13,Global,all,TRUE +949,-0.389671093649021,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,3,1,1,4,3,2,2,3,4,2,3,3,2,2,3,3,3,1,4,3,4,3,2,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Rottenstrich|Graham|Bauer|Alter|Ross.Slate1|Critcher|Huang|Miyamoto|Anderson|Inbar|Kay|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE,10,Global,all,TRUE +950,-0.198017004876589,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,,,,,,,,,,,,,,,,,,,,,,,,,,2,1,4,2,1,3,2,2,2,3,2,2,2,2,3,2,3,2,3,1,2,3,3,3,2,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Kay|Graham|Hauser|Critcher|Alter|Huang|Miyamoto|VanLange|Ross.Slate1|Rottenstrich|Anderson|Bauer,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five,12,Global,all,TRUE +952,-1.21690253756549,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,5,3,3,2,3,5,2,3,4,3,2,1,4,2,4,1,2,3,4,3,2,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Alter|Graham|Critcher|Miyamoto|Bauer|VanLange|Hauser|Anderson|Ross.Slate1|Kay|Rottenstrich|Huang,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,9,Global,all,TRUE +953,-1.08496636124702,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,2,6,5,3,3,3,5,4,3,3,4,4,4,5,2,4,1,5,5,4,5,5,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Critcher|Ross.Slate1|Hauser|VanLange|Huang|Kay|Anderson|Miyamoto|Rottenstrich|Graham|Alter|Bauer,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five,8,Global,all,TRUE +956,-0.629428498853998,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,4,3,2,3,1,1,1,3,1,1,2,3,1,1,4,1,4,1,1,3,4,1,1,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Anderson|Inbar|Alter|Critcher|Rottenstrich|Hauser|Graham|Kay|Miyamoto|VanLange|Ross.Slate1|Huang,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,2,Global,all,TRUE +957,-0.287253472776453,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,5,5,3,4,1,1,1,1,1,1,1,3,1,1,3,1,5,1,1,2,3,2,1,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Rottenstrich|Anderson|Hauser|Huang|Inbar|VanLange|Kay|Critcher|Alter|Ross.Slate1|Graham|Bauer,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,3,Global,all,TRUE +958,-1.17973524106281,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,5,3,3,4,1,2,4,4,2,2,4,3,2,2,4,2,3,2,3,4,4,4,2,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Alter|Ross.Slate1|Bauer|Kay|Hauser|Anderson|Graham|Miyamoto|Inbar|VanLange|Critcher|Rottenstrich,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,7,Global,all,TRUE +961,-0.834783700778965,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,3,3,3,4,1,2,1,3,1,2,4,4,1,1,5,1,4,1,2,3,4,3,1,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|VanLange|Bauer|Ross.Slate1|Hauser|Critcher|Huang|Kay|Rottenstrich|Miyamoto|Alter|Graham|Anderson,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,13,Global,all,TRUE +964,-0.755705684825141,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,,,,,,,,,,,,,,,,,,,,,,,,,,2,1,2,6,2,2,1,1,1,1,1,2,1,1,1,1,4,1,5,1,2,5,4,1,2,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Anderson|Hauser|Bauer|Critcher|Kay|Inbar|Rottenstrich|Miyamoto|VanLange|Graham|Alter|Huang,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,2,Global,all,TRUE +966,0.637383140276485,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,2,4,4,1,1,1,3,2,1,3,2,1,2,4,1,4,1,1,3,4,1,1,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Bauer|Critcher|Alter|Kay|Graham|VanLange|Hauser|Rottenstrich|Ross.Slate1|Anderson|Inbar|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing,11,Global,all,TRUE +969,0.579261596783534,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,2,2,4,1,1,4,1,1,1,1,1,1,1,4,1,4,1,2,1,3,1,1,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Ross.Slate1|Alter|Kay|Huang|Anderson|Inbar|Graham|Bauer|VanLange|Hauser|Rottenstrich|Critcher,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing,6,Global,all,TRUE +971,0.194110863457305,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,6,3,2,4,1,1,1,3,1,1,1,3,1,1,3,1,5,1,1,3,4,4,1,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Miyamoto|Bauer|Kay|Rottenstrich|Critcher|Hauser|Inbar|Huang|Alter|Ross.Slate1|Anderson|Graham,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing,12,Global,all,TRUE +973,-0.669105506245946,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,5,5,3,3,2,2,3,4,3,2,4,3,2,2,4,3,5,2,2,4,4,3,2,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Critcher|Ross.Slate1|Kay|Hauser|Inbar|VanLange|Rottenstrich|Graham|Alter|Miyamoto|Bauer|Anderson,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,13,Global,all,TRUE +975,-1.14110957501417,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,3,4,2,3,1,1,1,2,1,1,2,1,1,1,3,1,4,1,2,2,3,2,1,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Alter|Ross.Slate1|Inbar|Critcher|Graham|Kay|Hauser|Bauer|Anderson|Miyamoto|VanLange|Rottenstrich,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing,10,Global,all,TRUE +978,-1.28912999694305,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,2,1,1,3,4,3,3,3,2,2,3,4,1,2,4,1,3,1,4,3,4,1,2,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Huang|Anderson|Miyamoto|Inbar|Critcher|VanLange|Hauser|Alter|Ross.Slate1|Kay|Bauer|Rottenstrich,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,3,Global,all,TRUE +979,-0.923626786930396,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,3,5,2,4,4,1,1,2,2,1,2,2,1,2,3,1,3,1,5,2,2,3,1,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Alter|Critcher|Inbar|Huang|Kay|Ross.Slate1|Hauser|Miyamoto|Bauer|Graham|Rottenstrich|VanLange,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,1,Global,all,TRUE +980,-0.093618828807621,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,5,3,3,3,1,1,1,2,1,1,2,1,2,2,3,2,4,1,2,2,3,2,2,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Miyamoto|Hauser|Inbar|Critcher|Alter|Rottenstrich|Ross.Slate1|Huang|Kay|VanLange|Bauer|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,1,Global,all,TRUE +982,0.703687031460274,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,4,1,5,4,1,1,1,3,3,1,1,1,1,1,2,1,5,1,3,1,5,3,1,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Critcher|VanLange|Rottenstrich|Bauer|Alter|Graham|Ross.Slate1|Inbar|Miyamoto|Hauser|Anderson|Kay,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +985,-1.10169937093925,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,3,4,3,5,1,1,1,4,1,1,2,2,1,1,5,1,5,1,3,3,4,3,1,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Rottenstrich|Huang|Hauser|Inbar|Anderson|Alter|Miyamoto|VanLange|Graham|Ross.Slate1|Critcher|Bauer,ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,6,Global,all,TRUE +986,-1.57318125405704,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,3,5,2,3,4,2,1,2,2,4,3,2,4,2,3,1,2,3,5,3,3,2,1,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Anderson|Inbar|Alter|Ross.Slate1|Rottenstrich|Critcher|Bauer|Hauser|Miyamoto|Kay|Huang|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,2,Global,all,TRUE +990,-1.69115173937655,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,,,,,,,,,,,,,,,,,,,,,,,,,,1,3,1,3,1,4,1,4,1,2,5,4,2,5,2,4,3,1,4,1,4,3,3,1,2,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|VanLange|Huang|Miyamoto|Kay|Bauer|Critcher|Anderson|Inbar|Graham|Hauser|Alter|Ross.Slate1,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,8,Global,all,TRUE +992,-0.114055341088662,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,6,6,6,4,1,1,1,3,1,1,3,3,1,1,5,1,4,1,3,3,4,4,1,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Inbar|Miyamoto|Huang|Graham|Critcher|Rottenstrich|Bauer|Kay|Ross.Slate1|Anderson|Alter|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,11,Global,all,TRUE +995,-0.210409168881828,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,,,,,,,,,,,,,,,,,,,,,,,,,,2,1,2,3,1,4,1,2,3,1,2,2,3,5,2,1,3,1,5,1,2,4,2,2,4,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Kay|Inbar|Ross.Slate1|Huang|Graham|Critcher|Hauser|Alter|Miyamoto|Rottenstrich|Bauer|VanLange,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,1,Global,all,TRUE +998,-1.68061132666571,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,3,5,2,3,2,1,1,2,2,2,2,3,2,2,3,1,4,1,2,3,3,3,1,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Alter|Kay|Anderson|Miyamoto|Huang|Bauer|Graham|Ross.Slate1|Inbar|VanLange|Rottenstrich|Critcher,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,4,Global,all,TRUE +999,-0.745151625660069,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,7,7,5,4,1,2,5,1,4,4,4,1,2,5,1,4,1,2,4,5,4,1,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Ross.Slate1|Rottenstrich|Kay|Critcher|Miyamoto|Huang|Graham|Hauser|Anderson|Inbar|Alter|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,10,Global,all,TRUE +1000,-0.204738757550858,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,3,2,3,2,1,1,1,1,1,1,3,1,1,1,2,1,4,1,1,3,4,2,1,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Rottenstrich|Alter|Miyamoto|Huang|VanLange|Critcher|Ross.Slate1|Bauer|Kay|Inbar|Graham|Anderson,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,13,Global,all,TRUE +1002,-1.11448491669292,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,5,2,4,1,1,1,2,1,1,3,5,1,1,5,1,4,1,1,3,4,4,1,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Alter|Anderson|Graham|Inbar|Hauser|Huang|Critcher|VanLange|Rottenstrich|Ross.Slate1|Kay|Miyamoto,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,3,Global,all,TRUE +1003,0.0963100871018072,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,6,6,2,5,2,2,4,3,1,2,3,5,5,1,3,1,4,2,5,3,3,2,2,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Graham|Rottenstrich|Hauser|Kay|Critcher|Miyamoto|Bauer|Anderson|Alter|Huang|Inbar|Ross.Slate1,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE,9,Global,all,TRUE +1005,-0.0894090124932207,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,7,7,6,5,1,1,1,3,1,1,3,1,1,1,2,1,5,1,1,3,2,3,1,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Critcher|Graham|Inbar|Miyamoto|Kay|Rottenstrich|Anderson|VanLange|Hauser|Huang|Bauer|Ross.Slate1,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,8,Global,all,TRUE +1007,-1.08575312474388,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,5,4,2,4,1,1,1,4,1,1,4,4,1,1,4,1,4,1,2,4,4,4,1,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Alter|Bauer|Critcher|Miyamoto|Inbar|Hauser|Huang|Anderson|Kay|Graham|Rottenstrich|Ross.Slate1,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +1008,-0.0469646864080066,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,5,6,6,4,2,2,2,3,1,2,1,2,3,1,4,1,4,1,4,2,4,1,1,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|VanLange|Bauer|Huang|Miyamoto|Alter|Ross.Slate1|Hauser|Anderson|Graham|Kay|Rottenstrich|Inbar,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,9,Global,all,TRUE +1009,-0.259968629389744,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,6,3,2,4,3,3,1,4,1,2,5,5,2,1,4,1,5,1,1,4,4,2,1,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Rottenstrich|Critcher|Huang|Ross.Slate1|Kay|Bauer|Miyamoto|Graham|VanLange|Anderson|Hauser|Inbar,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,11,Global,all,TRUE +1010,0.334353740427418,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,,,,,,,,,,,,,,,,,,,,,,,,,,4,2,6,3,2,4,2,1,1,2,1,2,2,3,1,1,4,1,5,1,1,1,4,3,1,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Inbar|VanLange|Alter|Hauser|Rottenstrich|Graham|Kay|Critcher|Ross.Slate1|Bauer|Anderson|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,12,Global,all,TRUE +1014,-0.193538159774556,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,castab,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,3,4,2,3,1,3,2,1,1,4,1,3,1,1,3,1,4,1,1,2,3,2,1,cas,cas,castab,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Hauser|Critcher|VanLange|Alter|Anderson|Rottenstrich|Huang|Graham|Bauer|Miyamoto|Inbar|Kay,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,6,Global,all,TRUE +1016,-0.738834675717869,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r__Revised_by_Huajian.csv,cas,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,5,4,3,2,1,1,1,1,1,1,2,1,1,1,1,1,3,1,1,2,2,2,1,cas,cas,cas,China,"Chinese Academy of Science, Beijing, China",Chinese (simplified),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Huang|Ross.Slate1|Hauser|Graham|Critcher|VanLange|Inbar|Kay|Miyamoto|Rottenstrich|Anderson|Bauer,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing,12,Global,all,TRUE +1017,0.582166914891835,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,5,5,6,4,5,4,1,3,2,4,3,2,4,2,4,1,3,1,3,2,4,3,1,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Alter|Bauer|Rottenstrich|Graham|Kay|Inbar|VanLange|Anderson|Miyamoto|Hauser|Huang|Ross.Slate1,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE,9,Global,all,TRUE +1020,-0.0729313851343815,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,1,2,3,1,1,3,3,1,1,3,3,1,1,4,1,3,1,1,3,4,4,1,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Rottenstrich|Bauer|Huang|Miyamoto|Anderson|Alter|Graham|Ross.Slate1|Hauser|Kay|Critcher|Inbar,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,6,Global,all,TRUE +1022,0.0443789151196569,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,5,6,2,2,2,1,1,2,1,4,1,1,1,1,2,2,5,2,1,1,2,1,2,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Huang|Graham|Alter|Rottenstrich|Miyamoto|Bauer|Inbar|Kay|Critcher|Ross.Slate1|Anderson|Hauser,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five,12,Global,all,TRUE +1025,-0.231632444659734,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,1,1,1,2,3,1,1,2,1,2,2,3,1,1,2,1,3,1,1,2,3,2,1,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Ross.Slate1|Bauer|Rottenstrich|Critcher|Alter|Kay|Hauser|Anderson|Graham|Miyamoto|VanLange|Huang,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection,9,Global,all,TRUE +1027,-1.39721802914659,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,,,,,,,,,,,,,,,,,,,,,,,,,,1,5,1,1,4,4,5,2,4,4,2,3,2,3,4,4,3,4,3,1,5,4,4,3,4,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Graham|Rottenstrich|Anderson|Huang|Alter|Hauser|Critcher|Kay|Ross.Slate1|VanLange|Bauer|Inbar,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,4,Global,all,TRUE +1028,0.431367753286051,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,6,2,5,2,1,1,5,5,1,4,4,1,1,3,4,5,1,1,5,4,4,1,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Graham|Miyamoto|Inbar|Huang|Rottenstrich|Critcher|Kay|Hauser|VanLange|Alter|Anderson|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,12,Global,all,TRUE +1029,0.77591449083783,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,6,5,6,4,3,1,2,3,1,3,4,2,3,1,4,1,3,1,1,4,4,3,1,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Rottenstrich|Miyamoto|Ross.Slate1|VanLange|Bauer|Alter|Graham|Anderson|Kay|Huang|Inbar|Critcher,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,9,Global,all,TRUE +1031,-0.199208571105524,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,6,4,3,2,4,5,1,2,3,3,2,1,3,2,3,2,1,3,4,4,1,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|VanLange|Kay|Anderson|Bauer|Critcher|Alter|Inbar|Graham|Hauser|Rottenstrich|Huang|Ross.Slate1,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,4,Global,all,TRUE +1033,0.526530014850281,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,5,5,3,4,2,2,2,4,3,2,4,4,4,1,4,2,4,2,1,4,4,3,2,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Alter|Kay|VanLange|Critcher|Inbar|Bauer|Hauser|Ross.Slate1|Huang|Anderson|Rottenstrich|Graham,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,11,Global,all,TRUE +1036,-0.1243425969367,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,5,5,6,1,3,2,4,1,1,3,1,2,3,1,3,1,2,1,1,4,2,3,1,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Graham|Miyamoto|Rottenstrich|Hauser|Alter|Huang|Critcher|Ross.Slate1|Kay|VanLange|Inbar|Anderson,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +1037,-0.124202372051065,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,6,1,6,4,1,1,1,1,1,1,1,1,1,1,3,1,2,1,1,3,3,1,1,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Alter|Critcher|Rottenstrich|Inbar|Huang|Ross.Slate1|Miyamoto|VanLange|Bauer|Anderson|Kay|Hauser,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,11,Global,all,TRUE +1038,0.240245045677088,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,3,2,2,3,3,2,2,4,1,3,3,1,1,1,3,1,4,2,1,3,3,3,1,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Miyamoto|Inbar|Ross.Slate1|Critcher|Rottenstrich|Graham|Bauer|Alter|Hauser|Kay|Anderson|Huang,ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,12,Global,all,TRUE +1040,-1.1444082748709,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,3,6,4,4,4,4,2,2,4,3,3,1,1,1,1,2,2,2,1,2,3,1,2,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Miyamoto|Rottenstrich|Bauer|Graham|Hauser|VanLange|Huang|Anderson|Ross.Slate1|Inbar|Critcher|Alter,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,9,Global,all,TRUE +1042,0.410146702978744,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,4,2,2,3,4,4,3,3,2,3,2,2,3,3,3,1,3,2,3,2,3,3,1,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Kay|Bauer|Miyamoto|Huang|Graham|Alter|Hauser|Ross.Slate1|Critcher|Anderson|VanLange|Rottenstrich,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,11,Global,all,TRUE +1048,-0.498812692666457,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,4,3,2,4,4,2,2,4,2,3,4,2,3,3,2,3,4,2,2,3,3,3,2,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Anderson|Alter|Huang|Critcher|VanLange|Inbar|Hauser|Graham|Rottenstrich|Bauer|Kay|Ross.Slate1,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,2,Global,all,TRUE +1049,-1.07968933166448,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,2,1,1,4,2,2,2,4,3,2,4,3,3,3,4,1,4,1,2,4,4,3,2,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Inbar|Miyamoto|Ross.Slate1|VanLange|Anderson|Huang|Alter|Critcher|Bauer|Kay|Graham|Rottenstrich,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,6,Global,all,TRUE +1052,-0.00544734870529321,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,3,2,3,3,2,1,3,1,2,2,3,3,1,2,4,1,3,2,1,2,2,2,2,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Bauer|Huang|Hauser|Rottenstrich|Graham|Kay|Alter|Inbar|Miyamoto|VanLange|Ross.Slate1|Critcher,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,1,Global,all,TRUE +1053,-0.801041682564421,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,6,5,3,5,4,4,4,5,3,5,4,3,4,2,4,2,4,1,2,5,4,3,5,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|Critcher|Anderson|Ross.Slate1|Inbar|Kay|Bauer|Graham|VanLange|Alter|Rottenstrich|Huang,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,4,Global,all,TRUE +1055,-0.154127955699642,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,4,3,1,1,3,1,2,2,3,3,1,4,1,3,1,1,4,4,3,3,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Anderson|Ross.Slate1|VanLange|Kay|Graham|Alter|Critcher|Miyamoto|Bauer|Hauser|Huang|Rottenstrich,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +1057,1.26861964973353,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,2,3,4,4,2,4,2,4,3,4,4,4,4,4,3,2,2,2,2,4,3,3,4,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Critcher|Hauser|Huang|Graham|Kay|Alter|Miyamoto|Bauer|Anderson|Rottenstrich|Ross.Slate1|VanLange,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood,10,Global,all,TRUE +1058,-0.00808586349656156,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,4,2,5,3,3,3,3,3,3,4,3,3,3,3,3,3,3,3,4,3,3,3,3,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Kay|Anderson|Alter|Ross.Slate1|Inbar|Critcher|Miyamoto|Rottenstrich|Graham|Huang|VanLange|Hauser,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,3,Global,all,TRUE +1062,-0.290678751064587,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,4,3,3,4,1,2,1,3,1,1,3,2,1,1,3,1,4,1,1,4,4,4,1,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Huang|Rottenstrich|Bauer|Hauser|Graham|VanLange|Ross.Slate1|Critcher|Alter|Anderson|Miyamoto|Kay,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,11,Global,all,TRUE +1063,-0.474686324250848,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,4,6,4,3,4,2,3,4,4,4,2,4,2,4,2,3,4,4,4,5,1,2,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Graham|Inbar|VanLange|Huang|Ross.Slate1|Rottenstrich|Kay|Hauser|Critcher|Miyamoto|Bauer|Alter,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,1,Global,all,TRUE +1064,-0.0660808285581139,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,5,2,5,3,4,3,3,3,4,4,3,3,4,4,3,2,3,2,3,3,3,2,2,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Critcher|Graham|Inbar|Hauser|Anderson|Miyamoto|Rottenstrich|Huang|Alter|Ross.Slate1|Kay|Bauer,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,6,Global,all,TRUE +1065,-1.15218359435907,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,4,3,3,3,2,2,3,1,1,1,1,1,1,3,2,1,3,1,1,3,4,1,1,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Ross.Slate1|Kay|Miyamoto|Anderson|Hauser|Rottenstrich|Inbar|VanLange|Bauer|Graham|Critcher|Alter,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,5,Global,all,TRUE +1066,-0.315465304545663,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,6,6,3,3,1,1,1,1,1,1,1,1,2,1,1,1,3,1,1,1,2,1,1,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Huang|Critcher|Ross.Slate1|Alter|Bauer|Inbar|Miyamoto|Anderson|Hauser|Rottenstrich|Kay|VanLange,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,9,Global,all,TRUE +1068,0.168804349796397,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,5,3,7,3,4,1,4,4,1,3,4,2,2,1,4,1,4,2,1,4,4,3,1,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Hauser|Inbar|Ross.Slate1|Anderson|Bauer|VanLange|Graham|Rottenstrich|Critcher|Kay|Alter|Miyamoto,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,5,Global,all,TRUE +1070,-0.0915139206504207,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,4,5,6,3,3,3,2,3,3,3,3,3,2,3,3,3,3,1,3,3,3,3,3,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Miyamoto|Bauer|Rottenstrich|Kay|Alter|Ross.Slate1|Critcher|Hauser|Huang|Graham|Inbar|Anderson,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,13,Global,all,TRUE +1073,-0.374513836421115,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,,,,,,,,,,,,,,,,,,,,,,,,,,6,4,5,5,4,4,3,1,1,4,2,2,4,4,2,2,4,1,3,1,1,4,4,4,2,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Critcher|Inbar|Hauser|Kay|Rottenstrich|Anderson|Bauer|VanLange|Graham|Alter|Huang|Ross.Slate1,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,7,Global,all,TRUE +1075,-0.84888961666357,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,7,7,3,5,2,2,3,4,1,3,3,4,3,1,4,1,5,1,1,5,5,4,2,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Critcher|Bauer|Rottenstrich|Huang|VanLange|Anderson|Inbar|Ross.Slate1|Miyamoto|Alter|Hauser|Graham,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,7,Global,all,TRUE +1076,0.886641037832635,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,3,2,2,3,3,2,3,3,3,2,4,3,3,2,3,1,3,1,1,3,3,3,1,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Alter|Huang|Hauser|Ross.Slate1|Critcher|VanLange|Inbar|Graham|Anderson|Rottenstrich|Bauer|Kay,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,10,Global,all,TRUE +1082,-0.179305665458552,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,3,3,3,5,4,3,3,4,3,3,3,2,3,3,4,2,4,2,3,4,3,3,2,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Miyamoto|Inbar|Hauser|Alter|Graham|Rottenstrich|Huang|Anderson|Kay|Critcher|Ross.Slate1|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,9,Global,all,TRUE +1086,0.524031724944648,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,5,2,2,3,3,1,1,3,1,1,3,1,1,1,1,1,2,1,1,4,3,3,1,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Bauer|Inbar|Ross.Slate1|Rottenstrich|Graham|VanLange|Anderson|Alter|Kay|Hauser|Huang|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,8,Global,all,TRUE +1093,-0.174688820941482,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,,,,,,,,,,,,,,,,,,,,,,,,,,3,1,3,3,2,2,2,2,2,3,2,2,2,2,2,2,3,2,2,1,2,2,3,2,2,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Bauer|Huang|Alter|VanLange|Anderson|Inbar|Kay|Hauser|Miyamoto|Critcher|Graham|Rottenstrich,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,6,Global,all,TRUE +1096,-0.222143373292199,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,5,4,3,4,3,2,3,4,3,3,2,2,3,2,3,2,2,2,2,4,3,3,3,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|VanLange|Huang|Ross.Slate1|Bauer|Rottenstrich|Anderson|Alter|Miyamoto|Inbar|Critcher|Kay|Hauser,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing,7,Global,all,TRUE +1097,-0.421701585454797,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,4,4,1,3,4,2,2,1,2,5,4,2,3,2,4,1,3,1,1,4,4,2,1,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Huang|Graham|Hauser|Ross.Slate1|Kay|Rottenstrich|Critcher|Anderson|Inbar|Miyamoto|Bauer|Alter,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,9,Global,all,TRUE +1099,-1.52362179354913,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,3,1,1,4,1,1,4,3,1,1,4,1,1,1,1,1,4,1,1,3,3,1,1,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|VanLange|Miyamoto|Bauer|Kay|Alter|Ross.Slate1|Graham|Inbar|Huang|Rottenstrich|Hauser|Critcher,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +1101,-0.485100158530285,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,4,2,6,6,4,4,1,1,2,3,1,1,3,2,1,1,4,2,4,1,1,4,5,3,2,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Alter|Miyamoto|Anderson|Graham|Inbar|Kay|Ross.Slate1|Bauer|VanLange|Huang|Hauser|Critcher,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five,4,Global,all,TRUE +1104,0.0861630561394037,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,7,6,1,1,1,4,3,4,1,3,3,1,1,1,1,3,1,3,4,4,3,1,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Huang|VanLange|Bauer|Miyamoto|Ross.Slate1|Critcher|Graham|Anderson|Hauser|Rottenstrich|Kay|Inbar,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,9,Global,all,TRUE +1105,-0.589355884243019,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,zhejiang,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,5,3,4,4,2,1,1,4,1,1,4,4,1,1,3,1,4,1,1,4,4,3,1,zhejiang,zhejiang,zhejiang,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|VanLange|Hauser|Bauer|Anderson|Ross.Slate1|Critcher|Kay|Alter|Huang|Inbar|Miyamoto|Graham,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,5,Global,all,TRUE +1107,-1.06663698259378,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,4,3,2,3,3,1,1,1,1,3,2,2,2,2,3,1,3,1,2,2,3,2,2,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Graham|VanLange|Alter|Anderson|Critcher|Bauer|Ross.Slate1|Miyamoto|Hauser|Huang|Rottenstrich|Kay,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,5,Global,all,TRUE +1108,0.443495339444854,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,4,3,3,3,2,2,3,3,2,2,3,2,2,2,3,3,2,1,1,4,4,3,3,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Bauer|Miyamoto|VanLange|Huang|Inbar|Hauser|Kay|Critcher|Ross.Slate1|Alter|Anderson|Graham,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood,12,Global,all,TRUE +1112,-1.00257822445282,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,6,6,1,4,1,2,3,3,1,2,3,1,1,1,4,1,3,1,1,3,4,3,2,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Kay|Bauer|Anderson|Critcher|Alter|Huang|Ross.Slate1|Graham|Hauser|VanLange|Inbar|Miyamoto,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,4,Global,all,TRUE +1113,-0.529129432592867,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,4,3,3,4,1,2,4,3,3,3,3,2,3,2,3,2,3,1,1,4,4,3,4,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Ross.Slate1|VanLange|Anderson|Inbar|Bauer|Kay|Rottenstrich|Miyamoto|Alter|Graham|Hauser|Critcher,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,4,Global,all,TRUE +1114,-1.19581948667322,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,5,3,4,2,1,1,2,1,2,3,3,2,1,4,1,4,1,1,3,4,4,1,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Hauser|Graham|Ross.Slate1|Miyamoto|Inbar|VanLange|Anderson|Huang|Bauer|Rottenstrich|Critcher|Alter,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing,8,Global,all,TRUE +1117,-0.844537349992936,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,4,2,4,4,2,1,3,2,2,2,4,3,2,2,4,2,4,1,3,4,4,3,3,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Alter|Anderson|Rottenstrich|VanLange|Hauser|Critcher|Miyamoto|Bauer|Kay|Ross.Slate1|Huang|Inbar,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +1119,-0.238354197334004,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,6,5,3,4,2,3,2,4,3,2,2,1,3,2,2,1,4,1,1,5,4,4,3,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Hauser|Anderson|Miyamoto|Huang|Alter|Bauer|Inbar|VanLange|Graham|Kay|Critcher|Rottenstrich,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five,3,Global,all,TRUE +1121,-0.199335149536924,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,4,3,3,3,2,1,2,3,1,2,2,3,2,1,3,1,3,1,2,3,3,2,2,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Hauser|Alter|Anderson|VanLange|Graham|Kay|Inbar|Bauer|Rottenstrich|Miyamoto|Critcher|Ross.Slate1,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,4,Global,all,TRUE +1122,-0.532428132449602,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,7,6,1,4,3,2,3,3,2,2,4,5,2,2,4,1,3,2,3,4,4,3,1,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Graham|Miyamoto|Anderson|Ross.Slate1|Huang|Bauer|Kay|VanLange|Alter|Rottenstrich|Inbar|Critcher,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,4,Global,all,TRUE +1123,-0.237160405634469,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,6,4,3,4,2,2,3,3,2,3,4,3,2,3,2,2,4,1,3,3,4,4,2,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|VanLange|Inbar|Hauser|Anderson|Huang|Bauer|Graham|Kay|Rottenstrich|Miyamoto|Alter|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE,5,Global,all,TRUE +1124,0.451270658933024,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,3,3,3,4,2,2,2,4,2,3,3,3,1,2,3,2,3,1,2,4,4,4,2,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Anderson|Rottenstrich|Huang|Alter|Miyamoto|Graham|Bauer|Ross.Slate1|VanLange|Hauser|Kay|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood,2,Global,all,TRUE +1127,-0.989005915202284,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,1,2,2,3,1,2,1,1,3,2,1,1,1,3,2,4,1,2,3,3,4,1,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Bauer|Rottenstrich|Ross.Slate1|Graham|Inbar|Hauser|Critcher|VanLange|Anderson|Huang|Alter|Miyamoto,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +1128,-1.27042088299561,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,6,5,4,3,2,3,5,2,2,2,2,3,2,2,4,5,4,1,4,3,2,3,3,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Rottenstrich|Huang|Kay|Critcher|Bauer|VanLange|Miyamoto|Hauser|Inbar|Anderson|Graham,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,12,Global,all,TRUE +1129,-0.509746487125726,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,3,4,1,3,3,3,1,2,2,3,3,3,2,2,3,3,4,2,3,3,3,4,3,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Rottenstrich|Miyamoto|Inbar|Anderson|VanLange|Hauser|Kay|Bauer|Critcher|Alter|Graham|Huang,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,5,Global,all,TRUE +1130,-0.891598520595219,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,4,3,3,2,2,4,1,2,3,4,3,1,3,3,5,1,2,4,4,4,3,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Anderson|Kay|Critcher|Ross.Slate1|Hauser|Graham|Alter|Inbar|Huang|Bauer|Rottenstrich|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,2,Global,all,TRUE +1133,-0.686243318670252,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,4,3,2,4,1,1,2,3,1,2,2,1,1,1,2,2,3,1,2,3,3,2,1,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Bauer|Miyamoto|Ross.Slate1|Kay|Alter|Inbar|Rottenstrich|VanLange|Critcher|Anderson|Huang|Hauser,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +1134,-0.063962273946678,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,4,6,3,1,1,3,3,1,1,3,3,1,1,4,1,4,1,1,4,3,3,1,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Rottenstrich|Ross.Slate1|Huang|Bauer|Critcher|VanLange|Kay|Graham|Hauser|Inbar|Alter|Anderson,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,13,Global,all,TRUE +1135,-0.771258549272079,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,5,2,2,4,3,1,2,2,1,2,3,4,3,1,3,2,3,1,3,2,4,4,1,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Kay|Hauser|Bauer|Rottenstrich|Ross.Slate1|Inbar|VanLange|Anderson|Graham|Huang|Miyamoto|Critcher,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,9,Global,all,TRUE +1138,-1.26105839005947,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,5,5,2,4,4,4,1,3,1,2,2,1,3,1,2,1,3,1,1,3,4,1,2,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Anderson|Miyamoto|Bauer|Graham|Rottenstrich|Kay|VanLange|Huang|Ross.Slate1|Inbar|Critcher|Hauser,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing,2,Global,all,TRUE +1140,-0.718400388907428,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,4,4,3,3,1,3,3,1,1,3,3,3,3,1,5,1,3,1,1,3,5,3,1,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Hauser|Kay|Bauer|Huang|Alter|Miyamoto|Inbar|Critcher|Rottenstrich|Graham|Ross.Slate1|Anderson,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,13,Global,all,TRUE +1141,-1.39141881391362,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,1,3,2,5,2,3,2,2,4,3,2,2,3,4,3,2,4,2,4,2,3,3,4,2,1,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Inbar|Huang|Anderson|VanLange|Bauer|Miyamoto|Rottenstrich|Ross.Slate1|Hauser|Kay|Alter|Graham,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,4,Global,all,TRUE +1142,-0.976220369448613,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,4,3,1,4,2,1,2,3,2,2,3,3,2,2,4,2,4,1,1,4,5,3,2,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Anderson|Critcher|Kay|Huang|Inbar|Ross.Slate1|Graham|VanLange|Alter|Bauer|Miyamoto|Rottenstrich,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,2,Global,all,TRUE +1145,0.29059126968187,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,5,3,3,5,3,1,3,3,1,2,4,5,2,1,3,1,5,1,2,4,5,4,2,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Graham|Huang|Alter|Ross.Slate1|Anderson|Kay|Miyamoto|Bauer|Hauser|Critcher|Inbar|Rottenstrich,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood,6,Global,all,TRUE +1147,-0.771258549272079,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,5,3,4,3,2,3,3,3,1,3,2,2,4,1,1,2,4,1,1,3,2,2,2,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Inbar|VanLange|Bauer|Huang|Kay|Ross.Slate1|Alter|Rottenstrich|Hauser|Miyamoto|Anderson|Graham,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +1148,0.199387893039842,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,3,1,2,5,2,4,4,3,4,3,4,4,3,4,4,4,3,4,3,2,4,3,3,2,4,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Kay|Rottenstrich|Graham|Alter|Critcher|Miyamoto|Ross.Slate1|Hauser|Bauer|Inbar|VanLange|Huang,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,1,Global,all,TRUE +1150,-0.532948092629433,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,3,2,2,3,4,3,4,3,3,4,3,3,4,2,4,4,3,2,4,3,3,3,4,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Rottenstrich|Ross.Slate1|Miyamoto|Bauer|Anderson|Kay|Alter|Graham|VanLange|Huang|Critcher|Hauser,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,6,Global,all,TRUE +1154,-0.669498887994379,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,2,2,3,4,2,2,3,3,3,3,4,1,3,3,3,3,4,1,3,3,3,3,3,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Critcher|Alter|Huang|Graham|Kay|Miyamoto|Ross.Slate1|Rottenstrich|Inbar|Anderson|Hauser|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,11,Global,all,TRUE +1155,-0.771258549272079,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,7,7,4,2,1,2,3,1,4,2,3,1,2,3,1,3,1,2,3,4,4,2,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Huang|Inbar|Critcher|Alter|Hauser|Rottenstrich|Graham|Bauer|Anderson|VanLange|Kay|Miyamoto,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,10,Global,all,TRUE +1157,-0.188261130192019,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,4,4,1,2,4,2,3,4,2,2,3,4,2,4,2,2,4,4,3,3,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|VanLange|Ross.Slate1|Miyamoto|Rottenstrich|Anderson|Huang|Alter|Kay|Hauser|Inbar|Bauer|Critcher,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,6,Global,all,TRUE +1159,-0.491962136090189,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,3,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Rottenstrich|Ross.Slate1|VanLange|Hauser|Critcher|Kay|Inbar|Huang|Alter|Graham|Anderson|Miyamoto,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,12,Global,all,TRUE +1161,-0.641820662859237,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,4,2,5,3,6,5,2,1,4,3,1,1,5,4,3,3,5,3,3,2,1,5,5,3,2,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Graham|Bauer|Kay|Alter|Huang|Inbar|Rottenstrich|Ross.Slate1|Hauser|Miyamoto|Critcher|VanLange,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,1,Global,all,TRUE +1162,-0.94866872274487,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,3,4,2,3,2,3,4,4,3,3,3,3,3,3,2,2,2,1,4,3,2,4,3,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Anderson|Alter|Kay|Miyamoto|Bauer|Critcher|Hauser|Huang|Graham|VanLange|Rottenstrich|Inbar,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +1163,-0.266425804217579,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,7,4,6,4,1,1,1,4,1,2,4,3,3,2,4,1,4,1,1,4,4,4,2,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Critcher|Kay|Graham|Bauer|Ross.Slate1|Alter|Inbar|Anderson|Rottenstrich|VanLange|Huang|Miyamoto,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,9,Global,all,TRUE +1165,-0.0449863566822056,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,5,3,2,4,3,2,3,3,2,2,3,3,2,2,4,2,2,1,3,4,3,2,2,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Miyamoto|Rottenstrich|Huang|Alter|Ross.Slate1|VanLange|Bauer|Hauser|Anderson|Inbar|Critcher|Graham,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,10,Global,all,TRUE +1167,-1.09722052583722,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,4,3,3,3,2,2,2,3,2,2,3,3,2,2,3,2,3,2,2,3,3,3,2,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Huang|Graham|Inbar|Critcher|Bauer|Alter|VanLange|Ross.Slate1|Rottenstrich|Hauser|Miyamoto|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,13,Global,all,TRUE +1168,-0.590016069308485,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,3,4,3,3,3,2,2,4,3,3,4,3,3,2,3,2,3,2,2,4,4,3,2,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Critcher|Inbar|Graham|Huang|Bauer|Miyamoto|Ross.Slate1|Hauser|VanLange|Rottenstrich|Alter|Kay,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,1,Global,all,TRUE +1170,-0.833730133965065,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,4,2,6,2,2,4,4,4,4,4,3,4,4,4,4,3,4,3,4,3,4,4,4,3,4,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|VanLange|Graham|Miyamoto|Kay|Inbar|Bauer|Ross.Slate1|Anderson|Alter|Critcher|Huang|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,9,Global,all,TRUE +1176,0.499118593032173,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,4,3,3,2,2,3,2,2,2,3,3,2,2,3,2,3,1,4,3,3,3,2,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Graham|Bauer|Hauser|Alter|Rottenstrich|Critcher|Miyamoto|Ross.Slate1|VanLange|Anderson|Kay|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,11,Global,all,TRUE +1179,-0.180752614020884,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,2,2,3,5,4,3,3,4,2,4,4,4,3,3,4,2,4,3,3,5,4,5,3,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Miyamoto|VanLange|Rottenstrich|Hauser|Anderson|Graham|Kay|Inbar|Critcher|Bauer|Ross.Slate1|Huang,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +1180,0.346354748154823,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,4,1,3,3,3,2,3,3,3,2,3,2,2,3,2,2,2,3,3,3,4,2,2,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Rottenstrich|Huang|Ross.Slate1|VanLange|Bauer|Graham|Alter|Kay|Critcher|Miyamoto|Hauser|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing,1,Global,all,TRUE +1181,-0.127894453656233,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,3,6,4,1,1,3,4,2,1,4,4,1,1,4,1,5,1,1,4,5,4,1,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Critcher|Graham|Anderson|Bauer|Ross.Slate1|Alter|Kay|Inbar|Miyamoto|VanLange|Rottenstrich|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,4,Global,all,TRUE +1182,-0.895290602200387,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,4,2,5,4,2,2,2,2,2,2,4,4,2,1,3,1,4,2,1,4,3,4,1,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Inbar|Miyamoto|Hauser|Huang|Anderson|Rottenstrich|Ross.Slate1|VanLange|Bauer|Kay|Graham|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,6,Global,all,TRUE +1183,-0.897268931926188,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,1,3,5,3,1,1,1,2,3,3,3,2,1,1,3,1,4,1,1,3,3,1,1,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|VanLange|Rottenstrich|Anderson|Critcher|Hauser|Ross.Slate1|Alter|Graham|Bauer|Miyamoto|Inbar|Kay,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,4,Global,all,TRUE +1184,-0.51527667357106,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,3,4,3,3,1,2,3,3,2,2,1,3,3,4,3,3,3,2,3,4,1,2,2,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Bauer|Inbar|VanLange|Miyamoto|Anderson|Ross.Slate1|Critcher|Alter|Hauser|Graham|Kay|Huang,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood,6,Global,all,TRUE +1188,-0.757684014550942,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,6,5,4,2,2,1,1,1,1,1,4,4,1,1,4,1,3,1,2,2,3,4,1,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|VanLange|Bauer|Rottenstrich|Critcher|Inbar|Graham|Kay|Alter|Ross.Slate1|Anderson|Huang,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,12,Global,all,TRUE +1190,-0.592656809570353,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,5,3,4,4,3,1,1,3,2,1,3,3,3,1,5,1,3,1,1,5,5,4,1,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Alter|VanLange|Anderson|Rottenstrich|Ross.Slate1|Hauser|Miyamoto|Inbar|Bauer|Graham|Kay|Critcher,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,4,Global,all,TRUE +1191,-0.316252068042529,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,2,1,3,3,4,2,1,1,1,1,1,3,2,2,2,1,2,1,3,1,1,2,2,2,1,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|VanLange|Hauser|Huang|Ross.Slate1|Bauer|Critcher|Graham|Anderson|Kay|Miyamoto|Inbar|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection,9,Global,all,TRUE +1193,-0.6333873837762,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,5,4,3,3,2,2,2,4,2,2,4,3,5,1,4,2,2,2,1,3,4,2,2,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Anderson|VanLange|Miyamoto|Huang|Bauer|Critcher|Alter|Hauser|Kay|Ross.Slate1|Rottenstrich|Inbar,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood,2,Global,all,TRUE +1200,-0.571306955361047,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,5,2,1,3,4,2,3,4,1,4,4,3,4,3,4,4,2,4,2,3,2,2,4,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Huang|Alter|Graham|Bauer|Kay|Inbar|Anderson|Hauser|Ross.Slate1|Rottenstrich|VanLange|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,8,Global,all,TRUE +1202,-1.03223700478436,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,2,2,3,3,3,3,3,3,2,3,3,2,3,3,3,3,1,2,3,3,1,3,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Ross.Slate1|Inbar|Huang|Bauer|Hauser|Kay|Rottenstrich|Alter|Miyamoto|Critcher|Graham|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,13,Global,all,TRUE +1206,-0.548892113354205,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,1,3,1,1,4,3,3,3,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|VanLange|Kay|Bauer|Anderson|Alter|Hauser|Rottenstrich|Graham|Miyamoto|Inbar|Critcher|Ross.Slate1,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +1213,-0.122224042325264,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,2,1,3,4,2,3,4,3,4,4,4,5,3,2,5,3,1,4,2,3,2,5,3,2,4,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|VanLange|Bauer|Graham|Hauser|Huang|Anderson|Kay|Miyamoto|Rottenstrich|Critcher|Inbar|Alter,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,7,Global,all,TRUE +1215,-0.760322529342211,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,4,2,2,4,4,1,3,3,1,3,3,3,4,2,2,2,3,2,4,4,3,2,2,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Kay|Graham|Huang|Hauser|Critcher|Inbar|Anderson|Miyamoto|Bauer|VanLange|Alter|Rottenstrich,ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE,8,Global,all,TRUE +1216,0.215725295513046,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,4,2,1,3,1,1,2,4,2,1,2,3,4,1,4,1,3,1,1,4,4,2,1,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Huang|Alter|VanLange|Kay|Ross.Slate1|Critcher|Miyamoto|Inbar|Anderson|Hauser|Rottenstrich|Bauer,ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,10,Global,all,TRUE +1220,-0.607420685049825,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,6,3,6,4,2,2,2,3,2,3,3,4,4,3,4,4,4,2,4,4,4,3,4,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Hauser|Alter|Graham|VanLange|Ross.Slate1|Critcher|Bauer|Kay|Rottenstrich|Huang|Inbar|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing,13,Global,all,TRUE +1222,-0.11669385587993,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,5,6,6,3,3,2,3,4,1,2,3,4,2,1,4,1,3,1,1,4,4,4,2,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Hauser|Kay|Bauer|Miyamoto|Inbar|Alter|Anderson|VanLange|Ross.Slate1|Rottenstrich|Huang|Graham,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,8,Global,all,TRUE +1224,-0.837295637138834,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,4,2,4,4,5,3,3,3,3,2,3,3,2,3,4,3,4,4,3,3,2,2,4,4,2,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Hauser|Anderson|Huang|Critcher|Inbar|Alter|Rottenstrich|Miyamoto|Bauer|Ross.Slate1|Kay|VanLange,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,3,Global,all,TRUE +1227,-0.858910069194574,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,5,6,4,4,3,3,3,3,2,2,4,3,2,2,4,2,3,2,2,4,4,3,3,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Graham|Bauer|Hauser|Alter|Anderson|Miyamoto|Huang|Inbar|Rottenstrich|Ross.Slate1|VanLange|Critcher,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,6,Global,all,TRUE +1234,-0.67568925950518,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,5,2,4,3,3,3,5,2,4,3,2,4,3,3,2,4,4,5,5,2,4,3,3,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Critcher|Ross.Slate1|Anderson|Kay|Hauser|Miyamoto|Alter|Graham|VanLange|Huang|Bauer|Inbar,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,4,Global,all,TRUE +1237,-0.225301848263298,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,2,5,1,1,1,1,1,1,1,1,1,3,1,1,2,1,4,2,3,1,1,1,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Alter|Rottenstrich|Huang|Ross.Slate1|Inbar|VanLange|Anderson|Critcher|Hauser|Bauer|Graham|Kay,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,8,Global,all,TRUE +1240,-0.871302233199813,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,3,3,5,3,2,2,4,2,3,4,2,4,2,3,2,4,2,4,3,4,2,3,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Graham|Hauser|Anderson|Alter|VanLange|Rottenstrich|Miyamoto|Critcher|Kay|Ross.Slate1|Huang|Inbar,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,4,Global,all,TRUE +1245,-1.20491517629232,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,2,4,2,3,4,2,3,1,4,4,1,3,3,2,2,1,2,1,3,4,2,1,1,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Graham|Anderson|Huang|Miyamoto|Ross.Slate1|Bauer|Kay|Inbar|VanLange|Critcher|Hauser|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,3,Global,all,TRUE +1246,-1.236145258147,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,5,3,3,4,1,2,2,4,2,2,4,4,3,1,4,3,4,1,1,4,5,3,3,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Anderson|Hauser|Miyamoto|VanLange|Ross.Slate1|Graham|Kay|Rottenstrich|Huang|Inbar|Critcher|Bauer,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection,2,Global,all,TRUE +1251,-0.172050306150214,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,6,6,3,2,2,3,1,2,2,3,3,4,2,2,3,2,3,2,2,3,4,3,2,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Rottenstrich|Inbar|Ross.Slate1|VanLange|Kay|Miyamoto|Hauser|Anderson|Bauer|Graham|Critcher|Alter,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +1252,-2.55898717906747,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,3,1,5,3,2,3,2,3,2,3,3,4,2,2,4,2,4,2,2,3,4,4,2,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Inbar|Bauer|Critcher|Rottenstrich|Miyamoto|Alter|Anderson|Kay|Huang|VanLange|Ross.Slate1|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,8,Global,all,TRUE +1256,-0.506321208837592,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,hunancomp,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,4,1,1,5,3,1,3,4,3,3,3,2,2,4,2,1,2,1,1,4,4,2,2,hunancomp,hunancomp,hunancomp,China,"Guangdong Literature & Art Vocational College, Guangzhou, China",Chinese (simplified),0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Huang|Anderson|Inbar|Kay|Hauser|Miyamoto|Bauer|Alter|VanLange|Rottenstrich|Ross.Slate1|Critcher,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,3,Global,all,TRUE +1257,-0.408787235799128,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,henan,,,,,,,,,,,,,,,,,,,,,,,,,,1,4,2,4,1,1,5,5,5,1,3,4,3,1,3,3,1,1,1,3,5,1,2,1,5,henan,henan,henan,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Online (at home),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Huang|VanLange|Hauser|Anderson|Graham|Ross.Slate1|Critcher|Rottenstrich|Kay|Miyamoto|Bauer|Alter,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,5,Global,all,TRUE +1260,-0.58145398632345,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,henan,,,,,,,,,,,,,,,,,,,,,,,,,,1,4,5,6,7,2,3,2,4,1,1,4,1,1,3,1,2,2,4,1,4,1,2,2,2,henan,henan,henan,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Online (at home),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Critcher|Rottenstrich|Alter|Graham|Hauser|Inbar|Huang|Ross.Slate1|Kay|VanLange|Bauer|Anderson,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,13,Global,all,TRUE +1261,0.354916831139858,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,henan,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,5,3,6,4,3,2,4,4,3,3,3,2,2,2,4,3,3,2,2,4,4,2,2,henan,henan,henan,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Online (at home),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Critcher|Alter|Ross.Slate1|Rottenstrich|Bauer|Graham|Hauser|Inbar|Miyamoto|VanLange|Huang|Kay,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,1,Global,all,TRUE +1263,-0.415637792375395,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,henan,,,,,,,,,,,,,,,,,,,,,,,,,,6,4,6,6,3,4,2,1,3,4,1,2,5,3,2,1,4,1,4,1,3,5,5,4,2,henan,henan,henan,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Online (at home),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Alter|VanLange|Ross.Slate1|Graham|Kay|Inbar|Miyamoto|Hauser|Huang|Critcher|Bauer|Anderson,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,13,Global,all,TRUE +1268,0.0828643562826691,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,henan,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,3,2,4,2,3,2,2,2,3,3,2,3,3,2,1,2,2,3,2,3,3,2,3,henan,henan,henan,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Online (at home),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Alter|Graham|Hauser|Critcher|Anderson|Inbar|Ross.Slate1|VanLange|Bauer|Kay|Miyamoto|Huang,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,6,Global,all,TRUE +1269,0.56251716610766,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,henan,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,1,1,3,3,4,4,3,3,3,3,3,3,3,3,4,3,4,3,3,3,3,3,henan,henan,henan,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Online (at home),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Inbar|Hauser|Ross.Slate1|Kay|Bauer|Alter|Miyamoto|VanLange|Rottenstrich|Anderson|Critcher|Graham,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +1271,-1.18790394229942,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,henan,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,3,2,2,3,2,1,2,3,2,2,2,3,2,2,3,1,2,1,1,4,3,2,2,henan,henan,henan,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Online (at home),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|VanLange|Kay|Alter|Huang|Miyamoto|Critcher|Ross.Slate1|Graham|Rottenstrich|Hauser|Bauer|Inbar,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood,1,Global,all,TRUE +1272,-0.2262266111752,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,henan,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,5,2,4,5,2,1,3,5,1,2,2,3,2,1,4,2,3,1,2,5,5,3,1,henan,henan,henan,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Online (at home),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Ross.Slate1|Anderson|Rottenstrich|Kay|Graham|Critcher|Hauser|Bauer|VanLange|Miyamoto|Inbar|Alter,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,3,Global,all,TRUE +1273,0.460366348552127,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,henan,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,6,2,3,4,4,2,2,4,2,3,3,2,2,4,4,1,5,1,2,3,5,5,2,henan,henan,henan,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Online (at home),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Kay|Inbar|Critcher|Ross.Slate1|Rottenstrich|Bauer|Miyamoto|Anderson|Huang|Graham|Alter|VanLange,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,9,Global,all,TRUE +1274,0.631979532262549,Low,ML2_Slate1_Chinese_Mainland_execution_legal_DEPLOY_r.csv,henan,,,,,,,,,,,,,,,,,,,,,,,,,,4,2,2,1,1,3,1,3,2,2,3,2,3,2,3,3,3,2,2,4,2,2,3,3,2,henan,henan,henan,China,"Shanghai International Studies University, SISU Intercultural Institute, Shanghai, China",Chinese (simplified),0,legal,Yes,Online (at home),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|VanLange|Graham|Inbar|Huang|Miyamoto|Kay|Critcher|Anderson|Alter|Rottenstrich|Bauer|Ross.Slate1,ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,9,Global,all,TRUE +1277,0.280444238719467,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,5,6,4,4,1,1,2,1,1,1,2,2,1,1,3,1,5,1,1,4,3,4,1,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|VanLange|Anderson|Graham|Critcher|Bauer|Rottenstrich|Kay|Miyamoto|Inbar|Ross.Slate1|Huang|Alter,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing,3,Global,all,TRUE +1278,0.396700972159605,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,5,2,5,2,4,3,2,1,2,3,2,1,2,1,3,2,2,1,3,1,1,2,2,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Miyamoto|Critcher|Alter|Inbar|Ross.Slate1|Graham|Huang|Bauer|VanLange|Anderson|Rottenstrich|Hauser,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,11,Global,all,TRUE +1279,-0.293710647604288,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,4,5,3,1,1,1,2,1,1,3,4,1,1,3,1,4,1,1,4,3,1,1,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Hauser|Alter|Inbar|Ross.Slate1|Bauer|Graham|Rottenstrich|Miyamoto|Critcher|VanLange|Kay|Anderson,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +1282,0.0503024833134239,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,7,6,6,5,1,1,3,1,1,2,4,4,1,1,4,1,5,1,1,4,4,4,1,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Inbar|Alter|Hauser|VanLange|Anderson|Kay|Critcher|Miyamoto|Bauer|Huang|Ross.Slate1|Graham,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +1283,0.0276344844437836,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,5,2,4,1,1,4,2,1,2,3,3,3,1,2,1,4,1,3,4,3,2,2,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Inbar|Miyamoto|Anderson|Hauser|Alter|Rottenstrich|Huang|VanLange|Critcher|Graham|Ross.Slate1|Kay,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,4,Global,all,TRUE +1284,0.0500493264506258,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,3,7,6,3,3,4,1,1,1,1,1,1,1,1,2,1,2,2,4,1,3,1,1,1,2,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Kay|Anderson|Alter|Ross.Slate1|VanLange|Graham|Rottenstrich|Miyamoto|Critcher|Huang|Inbar|Bauer,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,3,Global,all,TRUE +1286,-0.138575091252704,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,6,6,2,2,1,2,1,1,1,2,2,1,1,2,1,2,1,1,2,2,2,1,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Alter|Inbar|Ross.Slate1|Bauer|Anderson|Kay|Huang|Critcher|Rottenstrich|VanLange|Miyamoto|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,6,Global,all,TRUE +1288,-0.0937590536932562,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,5,4,3,2,1,1,1,1,1,3,3,1,1,3,1,3,1,1,2,2,3,2,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Rottenstrich|VanLange|Alter|Ross.Slate1|Huang|Anderson|Bauer|Miyamoto|Inbar|Kay|Critcher|Graham,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,7,Global,all,TRUE +1289,-0.132117916424869,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,5,6,5,3,1,1,4,1,1,1,3,3,1,1,2,1,5,1,1,2,3,4,2,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Ross.Slate1|Hauser|Huang|Inbar|Critcher|Kay|Anderson|Alter|Bauer|VanLange|Rottenstrich|Graham,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,8,Global,all,TRUE +1290,-0.655926578743842,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,3,1,5,1,1,4,3,1,1,2,2,3,1,4,1,5,1,1,4,4,4,3,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Inbar|Huang|Anderson|Alter|Hauser|Critcher|Rottenstrich|Kay|Bauer|Miyamoto|Graham|Ross.Slate1,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,4,Global,all,TRUE +1292,-0.747663562019938,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,4,5,3,4,2,1,3,1,1,2,3,1,2,1,3,1,4,1,1,2,3,1,2,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Kay|Inbar|Bauer|Huang|VanLange|Hauser|Rottenstrich|Alter|Ross.Slate1|Graham|Critcher|Miyamoto,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,1,Global,all,TRUE +1300,-0.68888183346152,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,4,6,4,1,1,3,1,1,1,2,2,1,1,4,1,4,1,1,3,2,2,1,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Hauser|VanLange|Miyamoto|Rottenstrich|Ross.Slate1|Huang|Graham|Kay|Inbar|Bauer|Alter|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,1,Global,all,TRUE +1305,0.593227287782503,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,6,5,4,1,1,4,2,1,2,4,4,2,1,4,1,4,1,1,4,4,4,2,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Alter|Bauer|Kay|Rottenstrich|Inbar|Graham|Hauser|VanLange|Critcher|Miyamoto|Huang|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,1,Global,all,TRUE +1306,-0.771789930435547,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,7,7,5,1,1,1,2,1,1,5,1,1,1,5,1,5,1,1,5,5,3,1,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Critcher|Alter|Ross.Slate1|Bauer|Miyamoto|Anderson|Inbar|Hauser|Huang|Kay|Graham|Rottenstrich,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,7,Global,all,TRUE +1307,-0.0186262762073975,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,5,5,3,5,1,1,5,4,2,2,3,3,2,1,4,1,5,1,2,3,3,3,3,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Anderson|VanLange|Graham|Inbar|Miyamoto|Huang|Ross.Slate1|Kay|Bauer|Rottenstrich|Alter|Hauser,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,2,Global,all,TRUE +1308,-1.15692924277814,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,4,4,2,5,1,1,1,1,2,1,5,2,2,2,1,1,5,1,3,3,3,1,2,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Inbar|Graham|Bauer|Hauser|Critcher|VanLange|Alter|Miyamoto|Anderson|Rottenstrich|Huang|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,10,Global,all,TRUE +1309,0.734130349818083,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,4,4,1,1,2,1,1,1,3,4,1,1,4,1,5,1,1,1,3,3,1,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|VanLange|Anderson|Critcher|Bauer|Graham|Huang|Rottenstrich|Ross.Slate1|Miyamoto|Inbar|Alter|Hauser,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +1316,-0.716026451962594,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,5,3,3,1,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Graham|Alter|Hauser|VanLange|Huang|Rottenstrich|Anderson|Miyamoto|Inbar|Ross.Slate1|Bauer|Critcher,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE,8,Global,all,TRUE +1317,-0.716955665815694,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,4,2,1,4,4,3,2,3,4,2,1,4,1,4,1,2,4,4,3,2,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Ross.Slate1|Bauer|VanLange|Graham|Inbar|Alter|Huang|Miyamoto|Anderson|Critcher|Kay|Hauser,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +1323,0.224427603383716,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,6,4,4,4,1,1,3,1,1,1,3,3,1,1,3,1,3,1,1,3,1,3,1,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Graham|Hauser|Ross.Slate1|Critcher|Inbar|Huang|VanLange|Bauer|Kay|Anderson|Alter|Rottenstrich,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +1325,0.283082753510735,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,3,2,2,4,1,2,3,1,1,3,1,2,3,1,4,1,5,1,2,1,1,5,2,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Hauser|Anderson|Kay|Miyamoto|Huang|Bauer|Critcher|Alter|VanLange|Inbar|Ross.Slate1|Rottenstrich,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,3,Global,all,TRUE +1326,0.786988510182734,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,6,4,2,4,2,1,3,1,2,1,3,2,2,1,3,1,4,1,1,1,1,2,3,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Inbar|Alter|Kay|VanLange|Graham|Huang|Anderson|Critcher|Ross.Slate1|Miyamoto|Hauser|Bauer,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +1328,-0.642087466176271,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,7,6,7,3,1,1,3,1,1,1,2,4,1,1,4,1,4,1,1,1,3,3,1,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Graham|Inbar|Huang|Anderson|Alter|Miyamoto|Kay|Hauser|Bauer|Critcher|Rottenstrich|VanLange,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,5,Global,all,TRUE +1329,-0.304124481883725,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,5,4,1,1,3,1,1,1,5,2,1,1,1,1,4,1,1,1,2,3,1,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|VanLange|Ross.Slate1|Kay|Critcher|Huang|Anderson|Inbar|Rottenstrich|Bauer|Miyamoto|Hauser|Graham,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,7,Global,all,TRUE +1330,0.261074939706562,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,4,2,4,1,1,4,1,1,1,3,1,4,1,2,1,4,1,1,3,2,2,3,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Inbar|Alter|Anderson|Graham|Critcher|Hauser|Huang|Kay|Rottenstrich|Miyamoto|Ross.Slate1|Bauer,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +1332,0.224820985132149,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,3,4,2,4,3,1,3,1,4,2,3,2,3,1,2,1,3,1,4,2,3,2,2,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Bauer|Kay|Hauser|Miyamoto|Inbar|Critcher|Anderson|Rottenstrich|Huang|Graham|Alter|Ross.Slate1,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing,8,Global,all,TRUE +1338,-0.171530345970382,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,5,4,3,2,2,1,2,1,2,1,3,4,2,2,4,1,5,1,1,2,3,5,1,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Miyamoto|Alter|Rottenstrich|Bauer|Anderson|Kay|Ross.Slate1|Critcher|Inbar|Graham|Huang|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,6,Global,all,TRUE +1339,0.454695937221158,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,5,4,2,1,2,2,2,1,1,3,2,2,2,2,3,1,1,2,2,1,1,1,1,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Anderson|Kay|Miyamoto|Bauer|Ross.Slate1|Hauser|Graham|Critcher|VanLange|Rottenstrich|Inbar|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,2,Global,all,TRUE +1341,-0.2262266111752,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,3,3,2,1,1,2,1,1,1,1,5,1,1,5,1,3,4,1,1,4,5,1,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Huang|Inbar|Rottenstrich|Miyamoto|Alter|Anderson|Hauser|Bauer|Kay|Critcher|Graham|Ross.Slate1,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,7,Global,all,TRUE +1342,-0.231897022506169,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,3,2,3,1,1,1,1,1,1,3,1,1,1,3,1,3,1,2,3,2,3,1,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Alter|Huang|VanLange|Graham|Kay|Hauser|Bauer|Inbar|Critcher|Ross.Slate1|Anderson|Rottenstrich,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,12,Global,all,TRUE +1346,0.185548780472271,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,4,2,2,2,1,1,4,1,1,1,1,3,1,1,3,1,4,1,1,1,2,2,1,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Anderson|Hauser|Huang|Inbar|Critcher|Rottenstrich|Ross.Slate1|Graham|Bauer|Kay|Miyamoto|VanLange,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,2,Global,all,TRUE +1347,0.346087944837789,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,5,4,4,1,1,4,1,1,1,2,4,1,1,3,1,4,1,1,1,2,3,1,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Critcher|Alter|Hauser|Huang|Kay|VanLange|Bauer|Miyamoto|Ross.Slate1|Graham|Rottenstrich|Anderson,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,13,Global,all,TRUE +1348,0.798062529527638,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,6,6,6,4,2,1,3,3,1,1,4,3,1,1,4,1,4,1,1,2,4,3,1,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|VanLange|Anderson|Bauer|Hauser|Graham|Alter|Kay|Ross.Slate1|Rottenstrich|Inbar|Critcher|Huang,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,3,Global,all,TRUE +1349,-0.3258791388251,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,7,4,4,2,1,1,4,1,1,1,2,4,1,1,3,1,4,2,1,2,3,3,1,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Critcher|Kay|Rottenstrich|Huang|Miyamoto|Anderson|Graham|Ross.Slate1|Bauer|VanLange|Inbar|Alter,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,7,Global,all,TRUE +1352,-0.0717512398890829,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,5,7,6,3,1,1,2,2,1,1,2,4,1,3,2,2,4,2,1,1,1,3,3,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Critcher|Graham|Anderson|Inbar|Alter|VanLange|Ross.Slate1|Hauser|Miyamoto|Huang|Rottenstrich|Bauer,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +1356,0.498191604649672,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,6,2,3,2,1,1,2,1,2,1,3,2,3,1,3,1,4,1,3,2,4,2,1,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Ross.Slate1|Graham|Bauer|Critcher|Kay|VanLange|Inbar|Alter|Hauser|Rottenstrich|Huang|Miyamoto,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,1,Global,all,TRUE +1360,-0.561424502245078,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,5,5,2,1,4,4,3,2,3,4,2,2,4,1,4,1,1,4,4,4,2,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Kay|Ross.Slate1|Hauser|Critcher|Huang|Bauer|Rottenstrich|VanLange|Inbar|Miyamoto|Graham|Alter,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,1,Global,all,TRUE +1361,-0.726049129964198,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,5,1,2,1,2,5,2,1,1,2,4,1,1,4,1,5,2,1,3,4,4,2,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Hauser|Miyamoto|Ross.Slate1|Inbar|Bauer|Rottenstrich|Graham|Anderson|VanLange|Huang|Critcher|Alter,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,9,Global,all,TRUE +1366,-0.073996372931918,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,6,4,7,5,1,1,5,4,1,1,4,4,1,1,4,1,5,1,1,4,5,4,1,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Critcher|Anderson|Kay|Ross.Slate1|Inbar|Miyamoto|VanLange|Alter|Graham|Rottenstrich|Huang|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,3,Global,all,TRUE +1369,-0.765321334624076,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,5,7,5,1,1,1,1,1,1,1,3,4,1,1,3,1,2,1,1,1,1,3,1,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Hauser|Rottenstrich|Ross.Slate1|Critcher|Alter|Inbar|Huang|VanLange|Kay|Anderson|Miyamoto|Graham,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +1371,0.111596148231711,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,5,5,1,1,3,1,2,1,1,2,1,2,4,1,2,1,1,1,1,1,1,3,1,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|VanLange|Huang|Hauser|Kay|Alter|Miyamoto|Inbar|Anderson|Graham|Bauer|Ross.Slate1|Critcher,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +1374,0.0559728946443925,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,6,5,7,3,1,1,2,1,1,1,1,2,1,1,1,1,3,1,1,1,2,1,1,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Inbar|Hauser|Graham|VanLange|Huang|Anderson|Critcher|Ross.Slate1|Miyamoto|Rottenstrich|Alter|Bauer,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,7,Global,all,TRUE +1375,-0.15781781183421,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,6,4,4,1,1,3,1,1,1,4,3,1,1,3,1,3,1,1,2,3,3,1,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Inbar|Critcher|Alter|VanLange|Hauser|Graham|Rottenstrich|Huang|Miyamoto|Anderson|Kay|Bauer,ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +1378,-0.206857312162294,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,6,6,3,5,3,1,5,1,1,3,1,3,2,1,2,3,5,1,2,1,2,2,4,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Rottenstrich|Alter|Graham|Huang|Ross.Slate1|VanLange|Kay|Miyamoto|Inbar|Critcher|Bauer|Hauser,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,1,Global,all,TRUE +1380,0.235895004477052,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,5,1,3,3,1,5,3,5,2,3,1,5,2,2,1,4,3,5,2,3,2,4,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Critcher|Huang|Ross.Slate1|Graham|VanLange|Rottenstrich|Inbar|Alter|Miyamoto|Bauer|Anderson|Hauser,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,12,Global,all,TRUE +1381,0.658870993900826,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,5,6,6,2,1,1,1,1,1,2,4,3,1,1,3,1,3,1,1,4,3,3,1,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Anderson|Inbar|Critcher|Huang|Hauser|Alter|Ross.Slate1|Graham|Bauer|Rottenstrich|Kay|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,2,Global,all,TRUE +1387,-0.555880669345508,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,5,5,3,4,1,1,3,2,1,1,3,4,1,1,3,1,4,1,1,2,1,3,1,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Huang|Bauer|Kay|Alter|Critcher|Hauser|Miyamoto|Rottenstrich|Inbar|Ross.Slate1|Graham|Anderson,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,13,Global,all,TRUE +1391,0.576623081992265,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,6,4,2,4,1,1,3,1,3,1,4,5,2,1,3,1,3,1,1,4,4,3,2,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Kay|Ross.Slate1|Anderson|Bauer|VanLange|Alter|Rottenstrich|Miyamoto|Inbar|Huang|Graham|Critcher,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,4,Global,all,TRUE +1395,0.451397237364423,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,5,2,5,1,1,2,3,1,1,1,4,2,1,3,2,4,1,2,3,3,3,1,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Bauer|Huang|Anderson|VanLange|Graham|Critcher|Ross.Slate1|Hauser|Miyamoto|Kay|Inbar|Rottenstrich,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,4,Global,all,TRUE +1396,-0.0518483342421098,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,5,4,4,4,2,1,3,3,2,3,2,3,3,1,2,3,3,1,2,2,4,3,3,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Miyamoto|Kay|Critcher|Inbar|Hauser|Graham|VanLange|Rottenstrich|Alter|Bauer|Huang|Ross.Slate1,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +1399,0.2776791454968,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,4,3,2,4,4,2,1,2,2,4,1,3,3,2,1,1,2,1,1,3,1,1,3,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Bauer|VanLange|Miyamoto|Inbar|Alter|Ross.Slate1|Critcher|Graham|Rottenstrich|Hauser|Kay|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,1,Global,all,TRUE +1401,0.252499210267291,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,1,3,3,4,2,5,2,2,1,2,5,4,2,1,4,1,3,1,2,1,4,1,2,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Alter|Graham|Hauser|Miyamoto|Rottenstrich|VanLange|Kay|Critcher|Inbar|Huang|Ross.Slate1|Bauer,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five,1,Global,all,TRUE +1402,-0.474026139185381,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,6,5,3,1,1,1,2,1,1,1,2,3,1,1,2,1,3,1,1,1,2,3,1,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Anderson|Kay|Critcher|Inbar|VanLange|Hauser|Graham|Alter|Bauer|Miyamoto|Rottenstrich|Huang,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,2,Global,all,TRUE +1404,0.318142916385613,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,5,5,5,5,3,2,4,5,1,3,4,2,1,1,3,1,4,1,1,3,2,2,1,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Inbar|Bauer|Critcher|Huang|VanLange|Rottenstrich|Kay|Ross.Slate1|Anderson|Alter|Miyamoto|Graham,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,10,Global,all,TRUE +1406,-0.354484352342743,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,7,3,3,1,1,4,2,1,1,3,3,2,3,1,1,4,1,1,1,2,3,1,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Hauser|Bauer|Kay|Inbar|Ross.Slate1|Rottenstrich|VanLange|Miyamoto|Critcher|Graham|Anderson|Alter,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,12,Global,all,TRUE +1409,0.000349641057074264,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,7,4,7,4,1,1,3,1,1,1,4,5,2,1,4,1,4,1,1,3,4,4,3,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Alter|VanLange|Anderson|Huang|Graham|Inbar|Rottenstrich|Bauer|Kay|Miyamoto|Hauser|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,4,Global,all,TRUE +1412,-0.324687572596165,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,4,5,2,3,3,1,4,1,2,3,2,2,1,1,2,1,4,1,1,1,4,2,1,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Ross.Slate1|Inbar|VanLange|Kay|Alter|Graham|Anderson|Critcher|Hauser|Rottenstrich|Huang|Bauer,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,8,Global,all,TRUE +1414,0.0977570356641397,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,6,5,2,3,2,1,2,1,1,1,2,2,1,1,3,1,3,1,1,1,3,3,1,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Kay|Alter|Rottenstrich|Graham|Huang|Bauer|Inbar|Critcher|VanLange|Anderson|Hauser|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood,11,Global,all,TRUE +1416,0.396307590411172,Low,ML2_Slate1_Czech_execution_illegal_r.csv,purkyne,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,6,5,7,3,1,3,3,1,1,2,5,5,1,1,4,1,3,1,2,2,2,4,1,purkyne,purkyne,purkyne,Czech Republic,"The University of J. E. Purkyně, Ústí nad Labem, Czech Republic",Czech,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Rottenstrich|Critcher|VanLange|Bauer|Miyamoto|Anderson|Inbar|Huang|Graham|Alter|Hauser|Ross.Slate1,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,7,Global,all,TRUE +1417,-0.0529019010560097,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,3,3,2,1,3,2,2,1,3,3,2,3,3,1,4,1,2,3,3,4,1,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Hauser|Bauer|Graham|Critcher|Inbar|Ross.Slate1|Miyamoto|Anderson|Rottenstrich|Kay|VanLange|Huang,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,9,Global,all,TRUE +1425,-0.28896722465582,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,5,5,4,1,1,2,3,1,1,1,3,1,1,3,1,4,1,1,3,3,3,1,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|VanLange|Bauer|Huang|Critcher|Kay|Anderson|Hauser|Rottenstrich|Graham|Alter|Ross.Slate1|Inbar,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood,7,Global,all,TRUE +1426,-0.990326285333218,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,5,4,4,3,4,3,2,4,3,2,5,3,3,4,4,4,5,4,4,2,5,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Hauser|Ross.Slate1|Huang|Critcher|Rottenstrich|Miyamoto|Graham|VanLange|Bauer|Anderson|Alter|Kay,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,11,Global,all,TRUE +1429,0.831144362676716,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,3,2,1,4,5,4,4,2,3,1,4,2,4,3,2,4,1,1,1,2,2,3,4,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Miyamoto|Huang|Ross.Slate1|VanLange|Rottenstrich|Graham|Bauer|Hauser|Alter|Critcher|Inbar|Kay,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,1,Global,all,TRUE +1430,0.490809666909936,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,6,4,1,3,1,4,4,1,2,1,2,2,2,2,1,2,2,1,1,1,1,1,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Huang|Miyamoto|Hauser|Rottenstrich|Critcher|Graham|Inbar|Anderson|Ross.Slate1|VanLange|Alter|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,9,Global,all,TRUE +1433,0.202939749759374,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,5,6,3,1,1,4,1,1,1,3,1,2,1,2,1,4,1,3,2,3,1,1,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Alter|Huang|VanLange|Bauer|Kay|Graham|Critcher|Miyamoto|Ross.Slate1|Rottenstrich|Anderson|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,12,Global,all,TRUE +1436,0.398679301885407,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,6,6,3,1,1,4,1,1,1,3,4,1,1,3,1,4,1,1,3,4,3,1,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Anderson|Rottenstrich|Huang|Bauer|Critcher|Miyamoto|Graham|Inbar|VanLange|Alter|Kay|Ross.Slate1,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,2,Global,all,TRUE +1438,-0.0242966875383667,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,5,5,4,1,1,2,2,1,1,4,3,1,1,4,1,4,1,3,4,4,3,1,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Graham|Rottenstrich|VanLange|Hauser|Miyamoto|Huang|Anderson|Bauer|Alter|Critcher|Inbar|Ross.Slate1,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,8,Global,all,TRUE +1442,0.60679959703304,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,7,5,4,1,1,2,3,1,1,4,3,1,1,4,1,3,1,2,4,2,3,1,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Anderson|Critcher|Rottenstrich|Bauer|Graham|Miyamoto|Inbar|Kay|VanLange|Alter|Huang|Ross.Slate1,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,2,Global,all,TRUE +1444,0.062961450635696,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,4,5,2,3,2,2,1,2,3,1,3,1,2,1,2,2,1,1,3,3,3,2,2,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|VanLange|Kay|Hauser|Graham|Alter|Huang|Bauer|Anderson|Inbar|Ross.Slate1|Miyamoto|Rottenstrich,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +1445,-0.561817883993511,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,7,5,3,2,1,2,2,1,1,2,2,1,1,3,1,2,1,3,2,2,3,1,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Bauer|Alter|Graham|Ross.Slate1|Anderson|Miyamoto|Kay|Rottenstrich|Hauser|Critcher|Huang|VanLange,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,6,Global,all,TRUE +1448,0.346481326586222,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,6,5,5,4,2,1,4,2,1,1,3,2,2,1,2,1,4,1,4,3,3,1,1,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Hauser|Alter|Graham|VanLange|Anderson|Inbar|Critcher|Huang|Ross.Slate1|Kay|Rottenstrich|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,6,Global,all,TRUE +1450,0.274773827388498,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,5,2,3,3,1,4,3,3,4,4,4,3,3,3,3,4,1,4,3,4,3,3,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Critcher|Anderson|Hauser|Rottenstrich|Huang|Inbar|Ross.Slate1|Graham|Kay|VanLange|Bauer|Miyamoto,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,3,Global,all,TRUE +1452,-0.523065639513465,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,4,4,2,1,4,1,1,1,1,2,1,1,4,1,4,1,1,4,2,2,1,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|VanLange|Miyamoto|Kay|Rottenstrich|Anderson|Bauer|Inbar|Ross.Slate1|Huang|Graham|Alter|Critcher,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +1453,-2.40292463433338,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,7,6,2,2,1,3,3,1,3,2,3,3,2,2,1,3,1,3,3,3,4,1,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Critcher|VanLange|Ross.Slate1|Graham|Rottenstrich|Anderson|Hauser|Bauer|Kay|Miyamoto|Huang|Alter,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +1454,-0.0878354854994888,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,5,5,4,2,2,2,4,2,3,2,3,3,3,3,3,3,4,2,2,3,4,3,3,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Bauer|Alter|Miyamoto|Ross.Slate1|Inbar|Hauser|Huang|Anderson|Critcher|Rottenstrich|VanLange|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,9,Global,all,TRUE +1456,0.471300143011396,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,5,3,4,1,1,1,4,1,1,1,2,3,1,1,4,1,4,1,1,1,2,2,1,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Ross.Slate1|Huang|Rottenstrich|Anderson|Critcher|Kay|Alter|Inbar|Graham|Bauer|VanLange|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,5,Global,all,TRUE +1457,-1.20201208365462,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,6,5,4,4,1,3,4,1,2,4,4,3,2,3,1,3,1,4,4,4,3,1,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Graham|Hauser|Rottenstrich|Inbar|VanLange|Kay|Alter|Anderson|Huang|Critcher|Miyamoto|Ross.Slate1,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,9,Global,all,TRUE +1458,-0.587250976085818,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,2,1,1,4,1,1,1,1,2,1,1,2,1,4,1,1,3,4,1,1,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Rottenstrich|Alter|Bauer|Inbar|Ross.Slate1|Miyamoto|VanLange|Anderson|Huang|Critcher|Kay|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,9,Global,all,TRUE +1459,-0.113661959340229,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,1,3,5,5,1,4,4,2,3,1,1,1,1,2,5,1,1,1,4,3,5,1,2,2,1,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Bauer|Inbar|Critcher|Rottenstrich|Alter|VanLange|Hauser|Miyamoto|Huang|Kay|Graham|Ross.Slate1,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,1,Global,all,TRUE +1461,0.653860767635323,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,6,5,5,4,2,1,3,3,2,1,3,3,2,1,3,1,3,1,2,3,2,3,1,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Miyamoto|Hauser|Bauer|Graham|Anderson|Inbar|Kay|Rottenstrich|VanLange|Critcher|Huang|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five,6,Global,all,TRUE +1462,0.659657757397692,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,6,3,3,1,3,3,2,1,2,3,1,1,3,1,3,1,2,2,2,1,1,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Alter|Huang|Rottenstrich|Anderson|Bauer|Graham|Hauser|Critcher|Miyamoto|Ross.Slate1|Inbar|Kay,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing,5,Global,all,TRUE +1463,-1.45877849738191,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,3,4,4,2,2,2,2,2,1,4,4,1,3,4,2,2,1,1,4,4,3,2,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Alter|Ross.Slate1|VanLange|Inbar|Rottenstrich|Kay|Hauser|Bauer|Huang|Graham|Miyamoto|Anderson,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,13,Global,all,TRUE +1465,0.0603229358444281,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,3,2,1,3,2,3,3,2,1,2,1,2,2,1,2,1,1,1,2,2,3,1,1,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Inbar|Alter|Rottenstrich|Hauser|Graham|Bauer|Critcher|Kay|VanLange|Ross.Slate1|Huang|Miyamoto,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +1466,0.104478788338409,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,4,4,3,2,1,2,1,1,1,1,4,1,1,4,1,3,1,1,2,2,3,1,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Ross.Slate1|Critcher|Rottenstrich|Inbar|Miyamoto|Hauser|Graham|Anderson|Bauer|Alter|VanLange|Kay,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,9,Global,all,TRUE +1467,0.337779018715552,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,3,4,2,3,1,4,2,1,2,2,2,2,1,2,1,4,2,2,2,3,3,1,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Rottenstrich|Inbar|Ross.Slate1|VanLange|Bauer|Miyamoto|Huang|Alter|Anderson|Critcher|Hauser|Kay,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,10,Global,all,TRUE +1468,-0.000310544008392385,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,6,5,3,2,1,1,3,1,1,1,1,2,1,1,4,1,4,1,2,4,2,1,1,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Kay|Ross.Slate1|Huang|Critcher|Miyamoto|Bauer|Alter|Inbar|Hauser|Anderson|Graham|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,11,Global,all,TRUE +1470,0.254744343310126,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,7,7,3,4,1,3,1,3,3,2,3,1,1,2,1,3,1,1,3,3,2,1,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Graham|Bauer|VanLange|Miyamoto|Alter|Anderson|Inbar|Huang|Ross.Slate1|Hauser|Rottenstrich|Kay,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,7,Global,all,TRUE +1471,0.288753164841704,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,4,7,7,1,7,5,1,1,5,5,1,1,5,5,2,2,5,2,5,1,1,5,5,1,2,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Miyamoto|Graham|Critcher|Hauser|Huang|Anderson|Inbar|Bauer|Alter|Kay|Rottenstrich|VanLange,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,7,Global,all,TRUE +1476,0.45205742242989,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,6,5,3,1,1,3,1,1,1,3,3,1,1,2,1,3,1,2,4,3,1,1,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Anderson|Critcher|VanLange|Kay|Alter|Miyamoto|Graham|Hauser|Ross.Slate1|Bauer|Inbar|Rottenstrich,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,2,Global,all,TRUE +1480,0.0257827331493813,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,6,5,3,1,1,3,3,1,1,4,3,1,1,4,1,3,1,1,3,3,3,1,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Ross.Slate1|Rottenstrich|Hauser|Anderson|Alter|Critcher|Huang|Bauer|Kay|Inbar|VanLange|Graham,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,5,Global,all,TRUE +1482,0.0442386902340216,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,7,6,5,2,1,1,4,1,1,1,2,2,1,1,3,1,4,1,1,2,4,1,1,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Anderson|Alter|Critcher|Ross.Slate1|Hauser|Graham|Bauer|Huang|Rottenstrich|Inbar|Kay|VanLange,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,2,Global,all,TRUE +1485,-0.489056817981887,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,5,6,5,4,4,3,4,2,3,4,2,3,3,3,3,1,3,2,4,2,2,2,1,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Bauer|Ross.Slate1|Critcher|Anderson|VanLange|Inbar|Kay|Alter|Graham|Rottenstrich|Miyamoto|Huang,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,5,Global,all,TRUE +1486,-0.745291850545704,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,5,5,4,2,1,3,3,1,3,2,2,4,1,4,1,3,1,4,4,3,4,1,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Kay|Bauer|Rottenstrich|Critcher|Hauser|Miyamoto|Huang|Anderson|Graham|VanLange|Alter|Inbar,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,9,Global,all,TRUE +1494,0.413038374632809,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,5,1,2,1,3,2,1,1,1,2,1,1,1,1,3,1,2,1,2,2,1,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Critcher|Kay|Ross.Slate1|Alter|Anderson|Huang|Hauser|Graham|Rottenstrich|Bauer|VanLange|Miyamoto,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,6,Global,all,TRUE +1497,0.1779000394155,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,5,6,3,2,4,2,4,1,1,1,2,3,3,1,2,3,4,1,3,1,1,1,2,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Hauser|Inbar|Ross.Slate1|Kay|Alter|Critcher|Bauer|Miyamoto|VanLange|Graham|Anderson|Huang,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +1502,-0.826488421110964,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,6,5,3,2,3,4,3,1,1,1,1,3,1,1,3,1,3,3,2,3,2,4,1,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Alter|Kay|Critcher|Rottenstrich|Graham|Anderson|VanLange|Bauer|Miyamoto|Inbar|Hauser|Ross.Slate1,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +1503,0.171442864587666,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,7,3,2,1,3,3,1,1,2,4,1,1,4,1,3,2,4,3,3,4,1,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Alter|Rottenstrich|Critcher|Ross.Slate1|Bauer|Anderson|Kay|Hauser|Huang|Graham|VanLange|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood,7,Global,all,TRUE +1504,-0.148595543783708,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,7,5,3,4,1,3,2,1,3,1,3,4,1,3,4,4,1,4,4,3,1,4,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|VanLange|Alter|Bauer|Hauser|Kay|Inbar|Miyamoto|Ross.Slate1|Graham|Critcher|Rottenstrich|Anderson,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,13,Global,all,TRUE +1506,0.654127570952358,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,5,1,1,3,1,1,1,2,4,2,1,4,1,4,1,2,5,4,3,1,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Anderson|Bauer|VanLange|Hauser|Inbar|Ross.Slate1|Alter|Miyamoto|Huang|Graham|Rottenstrich|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,2,Global,all,TRUE +1508,-0.0771548479030182,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,3,2,3,1,2,4,2,1,3,2,2,4,1,4,5,4,1,3,3,3,4,5,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Graham|Ross.Slate1|Inbar|Huang|Kay|Anderson|Miyamoto|Bauer|Hauser|VanLange|Rottenstrich|Critcher,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +1509,-1.02565325152513,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,4,7,7,6,7,1,2,1,4,1,1,1,1,1,1,1,2,1,1,2,1,1,1,1,1,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Inbar|Hauser|Huang|Rottenstrich|Alter|Critcher|Graham|VanLange|Miyamoto|Kay|Bauer|Ross.Slate1,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,1,Global,all,TRUE +1510,-0.915460311164393,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,2,2,4,1,4,3,4,2,1,3,1,2,2,1,1,1,4,1,4,1,3,1,1,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|VanLange|Inbar|Huang|Rottenstrich|Bauer|Ross.Slate1|Graham|Hauser|Alter|Kay|Anderson|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,12,Global,all,TRUE +1511,0.457334452012425,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,4,1,3,3,4,4,2,4,5,2,2,5,5,2,5,3,2,5,3,2,1,5,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Hauser|Alter|VanLange|Critcher|Anderson|Inbar|Miyamoto|Rottenstrich|Huang|Ross.Slate1|Bauer|Graham,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE,6,Global,all,TRUE +1513,-0.21226092017623,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,5,5,2,3,4,4,2,2,1,3,2,3,2,1,1,3,3,1,2,2,2,2,3,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Critcher|VanLange|Kay|Bauer|Graham|Hauser|Rottenstrich|Inbar|Anderson|Alter|Miyamoto|Ross.Slate1,ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +1514,-0.824381287483165,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,4,5,3,2,1,4,1,1,1,1,1,1,1,1,1,4,1,2,2,1,1,1,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Alter|Critcher|VanLange|Kay|Hauser|Bauer|Ross.Slate1|Rottenstrich|Inbar|Huang|Graham|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection,13,Global,all,TRUE +1517,-0.558254606290342,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,5,6,2,1,1,4,1,1,1,1,2,1,1,3,1,4,1,1,1,1,1,1,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|VanLange|Alter|Anderson|Inbar|Critcher|Huang|Miyamoto|Graham|Hauser|Rottenstrich|Bauer|Ross.Slate1,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,4,Global,all,TRUE +1519,0.174994721307198,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,6,5,2,4,3,1,2,1,2,1,1,2,2,1,3,1,3,2,3,3,1,2,1,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Anderson|Critcher|Graham|Hauser|Rottenstrich|Bauer|Inbar|Ross.Slate1|Kay|VanLange|Huang|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,2,Global,all,TRUE +1520,0.0808860265568677,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,3,2,2,3,4,2,3,2,3,3,2,2,4,2,2,5,1,2,2,2,2,2,5,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Rottenstrich|Alter|Hauser|Huang|Ross.Slate1|Kay|Graham|Inbar|Bauer|Critcher|VanLange|Miyamoto,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,1,Global,all,TRUE +1521,0.476703751025331,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,5,4,5,3,3,3,2,2,3,1,3,2,1,2,2,1,2,1,3,3,2,2,1,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Graham|Alter|Anderson|Critcher|Huang|Kay|Hauser|Miyamoto|Ross.Slate1|Inbar|Bauer|VanLange,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,4,Global,all,TRUE +1522,0.0828643562826691,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,6,5,3,1,1,2,1,1,1,1,3,1,1,2,1,2,1,1,3,3,4,1,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Kay|VanLange|Miyamoto|Bauer|Graham|Ross.Slate1|Rottenstrich|Anderson|Inbar|Huang|Hauser|Alter,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,9,Global,all,TRUE +1525,-0.855484790906441,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,6,2,6,6,3,4,3,1,4,2,1,1,4,3,4,1,4,2,4,1,2,4,4,3,2,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Graham|Huang|Inbar|VanLange|Anderson|Rottenstrich|Ross.Slate1|Critcher|Kay|Bauer|Alter|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing,6,Global,all,TRUE +1526,-0.234535537297437,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__belgium_r.csv,leuven,,,,,,,,,,,,,,,,,,,,,,,,,,1,5,3,1,2,2,1,1,4,1,1,1,3,3,1,1,1,1,2,1,1,1,2,3,1,leuven,leuven,leuven,Belgium,"University of Leuven, Belgium",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Bauer|Alter|Ross.Slate1|Hauser|VanLange|Inbar|Graham|Kay|Huang|Miyamoto|Rottenstrich|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,13,Global,all,TRUE +1527,0.330270502544417,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,7,6,5,3,1,1,4,1,1,1,3,3,1,1,2,1,4,1,1,3,3,1,1,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Bauer|Kay|Rottenstrich|Alter|Hauser|Miyamoto|Critcher|Huang|Graham|Anderson|Inbar|VanLange,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +1529,0.656232479109558,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,4,4,4,2,1,3,2,1,1,3,3,2,2,4,1,3,1,1,3,3,3,1,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Anderson|Alter|Graham|Kay|Rottenstrich|Critcher|Miyamoto|Hauser|Huang|Bauer|VanLange|Ross.Slate1,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,2,Global,all,TRUE +1530,0.645425263081688,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,5,3,5,3,1,1,3,3,1,1,3,4,1,1,4,1,4,1,1,3,3,3,1,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Kay|Bauer|Critcher|Ross.Slate1|Miyamoto|Hauser|Rottenstrich|Inbar|Huang|Graham|Alter|VanLange,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five,1,Global,all,TRUE +1531,0.29403019442424,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,4,3,2,3,1,1,4,1,1,1,3,4,2,1,3,1,4,1,1,2,4,3,1,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Critcher|Graham|Huang|Bauer|Anderson|Miyamoto|Alter|Hauser|VanLange|Ross.Slate1|Rottenstrich|Kay,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +1533,-0.943262889260335,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,4,2,1,4,3,2,1,4,4,2,2,4,2,4,1,3,4,4,4,2,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Rottenstrich|Anderson|Graham|Huang|Miyamoto|Bauer|Hauser|Inbar|VanLange|Ross.Slate1|Kay|Alter,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +1535,0.803592715972972,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,5,1,2,2,1,1,4,1,1,1,2,3,1,1,3,1,4,1,1,2,2,3,1,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Rottenstrich|VanLange|Bauer|Inbar|Huang|Hauser|Kay|Alter|Anderson|Ross.Slate1|Miyamoto|Critcher,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,10,Global,all,TRUE +1537,0.614715141406844,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,7,6,6,4,1,1,3,3,1,1,4,4,1,1,4,1,3,1,1,3,4,4,1,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Hauser|Miyamoto|Rottenstrich|Anderson|Kay|Graham|Huang|Bauer|Alter|VanLange|Ross.Slate1|Critcher,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing,5,Global,all,TRUE +1538,0.0145821353730786,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,5,4,2,3,2,1,4,1,1,1,1,3,1,1,4,1,5,1,1,4,3,3,1,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Graham|Bauer|VanLange|Huang|Ross.Slate1|Alter|Inbar|Critcher|Rottenstrich|Kay|Hauser|Miyamoto,ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,1,Global,all,TRUE +1539,0.252499210267291,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,6,3,1,1,2,3,1,1,2,1,2,1,2,3,3,1,1,4,3,1,3,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Miyamoto|Rottenstrich|Ross.Slate1|Alter|Kay|Huang|VanLange|Bauer|Hauser|Anderson|Graham|Inbar,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing,11,Global,all,TRUE +1541,0.0778541300171667,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,5,4,1,1,3,2,1,1,3,3,1,1,4,1,4,1,1,5,3,3,1,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Anderson|Miyamoto|Kay|Ross.Slate1|Bauer|Graham|Huang|Inbar|Alter|Critcher|VanLange|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,2,Global,all,TRUE +1542,0.460366348552127,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,4,4,4,3,3,2,3,1,4,4,3,3,2,3,2,3,1,5,4,2,3,3,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Anderson|Rottenstrich|Inbar|Ross.Slate1|Hauser|Critcher|VanLange|Miyamoto|Kay|Bauer|Huang|Graham,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,2,Global,all,TRUE +1543,-0.254171639627376,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,3,7,4,6,7,4,4,3,1,2,1,1,1,3,1,1,3,1,4,1,2,2,1,2,1,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|VanLange|Ross.Slate1|Kay|Miyamoto|Rottenstrich|Anderson|Inbar|Huang|Hauser|Graham|Bauer|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,7,Global,all,TRUE +1544,0.557240136525124,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,3,2,1,1,2,1,1,1,1,2,1,1,1,1,2,1,1,1,2,1,1,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Rottenstrich|Critcher|Anderson|Huang|Alter|Miyamoto|VanLange|Bauer|Kay|Ross.Slate1|Hauser|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,4,Global,all,TRUE +1545,0.346748129903256,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,5,6,5,2,1,1,1,1,1,1,1,1,1,1,1,1,4,1,2,1,1,2,1,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Rottenstrich|Ross.Slate1|VanLange|Kay|Miyamoto|Alter|Hauser|Graham|Anderson|Inbar|Critcher|Bauer,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood,10,Global,all,TRUE +1546,-0.446614717367272,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,5,4,1,1,2,2,1,1,1,4,1,1,3,1,3,1,3,3,3,3,1,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Ross.Slate1|Miyamoto|Anderson|Inbar|Kay|Critcher|Hauser|Bauer|Alter|VanLange|Rottenstrich|Graham,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,4,Global,all,TRUE +1547,-0.735535975861134,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,6,6,5,4,2,1,3,4,1,1,3,4,1,1,4,1,4,1,1,3,3,4,1,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Alter|Inbar|Graham|VanLange|Huang|Ross.Slate1|Miyamoto|Kay|Bauer|Rottenstrich|Anderson|Critcher,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood,12,Global,all,TRUE +1549,0.323939906147981,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,6,6,5,1,1,4,4,1,1,5,4,1,1,5,1,4,1,1,4,5,4,1,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Huang|Hauser|Kay|Ross.Slate1|Inbar|Miyamoto|Rottenstrich|VanLange|Critcher|Graham|Alter|Bauer,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,1,Global,all,TRUE +1551,0.116999756245646,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,4,3,2,2,3,2,2,1,1,2,2,2,2,2,1,3,2,1,3,2,2,3,3,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Bauer|Huang|Graham|Hauser|VanLange|Inbar|Rottenstrich|Critcher|Miyamoto|Ross.Slate1|Anderson|Alter,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,12,Global,all,TRUE +1552,0.0617698844067606,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,3,3,3,2,1,2,2,2,1,1,4,3,1,2,2,3,1,3,2,4,3,2,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Inbar|Hauser|Huang|VanLange|Kay|Bauer|Ross.Slate1|Alter|Rottenstrich|Anderson|Miyamoto|Graham,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +1554,-0.444774387056507,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,6,6,3,1,1,4,1,1,1,1,1,2,1,1,1,4,1,1,1,1,1,1,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Inbar|Huang|Rottenstrich|Graham|VanLange|Ross.Slate1|Bauer|Anderson|Kay|Critcher|Miyamoto|Hauser,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +1557,0.831144362676716,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,6,4,2,3,4,1,4,1,1,1,1,2,1,1,3,1,4,1,1,1,3,1,1,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|VanLange|Rottenstrich|Alter|Graham|Hauser|Huang|Bauer|Inbar|Critcher|Anderson|Miyamoto|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,11,Global,all,TRUE +1558,0.295868299264406,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,7,5,4,4,1,4,1,1,1,3,4,1,1,3,1,4,1,1,4,4,4,1,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Alter|VanLange|Miyamoto|Bauer|Inbar|Kay|Hauser|Ross.Slate1|Critcher|Graham|Rottenstrich|Anderson,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood,13,Global,all,TRUE +1559,0.0529409981046916,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,3,4,4,1,4,1,1,1,1,2,1,1,4,1,4,1,1,3,3,2,1,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Ross.Slate1|Anderson|Miyamoto|Bauer|Inbar|VanLange|Critcher|Alter|Huang|Kay|Hauser|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,3,Global,all,TRUE +1560,0.150348392711757,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,7,5,5,4,4,3,3,1,5,4,1,2,4,5,3,3,5,1,5,2,2,4,5,4,1,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Huang|Anderson|Alter|Ross.Slate1|Graham|VanLange|Rottenstrich|Hauser|Kay|Miyamoto|Inbar|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,3,Global,all,TRUE +1562,0.000743022805507532,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,2,2,1,4,5,3,3,3,2,4,4,4,5,4,3,5,4,2,4,3,3,3,5,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Inbar|VanLange|Huang|Bauer|Graham|Ross.Slate1|Critcher|Kay|Miyamoto|Anderson|Alter|Hauser,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +1563,0.216652283895547,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,6,3,1,1,4,3,1,1,2,3,1,1,4,1,5,1,1,3,4,2,1,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Rottenstrich|Huang|Hauser|Graham|Critcher|VanLange|Kay|Alter|Ross.Slate1|Bauer|Inbar|Anderson,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,13,Global,all,TRUE +1564,0.454302555472725,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,5,5,3,3,2,1,2,3,1,1,4,1,4,1,2,1,2,1,1,3,4,3,1,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Inbar|Anderson|Hauser|Huang|Graham|Miyamoto|Rottenstrich|Critcher|Alter|Bauer|VanLange|Ross.Slate1,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE,3,Global,all,TRUE +1566,0.0746956550460669,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,6,2,3,2,1,1,2,1,1,1,1,2,1,1,2,1,3,1,1,1,1,2,1,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|VanLange|Anderson|Kay|Graham|Critcher|Ross.Slate1|Bauer|Inbar|Hauser|Alter|Rottenstrich|Miyamoto,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,3,Global,all,TRUE +1570,0.212566820541946,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,6,3,3,1,3,1,4,1,1,1,1,4,1,1,1,1,4,1,1,3,1,4,1,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Ross.Slate1|Critcher|Bauer|Huang|VanLange|Alter|Graham|Hauser|Miyamoto|Kay|Anderson|Rottenstrich,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,12,Global,all,TRUE +1571,-0.463092344726112,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,7,5,6,4,1,2,3,2,1,1,4,4,1,1,4,1,4,1,2,5,4,2,1,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Kay|Inbar|Rottenstrich|Huang|Alter|Bauer|VanLange|Graham|Critcher|Anderson|Miyamoto|Ross.Slate1,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,11,Global,all,TRUE +1573,0.420953919006614,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,6,4,2,1,2,2,2,1,3,3,4,1,1,3,1,4,1,1,2,1,3,1,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Inbar|Graham|Alter|VanLange|Huang|Bauer|Hauser|Ross.Slate1|Miyamoto|Critcher|Anderson|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,12,Global,all,TRUE +1575,-0.10483307303816,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,6,4,1,1,2,1,1,1,1,4,2,1,1,1,3,1,1,4,3,1,1,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Rottenstrich|Kay|Critcher|Anderson|Alter|Miyamoto|Inbar|Ross.Slate1|Bauer|Hauser|Graham|Huang,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,5,Global,all,TRUE +1577,0.427144290517414,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,2,3,5,3,1,4,3,1,1,2,3,3,4,5,1,5,1,2,2,4,3,1,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Anderson|Alter|Kay|Rottenstrich|Bauer|Critcher|Ross.Slate1|Hauser|VanLange|Miyamoto|Huang|Inbar,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +1579,-0.578422089783749,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,7,7,4,1,1,4,4,1,1,4,4,1,1,4,1,4,1,1,5,4,5,1,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Huang|Rottenstrich|Kay|Graham|Inbar|Bauer|VanLange|Ross.Slate1|Hauser|Anderson|Alter|Miyamoto,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,11,Global,all,TRUE +1582,0.728600163372749,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,3,5,3,2,2,4,1,1,5,5,2,1,5,2,5,1,2,5,5,3,2,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Bauer|Kay|Alter|Critcher|Anderson|Huang|Miyamoto|VanLange|Rottenstrich|Hauser|Inbar|Graham,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,6,Global,all,TRUE +1583,0.474078882688299,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,6,4,5,4,1,1,3,1,1,1,3,3,1,1,4,1,4,1,1,3,3,3,1,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Bauer|VanLange|Huang|Alter|Anderson|Miyamoto|Hauser|Critcher|Graham|Ross.Slate1|Rottenstrich|Kay,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +1586,-0.0244369124240016,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,5,2,4,1,1,4,1,1,1,3,4,2,1,4,1,5,1,1,4,3,3,1,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Kay|Rottenstrich|Anderson|Hauser|VanLange|Huang|Bauer|Miyamoto|Inbar|Alter|Critcher|Ross.Slate1,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,4,Global,all,TRUE +1588,0.631979532262549,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,6,3,3,4,2,1,4,3,2,1,4,3,2,4,3,1,3,1,2,4,3,4,1,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Alter|Ross.Slate1|VanLange|Bauer|Hauser|Graham|Inbar|Huang|Anderson|Rottenstrich|Critcher|Kay,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +1591,-1.26198315297138,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,3,2,4,2,1,2,3,1,2,2,3,4,1,2,1,4,2,2,3,3,4,1,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|VanLange|Graham|Critcher|Huang|Anderson|Miyamoto|Kay|Bauer|Inbar|Hauser|Rottenstrich|Alter,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE,6,Global,all,TRUE +1592,-0.215152591830296,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,3,4,3,1,3,2,2,1,4,4,1,1,4,1,4,1,1,3,2,3,1,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Miyamoto|Ross.Slate1|Rottenstrich|Inbar|Hauser|Kay|Huang|Bauer|Critcher|Alter|Graham|Anderson,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood,13,Global,all,TRUE +1595,0.712249114445309,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,4,5,3,2,2,4,2,2,2,2,3,2,2,3,2,3,2,1,1,3,3,3,3,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Kay|Anderson|Critcher|Bauer|Inbar|Miyamoto|VanLange|Ross.Slate1|Graham|Rottenstrich|Huang|Alter,ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,3,Global,all,TRUE +1596,0.0837776982109339,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,4,3,2,1,1,2,1,1,2,2,1,1,3,1,3,1,2,3,2,3,1,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Anderson|Kay|VanLange|Huang|Critcher|Ross.Slate1|Alter|Rottenstrich|Hauser|Graham|Inbar|Bauer,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,2,Global,all,TRUE +1598,0.319196483199513,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,5,5,1,3,2,1,2,1,1,1,1,1,1,2,1,1,4,1,1,1,3,1,1,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Kay|Miyamoto|Critcher|Graham|Alter|Rottenstrich|Huang|Hauser|Anderson|Bauer|Inbar|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,10,Global,all,TRUE +1599,0.388392046037368,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,6,4,5,6,4,4,1,1,3,1,1,1,3,3,3,1,2,1,2,1,1,4,2,2,1,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Bauer|Rottenstrich|Huang|Graham|Alter|Anderson|VanLange|Ross.Slate1|Kay|Inbar|Critcher|Miyamoto,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,7,Global,all,TRUE +1600,0.371521036930096,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,6,5,3,3,1,1,4,1,1,1,4,3,2,1,4,2,4,1,2,4,4,3,2,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Anderson|Graham|Huang|Rottenstrich|Bauer|VanLange|Hauser|Miyamoto|Critcher|Kay|Ross.Slate1|Inbar,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,2,Global,all,TRUE +1601,-0.184709273472486,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,7,5,7,4,1,1,2,4,1,1,4,3,1,1,3,1,5,1,2,3,4,5,1,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|VanLange|Inbar|Huang|Miyamoto|Kay|Rottenstrich|Alter|Graham|Anderson|Critcher|Bauer|Ross.Slate1,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +1602,0.191205545349003,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,3,3,2,1,4,1,1,1,2,3,1,1,2,1,4,1,1,3,2,3,1,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Kay|Ross.Slate1|Huang|Inbar|Critcher|Alter|VanLange|Bauer|Anderson|Hauser|Rottenstrich|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,10,Global,all,TRUE +1605,0.737162246357784,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,6,2,2,3,4,2,2,2,1,1,3,3,3,2,3,2,2,3,1,3,2,4,2,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Alter|Rottenstrich|Bauer|Anderson|Critcher|Hauser|Miyamoto|Huang|Graham|VanLange|Inbar|Ross.Slate1,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,5,Global,all,TRUE +1606,-0.251013164656276,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,6,5,3,3,1,1,3,1,1,1,2,2,1,1,4,1,2,1,1,1,2,2,1,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Critcher|Inbar|Miyamoto|Hauser|Ross.Slate1|Rottenstrich|Kay|Huang|Bauer|Alter|Anderson|Graham,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection,12,Global,all,TRUE +1609,-0.398499979951089,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,4,3,3,2,1,2,3,1,1,1,1,1,1,2,1,1,3,1,1,2,3,1,1,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Miyamoto|Bauer|Huang|Hauser|Anderson|Rottenstrich|Ross.Slate1|Inbar|Graham|VanLange|Alter|Kay,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +1614,0.424126040431949,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,5,3,3,4,1,1,3,1,1,1,3,1,1,1,1,1,2,1,2,4,4,2,1,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|VanLange|Rottenstrich|Huang|Graham|Kay|Critcher|Bauer|Anderson|Ross.Slate1|Inbar|Alter|Hauser,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood,9,Global,all,TRUE +1615,-1.64251704178053,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,7,3,3,2,1,2,1,1,1,3,3,1,1,4,1,4,1,1,3,3,4,1,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Bauer|Ross.Slate1|Rottenstrich|Hauser|Kay|Graham|Critcher|Miyamoto|Alter|Anderson|Inbar|VanLange,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,11,Global,all,TRUE +1616,0.692879815432404,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,4,4,1,1,4,3,1,1,4,3,2,1,4,1,4,1,2,4,4,3,1,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Miyamoto|Hauser|Alter|Ross.Slate1|VanLange|Critcher|Rottenstrich|Bauer|Inbar|Huang|Kay|Anderson,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,13,Global,all,TRUE +1617,0.42161410407208,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,6,6,1,4,2,1,4,3,1,1,4,4,2,1,4,1,4,1,2,4,4,4,1,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Critcher|Bauer|Alter|VanLange|Miyamoto|Huang|Rottenstrich|Anderson|Hauser|Inbar|Graham|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,9,Global,all,TRUE +1620,0.252105828518858,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,vuamsterdam,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,4,1,1,4,1,1,1,1,3,1,1,3,1,4,1,1,3,4,3,1,vuamsterdam,vuamsterdam,vuamsterdam,The Netherlands,"Department of Experimental and Applied Psychology, VU Amsterdam, 1081BT, Amsterdam, The Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Alter|Rottenstrich|Kay|Inbar|Bauer|Miyamoto|Hauser|Critcher|Anderson|VanLange|Ross.Slate1|Huang,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,10,Global,all,TRUE +1623,0.861461102603125,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,6,4,3,1,3,1,1,1,1,1,1,1,4,1,4,1,1,1,3,1,1,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Miyamoto|Rottenstrich|Hauser|Ross.Slate1|Bauer|Inbar|Anderson|Huang|Kay|Critcher|Graham|VanLange,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,8,Global,all,TRUE +1624,-0.123682411871233,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,7,6,5,4,4,1,3,1,2,1,4,3,1,2,3,1,4,1,1,4,3,4,1,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Miyamoto|Ross.Slate1|Kay|Hauser|Rottenstrich|Anderson|Critcher|Graham|Bauer|Inbar|VanLange|Alter,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,7,Global,all,TRUE +1626,0.135849095078719,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,,,,,,,,,,,,,,,,,,,,,,,,,,4,7,7,2,6,2,2,1,3,1,1,1,1,4,2,1,3,1,2,1,1,3,3,4,1,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|Bauer|Ross.Slate1|Graham|Anderson|Critcher|Rottenstrich|Kay|Inbar|Alter|Huang|VanLange,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,6,Global,all,TRUE +1627,0.667306498454462,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,,,,,,,,,,,,,,,,,,,,,,,,,,4,7,6,6,4,3,1,1,2,1,1,1,1,1,1,1,1,1,3,1,2,1,3,1,1,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Alter|Hauser|VanLange|Critcher|Kay|Huang|Anderson|Inbar|Rottenstrich|Bauer|Miyamoto|Ross.Slate1,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,8,Global,all,TRUE +1629,0.0586114094356609,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,5,2,3,2,3,1,4,1,1,1,1,3,2,1,1,1,4,1,4,1,3,1,1,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Kay|Anderson|Inbar|Ross.Slate1|Graham|Hauser|Bauer|Alter|VanLange|Critcher|Miyamoto|Huang,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,3,Global,all,TRUE +1630,0.496213274923871,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,5,4,2,1,4,2,2,3,2,1,2,1,2,1,4,1,3,2,1,1,1,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Inbar|Graham|Alter|Bauer|Miyamoto|Rottenstrich|Anderson|Huang|Ross.Slate1|Critcher|Kay|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,8,Global,all,TRUE +1631,0.510052387491442,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,6,5,6,5,2,1,4,2,2,1,3,4,1,1,4,1,5,1,2,3,2,2,1,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Critcher|Miyamoto|VanLange|Kay|Inbar|Rottenstrich|Graham|Anderson|Bauer|Ross.Slate1|Alter|Hauser,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood,9,Global,all,TRUE +1635,0.748236265702688,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,5,6,4,1,1,2,1,1,1,2,3,1,1,4,1,4,1,1,2,2,4,1,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Ross.Slate1|Kay|Inbar|Hauser|Anderson|Miyamoto|Alter|Graham|Bauer|VanLange|Huang|Critcher,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,6,Global,all,TRUE +1636,0.0754824185429331,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,5,5,4,4,3,3,3,3,4,2,3,4,3,3,4,4,4,2,2,4,4,4,4,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Huang|Miyamoto|VanLange|Graham|Kay|Ross.Slate1|Rottenstrich|Anderson|Alter|Inbar|Hauser|Critcher,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,9,Global,all,TRUE +1637,-0.06581402524108,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,3,2,1,4,1,1,1,2,3,1,1,4,1,3,1,3,3,4,4,1,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Critcher|Miyamoto|Huang|Kay|Inbar|Hauser|VanLange|Rottenstrich|Alter|Bauer|Anderson|Ross.Slate1,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing,12,Global,all,TRUE +1639,0.399466065382272,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,3,2,1,2,1,1,1,1,1,1,1,2,1,1,2,1,2,1,1,2,1,2,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Anderson|Graham|Rottenstrich|Alter|Inbar|Kay|Huang|Miyamoto|Bauer|Hauser|VanLange|Ross.Slate1,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +1641,0.20834335777331,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,4,4,1,4,2,1,4,1,1,1,3,3,1,3,3,1,5,2,2,3,2,2,1,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Hauser|Rottenstrich|Ross.Slate1|Miyamoto|Graham|Bauer|Huang|Anderson|Kay|Inbar|VanLange|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection,9,Global,all,TRUE +1646,0.0191989798901478,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,4,4,1,3,1,3,2,1,4,4,1,3,4,1,4,1,4,4,4,4,1,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Bauer|Inbar|Huang|Critcher|Anderson|Ross.Slate1|Kay|Alter|Miyamoto|Graham|VanLange|Hauser,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +1649,-0.562871450807411,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,5,3,3,2,2,1,3,1,1,1,1,2,1,1,3,1,3,1,1,1,1,1,1,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Miyamoto|Bauer|Huang|Rottenstrich|Ross.Slate1|Alter|Graham|VanLange|Hauser|Kay|Critcher|Inbar,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing,1,Global,all,TRUE +1650,0.90601033684554,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,4,3,4,2,1,4,1,1,1,3,3,2,2,4,1,4,1,2,3,3,3,1,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Graham|Ross.Slate1|Huang|Kay|Hauser|Miyamoto|Inbar|Anderson|Rottenstrich|VanLange|Critcher|Alter,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +1651,0.493448181701204,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,6,4,3,4,1,1,4,2,1,1,3,4,1,1,2,1,4,1,1,3,4,2,1,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Anderson|Alter|Critcher|Huang|Hauser|Inbar|Graham|VanLange|Kay|Miyamoto|Rottenstrich|Ross.Slate1,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +1652,-0.182210983566853,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,6,3,5,2,1,4,3,3,1,4,4,3,2,4,1,4,1,3,5,5,4,1,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Huang|Miyamoto|Graham|Kay|Anderson|Alter|Ross.Slate1|Bauer|VanLange|Critcher|Rottenstrich|Hauser,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,6,Global,all,TRUE +1653,0.485152902033203,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,5,3,4,3,1,3,3,1,1,4,4,1,1,5,1,3,1,1,3,2,3,1,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Miyamoto|Alter|VanLange|Anderson|Huang|Bauer|Critcher|Graham|Hauser|Rottenstrich|Inbar|Kay,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,5,Global,all,TRUE +1654,0.936060273454916,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,5,3,1,1,2,1,1,1,1,2,1,1,4,1,2,1,1,2,2,4,1,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Bauer|Critcher|Huang|Hauser|Miyamoto|Inbar|VanLange|Kay|Ross.Slate1|Graham|Anderson|Alter,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood,12,Global,all,TRUE +1655,0.379956541483732,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,5,1,3,1,1,4,1,1,2,3,5,1,1,4,2,4,1,1,4,3,5,2,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Inbar|Rottenstrich|Ross.Slate1|Miyamoto|Kay|Alter|Huang|Hauser|Anderson|VanLange|Critcher|Bauer,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,10,Global,all,TRUE +1657,0.720024433933478,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,7,6,4,2,1,3,2,1,1,3,4,1,1,4,1,4,1,1,4,4,4,1,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|Bauer|VanLange|Kay|Ross.Slate1|Rottenstrich|Inbar|Graham|Anderson|Critcher|Alter|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing,10,Global,all,TRUE +1661,0.471173564579997,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,6,3,5,4,2,1,4,1,1,3,5,5,3,1,4,1,3,2,2,3,4,4,1,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Miyamoto|Anderson|VanLange|Kay|Huang|Critcher|Graham|Ross.Slate1|Hauser|Alter|Inbar|Rottenstrich,ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +1662,0.72608822701288,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,5,2,2,1,4,1,2,2,1,4,3,4,2,1,4,2,2,2,4,4,2,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Rottenstrich|Anderson|Graham|Huang|Inbar|Miyamoto|Critcher|Alter|Kay|Bauer|Hauser|VanLange,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,3,Global,all,TRUE +1666,-0.550350482900174,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,3,2,1,2,1,1,1,2,3,1,1,4,1,3,1,2,1,2,1,1,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Huang|Inbar|Hauser|Kay|Alter|Ross.Slate1|Miyamoto|Bauer|Graham|Anderson|VanLange|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,11,Global,all,TRUE +1667,-0.146223832309474,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,4,5,3,2,3,1,4,1,1,1,2,2,2,1,2,1,4,1,2,2,3,1,1,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Alter|Graham|Huang|Kay|Inbar|Critcher|Bauer|Ross.Slate1|Miyamoto|Rottenstrich|Hauser|Anderson,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,13,Global,all,TRUE +1668,0.681412414339067,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,4,2,6,2,2,1,2,1,1,1,2,2,1,1,4,1,3,1,3,1,3,3,2,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Kay|Critcher|VanLange|Inbar|Huang|Bauer|Ross.Slate1|Hauser|Rottenstrich|Anderson|Graham|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,11,Global,all,TRUE +1669,0.820070343331812,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,4,2,1,1,2,1,1,1,2,2,1,1,2,1,3,1,1,2,2,2,1,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Miyamoto|Inbar|Huang|Critcher|Bauer|Ross.Slate1|VanLange|Anderson|Hauser|Alter|Graham|Rottenstrich,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,9,Global,all,TRUE +1670,0.81190164209521,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,6,4,4,2,3,1,2,2,1,1,2,2,1,1,2,1,2,1,1,3,2,2,1,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Inbar|Kay|Rottenstrich|Hauser|Miyamoto|Bauer|Alter|Ross.Slate1|Critcher|Graham|VanLange|Anderson,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,13,Global,all,TRUE +1676,-0.190773066551888,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,5,6,4,4,1,4,3,1,1,3,4,1,1,4,1,5,1,1,3,3,3,1,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Critcher|Huang|Bauer|Graham|Ross.Slate1|Rottenstrich|Hauser|VanLange|Miyamoto|Kay|Alter|Inbar,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,1,Global,all,TRUE +1677,0.781191520420366,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,6,6,4,2,1,4,3,1,1,4,3,1,1,4,1,4,2,2,3,2,4,1,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Miyamoto|Anderson|Alter|Ross.Slate1|Huang|VanLange|Graham|Hauser|Critcher|Inbar|Kay|Rottenstrich,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +1678,0.130445487064784,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,2,3,4,1,1,4,2,1,1,3,4,1,1,3,1,4,1,1,2,3,3,1,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Hauser|Graham|Rottenstrich|VanLange|Ross.Slate1|Anderson|Kay|Huang|Miyamoto|Inbar|Alter|Bauer,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,7,Global,all,TRUE +1679,0.875567018487731,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,6,4,3,4,2,1,4,2,1,2,3,3,2,1,3,1,4,1,2,3,3,2,1,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Alter|Hauser|Rottenstrich|Ross.Slate1|Kay|Graham|Huang|Anderson|Bauer|Critcher|Inbar|VanLange,ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +1680,0.80319933422454,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,7,6,7,3,2,1,2,1,1,1,4,4,1,1,4,3,4,1,1,1,2,2,3,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Miyamoto|Inbar|Critcher|Graham|Bauer|Anderson|VanLange|Huang|Rottenstrich|Kay|Hauser|Ross.Slate1,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +1681,0.241298612490988,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,4,3,2,1,1,1,1,1,1,1,1,1,1,1,1,4,1,1,1,1,1,1,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Inbar|Bauer|VanLange|Graham|Alter|Critcher|Anderson|Miyamoto|Rottenstrich|Ross.Slate1|Hauser|Huang,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +1684,0.554475043302457,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,5,2,4,4,1,1,3,2,1,1,3,2,1,1,4,1,3,1,2,2,2,3,1,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Inbar|Bauer|Rottenstrich|Kay|Huang|Critcher|Ross.Slate1|VanLange|Anderson|Graham|Hauser|Miyamoto,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,10,Global,all,TRUE +1686,0.139274373366853,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,3,2,1,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Graham|Anderson|Critcher|Miyamoto|VanLange|Inbar|Bauer|Huang|Rottenstrich|Ross.Slate1|Hauser|Kay,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,3,Global,all,TRUE +1688,-0.0306272839348024,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,3,3,2,3,1,1,2,1,1,1,1,2,2,1,1,1,4,1,2,1,2,1,1,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Inbar|Graham|Critcher|Anderson|Alter|VanLange|Ross.Slate1|Kay|Bauer|Hauser|Huang|Rottenstrich,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,5,Global,all,TRUE +1689,0.434399649825752,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,5,4,5,1,1,2,5,1,1,5,4,1,2,5,2,5,2,1,4,4,5,2,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Alter|Graham|Inbar|Miyamoto|Critcher|Rottenstrich|Hauser|Huang|Bauer|Anderson|Ross.Slate1|VanLange,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection,11,Global,all,TRUE +1690,0.103160643678075,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,6,3,2,2,1,2,2,3,2,2,3,2,1,3,3,2,2,2,2,2,3,2,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Rottenstrich|Inbar|Hauser|Kay|Anderson|Huang|VanLange|Miyamoto|Alter|Bauer|Ross.Slate1|Graham,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,6,Global,all,TRUE +1693,-0.0552736125302436,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,4,1,1,3,1,1,1,1,3,1,1,3,1,3,1,3,4,4,1,1,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Inbar|VanLange|Ross.Slate1|Bauer|Graham|Kay|Rottenstrich|Miyamoto|Anderson|Alter|Critcher|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,10,Global,all,TRUE +1699,-1.23575187639857,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,6,4,6,3,2,4,3,1,3,2,1,2,4,3,3,1,2,1,4,2,1,2,3,1,1,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Ross.Slate1|VanLange|Bauer|Graham|Rottenstrich|Kay|Alter|Critcher|Inbar|Miyamoto|Hauser|Anderson,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,13,Global,all,TRUE +1701,-0.198815189357092,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,5,3,1,1,1,1,1,1,2,3,1,1,2,1,4,1,1,1,1,1,1,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Hauser|Ross.Slate1|Critcher|Graham|Anderson|Bauer|Huang|VanLange|Rottenstrich|Alter|Miyamoto|Kay,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,6,Global,all,TRUE +1703,0.106723921381244,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,6,2,1,1,3,1,1,2,2,2,1,4,1,1,3,1,1,2,2,2,1,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Ross.Slate1|Kay|Graham|Alter|Hauser|Bauer|VanLange|Miyamoto|Huang|Critcher|Anderson|Rottenstrich,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +1705,0.562783969424694,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,4,5,4,1,1,3,1,1,1,4,2,1,1,4,1,4,1,1,3,4,3,1,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Kay|Hauser|Rottenstrich|VanLange|Critcher|Alter|Ross.Slate1|Bauer|Inbar|Anderson|Huang|Graham,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,11,Global,all,TRUE +1708,0.106723921381244,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,5,3,1,1,4,2,1,1,2,4,1,1,5,1,4,2,1,2,3,4,1,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|VanLange|Ross.Slate1|Miyamoto|Anderson|Huang|Hauser|Kay|Inbar|Rottenstrich|Critcher|Alter|Bauer,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood,5,Global,all,TRUE +1710,-0.132244494856268,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,4,1,1,4,1,2,1,3,2,1,1,2,1,4,1,3,3,4,1,1,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Graham|Alter|Huang|Miyamoto|Hauser|Anderson|Bauer|VanLange|Rottenstrich|Kay|Inbar|Ross.Slate1,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,7,Global,all,TRUE +1712,0.496213274923871,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,6,3,1,1,3,1,1,1,2,4,1,1,2,1,3,1,1,3,2,4,1,eindhoven,eindhoven,eindhoventab,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,In a classroom,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Miyamoto|Rottenstrich|Alter|Huang|Kay|Inbar|Hauser|VanLange|Anderson|Critcher|Bauer|Graham,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +1713,0.119511692605515,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,4,1,1,1,1,1,1,2,3,1,1,1,1,2,1,4,3,1,2,1,eindhoven,eindhoven,eindhoventab,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,In a classroom,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Inbar|Huang|Bauer|Miyamoto|Hauser|Kay|Ross.Slate1|Anderson|VanLange|Alter|Graham|Rottenstrich,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,9,Global,all,TRUE +1719,-0.438305791245035,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,6,5,4,4,1,4,3,1,1,4,4,2,1,2,2,2,1,2,3,2,4,2,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Rottenstrich|Miyamoto|VanLange|Kay|Huang|Anderson|Alter|Hauser|Bauer|Critcher|Inbar|Graham,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,7,Global,all,TRUE +1720,0.648190356304355,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,7,7,4,3,1,4,2,1,3,2,3,2,1,3,1,4,1,3,3,4,2,1,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Bauer|Graham|Alter|Huang|Miyamoto|Kay|Hauser|Critcher|Rottenstrich|Ross.Slate1|Anderson|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,12,Global,all,TRUE +1721,-0.651042930909739,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,2,3,1,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Rottenstrich|Hauser|Inbar|Huang|Graham|Ross.Slate1|Bauer|Miyamoto|Kay|Alter|Critcher|Anderson,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,13,Global,all,TRUE +1722,-0.00189549198576056,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,7,6,5,2,1,4,2,1,1,4,4,1,1,4,1,5,1,1,4,5,3,1,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Alter|Kay|Anderson|Bauer|VanLange|Critcher|Inbar|Rottenstrich|Miyamoto|Hauser|Huang|Ross.Slate1,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,4,Global,all,TRUE +1723,-0.147670780871807,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,6,4,6,2,3,1,4,1,1,1,4,3,1,1,5,1,4,1,1,2,3,3,1,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Rottenstrich|Anderson|Alter|Bauer|Graham|VanLange|Inbar|Ross.Slate1|Kay|Huang|Critcher|Miyamoto,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +1724,0.416868455653013,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,5,5,3,1,5,3,1,2,5,4,1,1,3,1,4,4,3,3,4,4,1,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Huang|Ross.Slate1|Miyamoto|VanLange|Inbar|Hauser|Critcher|Anderson|Bauer|Kay|Rottenstrich|Graham,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,9,Global,all,TRUE +1727,-0.483920013284986,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,3,1,1,4,1,1,1,3,4,1,1,3,1,3,1,2,3,3,3,1,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|Inbar|Huang|Rottenstrich|VanLange|Graham|Critcher|Alter|Bauer|Anderson|Kay|Ross.Slate1,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,11,Global,all,TRUE +1730,0.202279564693907,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,6,5,4,3,1,1,2,1,1,1,3,1,1,1,1,1,2,1,1,2,3,3,1,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|VanLange|Anderson|Huang|Alter|Graham|Critcher|Hauser|Kay|Ross.Slate1|Inbar|Miyamoto|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,3,Global,all,TRUE +1733,0.324600091213448,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,3,4,3,1,4,3,1,1,2,3,3,2,3,1,3,1,4,3,2,2,1,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Bauer|Inbar|Critcher|Graham|Miyamoto|Huang|Alter|Ross.Slate1|Kay|Anderson|Rottenstrich|VanLange,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,11,Global,all,TRUE +1734,-0.217526528775129,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,5,6,4,1,1,4,1,1,1,3,4,1,1,2,1,4,2,1,3,2,3,1,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Alter|Graham|Bauer|Hauser|Huang|Inbar|Ross.Slate1|Rottenstrich|Critcher|Kay|Anderson|VanLange,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,12,Global,all,TRUE +1735,1.27930028733,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,6,3,6,5,5,3,2,1,3,3,1,2,1,4,2,1,3,1,2,3,1,3,4,5,1,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Critcher|Alter|Graham|Huang|Inbar|Miyamoto|Hauser|Kay|Anderson|Bauer|Rottenstrich|Ross.Slate1,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood,10,Global,all,TRUE +1736,-0.0134894715104968,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,5,2,5,3,2,1,4,1,1,1,2,2,2,1,3,1,4,1,3,2,3,3,1,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Kay|Miyamoto|Ross.Slate1|Huang|Hauser|Inbar|Graham|Alter|Critcher|Anderson|Bauer|VanLange,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,11,Global,all,TRUE +1742,0.551443146762756,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,7,7,4,1,1,3,4,1,1,3,4,1,1,4,1,3,1,1,4,4,4,1,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Kay|Hauser|Graham|Huang|VanLange|Rottenstrich|Bauer|Inbar|Miyamoto|Anderson|Alter|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,11,Global,all,TRUE +1747,-0.137788327755839,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,6,5,4,1,1,4,2,1,1,4,4,1,1,4,1,4,1,4,4,2,4,1,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Miyamoto|Kay|Huang|Bauer|Critcher|Anderson|Ross.Slate1|Hauser|Graham|Inbar|VanLange|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,7,Global,all,TRUE +1748,0.557240136525124,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,6,1,2,4,3,1,4,1,1,1,4,3,1,2,5,2,3,1,1,2,3,3,1,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Critcher|Kay|Ross.Slate1|Huang|Graham|Rottenstrich|Inbar|Miyamoto|Hauser|VanLange|Anderson|Alter,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,12,Global,all,TRUE +1749,0.000743022805507532,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,6,2,2,4,4,1,4,2,1,1,4,4,2,1,4,1,4,1,1,3,4,4,1,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Critcher|Huang|Anderson|Alter|Rottenstrich|Miyamoto|Kay|VanLange|Ross.Slate1|Graham|Bauer|Inbar,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing,4,Global,all,TRUE +1750,0.628947635722848,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,6,4,1,1,3,1,1,1,3,4,1,2,4,1,3,1,1,3,2,3,1,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Anderson|Alter|Huang|Bauer|Miyamoto|Inbar|Critcher|Ross.Slate1|Kay|Rottenstrich|Hauser|Graham,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,2,Global,all,TRUE +1751,0.864226195825793,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,7,6,5,1,1,5,1,2,1,5,5,3,1,3,1,4,1,2,4,5,5,1,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Ross.Slate1|Kay|Hauser|VanLange|Miyamoto|Huang|Inbar|Bauer|Alter|Anderson|Graham|Rottenstrich,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,11,Global,all,TRUE +1753,0.747842883954255,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,7,3,4,1,1,3,2,1,1,3,4,1,1,3,1,4,1,1,4,4,3,1,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Huang|Anderson|Graham|Bauer|Alter|Ross.Slate1|Miyamoto|Inbar|Kay|Rottenstrich|Hauser|Critcher,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,3,Global,all,TRUE +1754,1.17160563687489,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,7,6,6,5,1,1,5,2,1,1,2,4,1,1,5,1,5,1,1,4,4,3,1,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Anderson|Alter|VanLange|Kay|Huang|Inbar|Hauser|Miyamoto|Graham|Critcher|Rottenstrich|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,2,Global,all,TRUE +1755,0.233383068117184,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,3,7,3,2,1,3,2,1,1,3,3,2,1,4,1,4,1,3,3,2,4,1,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Alter|Anderson|VanLange|Rottenstrich|Inbar|Hauser|Huang|Critcher|Bauer|Ross.Slate1|Graham|Miyamoto,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,3,Global,all,TRUE +1756,-0.493409084652522,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,3,3,1,1,3,1,1,1,3,4,2,1,4,1,4,1,2,3,3,4,1,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Miyamoto|Bauer|VanLange|Inbar|Alter|Hauser|Huang|Critcher|Ross.Slate1|Anderson|Graham|Kay,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,11,Global,all,TRUE +1759,-0.126056348816067,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,3,2,2,2,1,1,1,1,1,1,1,3,2,1,3,1,3,1,1,1,2,1,1,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Bauer|Critcher|Huang|VanLange|Miyamoto|Hauser|Kay|Rottenstrich|Ross.Slate1|Graham|Inbar|Anderson,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,13,Global,all,TRUE +1760,-0.0850567458225858,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,3,6,4,3,1,3,3,1,1,3,3,3,1,4,1,4,1,3,4,4,3,1,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|VanLange|Hauser|Ross.Slate1|Graham|Anderson|Bauer|Critcher|Rottenstrich|Miyamoto|Kay|Inbar|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,6,Global,all,TRUE +1764,-0.0165213680501974,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,6,3,1,1,4,3,1,1,3,4,2,1,3,1,2,1,1,3,4,3,1,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Rottenstrich|Graham|Inbar|Anderson|VanLange|Hauser|Huang|Critcher|Alter|Bauer|Kay|Miyamoto,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,5,Global,all,TRUE +1765,0.127680393842117,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,3,4,3,4,3,2,4,4,3,3,4,4,2,2,4,3,4,2,3,4,4,2,2,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|VanLange|Hauser|Miyamoto|Inbar|Rottenstrich|Huang|Bauer|Kay|Alter|Ross.Slate1|Graham|Critcher,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,1,Global,all,TRUE +1766,0.860407535789226,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,7,3,4,1,3,4,1,2,4,4,1,2,4,1,3,1,1,4,4,4,1,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Graham|Huang|Inbar|VanLange|Bauer|Miyamoto|Hauser|Ross.Slate1|Kay|Anderson|Rottenstrich|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,11,Global,all,TRUE +1769,0.504255397729074,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,5,2,3,2,3,1,3,1,1,1,3,1,1,1,1,1,3,1,1,2,2,1,1,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|VanLange|Critcher|Kay|Inbar|Ross.Slate1|Rottenstrich|Miyamoto|Bauer|Graham|Huang|Alter|Hauser,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,1,Global,all,TRUE +1772,0.548017868474622,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,5,4,2,3,1,1,3,4,4,3,4,2,4,1,4,3,3,2,4,2,5,3,3,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Bauer|Huang|Ross.Slate1|Rottenstrich|Miyamoto|Kay|Alter|Critcher|Anderson|Inbar|VanLange|Hauser,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +1773,0.963611920158659,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,5,3,3,1,1,2,3,3,1,4,4,4,2,3,1,3,1,3,4,3,4,1,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Ross.Slate1|Alter|Miyamoto|Rottenstrich|Inbar|Bauer|Huang|Hauser|Critcher|Graham|Kay|Anderson,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,13,Global,all,TRUE +1775,0.687209404101435,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,7,2,6,3,4,1,2,2,2,4,2,2,2,1,3,1,4,3,4,2,4,3,1,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Alter|Ross.Slate1|Critcher|Miyamoto|Huang|Bauer|Anderson|Hauser|Rottenstrich|VanLange|Kay|Inbar,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,8,Global,all,TRUE +1780,-1.0496393950551,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,6,5,4,2,1,4,4,1,1,4,4,1,1,4,1,4,2,1,4,4,4,1,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Rottenstrich|Bauer|Anderson|Hauser|Miyamoto|Inbar|Huang|Critcher|Ross.Slate1|Alter|VanLange|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,4,Global,all,TRUE +1784,0.00232797078287572,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,5,1,1,1,2,1,1,1,1,3,1,1,3,1,2,1,1,1,1,1,1,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Graham|Hauser|Kay|Inbar|Anderson|Huang|Rottenstrich|Ross.Slate1|Miyamoto|Bauer|Alter|VanLange,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +1785,0.856184073020589,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,3,3,4,1,1,4,2,1,1,1,2,1,1,2,1,4,1,1,3,3,2,1,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|VanLange|Inbar|Anderson|Rottenstrich|Critcher|Ross.Slate1|Alter|Huang|Graham|Bauer|Miyamoto|Kay,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +1786,0.525743251353415,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,5,5,3,1,1,3,1,1,1,1,2,1,1,1,1,4,1,1,2,3,1,1,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Critcher|Alter|Rottenstrich|Bauer|Kay|Ross.Slate1|Hauser|Anderson|Huang|VanLange|Miyamoto|Graham,ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +1787,0.83351607415095,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,3,4,1,1,4,1,1,1,1,4,1,1,2,1,4,1,1,3,3,1,1,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Miyamoto|Inbar|Huang|Kay|Alter|Ross.Slate1|Critcher|VanLange|Anderson|Bauer|Hauser|Rottenstrich,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE,10,Global,all,TRUE +1788,0.381934871209533,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,3,3,2,1,2,1,1,1,1,3,1,1,3,1,4,1,2,4,2,3,1,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Alter|Ross.Slate1|Huang|Anderson|Bauer|VanLange|Kay|Critcher|Miyamoto|Hauser|Rottenstrich|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,5,Global,all,TRUE +1789,1.04994529542082,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,5,2,3,4,1,4,3,2,2,2,1,3,1,2,1,4,1,3,3,2,2,1,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Miyamoto|Anderson|Inbar|Bauer|Rottenstrich|Ross.Slate1|Huang|Hauser|Critcher|Graham|Alter|VanLange,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,3,Global,all,TRUE +1792,-2.00657330323085,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,4,6,2,1,1,3,1,1,1,2,4,1,1,1,1,4,1,1,1,1,2,1,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Inbar|Critcher|Kay|Bauer|Anderson|VanLange|Huang|Hauser|Graham|Rottenstrich|Miyamoto|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,6,Global,all,TRUE +1793,0.676135384756531,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,6,4,1,1,2,2,1,1,3,2,1,1,4,1,4,1,1,3,2,4,1,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Graham|Critcher|Kay|Miyamoto|VanLange|Inbar|Alter|Rottenstrich|Bauer|Ross.Slate1|Huang|Anderson,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five,13,Global,all,TRUE +1794,0.420293733941147,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,5,5,1,2,2,1,1,1,2,1,1,1,2,2,1,2,1,1,1,1,1,1,2,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Rottenstrich|Bauer|Anderson|Kay|Hauser|VanLange|Huang|Ross.Slate1|Miyamoto|Alter|Critcher|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood,4,Global,all,TRUE +1795,0.977844414474663,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburg,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,7,7,6,4,2,1,4,4,1,1,4,4,2,1,4,1,4,1,2,5,4,3,2,tilburg,tilburg,tilburg,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Miyamoto|Inbar|Critcher|Hauser|Rottenstrich|Kay|Bauer|Alter|Ross.Slate1|VanLange|Huang|Graham,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +1796,0.117126334677045,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,6,4,2,4,4,3,4,4,4,2,2,5,2,2,2,2,1,4,4,1,3,1,2,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Alter|Kay|Rottenstrich|Anderson|Critcher|Ross.Slate1|VanLange|Huang|Inbar|Graham|Miyamoto|Hauser,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,5,Global,all,TRUE +1798,-0.204738757550858,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,7,6,4,2,1,4,3,1,1,4,4,3,1,3,2,4,1,2,4,4,4,2,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Kay|Graham|Huang|Anderson|Ross.Slate1|Alter|Bauer|Hauser|Miyamoto|Inbar|Critcher|VanLange,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,5,Global,all,TRUE +1800,0.000616444374108238,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoventab,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,3,3,2,1,3,3,1,1,3,3,2,3,3,1,3,1,2,3,1,3,1,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|Rottenstrich|Bauer|Critcher|Huang|Anderson|Inbar|Ross.Slate1|Alter|VanLange|Graham|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing,7,Global,all,TRUE +1802,-0.725922551532799,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,6,6,3,5,2,1,4,1,1,1,4,4,1,1,5,1,4,1,2,4,4,4,1,eindhoven,eindhoven,eindhoventab,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,In a classroom,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Critcher|Alter|Huang|Kay|Inbar|Miyamoto|Anderson|VanLange|Graham|Ross.Slate1|Rottenstrich|Bauer,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +1805,-1.31181164226692,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,5,3,3,4,1,1,4,1,1,1,1,3,1,1,1,1,4,1,1,2,1,1,1,eindhoven,eindhoven,eindhoventab,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,In a classroom,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Alter|Rottenstrich|Huang|Anderson|Bauer|VanLange|Ross.Slate1|Hauser|Critcher|Inbar|Kay|Miyamoto,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE,5,Global,all,TRUE +1806,-0.168891831179114,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,3,3,1,1,3,3,1,1,3,4,1,1,4,1,3,1,1,5,4,3,1,eindhoven,eindhoven,eindhoventab,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,In a classroom,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Hauser|Graham|Bauer|Anderson|Ross.Slate1|Huang|VanLange|Inbar|Kay|Miyamoto|Alter|Critcher,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE,5,Global,all,TRUE +1808,0.143497836135489,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,6,4,1,1,3,1,1,1,4,4,1,1,4,1,4,1,2,4,4,4,1,eindhoven,eindhoven,eindhoventab,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,In a classroom,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Bauer|Anderson|Huang|Hauser|Miyamoto|Ross.Slate1|Inbar|Alter|Rottenstrich|Kay|Graham|VanLange,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood,3,Global,all,TRUE +1809,0.0691518221464967,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,2,2,1,4,5,2,5,5,2,3,4,4,3,5,4,2,5,3,5,4,5,4,2,eindhoven,eindhoven,eindhoventab,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,In a classroom,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Bauer|Alter|Rottenstrich|Hauser|Critcher|Graham|Inbar|Huang|Miyamoto|Kay|VanLange|Ross.Slate1,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,1,Global,all,TRUE +1810,0.742565854371719,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,2,3,1,1,3,1,1,1,1,4,1,1,3,1,3,1,2,1,3,2,1,eindhoven,eindhoven,eindhoventab,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,In a classroom,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Ross.Slate1|Rottenstrich|Hauser|Bauer|Miyamoto|Kay|Huang|Inbar|Graham|Anderson|VanLange|Critcher,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,11,Global,all,TRUE +1811,-0.664362083297478,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,3,4,4,2,1,4,1,1,1,3,3,1,1,3,1,4,1,2,3,2,2,1,eindhoven,eindhoven,eindhoventab,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,In a classroom,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Alter|VanLange|Anderson|Critcher|Inbar|Hauser|Bauer|Rottenstrich|Huang|Miyamoto|Graham|Ross.Slate1,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,4,Global,all,TRUE +1815,0.125041879050849,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,6,4,5,2,1,4,2,1,1,2,3,3,1,4,1,4,1,2,4,1,3,1,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Miyamoto|Critcher|Huang|Inbar|VanLange|Bauer|Graham|Ross.Slate1|Kay|Rottenstrich|Hauser|Alter,ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +1820,0.30245205252364,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,6,6,4,4,2,2,1,1,1,3,4,1,1,2,1,4,1,1,3,3,2,1,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Huang|Inbar|Graham|Miyamoto|Hauser|Anderson|Rottenstrich|VanLange|Alter|Bauer|Critcher|Ross.Slate1,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,7,Global,all,TRUE +1821,0.742565854371719,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,4,5,4,1,1,4,1,1,1,2,3,1,1,2,1,3,1,1,3,3,1,1,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Anderson|Graham|Alter|Bauer|Hauser|Huang|Ross.Slate1|Miyamoto|Rottenstrich|Kay|Critcher|Inbar,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,2,Global,all,TRUE +1822,1.06906143757093,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,4,4,1,1,4,4,2,2,4,4,3,2,4,1,4,2,2,4,4,3,2,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Anderson|Ross.Slate1|Rottenstrich|Miyamoto|Critcher|Graham|Inbar|Hauser|VanLange|Bauer|Huang|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,2,Global,all,TRUE +1824,-0.231897022506169,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,6,6,3,4,2,1,3,2,1,1,2,1,2,1,4,1,4,1,1,2,3,2,1,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Graham|Hauser|Bauer|Critcher|Alter|Miyamoto|VanLange|Kay|Inbar|Anderson|Huang|Ross.Slate1,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,11,Global,all,TRUE +1825,0.121743179194114,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,5,3,1,1,2,1,1,1,1,1,1,1,4,1,4,1,1,2,1,3,1,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Bauer|Graham|Ross.Slate1|Huang|Kay|Anderson|Alter|Inbar|Miyamoto|Critcher|VanLange|Rottenstrich,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,7,Global,all,TRUE +1826,0.163400741782462,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,4,3,4,2,1,3,2,1,2,3,4,2,2,4,1,4,1,2,3,3,3,1,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Miyamoto|Rottenstrich|Critcher|Anderson|Graham|Alter|Hauser|Huang|Inbar|Bauer|Ross.Slate1|VanLange,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,5,Global,all,TRUE +1828,0.125308682367883,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoventab,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,5,6,6,3,3,1,2,2,1,1,3,2,2,1,3,1,4,1,2,2,3,3,2,eindhoven,eindhoven,eindhoventab,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,In a classroom,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|VanLange|Bauer|Ross.Slate1|Critcher|Alter|Graham|Kay|Rottenstrich|Inbar|Miyamoto|Huang|Anderson,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,13,Global,all,TRUE +1834,0.401317816676674,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,7,5,4,3,1,4,3,2,1,4,4,1,1,4,1,4,1,3,3,4,4,1,eindhoven,eindhoven,eindhoventab,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,In a classroom,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Huang|Hauser|VanLange|Ross.Slate1|Inbar|Anderson|Miyamoto|Kay|Rottenstrich|Graham|Critcher|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,7,Global,all,TRUE +1838,0.214013769104278,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,6,4,1,1,4,3,1,1,3,4,1,2,4,1,2,1,2,3,3,3,1,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Hauser|Critcher|Alter|Graham|Kay|Bauer|Ross.Slate1|Miyamoto|Rottenstrich|Anderson|Inbar|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,11,Global,all,TRUE +1839,0.881097204933065,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,2,4,2,4,1,2,2,3,3,2,1,3,2,4,1,3,4,2,2,2,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|VanLange|Miyamoto|Anderson|Inbar|Hauser|Graham|Bauer|Kay|Critcher|Ross.Slate1|Alter|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,4,Global,all,TRUE +1841,0.927891572218314,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,4,1,1,5,3,1,1,3,1,2,1,4,1,4,1,4,4,4,3,1,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Huang|Bauer|Rottenstrich|VanLange|Alter|Graham|Anderson|Miyamoto|Ross.Slate1|Inbar|Critcher|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,8,Global,all,TRUE +1842,0.315771204911379,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,6,4,2,1,4,3,1,1,5,4,1,1,4,1,5,1,3,3,5,3,1,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Rottenstrich|VanLange|Graham|Bauer|Huang|Miyamoto|Inbar|Hauser|Critcher|Anderson|Kay|Alter,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,11,Global,all,TRUE +1843,0.714887629236577,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,3,3,1,1,4,3,2,2,3,2,2,2,4,1,4,1,2,3,3,3,1,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Hauser|Kay|Inbar|Critcher|Ross.Slate1|Anderson|VanLange|Miyamoto|Rottenstrich|Huang|Alter|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,7,Global,all,TRUE +1844,0.0191989798901478,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,3,3,4,1,5,1,2,2,2,4,1,1,4,1,2,4,2,2,4,3,1,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Graham|Bauer|Kay|Ross.Slate1|Critcher|Anderson|Alter|Inbar|Huang|Hauser|Rottenstrich|VanLange,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,7,Global,all,TRUE +1845,0.0319845256438189,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,7,2,3,4,2,1,2,1,1,1,3,3,1,1,4,1,4,1,1,2,4,4,1,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Huang|Ross.Slate1|Miyamoto|Hauser|Alter|Anderson|Bauer|VanLange|Graham|Inbar|Rottenstrich|Critcher,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood,7,Global,all,TRUE +1847,-0.879737737753449,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,6,3,4,5,1,4,2,1,1,4,5,3,2,4,2,5,1,2,4,3,5,2,eindhoven,eindhoven,eindhoventab,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,In a classroom,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Ross.Slate1|Inbar|Kay|Bauer|Anderson|Rottenstrich|Graham|Critcher|Hauser|Miyamoto|VanLange|Huang,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,6,Global,all,TRUE +1848,-0.409180617547561,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,7,7,7,5,2,1,5,4,1,1,3,4,1,1,5,1,5,1,3,3,4,3,1,eindhoven,eindhoven,eindhoventab,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,In a classroom,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|VanLange|Inbar|Alter|Hauser|Bauer|Miyamoto|Anderson|Ross.Slate1|Critcher|Kay|Huang|Rottenstrich,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,8,Global,all,TRUE +1850,0.429782805308683,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,4,3,1,4,1,1,1,4,4,1,1,4,1,3,1,1,4,4,4,1,eindhoven,eindhoven,eindhoventab,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,In a classroom,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Kay|Huang|VanLange|Inbar|Ross.Slate1|Critcher|Anderson|Rottenstrich|Hauser|Graham|Bauer|Alter,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +1851,-0.256152194823776,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,5,5,1,2,1,1,2,1,1,1,3,2,2,1,1,1,3,1,2,1,1,1,1,eindhoven,eindhoven,eindhoventab,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,In a classroom,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Kay|Anderson|Hauser|Inbar|Critcher|Bauer|Huang|VanLange|Alter|Miyamoto|Rottenstrich|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,3,Global,all,TRUE +1853,1.05996574795182,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoventab,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,5,4,1,1,1,1,1,1,1,3,1,1,4,1,4,1,1,2,4,3,1,eindhoven,eindhoven,eindhoventab,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,In a classroom,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|VanLange|Alter|Ross.Slate1|Huang|Inbar|Rottenstrich|Bauer|Critcher|Anderson|Graham|Kay,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +1854,-0.240205948628406,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,3,2,1,2,2,2,1,1,1,4,1,1,2,3,4,1,1,4,2,3,1,eindhoven,eindhoven,eindhoventab,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,In a classroom,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Inbar|Alter|Rottenstrich|Hauser|Kay|Anderson|VanLange|Miyamoto|Bauer|Critcher|Ross.Slate1|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,7,Global,all,TRUE +1861,0.775254305772363,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,2,3,2,1,4,1,1,1,2,4,1,1,3,1,4,1,1,3,4,3,1,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Miyamoto|Graham|Ross.Slate1|Alter|Huang|Hauser|Rottenstrich|Kay|VanLange|Inbar|Anderson|Critcher,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five,12,Global,all,TRUE +1862,0.129785301999317,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,6,5,3,3,1,3,1,1,2,3,4,2,1,4,1,2,2,1,3,3,2,1,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Huang|Critcher|Hauser|Graham|Ross.Slate1|Inbar|Miyamoto|Kay|Rottenstrich|VanLange|Anderson|Alter,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,12,Global,all,TRUE +1864,0.210588490816144,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,2,3,4,2,1,3,1,1,1,4,3,1,1,3,1,4,1,1,4,3,3,1,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Ross.Slate1|Miyamoto|VanLange|Bauer|Kay|Rottenstrich|Huang|Graham|Inbar|Alter|Critcher|Hauser,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,1,Global,all,TRUE +1866,0.463131441774794,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,6,7,2,2,1,2,3,1,1,3,4,1,1,4,1,2,1,2,4,4,4,1,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Bauer|Alter|Huang|Kay|Anderson|Ross.Slate1|Inbar|VanLange|Graham|Critcher|Rottenstrich|Hauser,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,6,Global,all,TRUE +1870,-0.105493258103627,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,6,4,3,1,1,4,1,1,1,2,3,1,1,4,1,4,1,2,3,3,1,1,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Alter|Miyamoto|Rottenstrich|Graham|Inbar|Bauer|Ross.Slate1|VanLange|Critcher|Hauser|Kay|Anderson,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,13,Global,all,TRUE +1872,0.653860767635323,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoventab,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,4,4,1,1,4,1,1,1,1,2,2,1,1,3,1,1,1,1,2,1,1,1,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|VanLange|Ross.Slate1|Alter|Miyamoto|Graham|Inbar|Kay|Huang|Critcher|Hauser|Rottenstrich|Anderson,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,13,Global,all,TRUE +1876,0.294283351287038,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoventab,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,6,4,2,1,4,1,1,1,4,2,1,1,3,1,4,1,1,3,2,2,1,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Miyamoto|Huang|Graham|VanLange|Bauer|Hauser|Anderson|Critcher|Rottenstrich|Kay|Inbar,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,9,Global,all,TRUE +1878,0.265944941086429,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,6,6,4,1,1,2,1,1,1,2,2,1,1,3,1,4,1,3,3,3,1,1,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Inbar|Miyamoto|Critcher|VanLange|Anderson|Rottenstrich|Bauer|Ross.Slate1|Kay|Alter|Huang|Graham,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing,6,Global,all,TRUE +1879,-0.139895461383638,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,7,6,6,4,2,1,2,1,1,1,4,3,2,1,3,1,4,1,1,4,3,4,1,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Anderson|Kay|Inbar|Bauer|Huang|Alter|Hauser|Rottenstrich|VanLange|Miyamoto|Ross.Slate1|Critcher,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood,2,Global,all,TRUE +1880,0.265944941086429,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,6,6,4,1,1,2,2,1,1,4,3,1,1,4,1,3,1,2,4,3,4,1,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Huang|Critcher|Kay|Graham|VanLange|Hauser|Inbar|Anderson|Bauer|Rottenstrich|Alter|Ross.Slate1,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,9,Global,all,TRUE +1881,0.332642214018651,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,6,6,2,4,4,3,4,3,1,2,5,4,4,2,5,3,3,2,4,4,3,4,3,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Anderson|Ross.Slate1|Inbar|Miyamoto|Huang|Graham|Alter|VanLange|Kay|Bauer|Hauser|Rottenstrich,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,2,Global,all,TRUE +1883,0.473812079371265,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,6,4,2,1,3,3,1,1,3,3,1,1,3,1,4,1,1,3,2,3,1,eindhoven,eindhoven,eindhoven,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Kay|Rottenstrich|Alter|Inbar|Critcher|Miyamoto|Hauser|Huang|Graham|VanLange|Anderson|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood,12,Global,all,TRUE +1895,-0.357376023996809,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,,,,,,,,,,,,,,,,,,,,,,,,,,2,1,1,1,2,4,2,1,4,1,1,1,2,3,1,1,3,1,4,1,1,2,2,1,1,eindhoven,eindhoven,eindhoventab,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,In a classroom,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Hauser|Critcher|Alter|Miyamoto|Graham|Ross.Slate1|VanLange|Huang|Rottenstrich|Inbar|Bauer|Anderson,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,13,Global,all,TRUE +1897,-0.0896758158102545,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoventab,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,6,4,1,1,4,3,1,1,3,3,4,1,3,1,4,1,4,4,4,3,1,eindhoven,eindhoven,eindhoventab,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,In a classroom,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Ross.Slate1|Critcher|Anderson|Inbar|Kay|Miyamoto|Hauser|Huang|Alter|Graham|VanLange|Rottenstrich,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood,4,Global,all,TRUE +1900,0.484352492082101,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,eindhoven,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,6,6,2,4,1,1,4,3,1,1,4,4,2,1,4,1,5,1,1,3,3,4,1,eindhoven,eindhoven,eindhoventab,The Netherlands,"Eindhoven University of Technology, Eindhoven, Netherlands",Dutch,1,illegal,No,In a classroom,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Hauser|Alter|Huang|Bauer|Ross.Slate1|Kay|Graham|Miyamoto|Rottenstrich|Critcher|Inbar|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,13,Global,all,TRUE +1907,0.822708858123079,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,6,4,2,1,1,2,1,1,2,2,3,1,4,1,2,1,2,3,3,3,1,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Huang|Rottenstrich|Alter|Hauser|Bauer|Miyamoto|VanLange|Kay|Inbar|Ross.Slate1|Graham|Anderson,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,13,Global,all,TRUE +1908,-1.0477876437607,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,2,2,4,3,1,4,4,1,1,4,4,1,1,3,2,4,1,4,4,4,4,2,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Alter|Critcher|Anderson|Ross.Slate1|VanLange|Bauer|Rottenstrich|Miyamoto|Huang|Kay|Graham|Inbar,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,4,Global,all,TRUE +1909,-0.607153881732791,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,4,1,1,3,1,3,1,2,3,1,1,2,1,4,1,1,2,3,3,1,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Bauer|Critcher|Graham|Alter|VanLange|Huang|Ross.Slate1|Inbar|Anderson|Rottenstrich|Miyamoto|Hauser,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood,10,Global,all,TRUE +1910,0.102893840361041,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,4,3,1,3,2,3,1,1,4,1,1,3,1,4,1,2,3,3,4,1,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Rottenstrich|Critcher|Miyamoto|Alter|Graham|Huang|Anderson|Hauser|Bauer|VanLange|Ross.Slate1|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood,8,Global,all,TRUE +1912,0.479075462499565,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,5,3,5,3,1,1,2,1,1,1,2,3,1,1,3,1,4,1,1,1,2,1,1,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Inbar|Huang|Kay|Critcher|Bauer|Alter|Rottenstrich|VanLange|Hauser|Graham|Miyamoto|Anderson,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +1915,0.404743094964808,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,6,6,5,1,1,5,3,1,1,4,4,1,1,4,1,5,1,1,5,5,4,1,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Huang|Graham|Kay|Hauser|Inbar|Critcher|Rottenstrich|Ross.Slate1|Miyamoto|VanLange|Anderson|Bauer,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing,12,Global,all,TRUE +1916,0.194504245205739,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,5,3,2,1,3,2,1,1,4,1,2,1,1,1,3,1,2,4,4,2,1,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|VanLange|Alter|Hauser|Inbar|Ross.Slate1|Huang|Critcher|Graham|Kay|Bauer|Miyamoto|Rottenstrich,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,1,Global,all,TRUE +1918,0.554081661554024,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_r.csv,tilburgcaf,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,5,7,4,1,1,3,4,2,1,4,4,2,1,3,2,4,2,1,4,4,4,2,tilburgcaf,tilburgcaf,tilburgcaf,The Netherlands,"Department of Social Psychology, Tilburg University, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,No,Other (please indicate),Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Graham|Inbar|Ross.Slate1|Critcher|Alter|Huang|Bauer|Hauser|Miyamoto|Anderson|Kay|Rottenstrich,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,11,Global,all,TRUE +1925,0.227852881671849,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,5,3,1,1,3,1,1,1,2,3,1,1,3,2,4,1,3,2,4,3,2,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Hauser|Inbar|VanLange|Graham|Bauer|Miyamoto|Huang|Ross.Slate1|Critcher|Rottenstrich|Kay|Alter,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +1929,0.502808449166741,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,6,3,2,1,2,1,1,2,1,2,2,1,1,2,1,1,1,1,2,1,2,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Huang|Miyamoto|Critcher|Inbar|Kay|Anderson|Ross.Slate1|Bauer|Graham|VanLange|Hauser|Rottenstrich,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,7,Global,all,TRUE +1930,-0.0195532645898985,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,7,6,3,1,4,1,4,1,1,3,1,3,2,1,2,2,2,3,4,1,3,1,2,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Bauer|VanLange|Huang|Critcher|Hauser|Rottenstrich|Ross.Slate1|Miyamoto|Kay|Graham|Alter|Inbar,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,1,Global,all,TRUE +1931,0.570952670661297,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,4,6,5,3,4,3,3,3,2,3,3,2,4,3,2,4,3,3,4,2,3,3,4,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Anderson|Alter|Huang|Hauser|Rottenstrich|Graham|VanLange|Kay|Critcher|Inbar|Bauer|Miyamoto,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,2,Global,all,TRUE +1935,0.139134148481218,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,5,5,4,1,1,4,3,1,1,2,3,1,1,4,1,4,1,2,4,4,4,1,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Hauser|Rottenstrich|Kay|Critcher|Anderson|Inbar|Ross.Slate1|Graham|Miyamoto|VanLange|Huang|Bauer,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,6,Global,all,TRUE +1938,0.23866009769972,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,4,5,3,4,1,2,1,1,2,1,2,2,1,4,3,4,1,3,1,1,2,2,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Bauer|Ross.Slate1|Alter|Graham|Rottenstrich|Hauser|Inbar|Miyamoto|VanLange|Kay|Huang|Critcher,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,1,Global,all,TRUE +1940,0.424379197294748,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,5,4,3,3,1,1,4,2,1,1,2,3,1,1,4,1,3,1,2,2,4,2,1,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Hauser|Inbar|Huang|Rottenstrich|Critcher|Ross.Slate1|Miyamoto|Graham|Kay|Alter|Anderson|VanLange,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +1942,0.0226242581782816,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,5,6,4,1,1,4,1,1,1,3,4,1,1,4,1,4,1,1,3,3,4,1,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Rottenstrich|Hauser|Miyamoto|Inbar|Critcher|Graham|Anderson|Kay|Huang|VanLange|Bauer|Ross.Slate1,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,8,Global,all,TRUE +1948,0.410540084727176,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,3,5,3,4,1,4,1,1,2,4,3,1,2,4,1,4,1,1,2,4,3,1,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Critcher|Hauser|Anderson|Huang|VanLange|Alter|Rottenstrich|Inbar|Kay|Bauer|Graham|Ross.Slate1,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +1949,0.377191448261066,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,6,6,6,4,2,1,3,2,1,1,3,4,2,1,4,1,4,1,1,3,2,4,1,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|VanLange|Bauer|Critcher|Huang|Hauser|Kay|Miyamoto|Rottenstrich|Anderson|Ross.Slate1|Graham|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,10,Global,all,TRUE +1952,0.316164586659812,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,6,5,2,3,1,2,1,1,1,3,3,1,1,4,1,2,1,4,1,2,1,1,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Miyamoto|Critcher|Rottenstrich|Inbar|Graham|Bauer|Kay|VanLange|Anderson|Hauser|Huang,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing,11,Global,all,TRUE +1955,0.792392118196669,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,4,2,3,3,4,2,3,1,2,1,1,3,1,1,3,1,4,2,4,2,3,1,1,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Inbar|Rottenstrich|Ross.Slate1|VanLange|Kay|Miyamoto|Hauser|Graham|Bauer|Anderson|Critcher|Alter,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,11,Global,all,TRUE +1956,0.285454464984969,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,4,3,4,2,1,3,2,1,1,4,4,2,1,4,2,4,1,4,3,2,4,2,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Hauser|Miyamoto|Kay|Anderson|Bauer|Graham|Inbar|Huang|Critcher|Alter|Ross.Slate1|VanLange,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,5,Global,all,TRUE +1960,0.351884934600157,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,7,7,6,3,1,1,2,1,1,1,1,1,1,1,1,1,4,1,1,2,3,1,1,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|VanLange|Hauser|Rottenstrich|Bauer|Graham|Huang|Alter|Anderson|Critcher|Ross.Slate1|Inbar|Kay,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,9,Global,all,TRUE +1961,-0.623504930660232,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,6,2,2,2,4,2,1,1,3,4,2,1,3,1,4,1,2,3,3,4,1,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Inbar|Bauer|Rottenstrich|Miyamoto|Ross.Slate1|Anderson|Alter|Hauser|Kay|VanLange|Huang|Critcher,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,7,Global,all,TRUE +1962,-0.274074545274349,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,5,4,2,1,4,2,1,1,3,3,2,1,4,1,4,1,1,3,3,2,1,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Critcher|Miyamoto|Inbar|Anderson|Kay|Rottenstrich|Graham|Hauser|Bauer|VanLange|Huang|Alter,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood,5,Global,all,TRUE +1964,0.256849251467326,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,7,5,4,1,1,2,3,1,1,4,3,1,2,5,1,4,1,1,4,3,4,1,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Bauer|Kay|Anderson|Miyamoto|Graham|Ross.Slate1|Hauser|VanLange|Critcher|Alter|Huang|Rottenstrich,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +1965,0.481980780607867,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,5,7,5,3,2,1,4,2,1,1,1,3,2,1,2,1,4,1,2,3,4,1,1,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Hauser|Huang|Ross.Slate1|Kay|Rottenstrich|Miyamoto|VanLange|Anderson|Bauer|Inbar|Alter|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,9,Global,all,TRUE +1967,-1.0355334791705,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,5,4,3,4,4,2,4,1,1,1,4,4,1,2,2,2,4,2,2,2,3,2,1,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Rottenstrich|Alter|Kay|Critcher|Graham|Ross.Slate1|Huang|Bauer|Inbar|Anderson|VanLange|Miyamoto,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,11,Global,all,TRUE +1968,-0.11564028906603,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,4,2,1,5,4,2,2,4,4,2,2,4,1,4,1,3,4,4,4,1,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Kay|Hauser|Anderson|Huang|Graham|Inbar|Miyamoto|Critcher|Ross.Slate1|Bauer|VanLange|Alter,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE,4,Global,all,TRUE +1969,-0.138181709504271,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,7,7,6,5,2,1,4,4,1,1,5,5,2,1,4,1,4,1,1,5,5,5,1,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Anderson|Hauser|Huang|VanLange|Kay|Alter|Bauer|Graham|Ross.Slate1|Critcher|Rottenstrich|Miyamoto,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +1972,0.13572251664732,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,2,6,2,1,5,5,1,5,5,5,1,1,1,1,2,1,1,5,1,1,1,4,1,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Bauer|Miyamoto|VanLange|Alter|Kay|Critcher|Rottenstrich|Huang|Ross.Slate1|Anderson|Inbar|Graham,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,11,Global,all,TRUE +1973,0.993928660085069,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,7,1,2,5,2,4,4,4,3,3,2,4,2,5,3,3,1,2,3,3,3,5,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Rottenstrich|Bauer|Graham|Inbar|Alter|Miyamoto|Ross.Slate1|Critcher|Huang|Hauser|Anderson|Kay,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,12,Global,all,TRUE +1974,0.773149397615164,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,6,6,4,3,1,4,1,1,1,4,3,2,1,3,1,5,1,3,3,4,3,1,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Hauser|Ross.Slate1|Huang|Alter|Miyamoto|Bauer|Kay|Rottenstrich|Graham|VanLange|Anderson|Inbar,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing,12,Global,all,TRUE +1975,-0.810670978817592,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,6,6,2,1,1,3,1,1,1,1,3,3,1,4,1,4,1,3,3,4,3,1,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|VanLange|Alter|Hauser|Kay|Graham|Anderson|Rottenstrich|Critcher|Miyamoto|Huang|Bauer|Ross.Slate1,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,7,Global,all,TRUE +1978,0.482247583924901,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,6,6,3,1,1,4,3,1,1,1,4,1,1,4,1,4,1,2,3,3,2,1,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Anderson|Hauser|Kay|Rottenstrich|Miyamoto|Inbar|Bauer|Graham|Critcher|Ross.Slate1|Huang|Alter,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,2,Global,all,TRUE +1985,0.154698433911792,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,7,6,5,4,1,1,3,3,1,1,4,4,1,1,4,1,4,1,1,4,4,3,1,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Anderson|Kay|Graham|Bauer|Miyamoto|Inbar|Hauser|Rottenstrich|Critcher|VanLange|Alter|Huang,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,2,Global,all,TRUE +1987,-0.0269352023296346,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,5,6,7,4,2,1,3,1,1,4,4,4,3,1,3,3,4,1,2,3,3,4,2,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Graham|Huang|Ross.Slate1|Bauer|VanLange|Critcher|Hauser|Rottenstrich|Kay|Inbar|Anderson|Alter,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,12,Global,all,TRUE +1988,0.29824001073864,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,4,5,4,3,1,5,3,2,2,4,3,1,2,4,1,5,2,2,4,4,4,1,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|VanLange|Alter|Kay|Huang|Bauer|Anderson|Critcher|Graham|Rottenstrich|Miyamoto|Hauser|Inbar,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,7,Global,all,TRUE +1992,0.636989758528051,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,5,5,3,1,2,3,1,2,1,3,2,2,1,3,1,3,2,3,2,2,2,1,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Bauer|Kay|Critcher|Rottenstrich|Ross.Slate1|Inbar|Miyamoto|VanLange|Hauser|Anderson|Alter|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,11,Global,all,TRUE +1994,0.798062529527638,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,4,1,1,4,4,1,1,4,4,3,1,4,1,4,1,1,4,4,4,1,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Graham|Rottenstrich|Bauer|Anderson|Ross.Slate1|Alter|Critcher|VanLange|Miyamoto|Hauser|Inbar|Kay,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five,5,Global,all,TRUE +1996,0.40987989966171,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,3,6,4,4,1,4,4,1,1,4,4,4,1,4,1,2,1,4,4,4,4,2,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Hauser|Miyamoto|Alter|Bauer|Graham|VanLange|Huang|Ross.Slate1|Rottenstrich|Anderson|Inbar|Critcher,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,11,Global,all,TRUE +1997,0.733076783004183,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,5,3,3,3,1,1,1,1,1,1,2,3,1,1,3,1,3,1,1,3,2,2,1,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Ross.Slate1|Inbar|Huang|VanLange|Bauer|Kay|Graham|Critcher|Hauser|Anderson|Miyamoto|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,11,Global,all,TRUE +1998,-0.856931739468773,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,3,2,1,3,5,4,2,2,2,5,1,1,5,4,2,5,3,4,5,2,3,2,5,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Rottenstrich|Miyamoto|VanLange|Kay|Anderson|Bauer|Hauser|Graham|Huang|Ross.Slate1|Inbar|Critcher,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,6,Global,all,TRUE +2000,0.769190512692961,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,3,4,4,4,3,2,3,4,3,3,3,1,4,4,3,1,2,4,3,3,4,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Graham|Kay|Huang|Rottenstrich|Ross.Slate1|Hauser|Bauer|Miyamoto|VanLange|Inbar|Critcher|Anderson,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,13,Global,all,TRUE +2002,-0.311382066662662,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,2,4,2,2,4,2,1,2,2,4,4,1,4,2,4,1,4,2,4,4,2,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Kay|Alter|Anderson|Bauer|Huang|Graham|VanLange|Ross.Slate1|Hauser|Critcher|Miyamoto|Rottenstrich,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,4,Global,all,TRUE +2003,-0.352632601048341,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,6,4,6,2,2,2,3,1,1,1,2,3,1,1,3,1,2,1,1,3,3,2,1,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Graham|Inbar|Anderson|Huang|Critcher|Miyamoto|Hauser|VanLange|Bauer|Alter|Kay|Ross.Slate1,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,4,Global,all,TRUE +2005,0.384180004252368,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,6,6,3,1,1,1,2,1,1,3,3,1,1,4,1,4,1,1,4,3,4,1,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Huang|Bauer|Rottenstrich|Hauser|Anderson|Graham|Kay|Inbar|Alter|Critcher|Ross.Slate1|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five,6,Global,all,TRUE +2008,0.66229627218896,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,2,3,2,1,3,2,2,2,1,1,1,2,2,2,3,1,3,1,2,2,2,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Huang|Bauer|Alter|Ross.Slate1|Graham|Critcher|Inbar|Rottenstrich|Anderson|Miyamoto|Kay|VanLange,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood,10,Global,all,TRUE +2009,-1.65148615296824,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,3,2,4,1,1,4,1,1,1,4,4,2,1,4,1,4,1,1,4,3,3,1,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Graham|Critcher|Ross.Slate1|Huang|Kay|VanLange|Hauser|Bauer|Miyamoto|Inbar|Anderson|Alter,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,12,Global,all,TRUE +2012,0.342789244981054,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,5,6,3,4,1,4,3,2,2,5,5,5,1,4,2,1,3,2,3,3,5,2,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Hauser|Miyamoto|VanLange|Kay|Critcher|Inbar|Graham|Alter|Bauer|Huang|Rottenstrich|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,1,Global,all,TRUE +2014,0.0500493264506258,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,5,3,5,4,1,1,2,3,1,1,4,2,1,1,3,2,3,1,1,3,2,3,2,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Ross.Slate1|Graham|Miyamoto|Bauer|Rottenstrich|Critcher|Kay|Inbar|Anderson|VanLange|Alter|Huang,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +2016,-0.254831824692842,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,7,6,6,3,1,1,2,1,1,3,2,3,4,1,2,2,4,1,4,1,2,3,2,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Kay|Critcher|Inbar|Bauer|Hauser|Rottenstrich|Alter|VanLange|Ross.Slate1|Graham|Anderson|Miyamoto,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,12,Global,all,TRUE +2022,-0.245344978795906,Low,ML2_Slate1_Dutch_execution_illegal_DEPLOY__netherlands_tilburgcomm_r.csv,tilburgcomm,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,6,5,4,2,1,4,3,1,1,4,4,2,1,4,1,4,2,1,4,5,4,2,tilburgcomm,tilburgcomm,tilburgcomm,The Netherlands,"Department of Communication and Information Sciences, P.O. Box 90153, Tilburg, 5000 LE, Netherlands",Dutch,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Inbar|Alter|Anderson|Bauer|Rottenstrich|Miyamoto|Ross.Slate1|Graham|Huang|VanLange|Kay|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,4,Global,all,TRUE +2024,-0.366471713615912,Low,ML2_Slate1_EngSpain_Inlab_execution_illegal__navarra_r.csv,navarra,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,6,3,1,3,1,1,1,2,3,3,1,1,3,1,3,1,3,2,4,3,1,navarra,navarra,navarra,Spain,"University of Navarra, Spain",English,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Anderson|VanLange|Inbar|Rottenstrich|Ross.Slate1|Graham|Kay|Bauer|Critcher|Alter|Miyamoto|Huang,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,2,Global,all,TRUE +2027,0.18251688393257,Low,ML2_Slate1_EngSpain_Inlab_execution_illegal__navarra_r.csv,navarra,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,6,6,4,1,2,3,2,2,4,4,4,2,2,3,4,2,2,3,4,4,4,3,navarra,navarra,navarra,Spain,"University of Navarra, Spain",English,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Hauser|Ross.Slate1|Alter|Huang|Bauer|VanLange|Inbar|Anderson|Kay|Miyamoto|Critcher|Graham,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,9,Global,all,TRUE +2029,-0.973328697794547,Low,ML2_Slate1_EngSpain_Inlab_execution_illegal__navarra_r.csv,navarra,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,4,2,2,2,1,3,1,1,2,2,1,1,4,1,3,1,1,2,2,2,2,navarra,navarra,navarra,Spain,"University of Navarra, Spain",English,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Miyamoto|Hauser|VanLange|Rottenstrich|Critcher|Graham|Ross.Slate1|Bauer|Inbar|Kay|Alter|Anderson,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,13,Global,all,TRUE +2033,-0.0312874690002693,Low,ML2_Slate1_EngSpain_Inlab_execution_illegal__navarra_r.csv,navarra,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,6,6,4,1,3,2,1,1,1,4,4,2,1,4,1,4,1,3,4,4,5,1,navarra,navarra,navarra,Spain,"University of Navarra, Spain",English,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Ross.Slate1|Bauer|Kay|VanLange|Critcher|Graham|Miyamoto|Anderson|Hauser|Rottenstrich|Inbar|Alter,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,9,Global,all,TRUE +2035,-0.498812692666457,Low,ML2_Slate1_EngSpain_Inlab_execution_illegal__navarra_r.csv,navarra,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,6,5,2,3,2,3,3,1,1,2,4,1,2,4,1,3,1,3,2,4,3,1,navarra,navarra,navarra,Spain,"University of Navarra, Spain",English,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|VanLange|Huang|Rottenstrich|Bauer|Kay|Hauser|Anderson|Alter|Inbar|Graham|Ross.Slate1|Critcher,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,8,Global,all,TRUE +2037,-0.542308360094971,Low,ML2_Slate1_EngSpain_Inlab_execution_illegal__navarra_r.csv,navarra,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,5,6,3,3,1,2,2,1,2,2,1,2,4,2,1,5,3,1,1,1,2,1,4,navarra,navarra,navarra,Spain,"University of Navarra, Spain",English,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Bauer|Alter|Hauser|Rottenstrich|VanLange|Miyamoto|Critcher|Graham|Anderson|Inbar|Kay|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,10,Global,all,TRUE +2040,-0.768226652732378,Low,ML2_Slate1_EngSpain_Inlab_execution_illegal__navarra_r.csv,navarra,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,5,3,1,1,4,2,1,1,2,3,2,2,4,1,3,1,1,2,3,3,1,navarra,navarra,navarra,Spain,"University of Navarra, Spain",English,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|VanLange|Kay|Rottenstrich|Graham|Huang|Hauser|Critcher|Alter|Bauer|Miyamoto|Inbar|Ross.Slate1,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +2044,-0.0262772427347673,Low,ML2_Slate1_EngSpain_Inlab_execution_illegal__navarra_r.csv,navarra,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,6,7,3,1,3,2,2,1,1,4,5,4,1,4,1,1,1,1,5,4,4,2,navarra,navarra,navarra,Spain,"University of Navarra, Spain",English,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|VanLange|Ross.Slate1|Critcher|Hauser|Miyamoto|Inbar|Huang|Bauer|Anderson|Graham|Kay|Alter,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,10,Global,all,TRUE +2047,0.693931156775704,Low,ML2_Slate1_EngSpain_Inlab_execution_illegal__navarra_r.csv,navarra,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,5,7,4,2,3,3,2,2,1,3,1,4,1,1,4,1,2,3,1,1,2,4,1,navarra,navarra,navarra,Spain,"University of Navarra, Spain",English,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|VanLange|Rottenstrich|Anderson|Graham|Hauser|Miyamoto|Kay|Inbar|Bauer|Ross.Slate1|Alter|Critcher,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +2049,0.137167239739054,Low,ML2_Slate1_EngSpain_Inlab_execution_illegal__navarra_r.csv,navarra,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,3,3,1,4,1,2,1,1,3,3,1,1,2,1,3,1,1,3,3,3,1,navarra,navarra,navarra,Spain,"University of Navarra, Spain",English,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Kay|Anderson|VanLange|Inbar|Rottenstrich|Ross.Slate1|Graham|Alter|Bauer|Huang|Critcher|Hauser,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +2050,0.242616757151322,Low,ML2_Slate1_EngSpain_Inlab_execution_illegal__navarra_r.csv,navarra,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,3,2,2,2,2,1,1,2,2,1,1,2,2,2,1,1,3,1,2,2,navarra,navarra,navarra,Spain,"University of Navarra, Spain",English,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Huang|Alter|Graham|VanLange|Kay|Miyamoto|Rottenstrich|Ross.Slate1|Anderson|Inbar|Critcher|Bauer,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,10,Global,all,TRUE +2054,-0.288573842907387,Low,ML2_Slate1_EngSpain_Inlab_execution_illegal__navarra_r.csv,navarra,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,4,4,6,1,1,4,2,1,1,3,1,1,1,1,5,1,4,1,1,2,2,4,1,navarra,navarra,navarra,Spain,"University of Navarra, Spain",English,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Miyamoto|Inbar|Graham|Hauser|Ross.Slate1|Alter|Huang|VanLange|Bauer|Critcher|Rottenstrich|Anderson,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +2055,-0.38440771052072,Low,ML2_Slate1_EngSpain_Inlab_execution_illegal__navarra_r.csv,navarra,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,7,5,6,4,1,4,3,3,3,2,4,4,2,1,4,2,3,4,3,3,3,3,1,navarra,navarra,navarra,Spain,"University of Navarra, Spain",English,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Ross.Slate1|Kay|Alter|Huang|Miyamoto|Hauser|Critcher|Anderson|Rottenstrich|Graham|Inbar|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,9,Global,all,TRUE +2058,0.260808136389528,Low,ML2_Slate1_EngSpain_Inlab_execution_illegal__navarra_r.csv,navarra,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,5,4,3,2,2,2,3,1,1,3,3,2,1,4,1,2,1,1,4,3,3,1,navarra,navarra,navarra,Spain,"University of Navarra, Spain",English,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Ross.Slate1|Bauer|Graham|Anderson|VanLange|Inbar|Huang|Miyamoto|Rottenstrich|Critcher|Alter|Hauser,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,5,Global,all,TRUE +2059,-0.458613499624078,Low,ML2_Slate1_EngSpain_Inlab_execution_illegal__navarra_r.csv,navarra,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,7,4,2,3,4,4,3,2,4,4,4,3,3,2,3,2,3,4,4,4,3,navarra,navarra,navarra,Spain,"University of Navarra, Spain",English,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Kay|Hauser|Ross.Slate1|Huang|Inbar|Anderson|Bauer|Critcher|Miyamoto|VanLange|Alter|Graham,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,7,Global,all,TRUE +2060,0.285847846733402,Low,ML2_Slate1_EngSpain_Inlab_execution_illegal__navarra_r.csv,navarra,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,5,2,3,3,2,4,3,2,1,3,4,1,2,4,1,4,1,3,3,3,4,2,navarra,navarra,navarra,Spain,"University of Navarra, Spain",English,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Huang|VanLange|Anderson|Inbar|Alter|Rottenstrich|Hauser|Kay|Bauer|Graham|Ross.Slate1|Critcher,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +2062,0.144551402949389,Low,ML2_Slate1_EngSpain_Inlab_execution_illegal__navarra_r.csv,navarra,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,5,5,3,3,3,5,2,2,1,2,2,1,3,1,4,1,3,2,2,2,3,3,1,navarra,navarra,navarra,Spain,"University of Navarra, Spain",English,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|VanLange|Miyamoto|Inbar|Kay|Huang|Graham|Critcher|Rottenstrich|Bauer|Alter|Anderson|Hauser,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,12,Global,all,TRUE +2063,0.559218466250926,Low,ML2_Slate1_EngSpain_Inlab_execution_illegal__navarra_r.csv,navarra,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,5,1,2,4,3,1,2,4,4,3,1,4,1,2,2,2,4,4,4,1,navarra,navarra,navarra,Spain,"University of Navarra, Spain",English,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Ross.Slate1|Critcher|Bauer|Rottenstrich|Anderson|Kay|Huang|Inbar|Alter|Graham|Miyamoto|Hauser,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,6,Global,all,TRUE +2073,-0.146223832309474,Low,ML2_Slate1_EngSpain_Inlab_execution_illegal__navarra_r.csv,navarra,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,5,5,3,3,3,4,4,3,1,2,4,3,4,2,4,3,3,3,4,4,4,3,2,navarra,navarra,navarra,Spain,"University of Navarra, Spain",English,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Inbar|Huang|Miyamoto|Critcher|Bauer|Alter|Kay|Rottenstrich|VanLange|Anderson|Ross.Slate1|Hauser,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,11,Global,all,TRUE +2075,0.00469968225711,Low,ML2_Slate1_EngSpain_Inlab_execution_illegal__navarra_r.csv,navarra,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,7,1,4,2,2,5,3,1,1,5,4,4,1,3,1,4,4,5,4,3,4,3,navarra,navarra,navarra,Spain,"University of Navarra, Spain",English,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Anderson|Alter|Bauer|Ross.Slate1|Miyamoto|Kay|Rottenstrich|Hauser|Huang|Critcher|VanLange|Graham,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,2,Global,all,TRUE +2077,0.241425190922387,Low,ML2_Slate1_EngSpain_Inlab_execution_illegal__navarra_r.csv,navarra,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,5,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,navarra,navarra,navarra,Spain,"University of Navarra, Spain",English,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Alter|Hauser|Miyamoto|Rottenstrich|VanLange|Anderson|Ross.Slate1|Huang|Bauer|Critcher|Inbar|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,7,Global,all,TRUE +2078,0.210715069247543,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,6,3,4,4,1,1,3,3,1,1,3,3,1,1,4,1,1,1,4,3,4,4,1,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Inbar|Ross.Slate1|Anderson|Hauser|Kay|Rottenstrich|Miyamoto|VanLange|Alter|Bauer|Huang|Critcher,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +2081,0.648583738052788,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,3,3,2,3,5,3,4,4,1,3,2,3,4,3,3,2,5,1,4,3,2,2,4,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Bauer|Rottenstrich|Critcher|Miyamoto|Huang|Anderson|Inbar|Kay|VanLange|Hauser|Alter|Graham,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,7,Global,all,TRUE +2083,0.0421337820768214,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,6,6,4,1,1,1,1,1,1,1,2,1,1,3,1,4,1,1,2,3,3,1,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Bauer|VanLange|Huang|Critcher|Ross.Slate1|Rottenstrich|Anderson|Kay|Inbar|Graham|Alter|Miyamoto,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,8,Global,all,TRUE +2086,0.0973636539157071,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,6,3,4,3,1,1,1,2,1,1,4,4,1,2,3,1,1,1,1,4,2,3,2,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Huang|Bauer|Critcher|Ross.Slate1|Kay|VanLange|Hauser|Graham|Alter|Anderson|Rottenstrich|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection,11,Global,all,TRUE +2087,0.46286463845776,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,6,5,1,2,1,3,2,2,3,3,3,1,3,1,2,1,2,3,4,4,1,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Anderson|Rottenstrich|Kay|Hauser|Bauer|Huang|Alter|Inbar|Miyamoto|Critcher|Ross.Slate1|Graham,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +2088,0.435186413322618,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,5,4,1,1,3,2,1,1,3,2,3,1,3,1,4,1,1,3,3,2,1,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Inbar|Anderson|Bauer|Rottenstrich|Ross.Slate1|Alter|Critcher|Graham|Miyamoto|Kay|VanLange|Huang,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +2089,-0.248374649865008,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,7,6,5,2,1,1,5,1,1,3,1,3,1,4,1,4,2,1,4,3,1,1,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Critcher|VanLange|Ross.Slate1|Miyamoto|Inbar|Hauser|Anderson|Graham|Kay|Alter|Rottenstrich|Bauer,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,8,Global,all,TRUE +2090,-0.39534150497999,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,7,7,3,3,1,1,3,2,1,4,4,4,1,5,2,4,2,4,4,4,4,1,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Alter|Miyamoto|Rottenstrich|Inbar|VanLange|Critcher|Hauser|Graham|Kay|Huang|Ross.Slate1|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,1,Global,all,TRUE +2091,0.426624330337582,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,5,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|VanLange|Huang|Graham|Alter|Hauser|Anderson|Miyamoto|Inbar|Kay|Critcher|Ross.Slate1|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,7,Global,all,TRUE +2092,-0.89463041713492,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,4,5,5,1,1,1,1,1,1,1,1,1,1,1,3,1,1,1,1,3,1,1,1,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Rottenstrich|Graham|Bauer|Critcher|Ross.Slate1|Miyamoto|Inbar|VanLange|Kay|Alter|Huang|Anderson,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,13,Global,all,TRUE +2093,0.0671734924206959,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,4,4,1,1,1,2,1,1,4,4,1,1,4,1,4,1,2,4,3,4,1,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Graham|Rottenstrich|Huang|Critcher|Bauer|Anderson|VanLange|Inbar|Miyamoto|Ross.Slate1|Alter|Hauser,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,7,Global,all,TRUE +2095,0.146656311106589,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,5,4,3,3,3,1,1,1,1,1,1,2,2,1,3,2,4,2,2,2,3,1,2,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|VanLange|Anderson|Ross.Slate1|Kay|Bauer|Inbar|Hauser|Rottenstrich|Graham|Huang|Critcher|Alter,ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +2096,0.706185321365907,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,3,5,4,2,1,1,3,1,1,3,2,1,1,3,1,4,2,1,3,3,1,1,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Critcher|Rottenstrich|VanLange|Anderson|Graham|Miyamoto|Inbar|Bauer|Ross.Slate1|Hauser|Huang|Kay,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,5,Global,all,TRUE +2099,0.457461030443825,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,4,5,2,5,1,1,2,5,1,1,3,3,2,1,5,1,4,1,2,5,4,2,1,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Kay|VanLange|Graham|Rottenstrich|Inbar|Ross.Slate1|Hauser|Anderson|Critcher|Bauer|Miyamoto|Alter,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,9,Global,all,TRUE +2101,0.933688561980682,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,7,6,6,4,1,1,1,2,1,1,2,4,1,1,2,1,4,1,1,3,4,3,1,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Alter|Graham|Miyamoto|Bauer|Anderson|Critcher|Huang|Hauser|Inbar|Kay|Ross.Slate1|VanLange,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,6,Global,all,TRUE +2103,-0.240599330376839,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,2,6,2,3,4,5,5,1,1,4,2,2,4,5,1,4,4,1,1,3,3,1,4,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Hauser|Alter|Anderson|Kay|Ross.Slate1|Critcher|Miyamoto|VanLange|Graham|Inbar|Rottenstrich|Huang,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,4,Global,all,TRUE +2107,-0.0303604806177686,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,5,2,3,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Miyamoto|Inbar|Huang|Graham|Bauer|Ross.Slate1|Alter|Critcher|VanLange|Hauser|Kay|Anderson,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,13,Global,all,TRUE +2108,-0.102194558246892,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,6,7,4,3,1,2,1,1,3,3,3,3,1,5,2,2,1,4,3,2,3,1,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Critcher|Rottenstrich|Ross.Slate1|Kay|Graham|Bauer|Alter|Huang|Hauser|Inbar|Miyamoto|VanLange,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,1,Global,all,TRUE +2110,-0.202240467645225,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,6,7,3,2,1,2,1,1,1,1,1,2,1,1,1,3,2,2,2,2,1,1,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Alter|Huang|VanLange|Anderson|Rottenstrich|Critcher|Inbar|Kay|Graham|Ross.Slate1|Bauer|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection,5,Global,all,TRUE +2112,0.423985815546315,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,5,5,3,4,1,1,1,3,1,1,4,3,1,1,4,1,4,1,2,4,4,4,1,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Huang|Graham|Ross.Slate1|Hauser|Alter|Miyamoto|Critcher|Anderson|Bauer|Kay|Inbar|VanLange,ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,9,Global,all,TRUE +2113,-1.41831250102249,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,5,3,3,3,2,1,1,1,1,2,2,2,1,1,1,1,3,1,1,2,3,2,1,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Inbar|Miyamoto|Anderson|Kay|Critcher|Bauer|Huang|Graham|Alter|VanLange|Hauser|Ross.Slate1,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,4,Global,all,TRUE +2115,0.495819893175438,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,4,3,3,1,1,1,1,1,2,3,2,1,2,1,4,1,1,2,3,2,1,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Ross.Slate1|Bauer|Kay|Rottenstrich|Critcher|Graham|Hauser|Anderson|Alter|Huang|Inbar|Miyamoto,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +2116,-0.0111177600362625,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,6,3,3,1,1,1,1,1,1,1,1,1,1,2,1,3,1,1,2,3,1,1,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Alter|Anderson|Critcher|Graham|Hauser|VanLange|Kay|Inbar|Miyamoto|Huang|Ross.Slate1|Rottenstrich,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +2117,-0.694018638158421,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,3,2,2,1,1,3,3,3,3,3,4,5,4,1,4,1,2,3,4,2,1,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Bauer|Alter|Graham|Anderson|Miyamoto|Inbar|Rottenstrich|VanLange|Huang|Ross.Slate1|Hauser|Kay,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +2119,0.717259340710811,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,7,6,3,3,3,2,3,2,2,2,3,5,2,3,3,4,3,4,4,4,3,2,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Graham|Rottenstrich|Hauser|Ross.Slate1|VanLange|Huang|Miyamoto|Kay|Anderson|Bauer|Critcher|Alter,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,10,Global,all,TRUE +2120,0.263573229612195,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,3,3,2,3,2,1,1,2,1,2,1,2,2,1,4,1,1,2,1,1,3,2,1,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Alter|Miyamoto|Rottenstrich|Anderson|Bauer|Huang|Critcher|Hauser|Graham|VanLange|Kay|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,5,Global,all,TRUE +2121,0.620905512917645,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,6,5,3,2,1,1,1,1,1,2,2,2,3,3,1,3,2,1,2,2,1,1,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Hauser|Miyamoto|Inbar|Rottenstrich|Anderson|Bauer|Graham|Kay|Huang|Critcher|VanLange|Ross.Slate1,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,6,Global,all,TRUE +2125,0.637383140276485,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,7,6,4,2,1,1,4,3,1,4,2,4,3,4,1,4,1,4,4,3,4,1,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|VanLange|Critcher|Miyamoto|Hauser|Kay|Anderson|Graham|Ross.Slate1|Bauer|Inbar|Rottenstrich|Alter,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,7,Global,all,TRUE +2127,-0.0249568726038337,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,5,4,1,1,1,3,1,1,3,4,2,2,4,2,4,1,2,4,4,3,1,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Rottenstrich|Ross.Slate1|Critcher|Graham|Alter|Huang|Inbar|VanLange|Anderson|Bauer|Miyamoto|Hauser,ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood,10,Global,all,TRUE +2128,-1.77208150662477,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,5,6,3,3,2,1,1,2,1,1,2,2,2,1,3,1,3,1,3,2,4,4,1,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Huang|Ross.Slate1|Kay|Bauer|Critcher|Rottenstrich|Miyamoto|Inbar|VanLange|Alter|Graham|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,13,Global,all,TRUE +2129,0.592833906034071,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,7,6,4,2,1,1,3,1,1,3,4,2,1,4,2,4,2,3,3,3,3,2,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Ross.Slate1|Miyamoto|Alter|Huang|Graham|VanLange|Hauser|Rottenstrich|Inbar|Critcher|Kay|Anderson,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,13,Global,all,TRUE +2130,0.116999756245646,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,4,4,3,3,1,3,2,1,1,1,1,2,1,1,1,4,2,1,1,1,4,1,4,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Alter|Bauer|Graham|Hauser|Critcher|Miyamoto|Ross.Slate1|Anderson|Inbar|Kay|Huang|VanLange,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,9,Global,all,TRUE +2131,-1.99273419066328,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,5,6,1,3,2,1,2,1,1,1,1,3,4,1,3,3,2,1,2,2,3,2,4,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Bauer|Ross.Slate1|Alter|Critcher|Graham|Miyamoto|Rottenstrich|Kay|Anderson|VanLange|Hauser|Huang,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,10,Global,all,TRUE +2134,0.597970710730972,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,5,4,4,1,1,2,3,2,1,1,4,1,1,4,1,4,1,2,3,2,4,1,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Ross.Slate1|Hauser|Bauer|Miyamoto|Rottenstrich|Anderson|Kay|Alter|Critcher|Inbar|Graham|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,7,Global,all,TRUE +2136,0.75640496693929,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,3,4,1,1,1,2,1,1,3,5,1,1,5,1,3,1,1,4,3,3,2,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Alter|VanLange|Rottenstrich|Miyamoto|Bauer|Anderson|Graham|Huang|Hauser|Kay|Ross.Slate1|Critcher,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,7,Global,all,TRUE +2139,0.249860695476023,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,5,5,4,2,1,2,1,1,1,1,3,3,4,1,4,1,4,1,1,3,3,2,2,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Alter|Miyamoto|Anderson|Graham|Critcher|Bauer|Huang|Rottenstrich|Ross.Slate1|VanLange|Hauser|Inbar,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,4,Global,all,TRUE +2140,-0.0248302941724345,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,7,7,3,1,1,1,1,1,1,2,1,1,1,3,1,4,1,1,2,3,1,1,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Inbar|Alter|Ross.Slate1|Rottenstrich|Graham|Huang|Hauser|Critcher|VanLange|Kay|Miyamoto|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,1,Global,all,TRUE +2141,0.587163494703101,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,6,6,3,1,1,1,2,1,1,3,2,1,1,2,1,4,1,1,3,2,2,1,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Rottenstrich|Hauser|Kay|Bauer|Critcher|Alter|Graham|Inbar|Miyamoto|VanLange|Ross.Slate1|Huang,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,1,Global,all,TRUE +2143,0.23971143904302,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,6,3,6,3,4,1,1,1,1,1,3,1,1,1,3,1,3,1,1,1,1,1,1,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Huang|Graham|Miyamoto|Alter|Rottenstrich|Bauer|VanLange|Hauser|Kay|Anderson|Ross.Slate1|Critcher,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +2148,-0.05500680921321,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,5,4,3,4,1,2,3,1,1,1,5,4,1,1,5,1,4,1,1,3,4,4,2,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Miyamoto|Huang|Bauer|Ross.Slate1|Graham|Alter|Inbar|Kay|Critcher|Hauser|Rottenstrich|VanLange,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing,1,Global,all,TRUE +2151,-1.08865844285218,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,6,5,2,4,3,1,3,1,1,1,3,4,1,4,2,5,4,5,2,4,4,3,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|VanLange|Rottenstrich|Ross.Slate1|Critcher|Huang|Graham|Bauer|Kay|Hauser|Alter|Miyamoto|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,1,Global,all,TRUE +2152,-0.401672101376426,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,5,5,3,3,1,1,1,1,2,2,3,1,1,3,1,3,1,2,3,2,4,2,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Kay|Critcher|Bauer|Inbar|Anderson|VanLange|Ross.Slate1|Graham|Hauser|Alter|Rottenstrich|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,6,Global,all,TRUE +2153,0.839579867230352,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,5,4,5,4,2,1,1,1,1,1,2,1,1,1,3,1,4,3,1,3,3,1,1,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Huang|Anderson|Inbar|Bauer|VanLange|Ross.Slate1|Kay|Critcher|Rottenstrich|Graham|Hauser|Alter,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,3,Global,all,TRUE +2156,0.306675515292276,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,5,1,1,1,4,1,1,3,4,3,1,4,1,5,2,4,4,3,4,2,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Anderson|Kay|Bauer|Inbar|Miyamoto|Hauser|Ross.Slate1|Alter|Huang|Graham|Rottenstrich|Critcher,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,2,Global,all,TRUE +2159,0.543274445526154,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,6,5,3,1,1,1,2,1,1,3,2,1,1,3,1,4,1,1,3,3,2,1,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Graham|Bauer|Rottenstrich|Critcher|Hauser|Alter|VanLange|Huang|Ross.Slate1|Inbar|Miyamoto|Anderson,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,13,Global,all,TRUE +2160,-0.328644232047767,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,7,5,3,2,1,1,2,1,1,1,2,2,1,2,1,3,1,2,2,2,2,1,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Kay|Huang|Ross.Slate1|Bauer|Miyamoto|Graham|Rottenstrich|Inbar|VanLange|Alter|Anderson|Critcher,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +2161,0.432688123416985,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,4,5,4,3,1,1,3,1,1,2,1,3,4,1,3,1,4,1,1,2,1,3,1,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Miyamoto|Ross.Slate1|Critcher|Hauser|Huang|Alter|Graham|Anderson|Inbar|Kay|VanLange|Bauer,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,9,Global,all,TRUE +2162,-0.58145398632345,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,7,7,3,1,1,1,4,1,1,4,3,3,1,5,3,4,3,4,3,5,4,3,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Huang|Ross.Slate1|Critcher|Inbar|Rottenstrich|Miyamoto|Alter|VanLange|Anderson|Kay|Bauer|Hauser,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,10,Global,all,TRUE +2168,-0.702189564865623,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,3,4,4,4,2,2,2,3,1,2,3,4,1,3,4,1,4,3,1,4,1,4,1,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Alter|Anderson|Huang|Graham|Miyamoto|Kay|Bauer|Hauser|Inbar|Rottenstrich|VanLange|Ross.Slate1,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +2169,0.111329344914677,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,1,3,4,1,1,4,3,1,3,3,4,3,2,2,4,1,5,2,4,4,1,3,4,1,2,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Graham|Miyamoto|Anderson|Rottenstrich|Bauer|Huang|Hauser|Kay|Alter|VanLange|Inbar|Ross.Slate1,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,4,Global,all,TRUE +2172,0.590195391242802,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,6,5,2,3,1,1,1,1,1,1,1,3,1,1,4,1,4,1,1,4,3,4,1,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Miyamoto|Rottenstrich|Inbar|Graham|Huang|Alter|Critcher|VanLange|Hauser|Anderson|Ross.Slate1|Bauer,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +2173,1.36800537406639,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,7,6,2,1,1,1,1,1,1,1,1,1,1,1,1,4,1,2,1,3,2,1,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Rottenstrich|Kay|Alter|VanLange|Bauer|Miyamoto|Critcher|Inbar|Anderson|Huang|Hauser|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five,10,Global,all,TRUE +2175,0.562783969424694,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,5,4,3,4,1,1,2,1,2,1,1,1,1,1,3,1,4,1,1,4,3,1,1,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Critcher|Kay|Bauer|Alter|Hauser|Inbar|Huang|Miyamoto|Graham|Ross.Slate1|VanLange|Anderson,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,13,Global,all,TRUE +2176,-0.0192864612728643,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,6,6,4,4,1,1,1,1,1,3,3,2,1,1,1,4,2,1,3,1,3,1,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Kay|Rottenstrich|Ross.Slate1|Graham|Critcher|Huang|Hauser|Anderson|Alter|VanLange|Bauer|Inbar,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,9,Global,all,TRUE +2180,-0.0489452416044073,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,5,5,3,2,3,4,2,1,1,3,1,4,3,3,3,3,1,3,3,4,1,3,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Ross.Slate1|Graham|Alter|Huang|Bauer|Anderson|Rottenstrich|Miyamoto|VanLange|Kay|Hauser|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,7,Global,all,TRUE +2182,0.308122463854609,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,2,3,2,3,4,4,3,2,3,4,2,1,4,4,2,4,3,2,4,1,1,1,5,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Critcher|Miyamoto|VanLange|Alter|Bauer|Rottenstrich|Graham|Kay|Huang|Inbar|Anderson|Ross.Slate1,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,12,Global,all,TRUE +2183,0.349513223125923,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,5,5,2,1,1,3,2,2,4,4,2,1,5,2,3,1,4,4,4,3,2,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Rottenstrich|Hauser|VanLange|Bauer|Critcher|Huang|Miyamoto|Kay|Alter|Ross.Slate1|Anderson|Graham,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,12,Global,all,TRUE +2184,0.0394952672855538,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,2,3,2,3,4,3,3,2,2,2,3,1,5,4,1,4,2,2,5,1,3,1,4,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Critcher|VanLange|Hauser|Anderson|Alter|Rottenstrich|Bauer|Kay|Ross.Slate1|Miyamoto|Inbar|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE,5,Global,all,TRUE +2185,0.864226195825793,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,5,5,4,3,2,4,3,1,3,4,3,3,1,4,3,4,1,3,4,4,3,3,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|VanLange|Inbar|Huang|Critcher|Ross.Slate1|Miyamoto|Alter|Anderson|Kay|Graham|Hauser|Bauer,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,9,Global,all,TRUE +2187,0.479075462499565,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,6,5,4,5,1,1,3,1,1,1,5,4,1,1,5,1,4,1,1,4,4,3,1,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Rottenstrich|VanLange|Huang|Graham|Hauser|Kay|Anderson|Alter|Inbar|Critcher|Ross.Slate1|Miyamoto,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,8,Global,all,TRUE +2188,0.10856425169201,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,4,5,2,5,2,1,1,1,1,1,1,5,2,4,1,1,1,1,3,3,1,1,1,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|VanLange|Rottenstrich|Kay|Ross.Slate1|Huang|Inbar|Bauer|Critcher|Alter|Anderson|Miyamoto|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,11,Global,all,TRUE +2190,0.0617698844067606,Low,ML2_Slate1_French_Inlab_execution_illegal__swiss_r.csv,lausanne,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,7,4,2,1,1,1,1,1,2,3,3,1,4,2,4,1,1,1,2,2,2,lausanne,lausanne,lausanne,Switzerland,"University of Lausanne, Switzerland",French,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Ross.Slate1|Anderson|Alter|Huang|Inbar|Miyamoto|Rottenstrich|Hauser|Bauer|Critcher|VanLange|Graham,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,3,Global,all,TRUE +2191,0.883735719724333,Low,ML2_Slate1_French_Inlab_execution_illegal_pencilpaper_r.csv,poitiers,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,4,3,1,5,1,1,4,1,1,1,1,3,1,1,4,1,3,2,1,3,4,1,1,poitiers,poitiers,poitiers,France,"Université de Poitiers, France",French,1,illegal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Miyamoto|Huang|Inbar|Critcher|VanLange|Bauer|Hauser|Rottenstrich|Ross.Slate1|Alter|Graham|Anderson,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing,13,Global,all,TRUE +2192,-0.602675036630758,Low,ML2_Slate1_French_Inlab_execution_illegal_pencilpaper_r.csv,poitiers,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,7,7,7,4,1,1,1,2,1,1,2,3,1,1,3,1,4,1,1,3,3,1,1,poitiers,poitiers,poitiers,France,"Université de Poitiers, France",French,1,illegal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Hauser|Kay|Ross.Slate1|Bauer|Critcher|Inbar|Graham|Rottenstrich|Huang|Alter|Miyamoto|Anderson,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,13,Global,all,TRUE +2193,-0.574996811495615,Low,ML2_Slate1_French_Inlab_execution_illegal_pencilpaper_r.csv,poitiers,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,6,6,5,1,1,2,4,3,2,4,4,2,1,5,1,5,1,3,5,5,5,1,poitiers,poitiers,poitiers,France,"Université de Poitiers, France",French,1,illegal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Rottenstrich|VanLange|Kay|Huang|Anderson|Ross.Slate1|Inbar|Hauser|Bauer|Alter|Miyamoto|Graham,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +2196,0.645818644830121,Low,ML2_Slate1_French_Inlab_execution_illegal_pencilpaper_r.csv,poitiers,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,6,5,2,3,1,1,2,1,1,1,3,1,2,1,2,1,4,1,1,1,1,1,1,poitiers,poitiers,poitiers,France,"Université de Poitiers, France",French,1,illegal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Huang|Hauser|Miyamoto|Alter|VanLange|Inbar|Kay|Ross.Slate1|Bauer|Critcher|Rottenstrich|Graham,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,1,Global,all,TRUE +2198,-0.770598364206612,Low,ML2_Slate1_French_Inlab_execution_illegal_pencilpaper_r.csv,poitiers,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,6,5,5,1,1,2,3,1,1,3,4,1,1,4,1,4,1,2,5,4,4,1,poitiers,poitiers,poitiers,France,"Université de Poitiers, France",French,1,illegal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Ross.Slate1|Huang|Critcher|Anderson|Graham|Kay|Bauer|Alter|VanLange|Inbar|Rottenstrich|Miyamoto,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,5,Global,all,TRUE +2200,0.377191448261066,Low,ML2_Slate1_French_Inlab_execution_illegal_pencilpaper_r.csv,poitiers,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,4,3,1,4,1,1,4,4,2,1,5,3,1,2,5,3,5,3,3,5,4,3,2,poitiers,poitiers,poitiers,France,"Université de Poitiers, France",French,1,illegal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|VanLange|Huang|Anderson|Alter|Miyamoto|Hauser|Critcher|Rottenstrich|Graham|Kay|Inbar|Ross.Slate1,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +2204,1.27666177253873,Low,ML2_Slate1_French_Inlab_execution_illegal_pencilpaper_r.csv,poitiers,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,5,4,1,1,3,2,1,1,4,1,2,1,3,1,4,1,2,4,3,1,1,poitiers,poitiers,poitiers,France,"Université de Poitiers, France",French,1,illegal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Bauer|VanLange|Critcher|Anderson|Miyamoto|Alter|Huang|Rottenstrich|Graham|Ross.Slate1|Inbar|Kay,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,5,Global,all,TRUE +2205,-0.0572519422560451,Low,ML2_Slate1_French_Inlab_execution_illegal_pencilpaper_r.csv,poitiers,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,7,4,6,4,1,1,1,2,1,1,4,4,2,1,4,1,4,1,4,4,4,4,1,poitiers,poitiers,poitiers,France,"Université de Poitiers, France",French,1,illegal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Anderson|Hauser|Critcher|Inbar|Huang|Graham|Rottenstrich|Alter|Kay|VanLange|Bauer|Miyamoto,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,2,Global,all,TRUE +2206,0.836547970690651,Low,ML2_Slate1_French_Inlab_execution_illegal_pencilpaper_r.csv,poitiers,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,7,5,7,4,1,1,1,4,1,1,3,1,1,1,2,1,5,1,1,2,2,1,1,poitiers,poitiers,poitiers,France,"Université de Poitiers, France",French,1,illegal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Anderson|Rottenstrich|Alter|Critcher|Inbar|Bauer|Hauser|Miyamoto|Huang|Kay|Graham|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five,2,Global,all,TRUE +2211,-0.161383315007979,Low,ML2_Slate1_French_Inlab_execution_illegal_pencilpaper_r.csv,poitiers,,,,,,,,,,,,,,,,,,,,,,,,,,4,7,6,5,3,4,2,1,3,3,2,3,1,4,4,1,3,3,4,2,1,4,3,3,2,poitiers,poitiers,poitiers,France,"Université de Poitiers, France",French,1,illegal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Bauer|Inbar|Hauser|VanLange|Alter|Ross.Slate1|Kay|Graham|Huang|Anderson|Critcher|Rottenstrich,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,11,Global,all,TRUE +2212,-0.781279001803083,Low,ML2_Slate1_French_Inlab_execution_illegal_pencilpaper_r.csv,poitiers,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,7,5,3,1,1,1,3,1,1,1,1,1,1,2,1,4,1,1,1,4,1,1,poitiers,poitiers,poitiers,France,"Université de Poitiers, France",French,1,illegal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Hauser|Critcher|Ross.Slate1|Bauer|Rottenstrich|Kay|Alter|VanLange|Miyamoto|Inbar|Huang|Anderson,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,13,Global,all,TRUE +2214,0.285454464984969,Low,ML2_Slate1_French_Inlab_execution_illegal_pencilpaper_r.csv,poitiers,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,6,2,4,2,1,4,3,1,1,3,3,5,1,3,2,4,2,3,2,4,1,1,poitiers,poitiers,poitiers,France,"Université de Poitiers, France",French,1,illegal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Kay|Anderson|Ross.Slate1|VanLange|Inbar|Hauser|Miyamoto|Rottenstrich|Bauer|Alter|Huang|Graham,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +2217,0.462738060026361,Low,ML2_Slate1_French_Inlab_execution_illegal_pencilpaper_r.csv,poitiers,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,6,6,6,4,3,1,2,4,1,3,2,3,2,3,4,2,3,2,3,4,3,4,2,poitiers,poitiers,poitiers,France,"Université de Poitiers, France",French,1,illegal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Rottenstrich|Kay|Miyamoto|Inbar|Alter|Graham|Huang|Ross.Slate1|VanLange|Bauer|Anderson|Critcher,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,12,Global,all,TRUE +2224,-0.254972049578478,Low,ML2_Slate1_French_Inlab_execution_illegal_pencilpaper_r.csv,poitiers,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,4,6,4,3,1,1,1,1,1,4,3,1,1,4,1,5,2,1,2,3,5,1,poitiers,poitiers,poitiers,France,"Université de Poitiers, France",French,1,illegal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Bauer|Huang|VanLange|Inbar|Ross.Slate1|Graham|Kay|Alter|Anderson|Rottenstrich|Critcher|Miyamoto,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,10,Global,all,TRUE +2225,0.759310285047592,Low,ML2_Slate1_French_Inlab_execution_illegal_pencilpaper_r.csv,poitiers,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,5,6,3,4,2,3,2,4,2,1,2,2,1,3,4,1,4,4,2,3,4,3,2,poitiers,poitiers,poitiers,France,"Université de Poitiers, France",French,1,illegal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|VanLange|Bauer|Hauser|Graham|Critcher|Ross.Slate1|Miyamoto|Kay|Rottenstrich|Alter|Anderson|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,12,Global,all,TRUE +2228,-0.169818819561615,Low,ML2_Slate1_French_Inlab_execution_illegal_pencilpaper_r.csv,poitiers,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,6,3,3,3,1,1,1,1,1,1,1,1,1,1,3,1,4,1,1,3,2,1,1,poitiers,poitiers,poitiers,France,"Université de Poitiers, France",French,1,illegal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Graham|VanLange|Inbar|Critcher|Anderson|Miyamoto|Rottenstrich|Ross.Slate1|Kay|Bauer|Hauser|Huang,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,6,Global,all,TRUE +2230,0.847888793352589,Low,ML2_Slate1_French_Inlab_execution_illegal_pencilpaper_r.csv,poitiers,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,6,5,3,1,1,1,5,1,1,4,3,1,1,2,1,3,1,1,3,3,3,1,poitiers,poitiers,poitiers,France,"Université de Poitiers, France",French,1,illegal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Hauser|Graham|Rottenstrich|Inbar|Kay|Miyamoto|Ross.Slate1|Bauer|VanLange|Anderson|Critcher|Alter,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing,11,Global,all,TRUE +2231,1.05798741822602,Low,ML2_Slate1_French_Inlab_execution_illegal_pencilpaper_r.csv,poitiers,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,5,3,4,1,1,2,2,1,1,5,3,2,2,4,1,5,1,2,3,3,3,2,poitiers,poitiers,poitiers,France,"Université de Poitiers, France",French,1,illegal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Hauser|Rottenstrich|Anderson|VanLange|Kay|Huang|Critcher|Miyamoto|Ross.Slate1|Bauer|Inbar|Graham,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +2232,-0.0667410136235809,Low,ML2_Slate1_French_Inlab_execution_illegal_pencilpaper_r.csv,poitiers,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,2,4,3,4,4,3,2,2,1,1,2,3,4,1,4,2,5,1,3,3,3,2,2,poitiers,poitiers,poitiers,France,"Université de Poitiers, France",French,1,illegal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Huang|Graham|Kay|Ross.Slate1|VanLange|Anderson|Alter|Critcher|Bauer|Miyamoto|Rottenstrich|Inbar,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,7,Global,all,TRUE +2236,0.661902890440527,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,6,4,1,1,3,3,1,1,3,2,4,1,3,1,4,1,4,3,3,1,1,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Kay|Ross.Slate1|Huang|Graham|Hauser|Critcher|Inbar|VanLange|Rottenstrich|Miyamoto|Bauer|Anderson,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +2237,0.260808136389528,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,6,3,5,2,1,5,4,1,1,5,5,2,1,5,1,5,1,1,4,5,3,1,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Bauer|Rottenstrich|Hauser|VanLange|Miyamoto|Alter|Graham|Anderson|Inbar|Critcher|Ross.Slate1|Huang,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +2239,0.0144555569416795,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,5,6,6,2,4,2,4,2,2,4,2,2,4,4,4,4,2,4,4,2,2,2,2,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Ross.Slate1|Inbar|Hauser|Rottenstrich|VanLange|Anderson|Kay|Bauer|Graham|Miyamoto|Critcher|Huang,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing,7,Global,all,TRUE +2240,0.12702020877665,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,6,5,4,1,1,4,3,1,1,3,3,1,1,3,1,5,1,1,3,4,2,1,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Rottenstrich|Miyamoto|Huang|VanLange|Alter|Kay|Bauer|Graham|Hauser|Inbar|Ross.Slate1|Anderson,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing,13,Global,all,TRUE +2241,-0.417616122101197,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,4,1,1,4,5,1,1,4,4,1,1,4,1,5,1,1,4,4,5,2,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Alter|VanLange|Huang|Miyamoto|Bauer|Rottenstrich|Hauser|Kay|Graham|Ross.Slate1|Critcher|Inbar,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,1,Global,all,TRUE +2243,0.368362561958996,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,5,4,2,3,2,1,2,1,1,1,2,2,1,1,1,1,3,2,1,2,3,5,1,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Huang|Hauser|Bauer|Inbar|Alter|Ross.Slate1|Kay|Graham|Anderson|Rottenstrich|VanLange|Critcher,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +2244,0.428729238494783,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,4,3,3,1,2,2,3,1,1,4,4,1,1,4,1,3,1,1,4,3,2,3,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Kay|Critcher|Rottenstrich|VanLange|Graham|Alter|Inbar|Anderson|Ross.Slate1|Huang|Hauser|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,9,Global,all,TRUE +2245,0.772882594298129,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,3,5,1,1,4,4,1,1,4,5,1,1,5,1,3,1,2,4,4,5,1,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Anderson|Ross.Slate1|Hauser|Critcher|Kay|Graham|Bauer|Inbar|Alter|VanLange|Rottenstrich|Miyamoto,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,2,Global,all,TRUE +2246,0.604301307127407,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,3,2,3,3,2,2,2,2,2,2,4,3,3,1,4,1,3,3,5,2,1,2,4,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Huang|VanLange|Critcher|Kay|Anderson|Hauser|Inbar|Graham|Miyamoto|Bauer|Ross.Slate1|Rottenstrich,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,6,Global,all,TRUE +2248,0.905883758414141,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,4,1,2,3,1,1,1,4,2,2,2,3,1,3,1,1,4,1,1,1,2,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Graham|Rottenstrich|Kay|Critcher|Miyamoto|Huang|Hauser|Alter|Ross.Slate1|Bauer|Anderson|VanLange,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,12,Global,all,TRUE +2249,0.0309331843005187,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,,,,,,,,,,,,,,,,,,,,,,,,,,1,3,1,3,7,2,3,1,2,1,1,2,1,1,5,3,2,2,3,2,5,4,2,4,1,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Huang|Miyamoto|Hauser|Kay|Inbar|Critcher|Alter|Anderson|Rottenstrich|Graham|Bauer|VanLange,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,9,Global,all,TRUE +2250,0.604301307127407,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,5,7,5,3,1,1,3,3,1,1,4,2,1,1,4,1,4,1,1,2,3,1,1,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|VanLange|Graham|Alter|Kay|Ross.Slate1|Anderson|Huang|Critcher|Miyamoto|Inbar|Rottenstrich|Hauser,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,7,Global,all,TRUE +2252,1.21260301439778,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,7,6,7,5,1,4,3,3,1,1,5,3,4,1,5,1,5,1,2,4,2,3,3,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Huang|Graham|Bauer|Rottenstrich|Critcher|Hauser|VanLange|Alter|Anderson|Kay|Miyamoto|Ross.Slate1,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,10,Global,all,TRUE +2257,0.331982028953184,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,3,3,4,2,3,3,2,1,2,4,3,2,2,2,2,2,2,3,3,1,1,2,2,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Alter|Kay|Bauer|Anderson|Graham|Ross.Slate1|VanLange|Critcher|Huang|Miyamoto|Inbar|Hauser,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing,5,Global,all,TRUE +2261,0.681538992770466,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,7,5,3,2,1,5,2,1,1,3,3,2,1,3,1,4,1,1,3,4,2,3,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Graham|Alter|Rottenstrich|Ross.Slate1|Inbar|Kay|Critcher|Bauer|Huang|Miyamoto|Anderson|VanLange,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,12,Global,all,TRUE +2262,0.567920774121595,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,5,4,5,2,2,1,3,1,1,1,1,2,2,1,2,1,3,2,2,1,1,1,1,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Huang|Alter|Anderson|Rottenstrich|Kay|Graham|Hauser|VanLange|Miyamoto|Critcher|Inbar|Ross.Slate1,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +2263,0.871874936882563,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,4,4,2,1,2,3,1,2,4,3,1,1,4,1,4,1,2,4,3,3,4,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Anderson|Critcher|Inbar|Miyamoto|Rottenstrich|Hauser|Huang|Kay|Ross.Slate1|Bauer|Graham|VanLange,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +2265,0.0366035956314874,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,5,3,1,1,2,2,1,1,3,3,2,1,2,1,3,1,2,2,2,3,3,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Bauer|Huang|Hauser|Critcher|VanLange|Ross.Slate1|Anderson|Inbar|Rottenstrich|Graham|Miyamoto|Alter,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,8,Global,all,TRUE +2266,0.518094510296645,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,3,3,1,1,2,1,4,1,4,1,1,1,3,1,5,1,1,2,1,1,1,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Inbar|Hauser|Graham|Bauer|Kay|VanLange|Anderson|Critcher|Alter|Rottenstrich|Miyamoto|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,8,Global,all,TRUE +2268,0.113307674640478,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,5,6,7,3,1,1,4,1,1,1,4,3,2,1,4,1,4,1,1,2,3,5,1,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Hauser|Graham|Inbar|Critcher|Anderson|Kay|Alter|Miyamoto|Ross.Slate1|VanLange|Huang|Bauer,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,6,Global,all,TRUE +2269,0.814666735317876,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,5,3,1,1,3,3,1,1,2,2,1,2,1,1,2,1,2,4,2,2,2,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Graham|Ross.Slate1|Huang|Critcher|Anderson|Kay|Alter|Rottenstrich|Hauser|Inbar|Bauer|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,6,Global,all,TRUE +2270,0.132817198539018,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,6,2,3,4,2,4,1,1,4,4,2,3,4,2,1,4,2,4,3,2,3,3,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Ross.Slate1|Anderson|Alter|Huang|VanLange|Critcher|Miyamoto|Kay|Bauer|Inbar|Rottenstrich|Graham,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,3,Global,all,TRUE +2271,0.706058742934508,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,7,7,6,4,1,1,3,2,1,1,2,2,1,1,2,1,3,1,2,2,3,1,3,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Huang|Rottenstrich|Ross.Slate1|Kay|Critcher|Hauser|Bauer|Anderson|Inbar|Alter|VanLange|Graham,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +2272,0.855790691272157,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,4,2,2,4,1,1,5,2,1,1,4,3,1,1,4,1,5,2,1,4,3,2,1,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|Alter|Bauer|Kay|Ross.Slate1|Graham|Rottenstrich|Anderson|Critcher|VanLange|Huang|Inbar,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +2273,-0.266425804217579,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,3,2,1,4,2,1,1,3,4,1,1,4,1,3,2,1,3,4,4,3,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Inbar|Bauer|Critcher|Ross.Slate1|Rottenstrich|VanLange|Graham|Kay|Huang|Alter|Miyamoto|Hauser,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,1,Global,all,TRUE +2275,0.0267074960612831,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,7,5,1,3,1,1,2,1,3,4,4,2,2,4,1,3,2,2,3,3,3,2,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Anderson|Inbar|Kay|Ross.Slate1|Huang|Miyamoto|Hauser|Bauer|Critcher|Alter|VanLange|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,2,Global,all,TRUE +2277,-1.40039015057192,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,5,4,1,1,4,2,1,1,2,2,1,1,2,1,4,1,1,3,3,1,1,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Kay|Critcher|VanLange|Graham|Ross.Slate1|Anderson|Hauser|Rottenstrich|Miyamoto|Alter|Bauer|Inbar,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,7,Global,all,TRUE +2286,0.850387083258222,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,6,4,5,3,3,1,1,1,1,1,4,5,1,1,5,1,4,2,1,3,3,4,1,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Hauser|Ross.Slate1|Huang|Bauer|Alter|Graham|Inbar|Miyamoto|Rottenstrich|Critcher|Anderson|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,12,Global,all,TRUE +2287,0.363225757262095,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,3,3,4,3,4,2,2,1,1,4,4,3,2,4,3,1,3,2,4,2,2,2,4,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Kay|Huang|Critcher|Alter|Ross.Slate1|Hauser|VanLange|Bauer|Graham|Miyamoto|Rottenstrich|Anderson,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,13,Global,all,TRUE +2288,0.478682080751132,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,3,5,6,3,2,3,2,3,1,2,4,5,2,1,3,2,5,2,2,3,3,5,2,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Rottenstrich|Miyamoto|VanLange|Anderson|Kay|Critcher|Graham|Alter|Inbar|Bauer|Hauser|Ross.Slate1,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,5,Global,all,TRUE +2291,-0.0749097148601826,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,7,6,3,3,4,1,1,3,1,3,5,4,3,2,4,1,1,1,4,3,4,2,1,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Bauer|Critcher|Huang|Alter|Graham|Anderson|Miyamoto|Inbar|Hauser|Kay|Ross.Slate1|VanLange,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood,7,Global,all,TRUE +2292,1.39871549574124,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,5,7,7,4,1,1,3,4,1,1,4,4,2,1,3,1,3,1,2,4,4,4,1,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|VanLange|Inbar|Hauser|Alter|Miyamoto|Kay|Huang|Ross.Slate1|Rottenstrich|Bauer|Graham|Anderson,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,13,Global,all,TRUE +2295,0.346607905017621,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,5,1,1,4,1,1,1,4,4,1,1,5,1,4,1,2,4,4,2,1,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|Graham|Alter|Kay|Anderson|Bauer|Critcher|VanLange|Rottenstrich|Inbar|Ross.Slate1|Huang,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,6,Global,all,TRUE +2296,0.814273353569443,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,5,5,3,4,2,1,4,1,1,1,1,1,1,1,2,1,4,1,1,3,3,1,1,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Huang|Graham|Miyamoto|Rottenstrich|Alter|Anderson|Kay|Inbar|Hauser|Critcher|Bauer|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,7,Global,all,TRUE +2301,-0.291212357698655,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,5,7,4,1,1,3,2,1,1,3,2,1,1,3,1,3,1,1,3,2,2,1,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Kay|Ross.Slate1|Hauser|Miyamoto|Bauer|Rottenstrich|Inbar|Anderson|Huang|Graham|Critcher|Alter,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,9,Global,all,TRUE +2303,-0.187741170012187,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,2,4,2,1,3,4,1,1,4,5,1,1,5,2,4,2,1,5,3,3,2,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|Bauer|Kay|Graham|Huang|Rottenstrich|Inbar|Ross.Slate1|Anderson|Alter|VanLange|Critcher,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,10,Global,all,TRUE +2304,0.266085165972064,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,5,3,4,2,1,4,3,1,3,4,3,2,2,4,2,5,1,1,4,4,3,3,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Anderson|Miyamoto|Kay|Ross.Slate1|Graham|Huang|Inbar|Hauser|Alter|Bauer|VanLange|Rottenstrich,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing,2,Global,all,TRUE +2309,0.249734117044624,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,6,5,3,4,1,1,3,3,1,1,4,4,1,1,5,1,4,1,1,3,5,4,1,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Kay|VanLange|Miyamoto|Huang|Critcher|Alter|Anderson|Ross.Slate1|Inbar|Hauser|Rottenstrich|Bauer,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection,8,Global,all,TRUE +2313,0.498851789715139,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,5,7,1,5,4,2,4,2,1,4,4,3,1,1,4,1,5,1,4,4,4,3,1,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Rottenstrich|VanLange|Bauer|Critcher|Miyamoto|Anderson|Alter|Hauser|Huang|Ross.Slate1|Kay|Inbar,ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,7,Global,all,TRUE +2317,0.476183790845499,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,3,3,2,1,3,1,1,1,4,3,2,1,4,1,3,1,2,3,3,4,2,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Graham|Critcher|Anderson|Kay|Bauer|Miyamoto|Huang|VanLange|Hauser|Ross.Slate1|Alter|Inbar,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing,4,Global,all,TRUE +2320,0.706452124682941,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,5,4,1,3,1,1,2,2,1,1,3,2,1,1,4,1,3,1,2,3,2,2,4,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Kay|Rottenstrich|Critcher|Ross.Slate1|Bauer|Huang|Alter|VanLange|Miyamoto|Graham|Inbar|Hauser,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,1,Global,all,TRUE +2322,0.204918079485176,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,3,6,1,2,1,1,3,1,1,1,4,1,1,1,5,1,4,1,1,2,3,4,1,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|VanLange|Miyamoto|Critcher|Kay|Hauser|Huang|Rottenstrich|Inbar|Bauer|Anderson|Alter|Ross.Slate1,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +2323,0.647796974555922,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,6,6,6,4,1,1,4,3,1,1,4,3,1,1,4,1,4,1,2,3,4,2,1,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Critcher|Ross.Slate1|Bauer|Miyamoto|Alter|Kay|Graham|VanLange|Rottenstrich|Huang|Anderson|Hauser,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,12,Global,all,TRUE +2324,-0.673064391168148,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,5,3,4,3,2,4,2,1,3,1,1,2,2,2,1,3,1,2,2,2,4,3,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Alter|Miyamoto|Graham|Ross.Slate1|Hauser|Rottenstrich|Bauer|Inbar|VanLange|Critcher|Kay|Huang,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection,1,Global,all,TRUE +2325,1.08869753990087,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,5,6,2,4,1,1,4,4,1,1,5,2,1,1,5,1,5,1,1,5,4,3,3,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Rottenstrich|Critcher|Huang|Miyamoto|Inbar|Alter|Graham|VanLange|Ross.Slate1|Kay|Hauser|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,1,Global,all,TRUE +2330,0.57016590716443,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,6,3,2,1,1,2,1,1,1,3,3,1,1,3,1,3,1,1,2,2,3,1,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Rottenstrich|Huang|Anderson|VanLange|Alter|Hauser|Kay|Bauer|Ross.Slate1|Critcher|Graham|Inbar,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,4,Global,all,TRUE +2334,1.34309224215392,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,6,7,3,2,1,2,1,1,1,4,4,1,1,3,1,5,1,1,1,1,1,1,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Graham|Inbar|Miyamoto|Rottenstrich|Huang|Hauser|Kay|VanLange|Ross.Slate1|Alter|Critcher|Anderson,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,13,Global,all,TRUE +2336,0.575569515178366,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,2,5,3,1,1,2,5,1,1,2,1,2,2,1,1,1,5,1,3,1,2,1,4,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Kay|Huang|Miyamoto|Inbar|Ross.Slate1|Anderson|VanLange|Critcher|Rottenstrich|Graham|Bauer|Hauser,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE,7,Global,all,TRUE +2342,0.917084356190444,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,5,4,1,1,4,5,1,1,5,5,1,1,5,1,4,1,1,5,5,4,1,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Rottenstrich|Kay|Bauer|Alter|Inbar|Anderson|Graham|VanLange|Huang|Hauser|Critcher|Miyamoto,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +2343,0.126360023711183,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,4,4,3,2,2,3,1,3,4,5,2,2,4,1,2,1,2,3,4,5,1,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Miyamoto|Anderson|Hauser|Ross.Slate1|Inbar|VanLange|Bauer|Critcher|Huang|Alter|Rottenstrich|Kay,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +2349,-0.179699047206984,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,2,3,2,1,2,1,1,1,4,3,2,1,4,1,3,1,3,3,3,3,1,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Huang|Kay|Rottenstrich|Ross.Slate1|Inbar|Bauer|Hauser|VanLange|Alter|Miyamoto|Critcher|Graham,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,1,Global,all,TRUE +2351,0.705398557869041,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,3,4,1,1,4,4,1,1,3,3,1,1,3,1,3,1,1,2,4,2,1,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Hauser|Huang|Ross.Slate1|Graham|VanLange|Inbar|Kay|Alter|Bauer|Rottenstrich|Miyamoto|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,1,Global,all,TRUE +2352,0.0475373900907567,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,2,4,1,1,1,5,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Inbar|Graham|Critcher|VanLange|Rottenstrich|Alter|Ross.Slate1|Hauser|Kay|Miyamoto|Anderson|Huang,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,12,Global,all,TRUE +2355,-0.651449959112408,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,,,,,,,,,,,,,,,,,,,,,,,,,,1,3,2,5,2,3,2,1,4,2,1,1,1,4,1,1,2,1,4,2,2,2,2,4,4,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Inbar|Graham|Anderson|Alter|Huang|Bauer|Miyamoto|Ross.Slate1|Kay|Rottenstrich|VanLange|Critcher,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood,4,Global,all,TRUE +2356,-1.10908130867899,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,7,6,4,2,3,4,4,1,2,4,4,1,2,4,1,3,1,3,4,5,4,2,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Inbar|Miyamoto|Hauser|Critcher|Rottenstrich|Bauer|Anderson|Alter|Huang|Ross.Slate1|VanLange|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,8,Global,all,TRUE +2358,0.309047226766511,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,3,3,2,4,3,1,2,2,1,2,1,1,4,4,1,3,2,1,5,1,2,1,5,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Ross.Slate1|Bauer|Graham|Critcher|Kay|Huang|Anderson|VanLange|Alter|Miyamoto|Rottenstrich|Inbar,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,8,Global,all,TRUE +2359,1.13008829917218,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,3,3,1,1,4,2,3,4,3,2,1,1,1,1,3,1,3,2,1,1,2,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Miyamoto|Alter|Bauer|Kay|Inbar|Anderson|Huang|Hauser|Graham|Ross.Slate1|VanLange|Critcher,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,7,Global,all,TRUE +2360,0.256582448150292,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,6,7,6,5,1,1,4,4,1,1,4,2,1,2,4,1,4,1,1,4,3,1,2,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Miyamoto|Anderson|Rottenstrich|Ross.Slate1|Critcher|VanLange|Bauer|Alter|Graham|Kay|Inbar|Hauser,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five,3,Global,all,TRUE +2361,0.304163578932407,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,5,5,3,1,1,4,3,1,1,4,4,1,1,4,1,4,1,1,3,4,3,2,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Ross.Slate1|Kay|Anderson|Bauer|Huang|Graham|Critcher|Rottenstrich|Alter|Inbar|Miyamoto|Hauser,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,4,Global,all,TRUE +2362,0.0367279485922873,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,5,6,4,1,1,4,3,1,1,3,3,1,1,4,1,4,2,1,4,4,4,1,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Hauser|VanLange|Alter|Miyamoto|Graham|Inbar|Kay|Rottenstrich|Ross.Slate1|Huang|Bauer|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,1,Global,all,TRUE +2363,0.261074939706562,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,7,7,7,3,3,3,3,3,3,3,5,5,3,3,3,3,3,3,3,3,3,3,3,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Alter|Graham|Miyamoto|Huang|Ross.Slate1|Hauser|Critcher|Rottenstrich|Inbar|Anderson|Bauer|VanLange,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,11,Global,all,TRUE +2365,-0.80460718573819,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,5,2,3,3,3,1,3,4,1,4,2,3,4,1,2,1,2,1,4,3,3,3,4,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Miyamoto|Inbar|Kay|Anderson|Huang|Ross.Slate1|VanLange|Rottenstrich|Alter|Graham|Hauser|Bauer,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,5,Global,all,TRUE +2366,0.764840471492926,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,7,4,2,1,3,2,1,1,3,1,1,1,3,1,2,1,1,3,2,3,1,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Bauer|Huang|Anderson|Kay|VanLange|Miyamoto|Alter|Critcher|Ross.Slate1|Rottenstrich|Inbar|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,4,Global,all,TRUE +2368,0.293229784473138,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,4,3,4,4,1,3,2,1,4,3,1,3,1,3,2,4,1,4,3,3,1,1,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Kay|Huang|Bauer|Graham|Hauser|VanLange|Rottenstrich|Miyamoto|Inbar|Critcher|Anderson|Alter,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +2371,1.48426210750653,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,1,5,4,2,1,5,2,1,1,3,3,2,1,4,1,4,1,2,3,4,3,1,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Critcher|Inbar|Anderson|Huang|VanLange|Alter|Rottenstrich|Miyamoto|Graham|Ross.Slate1|Kay|Hauser,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,4,Global,all,TRUE +2372,1.08514568318133,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,6,6,4,2,1,3,3,1,1,3,4,1,1,3,1,3,1,1,3,3,3,1,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Alter|Bauer|Ross.Slate1|VanLange|Inbar|Graham|Huang|Miyamoto|Rottenstrich|Anderson|Critcher|Hauser,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,11,Global,all,TRUE +2374,0.468799627635163,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,6,5,3,5,1,1,3,1,1,1,4,4,1,1,2,1,5,1,1,3,4,2,1,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Rottenstrich|Anderson|Hauser|Huang|Bauer|Critcher|Miyamoto|Ross.Slate1|VanLange|Graham|Alter|Kay,ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +2375,0.326185039190816,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,6,7,2,1,1,2,3,1,1,2,4,1,1,4,1,2,1,1,3,3,3,1,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Miyamoto|Anderson|Ross.Slate1|Kay|Bauer|Huang|Critcher|Inbar|Graham|VanLange|Alter|Hauser,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,3,Global,all,TRUE +2377,0.0677048735841644,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,2,5,1,2,2,1,2,1,1,2,2,3,1,5,2,1,3,1,3,3,1,1,2,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Alter|Graham|Rottenstrich|Ross.Slate1|Hauser|Huang|Inbar|Bauer|Miyamoto|VanLange|Kay|Anderson,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +2378,0.282815950193701,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,5,4,5,4,5,4,3,2,1,5,3,4,5,1,5,4,3,5,4,1,2,4,2,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Hauser|Ross.Slate1|Miyamoto|VanLange|Anderson|Rottenstrich|Alter|Critcher|Kay|Inbar|Bauer|Huang,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,6,Global,all,TRUE +2379,-0.669767916782012,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,5,5,2,4,3,3,4,3,1,1,3,2,1,1,4,1,4,2,3,4,3,2,3,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Hauser|Huang|Rottenstrich|VanLange|Miyamoto|Anderson|Alter|Ross.Slate1|Kay|Graham|Inbar|Bauer,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,7,Global,all,TRUE +2380,0.797669147779205,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,5,3,1,1,3,2,1,1,4,5,3,1,5,1,4,1,1,4,3,4,1,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Bauer|Anderson|Miyamoto|Hauser|Critcher|Graham|Rottenstrich|Inbar|Ross.Slate1|Alter|VanLange|Kay,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,3,Global,all,TRUE +2381,-0.251266321519074,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,3,5,1,4,2,1,2,1,1,1,2,2,1,2,2,1,4,1,1,3,3,2,4,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Ross.Slate1|VanLange|Anderson|Bauer|Inbar|Alter|Huang|Miyamoto|Graham|Hauser|Critcher|Kay,ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing,4,Global,all,TRUE +2382,0.720558040567546,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,3,3,2,3,2,1,4,1,1,1,5,3,1,2,2,1,3,1,2,4,3,2,2,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|VanLange|Hauser|Bauer|Huang|Anderson|Rottenstrich|Ross.Slate1|Kay|Graham|Miyamoto|Critcher|Alter,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +2383,-0.314807344950796,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,3,5,3,5,1,1,4,3,1,1,4,4,1,2,4,1,4,1,1,3,4,2,1,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Critcher|Hauser|Huang|Ross.Slate1|Miyamoto|Rottenstrich|Alter|Anderson|Inbar|Graham|VanLange|Bauer,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,9,Global,all,TRUE +2384,0.272148959051466,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,5,1,6,3,1,1,3,2,1,1,3,3,2,1,4,1,3,1,2,1,3,2,1,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Ross.Slate1|Huang|Rottenstrich|Hauser|VanLange|Miyamoto|Anderson|Inbar|Alter|Critcher|Bauer|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,8,Global,all,TRUE +2386,1.52604624852628,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,5,6,5,4,2,1,3,4,1,1,5,4,2,1,5,1,4,1,2,4,4,4,2,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Kay|Bauer|Graham|Anderson|Huang|Critcher|VanLange|Alter|Hauser|Inbar|Miyamoto|Rottenstrich,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,5,Global,all,TRUE +2388,0.69155944530147,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,3,2,2,3,1,2,3,1,2,3,3,3,1,1,1,1,2,2,2,2,1,2,1,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Bauer|Anderson|Alter|Kay|Inbar|Ross.Slate1|Hauser|Graham|Huang|Miyamoto|VanLange|Critcher,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,3,Global,all,TRUE +2390,0.0818107894687693,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,3,3,1,4,1,1,4,3,1,1,2,3,2,1,2,1,4,1,1,3,3,2,2,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Anderson|Huang|Miyamoto|Alter|Hauser|Bauer|VanLange|Ross.Slate1|Critcher|Graham|Rottenstrich|Kay,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +2391,1.19098858234204,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,6,6,4,2,1,2,1,1,1,3,3,1,1,4,1,5,1,2,4,3,3,1,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Graham|Miyamoto|Ross.Slate1|Critcher|Rottenstrich|Bauer|Huang|VanLange|Hauser|Inbar|Alter|Anderson,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +2393,-0.484833355213251,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,2,3,1,4,2,2,2,2,1,3,2,1,4,1,3,1,5,1,4,4,4,2,1,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Alter|Inbar|Bauer|VanLange|Rottenstrich|Critcher|Anderson|Kay|Ross.Slate1|Huang|Hauser|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,8,Global,all,TRUE +2394,1.15790674919296,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,3,4,2,4,2,1,2,1,1,3,4,2,2,1,3,3,4,1,4,3,2,4,3,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Alter|VanLange|Ross.Slate1|Miyamoto|Huang|Critcher|Graham|Inbar|Hauser|Bauer|Kay|Anderson,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,13,Global,all,TRUE +2396,0.4781621205713,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,6,3,2,2,2,2,1,1,1,1,1,3,2,2,2,2,5,1,4,2,1,3,3,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Alter|Miyamoto|VanLange|Inbar|Ross.Slate1|Anderson|Huang|Critcher|Hauser|Graham|Rottenstrich|Kay,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,7,Global,all,TRUE +2397,0.112127529395179,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,7,7,4,1,1,4,3,1,3,1,1,3,2,4,1,3,1,5,4,3,2,1,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Ross.Slate1|Critcher|VanLange|Kay|Anderson|Alter|Hauser|Inbar|Bauer|Rottenstrich|Miyamoto|Graham,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +2398,1.42086353443104,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,3,3,3,2,4,2,3,1,1,3,3,2,4,2,3,3,4,1,4,3,3,3,3,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Huang|Bauer|Inbar|Rottenstrich|VanLange|Anderson|Hauser|Miyamoto|Alter|Ross.Slate1|Graham|Critcher,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,7,Global,all,TRUE +2399,0.953071507447823,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,5,5,3,4,1,1,4,4,1,1,4,3,1,2,4,1,4,1,1,4,4,3,1,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Bauer|Kay|Huang|Ross.Slate1|Inbar|Rottenstrich|VanLange|Graham|Hauser|Critcher|Anderson|Miyamoto,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,12,Global,all,TRUE +2400,-0.456228141695608,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,5,1,1,4,3,1,1,4,4,1,1,4,1,4,1,2,4,4,4,1,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Anderson|Graham|Hauser|Ross.Slate1|Kay|Critcher|Miyamoto|Inbar|Bauer|VanLange|Huang|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood,2,Global,all,TRUE +2401,0.508872242246143,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,5,5,6,5,2,1,3,2,1,2,5,3,1,1,5,1,5,1,1,3,3,3,1,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Huang|Bauer|Graham|Hauser|VanLange|Rottenstrich|Miyamoto|Inbar|Critcher|Kay,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,3,Global,all,TRUE +2403,0.152200144006159,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,5,4,3,1,1,3,2,1,1,3,4,1,1,4,1,3,1,1,3,3,3,1,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Rottenstrich|Critcher|Kay|Miyamoto|Bauer|Inbar|Ross.Slate1|Hauser|Alter|VanLange|Graham|Huang,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +2404,1.12705640263248,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,6,3,5,2,1,3,3,1,1,3,3,1,1,4,1,5,1,1,4,3,2,1,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Hauser|VanLange|Anderson|Miyamoto|Critcher|Alter|Rottenstrich|Graham|Inbar|Kay|Bauer|Ross.Slate1,ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +2405,0.619725367672347,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,4,1,1,3,3,1,1,4,4,2,2,4,1,4,1,1,3,3,4,2,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Bauer|Kay|Hauser|VanLange|Graham|Alter|Rottenstrich|Ross.Slate1|Anderson|Huang|Miyamoto|Inbar,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing,10,Global,all,TRUE +2406,-1.23245317654183,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,7,7,5,4,1,4,3,1,3,5,4,4,1,5,2,4,1,4,4,3,3,3,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|VanLange|Inbar|Alter|Graham|Bauer|Critcher|Kay|Anderson|Ross.Slate1|Hauser|Miyamoto|Rottenstrich,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,9,Global,all,TRUE +2407,0.459312781738227,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,5,6,3,2,3,4,1,1,4,3,4,4,2,3,2,3,1,4,2,3,3,3,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Rottenstrich|Anderson|Graham|Kay|Alter|Ross.Slate1|VanLange|Miyamoto|Inbar|Critcher|Huang|Bauer,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five,3,Global,all,TRUE +2408,0.626055964068783,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,6,4,4,3,2,3,3,1,2,3,3,1,1,4,1,4,1,2,3,3,2,1,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Hauser|Critcher|Anderson|Huang|Graham|Kay|Rottenstrich|Ross.Slate1|Miyamoto|Bauer|Alter|Inbar,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,4,Global,all,TRUE +2410,-0.0253502543522666,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,6,6,6,3,2,1,4,3,1,2,3,4,1,1,4,1,4,2,1,2,2,2,1,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Bauer|VanLange|Rottenstrich|Huang|Inbar|Anderson|Hauser|Ross.Slate1|Kay|Miyamoto|Alter|Graham,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five,7,Global,all,TRUE +2412,0.711335772517044,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,,,,,,,,,,,,,,,,,,,,,,,,,,7,5,7,6,7,3,1,1,3,1,1,1,2,4,1,1,3,1,2,1,1,2,2,3,1,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|VanLange|Hauser|Anderson|Kay|Inbar|Rottenstrich|Bauer|Critcher|Graham|Huang|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,5,Global,all,TRUE +2413,0.239851663928655,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,6,5,4,1,1,5,4,1,1,4,3,2,1,4,1,5,1,1,4,5,3,1,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Huang|Kay|Ross.Slate1|Inbar|VanLange|Critcher|Bauer|Anderson|Graham|Rottenstrich|Miyamoto|Hauser,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +2415,0.711995957582511,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,eltetab,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,5,2,5,2,1,4,3,1,2,5,2,2,4,5,2,4,1,3,4,2,3,2,elte,elte,eltetab,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Anderson|Critcher|Rottenstrich|Bauer|Graham|VanLange|Hauser|Inbar|Alter|Huang|Miyamoto|Kay,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,2,Global,all,TRUE +2418,0.620919159371882,Low,ML2_Slate1_Hungarian_Inlab_execution_illegal_DEPLOY_r.csv,elte,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,7,6,4,5,1,3,3,1,1,4,1,1,3,3,2,5,1,1,5,2,1,2,elte,elte,elte,Hungary,"Eotvos Lorand University, in Budapest, Hungary",Hungarian,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|VanLange|Huang|Ross.Slate1|Kay|Bauer|Hauser|Miyamoto|Anderson|Inbar|Rottenstrich|Alter|Critcher,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,9,Global,all,TRUE +2419,0.141533152863924,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,3,2,2,4,1,1,4,4,1,1,4,3,1,1,4,1,4,1,1,4,4,2,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2424,1.73641167671675,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,6,3,4,1,1,4,2,1,1,2,4,2,1,3,1,4,1,1,4,4,2,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2426,0.109095632855479,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,6,5,3,4,1,1,3,2,1,1,2,3,1,1,3,1,4,1,1,3,3,2,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2427,0.57016590716443,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,1,1,1,4,4,1,1,4,4,1,1,1,1,4,1,1,1,4,4,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2429,0.432294741668552,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,6,6,5,1,4,3,3,1,1,2,4,1,2,1,1,4,2,1,2,5,5,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2435,1.29313939989757,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,4,2,1,5,3,3,3,3,4,4,4,4,5,3,3,3,2,4,1,5,4,2,5,2,4,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2436,-0.893185694043187,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,5,5,3,3,2,5,4,1,4,2,4,4,2,3,4,4,3,3,3,3,3,4,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2440,1.42086353443104,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,6,5,1,1,4,4,1,1,5,5,1,1,5,1,5,3,3,5,5,5,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2441,1.25201544394329,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,1,5,1,1,5,5,1,1,5,5,1,1,5,1,5,1,1,5,5,5,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2444,0.332642214018651,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,7,6,6,3,3,3,2,4,4,2,5,3,4,3,3,2,3,4,4,3,3,2,3,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2446,0.934219943144151,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,5,6,4,1,1,3,4,1,2,5,4,2,1,5,1,4,1,1,4,4,5,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2448,0.408699754416411,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,4,5,4,4,2,2,4,4,2,2,4,4,4,1,5,1,4,2,2,5,4,5,3,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2451,1.62015494327661,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,7,7,4,2,2,4,3,2,2,4,4,2,2,4,1,4,1,2,4,4,4,2,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2452,-0.976220369448613,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,4,4,4,2,2,4,3,4,3,3,3,2,3,3,4,3,2,2,4,4,3,3,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2453,0.423465855366483,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,5,5,3,5,1,1,5,3,1,1,4,4,1,1,5,1,5,1,1,5,5,1,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2454,-0.142393751289271,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,4,4,3,3,4,4,1,2,4,4,1,1,3,2,4,2,4,4,4,3,2,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2458,0.883075534658866,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,4,5,5,4,4,4,3,4,3,3,3,4,3,4,4,3,3,4,4,3,3,3,4,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2460,0.107384106446711,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,5,4,4,2,2,3,2,2,3,3,3,3,3,2,2,2,2,3,2,2,2,3,2,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2461,0.767619211169829,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,4,3,4,3,3,3,3,3,4,3,3,3,3,4,3,3,3,4,5,3,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2463,0.905616955097107,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,4,1,4,4,3,1,1,4,4,1,1,4,1,4,1,1,4,4,4,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2464,0.531413662684384,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,6,6,4,2,2,2,4,1,1,4,1,1,4,4,3,3,4,3,4,3,4,2,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2468,-0.67253078453408,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,5,1,1,5,4,1,1,4,5,1,1,5,1,5,3,1,4,4,5,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2472,0.372712603159032,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,4,4,1,2,3,5,1,2,5,4,1,3,5,1,5,2,1,4,4,4,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2474,1.01844841024911,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,5,2,7,4,1,1,4,4,1,1,1,5,1,1,4,1,2,1,1,5,4,1,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2476,-0.651042930909739,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,3,5,3,4,1,2,4,4,1,2,4,3,2,1,5,2,4,2,1,5,4,3,2,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2479,0.84221838202162,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,5,5,2,2,3,4,2,2,3,4,2,4,4,2,4,4,2,4,3,4,2,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2482,-0.88131126474718,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,5,5,4,4,1,1,5,3,1,1,3,4,1,1,4,1,5,1,1,5,5,4,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2486,-0.58145621179405,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,6,5,4,2,1,4,2,1,1,4,4,1,1,4,1,5,1,1,4,5,4,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2492,0.822975661440113,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,7,4,1,1,1,3,1,1,4,4,1,1,4,1,3,1,1,3,5,5,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2496,0.737035667926385,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,3,5,6,3,2,3,4,4,4,3,5,3,2,4,4,2,3,2,4,3,4,3,3,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2497,1.44247796648678,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,6,6,6,2,4,4,3,3,4,4,2,4,3,3,4,4,3,3,3,3,2,3,4,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2500,0.880703823184632,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,4,5,3,4,2,2,4,4,1,3,4,5,2,1,5,2,4,3,2,4,2,4,2,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2502,0.201225997880008,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,6,3,4,3,2,2,3,3,2,2,3,3,3,1,3,2,3,1,2,3,3,1,2,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2504,0.0753558401115336,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,1,1,5,1,1,5,5,1,1,5,5,1,1,5,1,5,1,1,5,5,5,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2506,-0.280531720102184,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,5,4,6,2,2,4,3,4,2,3,3,4,5,5,4,4,3,3,4,5,3,4,2,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2507,-0.317963594451296,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,4,7,6,5,5,5,1,1,4,4,1,1,5,5,1,3,4,4,5,3,3,5,5,5,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2508,-0.637077239910768,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,7,4,4,1,1,2,2,1,1,4,4,1,1,3,1,4,2,1,5,4,3,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2509,0.991823751927869,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,4,1,1,1,7,3,1,3,3,3,1,1,2,4,1,1,3,2,5,2,3,3,5,3,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2511,0.0417404003283888,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,6,5,4,4,5,5,2,3,5,5,3,4,4,4,5,3,4,5,5,5,3,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2513,0.938839013131819,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,3,4,2,2,2,4,2,2,5,4,2,2,4,2,4,2,2,4,4,4,2,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2515,0.789767249859637,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,3,5,1,2,5,3,1,1,4,2,1,1,4,1,5,2,2,3,4,2,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2518,0.562783969424694,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,7,5,2,4,1,1,4,3,1,1,4,5,1,1,5,1,4,1,1,5,4,4,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2524,-0.666736020242311,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,7,6,2,4,5,2,1,3,3,2,2,3,4,3,4,3,5,4,1,4,5,2,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2525,0.941997488102919,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,7,6,6,5,2,2,2,5,1,2,3,5,2,1,3,4,5,1,3,5,4,4,4,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2526,0.113307674640478,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,7,7,5,1,1,5,5,1,1,5,5,1,1,5,1,5,1,1,5,5,4,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2528,-0.412608121306294,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,3,1,1,3,3,1,1,3,4,1,1,3,1,3,1,1,3,4,3,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2529,0.343056048298089,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,6,5,6,3,5,4,5,3,4,4,3,4,5,5,4,4,4,4,4,4,4,4,4,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2530,0.980749732582965,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,2,5,1,1,4,5,1,1,4,5,1,1,4,1,5,1,1,5,5,5,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2534,-1.39128081449858,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,6,3,6,5,5,5,2,2,1,4,2,2,4,5,1,1,4,1,4,3,2,4,4,4,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2539,0.700921938237607,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,5,1,1,5,4,1,1,5,5,1,1,5,1,5,2,1,5,5,5,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2545,0.267529889063797,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,5,7,1,4,1,1,3,4,1,1,3,4,1,1,4,1,4,1,1,4,4,4,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2546,0.388530045452404,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,5,1,1,5,5,1,1,5,5,1,1,5,1,5,1,1,5,5,5,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|Miyamoto|Kay|Inbar|Bauer|Graham|Huang|VanLange|Hauser|Rottenstrich,"",3,Global,all,TRUE +2555,0.0139355967618478,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,3,4,1,1,2,3,1,1,3,4,1,1,4,1,4,2,1,4,4,3,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Anderson|Ross.Slate1|Critcher|Inbar|Graham|Alter|Rottenstrich|Hauser|Bauer|Miyamoto|Huang|Kay,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,2,Global,all,TRUE +2556,-0.125129360433566,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,6,5,5,2,1,2,3,1,1,1,1,2,1,1,4,1,3,2,1,3,3,3,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Miyamoto|Huang|Inbar|Rottenstrich|Kay|Alter|Bauer|Ross.Slate1|Anderson|Graham|VanLange|Hauser,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,10,Global,all,TRUE +2558,0.698283423446339,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,5,6,5,4,4,3,3,4,3,2,4,4,3,3,3,3,2,4,2,4,3,4,3,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Huang|Graham|Critcher|Bauer|Miyamoto|Hauser|Rottenstrich|VanLange|Kay|Anderson|Ross.Slate1|Alter,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,11,Global,all,TRUE +2561,0.155372265431495,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,5,1,5,2,5,4,4,2,4,3,4,4,4,5,2,4,2,2,3,3,2,4,4,4,2,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Rottenstrich|VanLange|Alter|Ross.Slate1|Critcher|Miyamoto|Inbar|Bauer|Kay|Huang|Anderson|Hauser,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,12,Global,all,TRUE +2562,0.546179763634456,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,4,4,1,1,4,3,1,1,4,4,1,1,4,1,5,1,1,3,5,2,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Ross.Slate1|Huang|VanLange|Bauer|Alter|Critcher|Kay|Miyamoto|Anderson|Hauser|Graham|Rottenstrich,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,10,Global,all,TRUE +2563,0.858429206063425,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,4,2,2,3,4,1,2,4,4,2,1,3,2,4,2,2,4,4,4,2,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|VanLange|Anderson|Kay|Graham|Ross.Slate1|Miyamoto|Rottenstrich|Critcher|Inbar|Alter|Bauer|Hauser,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,3,Global,all,TRUE +2564,-0.461240593431709,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,4,5,2,4,1,2,4,3,1,1,3,3,2,1,3,1,4,3,1,3,3,3,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Miyamoto|Graham|Huang|Ross.Slate1|Rottenstrich|Critcher|Kay|Bauer|Hauser|VanLange|Inbar|Anderson,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,13,Global,all,TRUE +2567,0.261074939706562,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,5,4,1,1,5,1,1,5,5,5,1,5,1,4,5,1,5,5,4,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Ross.Slate1|Inbar|Kay|Bauer|VanLange|Hauser|Miyamoto|Rottenstrich|Anderson|Alter|Huang|Graham,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,10,Global,all,TRUE +2569,0.698423648331974,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,5,5,6,4,1,2,4,4,1,1,5,4,1,1,4,1,5,3,1,4,4,5,5,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Kay|Anderson|Hauser|Huang|Inbar|Bauer|Graham|VanLange|Ross.Slate1|Miyamoto|Critcher|Alter,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,3,Global,all,TRUE +2570,-0.221878795445764,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,4,2,5,2,2,5,4,1,2,4,5,2,1,3,2,5,3,2,2,5,4,2,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Graham|Miyamoto|Inbar|Rottenstrich|Anderson|Critcher|Bauer|VanLange|Hauser|Ross.Slate1|Alter|Huang,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,6,Global,all,TRUE +2572,1.25201544394329,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Anderson|Critcher|Inbar|Rottenstrich|Graham|Miyamoto|Bauer|VanLange|Huang|Kay|Hauser|Alter,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,2,Global,all,TRUE +2573,-0.205792324364758,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,5,4,2,3,3,3,3,2,4,3,2,4,4,3,4,3,2,3,4,4,2,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Anderson|Kay|Miyamoto|Critcher|Bauer|Graham|Huang|Alter|Hauser|Ross.Slate1|Rottenstrich|Inbar,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five,2,Global,all,TRUE +2574,0.564368917402062,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,6,7,5,5,1,4,5,5,1,1,5,5,1,1,3,1,5,1,1,5,5,5,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Bauer|Alter|Miyamoto|Huang|Ross.Slate1|Hauser|Anderson|Inbar|Rottenstrich|Graham|Critcher|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,8,Global,all,TRUE +2575,0.573857988769598,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,7,5,5,1,1,5,5,1,1,5,5,1,1,5,1,5,1,1,5,5,5,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Huang|Kay|Bauer|Hauser|Critcher|Ross.Slate1|Rottenstrich|Alter|Graham|Inbar|Miyamoto|Anderson,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,13,Global,all,TRUE +2576,0.313006111688712,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,6,1,4,2,1,4,4,1,1,4,4,1,4,4,4,4,4,4,4,4,3,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Alter|Rottenstrich|Anderson|Inbar|Huang|Miyamoto|Hauser|VanLange|Kay|Critcher|Bauer|Ross.Slate1,ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,4,Global,all,TRUE +2577,-0.373195691760781,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,3,4,1,2,3,2,1,1,1,1,1,1,2,1,5,1,1,2,4,1,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Ross.Slate1|Anderson|Graham|Hauser|Kay|Inbar|Critcher|Alter|Miyamoto|VanLange|Rottenstrich|Bauer,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,3,Global,all,TRUE +2580,0.112520911143613,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,6,6,4,5,4,3,5,4,2,4,2,5,5,4,1,2,5,2,2,5,4,5,3,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Ross.Slate1|Huang|VanLange|Hauser|Miyamoto|Bauer|Inbar|Alter|Rottenstrich|Anderson|Critcher|Kay,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,11,Global,all,TRUE +2581,1.36800537406639,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,7,2,1,2,2,1,1,2,3,5,1,1,4,2,1,1,2,2,4,4,3,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Bauer|Ross.Slate1|Hauser|Miyamoto|Huang|Anderson|Graham|Alter|Inbar|Kay|Rottenstrich|VanLange,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,7,Global,all,TRUE +2584,1.40978951508614,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,4,3,2,3,2,1,4,1,1,1,1,3,1,1,2,1,4,1,1,1,2,2,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Bauer|Anderson|Graham|Miyamoto|Alter|Hauser|Ross.Slate1|Critcher|Rottenstrich|Inbar|Huang|Kay,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +2586,1.01647008052331,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,4,6,3,3,2,4,4,2,1,3,3,4,2,3,3,3,4,4,2,3,4,4,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Huang|Miyamoto|Ross.Slate1|Hauser|Alter|Bauer|Inbar|Anderson|VanLange|Critcher|Kay|Rottenstrich,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,9,Global,all,TRUE +2588,0.467088101226396,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,6,5,1,5,1,1,5,4,1,1,3,4,1,1,5,1,5,1,1,5,4,4,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Huang|Inbar|Ross.Slate1|Miyamoto|Rottenstrich|Hauser|Anderson|Kay|Bauer|Critcher|Graham|Alter,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,8,Global,all,TRUE +2589,-0.531487497612865,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,5,1,1,5,5,1,1,5,5,1,1,5,1,5,1,1,5,5,5,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Anderson|Ross.Slate1|Inbar|Huang|Hauser|Critcher|Bauer|VanLange|Miyamoto|Graham|Rottenstrich|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,2,Global,all,TRUE +2590,0.887032194110469,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,4,4,4,1,1,5,5,1,1,4,5,1,1,5,1,5,1,1,4,5,4,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|VanLange|Graham|Anderson|Critcher|Rottenstrich|Hauser|Inbar|Miyamoto|Ross.Slate1|Alter|Huang|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,4,Global,all,TRUE +2592,0.833122692402517,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,7,6,3,4,1,1,4,3,1,1,2,4,1,1,3,1,4,3,3,4,4,4,2,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Ross.Slate1|VanLange|Inbar|Critcher|Kay|Rottenstrich|Anderson|Hauser|Bauer|Graham|Alter|Miyamoto,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,8,Global,all,TRUE +2594,-0.436985421114102,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,4,3,5,1,1,5,4,1,4,5,5,1,1,5,1,5,2,1,5,5,5,2,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Inbar|Critcher|Anderson|VanLange|Miyamoto|Kay|Huang|Graham|Bauer|Alter|Rottenstrich|Ross.Slate1,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,4,Global,all,TRUE +2597,0.944369199577153,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,3,5,4,4,2,2,5,4,1,2,4,4,2,3,4,2,4,3,3,4,4,2,2,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Critcher|VanLange|Miyamoto|Bauer|Ross.Slate1|Hauser|Alter|Rottenstrich|Inbar|Anderson|Graham|Kay,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,11,Global,all,TRUE +2600,0.388265467605969,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,7,6,5,3,3,3,3,5,4,4,3,4,4,4,2,5,4,3,4,4,4,4,2,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Critcher|Graham|Rottenstrich|VanLange|Miyamoto|Kay|Alter|Huang|Ross.Slate1|Anderson|Inbar|Bauer,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,11,Global,all,TRUE +2604,-0.827272959137231,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,7,4,1,1,5,4,1,1,4,4,1,1,5,1,5,1,1,4,4,1,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|VanLange|Huang|Rottenstrich|Miyamoto|Ross.Slate1|Kay|Alter|Anderson|Critcher|Bauer|Inbar|Graham,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,9,Global,all,TRUE +2606,1.12125941287011,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,4,3,2,4,2,5,3,4,3,2,4,4,3,2,3,2,3,4,4,4,4,3,2,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Graham|Ross.Slate1|Alter|Inbar|Anderson|Critcher|VanLange|Kay|Rottenstrich|Bauer|Huang|Hauser,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,6,Global,all,TRUE +2609,0.382861859592034,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,5,5,5,1,1,5,4,1,1,3,5,1,1,3,1,5,3,3,3,5,1,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Critcher|Bauer|Inbar|Ross.Slate1|VanLange|Alter|Rottenstrich|Miyamoto|Huang|Anderson|Kay|Graham,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,11,Global,all,TRUE +2610,1.05219042846366,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,7,7,4,5,4,5,3,4,4,4,4,4,3,5,3,3,5,4,4,5,4,4,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Anderson|Alter|Miyamoto|Hauser|Huang|VanLange|Ross.Slate1|Critcher|Kay|Bauer|Inbar|Rottenstrich,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,2,Global,all,TRUE +2611,0.364670480353829,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,5,4,2,4,1,1,4,3,1,1,3,4,1,1,4,2,4,1,2,4,4,3,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Anderson|VanLange|Bauer|Rottenstrich|Miyamoto|Graham|Inbar|Ross.Slate1|Alter|Kay|Critcher|Huang,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,2,Global,all,TRUE +2612,-0.508301764033993,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,6,5,3,5,2,1,5,4,3,1,4,5,3,2,4,4,5,3,3,3,5,4,3,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Critcher|Alter|Miyamoto|Anderson|Kay|Huang|Inbar|VanLange|Hauser|Ross.Slate1|Bauer|Rottenstrich,ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,5,Global,all,TRUE +2613,0.648457159621389,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,5,5,5,1,1,5,5,1,1,5,5,1,1,4,1,5,1,2,3,5,5,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Bauer|VanLange|Ross.Slate1|Huang|Rottenstrich|Graham|Hauser|Anderson|Inbar|Critcher|Kay|Miyamoto,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +2614,0.430314186472151,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,6,5,1,1,5,5,1,1,5,5,1,1,5,1,5,1,1,5,5,5,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Rottenstrich|Inbar|Graham|Hauser|Huang|Bauer|Critcher|Miyamoto|Ross.Slate1|VanLange|Anderson|Kay,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +2619,-1.64093209380316,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,5,5,2,4,2,2,5,3,1,2,4,4,2,2,5,2,2,4,2,4,4,5,2,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Miyamoto|Graham|Inbar|VanLange|Anderson|Kay|Hauser|Critcher|Alter|Rottenstrich|Bauer|Huang,ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,6,Global,all,TRUE +2621,0.519679458274013,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,7,6,6,4,1,1,4,4,1,1,4,5,1,1,4,1,4,1,1,4,4,4,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Miyamoto|Critcher|Anderson|Rottenstrich|Bauer|Hauser|Graham|Inbar|Huang|Ross.Slate1|VanLange|Kay,ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,4,Global,all,TRUE +2623,1.27125816452479,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,6,5,3,4,1,1,3,2,1,2,3,3,1,1,5,1,4,1,1,3,3,4,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Miyamoto|Inbar|Hauser|Bauer|Anderson|Huang|VanLange|Alter|Graham|Rottenstrich|Ross.Slate1|Critcher,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,6,Global,all,TRUE +2624,1.09898479574891,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,3,1,1,3,2,1,1,4,3,1,2,3,1,3,1,1,3,3,4,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Rottenstrich|Critcher|VanLange|Kay|Anderson|Miyamoto|Hauser|Bauer|Graham|Ross.Slate1|Inbar|Alter,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +2627,-0.383342722723184,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,5,1,1,5,5,1,1,5,5,1,1,5,1,5,1,1,5,5,5,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|VanLange|Kay|Critcher|Ross.Slate1|Anderson|Rottenstrich|Bauer|Huang|Inbar|Graham|Alter,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood,7,Global,all,TRUE +2631,1.40978951508614,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,5,4,1,4,4,1,1,1,4,5,1,1,4,1,4,1,1,4,4,1,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Huang|Bauer|Critcher|Kay|Rottenstrich|VanLange|Ross.Slate1|Hauser|Miyamoto|Alter|Graham|Anderson,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,13,Global,all,TRUE +2633,-0.0440593682997047,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,4,4,1,2,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Inbar|Hauser|Anderson|Rottenstrich|Bauer|Ross.Slate1|Miyamoto|Alter|VanLange|Kay|Graham|Huang,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,4,Global,all,TRUE +2635,0.285454464984969,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,5,5,6,5,1,1,3,3,1,1,4,4,1,1,4,1,4,2,1,3,4,3,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Inbar|Graham|Bauer|Alter|Anderson|Hauser|Ross.Slate1|Kay|Huang|Rottenstrich|Miyamoto|VanLange,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,6,Global,all,TRUE +2637,1.11084557859068,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,5,6,5,4,5,3,2,4,3,3,4,4,5,3,3,5,2,2,3,2,4,2,3,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Ross.Slate1|Critcher|Inbar|Miyamoto|Bauer|Graham|Rottenstrich|Huang|Hauser|Kay|VanLange|Anderson,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,13,Global,all,TRUE +2640,0.325131472376917,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,5,4,4,3,1,1,3,2,1,1,2,2,1,1,3,1,4,1,1,2,3,2,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Graham|VanLange|Anderson|Bauer|Alter|Rottenstrich|Ross.Slate1|Critcher|Kay|Huang|Inbar|Hauser,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,4,Global,all,TRUE +2641,-0.746612220676638,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,3,5,1,4,1,2,4,3,1,1,3,3,1,2,5,1,4,1,1,3,4,3,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Ross.Slate1|Rottenstrich|VanLange|Bauer|Hauser|Alter|Inbar|Huang|Miyamoto|Graham|Critcher|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,1,Global,all,TRUE +2642,1.27362987599903,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,6,4,5,3,2,4,2,3,4,3,4,3,3,5,3,2,4,2,3,4,4,4,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Hauser|Anderson|Inbar|Ross.Slate1|Alter|Graham|Kay|Critcher|Bauer|Huang|VanLange|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing,3,Global,all,TRUE +2644,0.510977150403343,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,3,5,1,1,5,1,1,1,5,5,1,1,5,1,5,1,1,5,5,5,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Miyamoto|Huang|Alter|Anderson|Hauser|VanLange|Inbar|Critcher|Kay|Bauer|Ross.Slate1|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,5,Global,all,TRUE +2645,1.1795211812487,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,2,1,2,6,2,5,1,1,5,4,1,1,5,5,1,5,5,4,5,4,1,3,5,1,5,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Ross.Slate1|VanLange|Miyamoto|Hauser|Inbar|Bauer|Graham|Rottenstrich|Alter|Kay|Huang|Anderson,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,13,Global,all,TRUE +2647,0.658744415469427,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,5,5,2,2,5,4,1,2,5,5,5,2,5,5,5,4,2,5,5,5,2,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Rottenstrich|Hauser|Bauer|Inbar|Graham|Ross.Slate1|VanLange|Miyamoto|Alter|Huang|Kay|Anderson,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +2650,-0.413926265966628,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,5,5,1,1,4,4,1,1,3,4,1,1,4,1,5,1,1,3,5,1,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Anderson|Miyamoto|Graham|Hauser|Kay|VanLange|Alter|Bauer|Huang|Critcher|Inbar|Ross.Slate1,ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,2,Global,all,TRUE +2655,0.903245243622873,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,5,5,4,1,4,4,4,1,1,5,4,1,1,4,3,4,4,3,5,4,3,2,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Kay|Rottenstrich|VanLange|Inbar|Alter|Hauser|Anderson|Graham|Miyamoto|Ross.Slate1|Critcher|Huang,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +2658,0.556720176345292,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,4,5,5,3,1,1,3,2,1,1,2,4,2,1,3,1,4,1,1,4,2,3,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Inbar|Ross.Slate1|Rottenstrich|Graham|Bauer|VanLange|Alter|Anderson|Miyamoto|Kay|Critcher|Huang,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +2659,0.464983193069196,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,7,6,4,4,2,5,3,2,2,3,4,1,1,4,1,5,2,4,4,4,4,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Miyamoto|Critcher|Hauser|Anderson|Graham|VanLange|Huang|Alter|Kay|Rottenstrich|Bauer|Inbar,ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,5,Global,all,TRUE +2660,-0.284490605024385,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,6,5,5,5,1,1,3,5,1,1,5,5,1,1,3,1,4,2,2,5,5,5,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Graham|Hauser|Anderson|Critcher|Miyamoto|Ross.Slate1|Kay|Huang|Alter|Rottenstrich|VanLange|Bauer,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,4,Global,all,TRUE +2661,0.18251688393257,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,3,4,4,3,5,2,3,3,3,3,3,3,2,4,4,2,2,3,5,4,4,2,3,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Huang|Kay|Inbar|Graham|Ross.Slate1|Anderson|Miyamoto|Hauser|Alter|Bauer|Critcher|Rottenstrich,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing,7,Global,all,TRUE +2664,0.902978440305839,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,4,5,4,2,4,2,4,3,4,3,4,4,3,3,5,3,4,4,4,4,3,4,2,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Critcher|Bauer|VanLange|Kay|Graham|Alter|Ross.Slate1|Hauser|Huang|Rottenstrich|Anderson|Miyamoto,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,12,Global,all,TRUE +2665,0.643053551607454,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,1,6,5,1,1,5,5,1,1,5,5,1,1,5,1,5,1,1,5,5,5,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Kay|Graham|Ross.Slate1|Rottenstrich|Huang|Alter|Inbar|Anderson|Bauer|Miyamoto|Critcher|Hauser,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,9,Global,all,TRUE +2666,0.80874316712411,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,5,5,2,4,1,3,3,3,1,1,4,4,1,1,3,2,3,3,1,4,4,4,2,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Bauer|Kay|Rottenstrich|Miyamoto|Critcher|Hauser|Huang|Graham|VanLange|Alter|Ross.Slate1|Inbar,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing,1,Global,all,TRUE +2672,1.43470264699862,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,4,5,3,1,5,4,4,3,3,5,4,4,4,4,3,3,4,4,4,5,4,2,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|VanLange|Huang|Bauer|Anderson|Graham|Kay|Miyamoto|Rottenstrich|Critcher|Hauser|Alter|Ross.Slate1,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection,5,Global,all,TRUE +2673,1.73641167671675,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Kay|Anderson|Inbar|Huang|Rottenstrich|Ross.Slate1|Graham|Hauser|Bauer|Miyamoto|Critcher|Alter,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,3,Global,all,TRUE +2678,-0.507107972334458,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,5,1,1,4,4,1,1,4,4,1,1,3,1,4,4,2,1,4,4,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|VanLange|Alter|Huang|Rottenstrich|Inbar|Anderson|Ross.Slate1|Miyamoto|Critcher|Bauer|Graham|Kay,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,7,Global,all,TRUE +2679,-0.22160976665813,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,6,5,5,3,4,5,5,3,4,5,5,5,5,5,3,4,4,4,5,4,4,3,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Anderson|Rottenstrich|Hauser|Alter|Miyamoto|Ross.Slate1|Huang|VanLange|Critcher|Graham|Kay|Inbar,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,2,Global,all,TRUE +2681,1.0827739717071,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,6,6,5,1,1,4,4,1,3,2,5,2,1,5,2,4,3,3,5,4,4,2,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Kay|Anderson|Alter|Bauer|Huang|Rottenstrich|Hauser|Graham|Critcher|Miyamoto|Ross.Slate1|Inbar,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,3,Global,all,TRUE +2682,-0.325614560978665,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,7,5,5,3,2,2,2,4,3,2,3,4,2,2,4,2,2,2,2,4,4,4,3,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Critcher|Kay|Anderson|Inbar|Hauser|Bauer|Ross.Slate1|Miyamoto|Graham|Alter|VanLange|Rottenstrich,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,4,Global,all,TRUE +2683,-0.27816000862795,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,5,6,4,1,1,3,4,1,1,5,4,1,1,4,1,4,1,1,5,4,4,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Rottenstrich|Critcher|Ross.Slate1|Hauser|Alter|VanLange|Huang|Bauer|Kay|Miyamoto|Graham|Inbar,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,1,Global,all,TRUE +2684,0.6818057960875,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,6,1,4,1,1,5,5,1,1,5,5,1,1,5,1,5,1,1,4,5,4,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|VanLange|Ross.Slate1|Kay|Anderson|Rottenstrich|Huang|Graham|Miyamoto|Hauser|Bauer|Alter|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,5,Global,all,TRUE +2686,0.446400657553157,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,4,3,1,1,3,3,2,2,3,3,2,1,3,2,2,2,2,1,3,1,4,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Bauer|Graham|Hauser|Huang|Kay|Alter|Rottenstrich|Anderson|Critcher|Miyamoto|Inbar|Ross.Slate1,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,9,Global,all,TRUE +2689,0.655712518929726,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,7,7,5,1,1,3,1,1,1,3,3,1,1,3,1,3,1,1,1,3,3,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|VanLange|Critcher|Kay|Huang|Hauser|Anderson|Bauer|Inbar|Miyamoto|Graham|Rottenstrich,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing,8,Global,all,TRUE +2690,-0.853899842929072,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,5,1,1,5,5,1,1,5,5,1,1,5,1,5,1,1,5,5,5,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|VanLange|Graham|Hauser|Rottenstrich|Bauer|Alter|Ross.Slate1|Kay|Miyamoto|Huang|Critcher|Anderson,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,13,Global,all,TRUE +2695,-0.28026491678515,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,4,2,3,3,3,4,1,1,4,4,1,1,4,5,1,1,5,1,4,1,1,5,5,4,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Graham|Bauer|Critcher|Anderson|Alter|Rottenstrich|VanLange|Ross.Slate1|Inbar|Huang|Miyamoto|Kay,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +2696,0.00325495916537666,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,1,3,5,1,2,4,1,1,5,3,1,1,4,5,1,1,4,1,4,1,1,4,5,3,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Graham|Rottenstrich|Huang|VanLange|Hauser|Kay|Ross.Slate1|Critcher|Bauer|Alter|Anderson|Miyamoto,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing,12,Global,all,TRUE +2706,0.154038248846326,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,5,5,3,4,1,1,3,2,1,1,3,3,1,1,3,1,4,1,1,3,3,3,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Anderson|Alter|Hauser|Bauer|Critcher|VanLange|Huang|Graham|Rottenstrich|Kay|Ross.Slate1|Miyamoto,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,2,Global,all,TRUE +2707,-0.656586763809309,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,6,2,5,1,1,4,5,1,2,4,4,1,1,4,5,4,1,1,5,5,4,2,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Graham|Anderson|Inbar|Kay|Bauer|Alter|Miyamoto|Hauser|Rottenstrich|Huang|VanLange|Critcher,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,3,Global,all,TRUE +2708,0.332782438904286,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,5,4,3,1,2,2,2,1,1,3,3,1,1,3,1,2,1,1,2,2,2,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Miyamoto|Hauser|Graham|Rottenstrich|Kay|Critcher|Ross.Slate1|Anderson|Huang|Alter|Bauer|VanLange,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing,9,Global,all,TRUE +2712,1.04718020219815,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,7,6,7,3,4,4,4,3,4,4,4,4,4,4,3,5,5,4,3,4,4,5,3,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Anderson|Kay|VanLange|Critcher|Rottenstrich|Hauser|Inbar|Alter|Graham|Bauer|Ross.Slate1|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,2,Global,all,TRUE +2714,-0.938519466311867,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,7,3,4,4,1,1,4,4,1,1,4,5,1,1,5,1,5,1,1,5,5,5,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Rottenstrich|Anderson|Miyamoto|Hauser|VanLange|Inbar|Kay|Critcher|Bauer|Graham|Ross.Slate1|Huang,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,3,Global,all,TRUE +2715,-0.00518054538825976,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,7,5,1,1,4,4,1,1,5,5,1,2,4,3,4,3,3,4,4,4,3,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Ross.Slate1|Critcher|Anderson|Huang|Miyamoto|Hauser|Inbar|Alter|Rottenstrich|Bauer|VanLange|Graham,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,4,Global,all,TRUE +2718,1.73641167671675,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,4,6,6,5,1,2,5,5,1,1,5,5,1,1,1,1,1,2,2,2,5,5,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Huang|Anderson|Graham|Rottenstrich|Hauser|Ross.Slate1|Alter|Miyamoto|VanLange|Critcher|Kay|Inbar,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood,3,Global,all,TRUE +2720,0.54855147510869,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,4,4,4,3,4,3,3,4,5,3,5,3,3,3,4,5,4,5,5,3,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|VanLange|Kay|Inbar|Huang|Ross.Slate1|Critcher|Alter|Rottenstrich|Anderson|Bauer|Hauser|Graham,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,10,Global,all,TRUE +2721,-1.1342612439085,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,5,6,2,5,1,1,5,4,1,1,4,5,1,1,5,1,5,1,2,4,4,4,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Ross.Slate1|Bauer|Rottenstrich|Inbar|Hauser|VanLange|Alter|Anderson|Kay|Huang|Critcher|Miyamoto,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,9,Global,all,TRUE +2723,0.579261596783534,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,5,4,4,3,2,2,2,3,2,2,3,3,1,2,3,2,3,2,2,3,3,3,2,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Rottenstrich|Miyamoto|Kay|Inbar|Huang|Ross.Slate1|Bauer|VanLange|Hauser|Alter|Graham|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,13,Global,all,TRUE +2726,0.544592590186488,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,3,4,3,4,3,4,2,4,3,3,4,4,3,2,1,3,2,3,2,2,4,3,4,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Ross.Slate1|Miyamoto|Alter|Anderson|Hauser|Huang|Inbar|Graham|Rottenstrich|Critcher|VanLange|Kay,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing,5,Global,all,TRUE +2731,-0.476397850659615,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,7,6,5,1,1,4,4,1,1,4,4,1,1,5,1,5,1,2,4,5,5,2,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Graham|Ross.Slate1|Critcher|Huang|Inbar|Alter|Miyamoto|VanLange|Bauer|Kay|Anderson|Rottenstrich,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,12,Global,all,TRUE +2732,1.11084557859068,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,6,5,2,3,4,4,3,4,4,2,4,4,2,5,4,3,3,3,4,3,3,3,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Graham|Rottenstrich|Kay|VanLange|Hauser|Ross.Slate1|Alter|Bauer|Anderson|Inbar|Critcher|Miyamoto,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,10,Global,all,TRUE +2739,0.416083917626746,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,3,4,1,4,4,2,4,3,1,3,3,3,1,1,3,1,3,3,3,4,3,2,2,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Anderson|Graham|Kay|Hauser|VanLange|Rottenstrich|Ross.Slate1|Miyamoto|Bauer|Alter|Huang|Inbar,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +2747,0.890724275715636,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,5,6,3,1,2,4,3,1,2,4,5,2,1,3,1,3,1,2,4,4,4,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Anderson|Alter|Huang|VanLange|Rottenstrich|Graham|Critcher|Inbar|Bauer|Ross.Slate1|Miyamoto|Kay,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,2,Global,all,TRUE +2751,-0.0985047021123235,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,6,4,4,4,4,4,2,3,3,3,3,3,4,3,3,3,4,2,4,4,3,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Bauer|Hauser|Rottenstrich|VanLange|Kay|Miyamoto|Alter|Critcher|Inbar|Ross.Slate1|Graham|Anderson,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,13,Global,all,TRUE +2752,0.644765078016221,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,5,4,1,1,5,2,2,1,5,4,1,1,5,1,5,1,1,4,5,1,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Alter|Huang|Kay|Rottenstrich|Bauer|Miyamoto|Ross.Slate1|Critcher|VanLange|Hauser|Graham|Inbar,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +2753,-0.252193309901575,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,5,5,7,5,2,1,5,4,1,2,4,2,1,1,4,1,1,1,2,5,5,2,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Bauer|Inbar|Alter|Hauser|Kay|VanLange|Ross.Slate1|Graham|Huang|Miyamoto|Rottenstrich|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,13,Global,all,TRUE +2757,0.0277747093294189,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,4,2,3,4,3,3,3,3,4,2,3,4,3,4,3,4,3,2,4,3,3,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Ross.Slate1|Anderson|Kay|Miyamoto|VanLange|Bauer|Critcher|Graham|Alter|Rottenstrich|Hauser|Inbar,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,3,Global,all,TRUE +2760,1.4950693235344,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,5,2,5,5,1,1,5,2,1,1,4,5,1,1,4,1,5,1,1,4,5,4,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Bauer|Alter|Hauser|Miyamoto|Anderson|VanLange|Critcher|Kay|Inbar|Rottenstrich|Graham|Huang,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood,6,Global,all,TRUE +2763,0.994195463402103,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Inbar|Critcher|Graham|Bauer|Kay|Huang|Anderson|Alter|Hauser|Rottenstrich|VanLange|Miyamoto,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +2765,0.377191448261066,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,5,5,4,1,1,4,4,1,3,4,4,4,1,4,4,4,4,3,5,4,4,3,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|VanLange|Hauser|Anderson|Rottenstrich|Huang|Alter|Ross.Slate1|Critcher|Bauer|Inbar|Kay|Graham,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,4,Global,all,TRUE +2766,1.05219042846366,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,4,4,4,4,3,4,4,4,3,3,4,4,3,3,4,2,4,3,3,3,4,4,3,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|VanLange|Rottenstrich|Ross.Slate1|Alter|Huang|Kay|Critcher|Anderson|Graham|Miyamoto|Bauer|Hauser,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,9,Global,all,TRUE +2767,-0.105228680257192,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,6,6,4,2,3,4,1,1,3,3,5,1,1,2,1,2,3,1,3,4,5,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Anderson|Huang|Alter|Inbar|Graham|VanLange|Kay|Miyamoto|Ross.Slate1|Hauser|Bauer|Rottenstrich,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE,2,Global,all,TRUE +2770,0.0143289785102807,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,6,2,6,7,1,1,5,4,1,1,1,4,1,1,1,1,1,1,1,1,1,1,1,1,1,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Bauer|Kay|Rottenstrich|Alter|Anderson|Miyamoto|Inbar|Critcher|VanLange|Graham|Hauser|Ross.Slate1,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,6,Global,all,TRUE +2772,-0.498941496568455,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,4,2,2,3,3,1,2,4,4,4,1,4,2,4,2,2,3,4,3,2,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Alter|Kay|VanLange|Rottenstrich|Bauer|Hauser|Ross.Slate1|Graham|Inbar|Miyamoto|Huang|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,1,Global,all,TRUE +2773,-0.50434510458239,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,3,4,3,2,4,5,4,4,4,4,4,3,3,3,1,4,4,2,3,5,5,4,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Huang|Hauser|Anderson|Critcher|Miyamoto|Kay|Alter|VanLange|Inbar|Graham|Rottenstrich|Bauer,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,4,Global,all,TRUE +2776,0.381541489461101,Low,ML2_Slate1_IndiaEng_execution_legal_MTurk_r.csv,mturk_india,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,5,5,2,3,3,1,3,4,4,3,3,4,1,4,3,2,3,1,1,3,4,3,2,mturk_india,mturk_india,mturk_india,India,MTurk India Workers,English,0,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Anderson|Inbar|Critcher|Bauer|Graham|Huang|Rottenstrich|VanLange|Hauser|Ross.Slate1|Miyamoto|Kay,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +2779,1.14353402999132,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,5,3,4,3,3,4,4,2,2,4,4,3,2,5,4,4,3,2,4,3,3,4,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Rottenstrich|Miyamoto|Hauser|VanLange|Critcher|Ross.Slate1|Kay|Inbar|Anderson|Bauer|Huang|Graham,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing,10,Global,all,TRUE +2780,-0.442402675582273,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,4,1,3,3,3,1,1,1,5,3,1,3,1,2,1,1,3,3,4,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Huang|Rottenstrich|VanLange|Anderson|Miyamoto|Graham|Bauer|Critcher|Hauser|Kay|Alter|Inbar,ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,5,Global,all,TRUE +2781,-0.680839710656317,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,5,4,1,1,3,1,1,1,3,3,2,1,4,1,3,1,2,4,3,4,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Ross.Slate1|Critcher|Bauer|Huang|Hauser|Anderson|Rottenstrich|Alter|Inbar|Miyamoto|Graham|Kay,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,7,Global,all,TRUE +2783,0.0476639685221555,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,5,5,6,2,1,1,4,2,1,1,4,4,1,1,4,1,2,1,3,2,3,2,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Ross.Slate1|Inbar|Alter|Hauser|Kay|Anderson|Huang|Miyamoto|Graham|Bauer|VanLange|Rottenstrich,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,7,Global,all,TRUE +2785,0.493574760132603,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,3,5,2,4,2,1,2,3,4,4,5,4,5,4,3,4,4,1,3,4,2,3,4,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Critcher|Hauser|Ross.Slate1|Graham|Inbar|Alter|Bauer|Kay|Huang|Rottenstrich|Anderson|Miyamoto,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,12,Global,all,TRUE +2788,-0.00887262699342721,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,3,1,1,3,1,1,1,1,3,1,1,2,1,4,1,1,3,3,1,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|VanLange|Miyamoto|Kay|Graham|Anderson|Hauser|Huang|Bauer|Inbar|Ross.Slate1|Alter|Rottenstrich,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,6,Global,all,TRUE +2791,-1.14401489312247,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,5,5,3,3,1,2,3,1,1,2,1,2,2,1,3,1,2,1,1,1,2,3,2,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Anderson|Bauer|Inbar|VanLange|Graham|Kay|Critcher|Hauser|Huang|Miyamoto|Alter|Rottenstrich,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +2792,-1.06150017789687,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,7,6,4,1,2,2,3,1,1,4,2,2,1,4,2,3,1,1,3,3,2,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Bauer|Rottenstrich|VanLange|Anderson|Miyamoto|Alter|Graham|Inbar|Ross.Slate1|Huang|Hauser|Critcher,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,5,Global,all,TRUE +2798,-0.378863877621151,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,4,2,3,2,1,4,2,1,1,1,3,3,1,2,1,4,1,2,3,2,2,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Ross.Slate1|Alter|Graham|Anderson|VanLange|Kay|Huang|Critcher|Hauser|Bauer|Rottenstrich|Inbar,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,5,Global,all,TRUE +2799,0.526796818167315,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,6,6,2,4,2,1,1,1,1,1,2,1,1,1,3,1,3,1,1,4,3,1,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Rottenstrich|Ross.Slate1|Critcher|Inbar|Alter|Bauer|Huang|VanLange|Anderson|Miyamoto|Hauser|Kay,ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,10,Global,all,TRUE +2800,-0.620208456274096,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,5,4,2,2,1,1,1,1,1,1,1,1,1,1,1,3,1,1,1,2,1,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Miyamoto|Huang|VanLange|Kay|Critcher|Bauer|Hauser|Alter|Graham|Anderson|Ross.Slate1|Rottenstrich,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,11,Global,all,TRUE +2805,-1.37494341202538,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,4,3,1,1,3,1,1,1,1,1,2,1,1,1,4,1,2,2,1,1,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Inbar|Rottenstrich|Huang|Ross.Slate1|Bauer|Graham|Alter|Critcher|VanLange|Kay|Hauser|Miyamoto,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +2806,0.789753603405401,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,6,3,1,1,4,1,1,1,4,1,1,1,1,1,3,1,1,2,1,1,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Ross.Slate1|VanLange|Kay|Miyamoto|Rottenstrich|Graham|Huang|Alter|Critcher|Anderson|Bauer|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,11,Global,all,TRUE +2807,0.103160643678075,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,3,3,2,2,4,3,1,1,3,2,1,1,4,1,4,1,1,3,4,3,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Miyamoto|Kay|Critcher|Inbar|Graham|Ross.Slate1|Bauer|VanLange|Huang|Rottenstrich|Alter|Hauser,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,1,Global,all,TRUE +2809,0.0724505220032319,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,4,2,3,3,4,1,2,1,1,4,1,1,1,1,1,2,2,1,1,2,3,1,2,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Anderson|VanLange|Inbar|Rottenstrich|Hauser|Bauer|Ross.Slate1|Graham|Huang|Miyamoto|Critcher|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,2,Global,all,TRUE +2811,0.0864162130022017,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,6,7,1,3,4,1,3,1,1,1,1,3,1,1,5,1,4,1,1,3,1,5,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|VanLange|Graham|Hauser|Kay|Rottenstrich|Miyamoto|Alter|Huang|Bauer|Anderson|Critcher|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,11,Global,all,TRUE +2814,-1.1260925426719,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,1,2,1,1,5,4,2,1,5,5,1,1,5,5,1,4,2,3,5,1,4,1,5,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Alter|Critcher|Ross.Slate1|Hauser|Graham|Inbar|VanLange|Kay|Huang|Anderson|Bauer|Miyamoto,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +2817,0.298900195804107,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,7,5,4,1,1,3,4,1,1,3,4,1,1,5,1,4,1,1,5,4,4,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Critcher|Anderson|Bauer|Graham|Huang|VanLange|Inbar|Miyamoto|Alter|Ross.Slate1|Hauser|Kay,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,3,Global,all,TRUE +2818,0.255390881921357,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,4,5,1,2,4,2,2,2,1,2,1,1,2,1,2,2,3,2,3,3,2,1,3,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Hauser|Rottenstrich|Bauer|Anderson|Miyamoto|VanLange|Graham|Ross.Slate1|Alter|Kay|Inbar|Critcher,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,5,Global,all,TRUE +2820,0.185942162220703,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,4,6,2,4,2,1,4,1,1,1,1,2,2,1,2,1,4,1,2,1,1,1,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Inbar|Hauser|Graham|Huang|Anderson|Rottenstrich|Ross.Slate1|VanLange|Alter|Critcher|Kay|Bauer,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,6,Global,all,TRUE +2821,-0.542308360094971,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,2,2,2,2,2,1,2,1,1,1,4,3,1,2,3,1,2,1,1,3,1,1,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Graham|Kay|VanLange|Miyamoto|Hauser|Huang|Alter|Critcher|Inbar|Rottenstrich|Anderson|Ross.Slate1,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE,12,Global,all,TRUE +2822,-0.14595702899244,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,5,6,3,1,1,1,1,1,1,1,3,2,1,1,1,2,1,1,4,2,3,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Inbar|Huang|Anderson|Critcher|Hauser|Rottenstrich|Bauer|Miyamoto|Graham|Kay|Ross.Slate1|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,4,Global,all,TRUE +2826,0.607066400350074,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,6,6,3,4,1,3,2,1,2,1,3,4,1,4,1,3,1,2,3,3,2,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Miyamoto|Alter|Critcher|Anderson|Bauer|Rottenstrich|Ross.Slate1|Hauser|Graham|Kay|Huang|VanLange,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood,5,Global,all,TRUE +2828,0.119764849468313,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,3,7,2,4,3,5,4,2,4,1,1,1,5,2,4,2,3,2,1,2,3,1,3,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Hauser|Alter|Rottenstrich|VanLange|Ross.Slate1|Anderson|Critcher|Bauer|Graham|Miyamoto|Inbar|Kay,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,7,Global,all,TRUE +2832,0.578727990149465,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,7,6,5,2,2,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Ross.Slate1|Graham|VanLange|Rottenstrich|Huang|Critcher|Alter|Bauer|Anderson|Inbar|Kay|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,10,Global,all,TRUE +2833,0.363352335693494,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,4,4,3,3,1,3,3,1,1,1,1,1,2,1,2,1,3,1,2,1,1,1,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Hauser|Inbar|Ross.Slate1|Critcher|Alter|Miyamoto|Huang|Graham|VanLange|Anderson|Rottenstrich|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,11,Global,all,TRUE +2835,-0.81330726813826,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,3,7,7,7,3,3,2,2,3,1,1,2,1,1,1,1,1,1,3,1,1,3,1,1,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|VanLange|Rottenstrich|Huang|Graham|Critcher|Anderson|Bauer|Miyamoto|Kay|Hauser|Inbar,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,8,Global,all,TRUE +2836,0.210195109067712,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,5,4,4,3,3,3,4,3,3,3,4,3,4,2,3,2,2,3,3,3,4,3,3,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Alter|Huang|Critcher|Rottenstrich|Anderson|Graham|Bauer|Inbar|Ross.Slate1|Hauser|VanLange|Kay,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +2837,-0.0364242736971705,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,3,1,1,3,2,1,1,3,2,1,2,3,1,3,1,2,3,3,3,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Bauer|Critcher|Anderson|Kay|Huang|Alter|Ross.Slate1|Rottenstrich|Hauser|Miyamoto|Graham|VanLange,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood,4,Global,all,TRUE +2838,-0.263927514311945,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,6,3,3,1,1,2,2,1,2,3,3,2,2,3,1,2,1,1,2,1,3,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Miyamoto|Ross.Slate1|Rottenstrich|VanLange|Anderson|Graham|Alter|Bauer|Kay|Critcher|Hauser|Inbar,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,6,Global,all,TRUE +2839,0.759043481730558,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,6,5,3,4,1,2,2,4,1,1,5,4,1,2,4,2,3,2,1,4,4,4,2,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Graham|Inbar|Huang|Miyamoto|Critcher|Bauer|Kay|Ross.Slate1|Rottenstrich|Anderson|Alter|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,11,Global,all,TRUE +2842,-0.594632913825554,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,7,4,3,1,1,3,1,1,1,2,3,1,2,3,1,3,1,1,2,3,1,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Rottenstrich|Bauer|Anderson|Inbar|Critcher|Ross.Slate1|Alter|Huang|Hauser|Kay|Miyamoto|VanLange,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,4,Global,all,TRUE +2843,-1.13557938856883,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,5,3,4,2,3,3,1,3,4,3,3,2,4,3,3,2,3,3,2,4,3,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Graham|Anderson|Bauer|Alter|Miyamoto|Critcher|Kay|Rottenstrich|Ross.Slate1|Huang|VanLange|Inbar,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,3,Global,all,TRUE +2844,0.449292329207223,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,6,3,6,3,1,1,2,1,1,1,1,1,1,1,3,1,2,1,1,1,1,1,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Anderson|Rottenstrich|Alter|Huang|Hauser|Ross.Slate1|Inbar|Kay|Critcher|Bauer|VanLange|Graham,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,2,Global,all,TRUE +2849,0.105799158469343,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,5,5,3,1,2,4,4,1,1,3,4,2,1,4,1,4,1,1,3,2,3,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Critcher|Inbar|Bauer|Graham|Kay|VanLange|Rottenstrich|Alter|Miyamoto|Huang|Hauser|Ross.Slate1,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,1,Global,all,TRUE +2851,0.560018876202027,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,5,3,3,1,1,3,2,1,1,3,1,2,1,2,1,3,1,1,2,2,2,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Rottenstrich|Kay|Huang|Miyamoto|VanLange|Alter|Critcher|Anderson|Bauer|Inbar|Ross.Slate1|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,9,Global,all,TRUE +2854,0.886374234515601,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,3,3,2,1,2,4,4,1,1,4,1,1,4,1,4,3,2,4,2,1,1,1,2,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Critcher|Rottenstrich|Alter|Kay|Bauer|Inbar|Anderson|Hauser|VanLange|Miyamoto|Graham|Huang,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,8,Global,all,TRUE +2855,0.122009982511148,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,5,3,2,3,1,1,1,2,1,3,3,1,3,2,1,1,4,1,4,1,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Alter|Ross.Slate1|Hauser|Miyamoto|Anderson|Graham|VanLange|Bauer|Rottenstrich|Inbar|Kay|Huang,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,6,Global,all,TRUE +2857,0.260147951324061,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,6,2,4,2,1,4,2,1,1,2,2,1,1,2,1,4,1,2,3,3,1,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Anderson|Graham|Inbar|Rottenstrich|Huang|Kay|Miyamoto|Bauer|Ross.Slate1|Alter|Hauser|Critcher,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing,2,Global,all,TRUE +2858,0.855790691272157,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,6,7,4,4,2,2,3,1,1,1,4,1,1,1,4,1,3,1,1,3,2,2,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Alter|VanLange|Kay|Critcher|Hauser|Ross.Slate1|Graham|Inbar|Huang|Bauer|Miyamoto|Rottenstrich,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +2859,0.399339486950873,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,5,5,4,2,1,1,2,3,2,1,3,2,2,2,3,1,1,1,1,2,3,1,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Hauser|Miyamoto|Ross.Slate1|Bauer|Critcher|Graham|Inbar|VanLange|Alter|Rottenstrich|Kay|Huang,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +2861,0.917084356190444,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,5,6,3,1,3,1,1,1,1,1,1,1,3,1,1,1,2,1,1,2,1,1,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Inbar|Rottenstrich|VanLange|Miyamoto|Alter|Bauer|Graham|Ross.Slate1|Anderson|Huang|Kay|Hauser,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood,10,Global,all,TRUE +2864,0.264891374272529,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,5,3,1,1,3,3,1,1,2,4,1,1,4,1,3,1,1,4,4,3,2,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Huang|Critcher|VanLange|Kay|Alter|Graham|Inbar|Hauser|Bauer|Rottenstrich|Anderson|Ross.Slate1,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing,12,Global,all,TRUE +2866,-0.29345749074149,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,5,3,4,1,2,2,2,1,1,4,4,1,1,4,1,3,1,1,2,3,4,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Rottenstrich|Bauer|Critcher|Kay|Miyamoto|Graham|Alter|Huang|Anderson|Hauser|Ross.Slate1|VanLange,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,10,Global,all,TRUE +2867,-0.771649705549913,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,5,2,2,3,1,1,3,3,1,1,2,3,1,1,2,1,3,1,2,2,2,2,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Huang|Bauer|Anderson|Hauser|Inbar|Rottenstrich|Miyamoto|Kay|Alter|Ross.Slate1|Critcher|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,4,Global,all,TRUE +2868,1.09977155924577,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,5,3,3,2,1,1,2,1,1,1,1,2,2,1,2,1,2,1,2,2,1,1,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Critcher|Anderson|VanLange|Miyamoto|Alter|Bauer|Ross.Slate1|Huang|Graham|Inbar|Hauser|Rottenstrich,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,3,Global,all,TRUE +2869,-0.0546134274647767,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,7,5,3,3,2,1,3,1,3,1,3,2,4,1,3,3,3,1,4,3,2,1,2,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|VanLange|Critcher|Bauer|Ross.Slate1|Miyamoto|Rottenstrich|Anderson|Graham|Kay|Alter|Inbar|Hauser,ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,8,Global,all,TRUE +2870,-0.306636418243594,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,5,4,1,1,2,3,1,1,5,4,1,1,4,1,2,1,2,4,4,3,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Graham|Miyamoto|Critcher|Huang|Hauser|Ross.Slate1|Rottenstrich|Kay|Bauer|Alter|VanLange|Anderson,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +2871,0.283209331942134,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,7,5,7,5,4,4,4,1,1,3,5,5,4,1,5,4,4,1,1,5,4,5,4,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Kay|Anderson|Critcher|Huang|Inbar|VanLange|Hauser|Miyamoto|Ross.Slate1|Bauer|Alter|Rottenstrich,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five,3,Global,all,TRUE +2872,-0.343663489860637,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,4,4,2,1,3,3,1,1,4,3,2,2,4,1,4,1,1,4,3,3,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Bauer|Hauser|Anderson|Ross.Slate1|Rottenstrich|Miyamoto|Alter|Critcher|Graham|Huang|VanLange|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,4,Global,all,TRUE +2874,0.814666735317876,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,4,6,2,2,1,2,4,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Hauser|Rottenstrich|Miyamoto|Alter|Inbar|VanLange|Anderson|Bauer|Critcher|Kay|Ross.Slate1|Graham,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,8,Global,all,TRUE +2876,0.0858962528223701,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,3,5,2,2,3,2,1,2,1,4,1,1,3,2,2,2,3,3,2,1,1,1,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Bauer|Critcher|Rottenstrich|Kay|Ross.Slate1|Graham|VanLange|Huang|Hauser|Miyamoto|Anderson|Alter,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,12,Global,all,TRUE +2880,-0.273807741957315,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,6,5,5,1,2,5,1,1,5,4,4,2,5,4,3,4,4,5,2,5,2,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Miyamoto|Hauser|Inbar|Graham|Alter|Bauer|Critcher|Huang|VanLange|Rottenstrich|Ross.Slate1|Anderson,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +2881,0.637383140276485,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,4,5,1,4,2,1,3,1,1,1,1,4,1,2,2,1,2,1,1,3,2,1,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Bauer|Hauser|Critcher|Miyamoto|Kay|Anderson|VanLange|Inbar|Alter|Rottenstrich|Huang|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,7,Global,all,TRUE +2882,0.423985815546315,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,2,2,4,4,2,2,1,1,3,1,1,2,1,2,4,3,2,3,2,2,2,3,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Miyamoto|VanLange|Graham|Anderson|Alter|Hauser|Inbar|Ross.Slate1|Huang|Kay|Critcher|Bauer,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,5,Global,all,TRUE +2884,0.0191989798901478,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,3,6,3,4,2,3,4,1,1,3,4,3,2,4,1,3,2,2,4,3,4,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|VanLange|Graham|Rottenstrich|Critcher|Kay|Miyamoto|Alter|Huang|Hauser|Inbar|Anderson|Bauer,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,12,Global,all,TRUE +2886,0.362692150628027,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,5,5,1,2,5,1,2,1,1,2,1,3,2,1,2,1,3,1,1,3,1,1,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Miyamoto|Bauer|VanLange|Rottenstrich|Hauser|Inbar|Ross.Slate1|Anderson|Critcher|Huang|Alter|Kay,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing,9,Global,all,TRUE +2888,-0.712476820713661,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,5,5,2,1,1,3,1,1,4,5,1,1,5,1,3,1,3,5,4,3,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Graham|Hauser|Alter|Anderson|Ross.Slate1|Kay|Bauer|VanLange|Inbar|Critcher|Miyamoto|Huang,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,5,Global,all,TRUE +2889,-0.0273285840780677,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,1,6,2,5,2,1,4,1,1,1,3,1,1,1,3,1,5,1,1,1,1,1,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Kay|Graham|Bauer|Hauser|VanLange|Inbar|Huang|Critcher|Anderson|Ross.Slate1|Rottenstrich|Alter,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,10,Global,all,TRUE +2892,-0.481014695176684,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,1,5,2,4,1,4,3,1,5,2,1,3,3,5,1,1,4,1,4,2,1,3,1,2,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Miyamoto|Bauer|Graham|Inbar|Huang|Critcher|Ross.Slate1|Anderson|VanLange|Hauser|Rottenstrich|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,9,Global,all,TRUE +2896,0.0131351868107458,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,5,5,2,2,1,2,2,2,1,1,1,2,2,1,1,2,2,1,1,1,1,2,2,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Rottenstrich|Anderson|Huang|Alter|Miyamoto|Kay|Inbar|Graham|Ross.Slate1|Bauer|Critcher|VanLange,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,3,Global,all,TRUE +2901,0.734397153135117,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,3,6,5,1,1,4,2,1,1,4,3,1,1,4,1,4,1,1,4,2,2,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Anderson|Critcher|Kay|Inbar|Rottenstrich|Miyamoto|Huang|Alter|VanLange|Hauser|Graham|Bauer,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,2,Global,all,TRUE +2903,-1.28543791533788,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,4,5,4,1,1,2,2,1,1,4,4,1,1,4,1,3,1,1,4,2,3,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Graham|Kay|Rottenstrich|Inbar|Ross.Slate1|Anderson|Critcher|Hauser|Huang|Alter|Miyamoto|VanLange,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,7,Global,all,TRUE +2905,0.0160405049190477,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,6,6,5,1,2,4,1,1,1,4,3,1,1,5,1,4,1,1,4,2,1,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|VanLange|Graham|Ross.Slate1|Anderson|Rottenstrich|Inbar|Kay|Hauser|Critcher|Alter|Bauer|Huang,ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +2908,0.656499282426592,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,4,1,1,3,5,1,1,4,5,1,2,4,2,3,1,1,5,3,4,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Graham|Inbar|Miyamoto|Ross.Slate1|Rottenstrich|Bauer|VanLange|Huang|Critcher|Alter|Anderson|Hauser,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,12,Global,all,TRUE +2910,-0.442402675582273,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,7,6,5,5,1,1,5,4,1,1,4,4,1,1,4,1,4,1,1,4,4,3,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Alter|Hauser|Rottenstrich|Critcher|Anderson|Ross.Slate1|Miyamoto|Graham|VanLange|Huang|Kay|Inbar,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,6,Global,all,TRUE +2911,-1.65279287664494,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,5,2,3,4,1,4,3,4,1,1,3,4,4,1,3,2,3,3,4,4,3,4,4,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Bauer|Critcher|Miyamoto|Ross.Slate1|Inbar|VanLange|Anderson|Alter|Graham|Rottenstrich|Huang|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five,8,Global,all,TRUE +2912,-0.55113724639704,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,6,5,3,3,1,1,3,2,1,1,2,4,1,1,4,1,4,1,1,2,2,2,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Rottenstrich|Bauer|Kay|Alter|Anderson|VanLange|Hauser|Critcher|Graham|Huang|Ross.Slate1|Inbar,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection,6,Global,all,TRUE +2913,-1.40420658513789,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,7,6,4,2,1,3,3,1,1,3,4,2,1,4,1,1,1,1,3,4,4,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Hauser|Anderson|Graham|Huang|VanLange|Bauer|Critcher|Kay|Inbar|Miyamoto|Rottenstrich|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection,3,Global,all,TRUE +2914,-0.84929441939564,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,4,4,2,2,2,2,1,2,2,2,1,1,3,1,2,1,1,2,3,3,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Ross.Slate1|Huang|Graham|Kay|Rottenstrich|Miyamoto|Critcher|Inbar|Bauer|Alter|Hauser|VanLange,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,1,Global,all,TRUE +2917,-0.517001846434063,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,4,4,1,2,3,5,2,2,4,4,3,2,3,1,2,1,1,4,4,4,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Inbar|Critcher|Bauer|Kay|Miyamoto|Graham|VanLange|Anderson|Alter|Hauser|Rottenstrich|Huang,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,9,Global,all,TRUE +2918,-0.110110102620696,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,4,2,5,6,3,3,1,1,3,1,2,2,2,2,1,3,4,2,3,1,1,2,3,2,2,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Graham|Huang|Critcher|Alter|VanLange|Hauser|Bauer|Inbar|Miyamoto|Ross.Slate1|Rottenstrich|Kay,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,1,Global,all,TRUE +2920,0.238266715951287,Low,ML2_Slate1_Inlab_execution_illegal_DEPLOY__UK_r.csv,winchester,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,2,2,3,2,3,3,1,1,2,2,3,1,1,2,1,1,1,1,1,2,1,1,winchester,winchester,winchester,UK,"University of Winchester, Winchester, Hampshire, England",English,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Alter|Anderson|Kay|Critcher|VanLange|Rottenstrich|Hauser|Graham|Bauer|Huang|Ross.Slate1|Inbar,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +2922,-0.527809062461933,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,3,5,3,2,3,4,2,4,4,2,3,4,2,3,3,2,2,2,3,4,4,4,3,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Hauser|Bauer|Anderson|Graham|Rottenstrich|Kay|Ross.Slate1|Critcher|Inbar|Alter|Miyamoto|VanLange,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,4,Global,all,TRUE +2923,-0.478249601954017,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,6,5,4,1,2,4,1,1,1,1,3,1,1,1,1,1,3,1,2,3,1,1,1,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Huang|VanLange|Inbar|Kay|Hauser|Critcher|Ross.Slate1|Bauer|Alter|Rottenstrich|Anderson|Miyamoto,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection,12,Global,all,TRUE +2925,-0.949073525476939,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,4,5,4,1,1,3,1,2,2,4,4,2,1,3,2,4,2,2,4,4,2,2,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Critcher|Miyamoto|Kay|Inbar|VanLange|Ross.Slate1|Huang|Hauser|Rottenstrich|Alter|Graham|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood,13,Global,all,TRUE +2927,-1.48579431198098,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,3,5,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,3,1,1,2,1,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Ross.Slate1|Miyamoto|Alter|Critcher|Graham|Bauer|Kay|Anderson|VanLange|Rottenstrich|Huang|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,9,Global,all,TRUE +2928,-1.27542888379051,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,5,2,3,2,2,5,1,1,1,3,3,2,1,1,3,2,5,2,2,5,2,1,2,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Miyamoto|Critcher|Rottenstrich|Hauser|Ross.Slate1|Graham|Bauer|Huang|VanLange|Inbar|Kay|Anderson,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +2929,-0.209889208701996,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,3,3,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Inbar|VanLange|Critcher|Alter|Bauer|Ross.Slate1|Hauser|Miyamoto|Graham|Huang|Kay|Rottenstrich,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,1,Global,all,TRUE +2930,-0.386779421994955,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,6,2,1,3,3,2,1,1,2,1,1,1,1,1,2,3,1,2,1,2,3,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Hauser|Alter|Critcher|Anderson|Ross.Slate1|Rottenstrich|Bauer|Graham|VanLange|Inbar|Kay|Huang,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,5,Global,all,TRUE +2931,-0.780225434989184,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,3,2,1,2,1,2,1,1,4,3,3,1,1,4,1,1,2,2,1,3,2,1,4,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Huang|Alter|Hauser|Ross.Slate1|Rottenstrich|Inbar|Bauer|Graham|Critcher|VanLange|Miyamoto|Anderson,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,13,Global,all,TRUE +2935,-0.805265145333058,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,4,4,7,3,1,2,2,1,1,1,3,1,1,1,1,1,2,1,1,1,1,1,1,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Miyamoto|Rottenstrich|Bauer|Graham|Hauser|Anderson|Ross.Slate1|Alter|Kay|Critcher|VanLange|Huang,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +2937,-0.462432159660645,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,5,3,3,2,3,2,1,1,1,1,1,1,1,1,1,1,2,3,2,2,1,2,1,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Ross.Slate1|Hauser|Critcher|Inbar|Bauer|Huang|Alter|Miyamoto|Rottenstrich|VanLange|Anderson|Kay,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,12,Global,all,TRUE +2939,0.119104664402846,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,4,3,3,4,3,2,3,2,4,3,4,3,3,3,3,3,3,3,2,3,3,3,3,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Hauser|Bauer|Ross.Slate1|VanLange|Miyamoto|Huang|Anderson|Kay|Rottenstrich|Graham|Alter|Inbar,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +2940,-0.574732233649181,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,3,2,1,1,3,2,1,1,3,3,1,1,3,1,2,1,2,3,2,1,1,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Hauser|Rottenstrich|Bauer|Critcher|VanLange|Miyamoto|Kay|Alter|Anderson|Inbar|Graham|Ross.Slate1,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,10,Global,all,TRUE +2941,-0.0184996977759988,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,3,5,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Ross.Slate1|Hauser|Inbar|Kay|Miyamoto|Rottenstrich|VanLange|Critcher|Huang|Bauer|Anderson|Graham,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE,12,Global,all,TRUE +2942,-0.470080900717415,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,1,5,1,1,1,1,1,1,4,1,1,1,1,1,1,1,1,1,1,1,2,5,1,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Bauer|Kay|Ross.Slate1|Critcher|Huang|VanLange|Alter|Anderson|Graham|Rottenstrich|Miyamoto|Inbar,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,9,Global,all,TRUE +2943,-0.180752614020884,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,5,5,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Graham|Inbar|Rottenstrich|Ross.Slate1|VanLange|Kay|Bauer|Anderson|Miyamoto|Alter|Huang|Critcher,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,9,Global,all,TRUE +2944,-1.18948889027678,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,5,2,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|VanLange|Inbar|Huang|Anderson|Ross.Slate1|Graham|Kay|Rottenstrich|Hauser|Alter|Critcher|Bauer,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,5,Global,all,TRUE +2946,0.307855660537575,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,7,4,5,4,4,3,5,5,3,4,5,3,3,5,5,4,5,4,3,4,5,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|Bauer|Graham|Critcher|Anderson|VanLange|Inbar|Ross.Slate1|Alter|Kay|Rottenstrich|Huang,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,6,Global,all,TRUE +2947,-0.443976202576004,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,5,3,1,3,5,5,3,5,5,5,1,2,5,5,3,3,5,5,5,2,3,3,3,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Kay|Graham|Miyamoto|Alter|Anderson|Ross.Slate1|Critcher|VanLange|Huang|Rottenstrich|Hauser|Bauer,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,6,Global,all,TRUE +2948,-1.23430492783623,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,5,4,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Bauer|Ross.Slate1|Kay|Huang|Graham|Critcher|Anderson|Hauser|Rottenstrich|Miyamoto|Inbar|VanLange,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,8,Global,all,TRUE +2949,-0.896215365112288,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,4,2,3,2,1,2,2,1,1,2,1,1,1,1,1,1,2,1,1,1,1,1,1,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Bauer|Critcher|Graham|Inbar|Ross.Slate1|Alter|VanLange|Kay|Miyamoto|Rottenstrich|Huang|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,1,Global,all,TRUE +2952,-0.162434656351279,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,7,5,7,1,4,1,1,1,1,3,1,2,3,1,1,1,3,4,5,1,1,1,2,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Rottenstrich|Critcher|Ross.Slate1|Hauser|Graham|Alter|Inbar|Anderson|Miyamoto|Bauer|VanLange|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,9,Global,all,TRUE +2956,-0.669107731716545,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,5,6,3,2,3,1,2,2,2,1,2,3,3,1,2,1,4,2,1,3,2,1,1,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Critcher|Bauer|Inbar|Miyamoto|Anderson|Hauser|Alter|Ross.Slate1|Graham|Huang|VanLange|Kay,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +2957,-0.528342669096001,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,3,5,2,4,2,3,4,4,1,2,4,4,2,1,3,4,3,2,2,3,4,4,2,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Huang|Inbar|Anderson|VanLange|Bauer|Rottenstrich|Kay|Hauser|Critcher|Miyamoto|Ross.Slate1|Graham,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,4,Global,all,TRUE +2959,-1.10908130867899,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,5,5,2,1,1,2,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,1,1,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Miyamoto|Critcher|Graham|Rottenstrich|Hauser|Bauer|Ross.Slate1|Alter|Anderson|Kay|Inbar|VanLange,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE,10,Global,all,TRUE +2961,-1.62234733281653,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,5,3,3,2,2,3,1,1,1,3,2,1,2,1,1,1,3,1,3,2,1,1,1,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Bauer|Alter|Rottenstrich|Miyamoto|VanLange|Inbar|Ross.Slate1|Kay|Hauser|Critcher|Huang|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,13,Global,all,TRUE +2966,-0.686243318670252,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,2,1,4,3,1,1,4,4,1,1,1,1,1,3,2,2,1,1,5,3,4,1,1,1,1,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Rottenstrich|Ross.Slate1|Critcher|VanLange|Graham|Bauer|Alter|Huang|Kay|Anderson|Miyamoto|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,11,Global,all,TRUE +2971,0.361245202065695,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,5,5,3,3,1,1,2,3,2,2,2,3,2,1,2,1,2,2,1,2,3,2,1,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Miyamoto|Critcher|Alter|Bauer|VanLange|Ross.Slate1|Anderson|Kay|Rottenstrich|Inbar|Graham|Hauser,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,8,Global,all,TRUE +2973,-0.594506335394156,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,5,4,1,1,2,1,1,1,2,1,1,1,2,1,2,3,1,1,1,1,2,2,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Huang|Ross.Slate1|Inbar|Rottenstrich|Alter|Hauser|VanLange|Kay|Graham|Critcher|Anderson|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,12,Global,all,TRUE +2976,-0.694945626540922,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,6,6,3,1,1,1,1,1,1,1,1,3,1,1,1,1,3,1,1,1,1,1,1,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Hauser|Critcher|Kay|Ross.Slate1|Inbar|Anderson|Rottenstrich|Alter|Bauer|Graham|VanLange|Huang,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE,7,Global,all,TRUE +2977,-0.096931175118592,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,3,3,5,1,4,2,1,1,1,1,1,1,4,2,2,1,1,4,3,1,1,1,1,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Ross.Slate1|Inbar|Rottenstrich|Graham|Bauer|Critcher|Hauser|VanLange|Miyamoto|Alter|Kay|Anderson,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,13,Global,all,TRUE +2978,-0.917171837573161,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,5,3,5,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Rottenstrich|Ross.Slate1|Hauser|VanLange|Graham|Kay|Inbar|Huang|Bauer|Alter|Anderson|Critcher,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,12,Global,all,TRUE +2979,-1.3357977857969,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,1,3,3,3,2,1,3,3,1,1,2,3,1,1,3,3,1,1,1,1,2,1,1,1,1,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Critcher|Miyamoto|Kay|Bauer|Huang|Alter|Rottenstrich|VanLange|Hauser|Anderson|Inbar|Graham,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,11,Global,all,TRUE +2982,-0.431328656237369,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,6,2,3,4,1,1,1,1,2,1,1,3,1,1,2,3,3,4,1,3,2,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Huang|Ross.Slate1|Hauser|Kay|Alter|Inbar|Graham|Bauer|Critcher|Rottenstrich|VanLange|Anderson,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +2986,-1.41132171956059,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,2,6,5,1,4,3,2,1,2,3,2,2,2,1,1,1,1,3,4,1,1,1,2,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Graham|Kay|Hauser|Huang|Rottenstrich|Alter|Anderson|VanLange|Inbar|Miyamoto|Critcher|Ross.Slate1,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,8,Global,all,TRUE +2987,0.0168272684159134,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,6,6,6,2,1,1,1,1,1,1,3,3,1,1,1,1,2,2,1,2,1,3,1,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Anderson|Alter|Critcher|Huang|Rottenstrich|Ross.Slate1|Graham|Hauser|Miyamoto|VanLange|Bauer|Kay,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,2,Global,all,TRUE +2989,-0.320602109242564,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,3,3,2,2,2,1,2,2,1,2,3,1,2,3,1,2,3,2,2,3,2,1,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Huang|VanLange|Kay|Miyamoto|Inbar|Rottenstrich|Bauer|Graham|Critcher|Alter|Hauser|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,1,Global,all,TRUE +2990,-1.36071091770937,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,2,5,4,2,3,3,3,2,1,3,2,2,1,2,1,3,1,3,3,4,3,1,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Rottenstrich|Critcher|Anderson|Hauser|Ross.Slate1|Inbar|Graham|Alter|Miyamoto|Kay|Bauer|Huang,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +2991,-0.838880585116203,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,4,5,3,1,1,2,1,1,1,2,1,1,2,2,1,1,1,2,1,2,1,1,1,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Inbar|Miyamoto|Kay|Rottenstrich|Bauer|Ross.Slate1|Anderson|Huang|VanLange|Critcher|Hauser|Alter,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,8,Global,all,TRUE +2994,0.0107634753365115,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,7,6,2,3,4,4,1,3,1,4,2,3,4,3,1,2,3,2,4,4,1,3,2,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Graham|Anderson|Bauer|Alter|Ross.Slate1|VanLange|Huang|Hauser|Inbar|Kay|Miyamoto|Rottenstrich,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,3,Global,all,TRUE +2996,-0.669639112880014,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,4,4,2,3,2,3,2,3,3,3,2,3,2,2,2,2,3,3,3,2,2,2,2,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Hauser|Graham|Miyamoto|VanLange|Critcher|Ross.Slate1|Inbar|Rottenstrich|Anderson|Alter|Bauer|Kay,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE,10,Global,all,TRUE +2997,-1.11976194627546,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,6,4,6,4,1,3,3,3,2,1,5,4,2,1,3,1,2,1,3,5,4,3,2,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Miyamoto|Alter|Ross.Slate1|Graham|Anderson|Hauser|Inbar|Critcher|Huang|Rottenstrich|Bauer|Kay,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,6,Global,all,TRUE +2998,-0.737516531057535,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,5,2,4,2,1,2,1,1,3,2,1,1,1,3,1,2,2,1,1,1,2,1,2,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|VanLange|Ross.Slate1|Rottenstrich|Anderson|Kay|Inbar|Critcher|Alter|Bauer|Huang|Graham|Hauser,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing,5,Global,all,TRUE +2999,0.244063705713655,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,3,3,3,1,1,2,1,1,1,1,1,1,1,1,1,1,3,1,1,3,1,1,1,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Bauer|Hauser|Ross.Slate1|Graham|Inbar|Miyamoto|Anderson|VanLange|Kay|Huang|Rottenstrich|Critcher,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE,8,Global,all,TRUE +3002,-0.0216581727470986,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,1,3,4,2,2,2,2,3,1,2,2,1,1,1,1,1,1,1,3,1,2,1,1,1,1,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Huang|Bauer|Rottenstrich|VanLange|Alter|Critcher|Miyamoto|Anderson|Inbar|Graham|Kay|Ross.Slate1,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +3003,-0.0115111417846953,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,4,3,2,2,3,2,2,2,1,1,1,2,2,2,3,2,4,3,3,2,1,2,2,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Ross.Slate1|Inbar|Rottenstrich|Miyamoto|Bauer|Hauser|Critcher|VanLange|Anderson|Huang|Graham|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,10,Global,all,TRUE +3004,0.0721837186861979,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,6,5,5,1,4,1,3,1,1,1,2,1,2,1,1,1,3,2,4,1,1,1,1,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Huang|Bauer|Kay|Hauser|Critcher|VanLange|Graham|Rottenstrich|Alter|Ross.Slate1|Anderson|Miyamoto,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five,12,Global,all,TRUE +3006,-0.279478153288284,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,4,5,1,1,1,1,5,1,1,1,2,1,2,1,4,1,5,1,1,4,1,2,1,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Critcher|Rottenstrich|Inbar|Kay|Alter|Anderson|VanLange|Ross.Slate1|Graham|Miyamoto|Huang|Hauser,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,7,Global,all,TRUE +3007,-0.0329989954090367,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,6,3,4,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Huang|Anderson|Ross.Slate1|Bauer|Graham|Alter|VanLange|Rottenstrich|Kay|Inbar|Critcher|Hauser,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five,3,Global,all,TRUE +3010,0.200174656536707,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,3,2,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Rottenstrich|Anderson|Kay|Ross.Slate1|Graham|Alter|Bauer|VanLange|Hauser|Critcher|Inbar|Miyamoto,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +3014,-0.0418278817111058,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,2,2,5,2,2,2,1,1,3,1,2,2,1,1,3,1,4,3,1,3,3,2,1,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Critcher|Inbar|Anderson|Alter|Bauer|Ross.Slate1|Hauser|Graham|Huang|VanLange|Kay|Miyamoto,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +3015,0.0673000708520948,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,4,2,3,1,1,2,1,1,1,1,1,1,1,3,1,1,3,1,1,1,1,1,1,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Hauser|Inbar|Kay|Huang|Critcher|Miyamoto|Anderson|Rottenstrich|VanLange|Graham|Alter|Ross.Slate1,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,8,Global,all,TRUE +3016,0.240245045677088,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,5,3,2,2,2,4,3,1,1,1,2,2,2,2,3,1,4,3,2,2,2,1,1,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Huang|Graham|Miyamoto|Alter|Bauer|Inbar|VanLange|Critcher|Hauser|Anderson|Rottenstrich|Ross.Slate1,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,11,Global,all,TRUE +3017,0.24420393059929,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,5,4,5,2,1,1,2,2,2,1,3,1,1,1,2,1,2,1,1,2,3,2,3,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Ross.Slate1|Alter|Hauser|Miyamoto|VanLange|Anderson|Kay|Critcher|Rottenstrich|Huang|Bauer|Graham,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,7,Global,all,TRUE +3018,1.00011903159587,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,4,2,3,2,1,2,1,1,1,1,2,1,1,1,1,1,3,1,1,1,2,1,1,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Alter|Kay|Critcher|Graham|Rottenstrich|Inbar|Ross.Slate1|Miyamoto|Hauser|Bauer|VanLange|Huang,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing,1,Global,all,TRUE +3022,-0.212654301924662,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,4,3,1,2,1,3,1,2,3,3,2,1,1,3,1,1,2,1,1,4,1,1,2,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Ross.Slate1|VanLange|Kay|Rottenstrich|Critcher|Hauser|Anderson|Alter|Bauer|Miyamoto|Huang|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,8,Global,all,TRUE +3025,-0.370034991319082,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,4,4,3,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Anderson|Inbar|Rottenstrich|Kay|Critcher|Bauer|Miyamoto|Hauser|VanLange|Graham|Ross.Slate1|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,2,Global,all,TRUE +3026,-0.680713132224918,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,4,6,2,4,4,4,3,4,1,2,3,4,3,2,3,3,1,2,4,4,3,3,3,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Rottenstrich|Alter|VanLange|Inbar|Graham|Hauser|Huang|Kay|Miyamoto|Anderson|Ross.Slate1|Bauer,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,11,Global,all,TRUE +3029,0.753373070399589,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,3,3,1,2,3,4,3,2,2,1,3,2,2,3,3,1,4,1,3,1,1,2,1,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Anderson|Inbar|Kay|VanLange|Graham|Bauer|Critcher|Miyamoto|Ross.Slate1|Rottenstrich|Huang|Hauser,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE,2,Global,all,TRUE +3030,-0.961987875132609,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,5,3,1,1,2,1,1,1,1,1,3,1,2,1,1,3,1,2,1,1,2,1,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Hauser|Huang|Anderson|Ross.Slate1|Rottenstrich|Bauer|Miyamoto|VanLange|Alter|Inbar|Critcher|Graham,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,4,Global,all,TRUE +3031,-0.664235504866078,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,5,6,4,1,1,1,1,2,1,1,2,2,1,1,2,1,3,1,1,2,1,2,1,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|VanLange|Bauer|Ross.Slate1|Critcher|Miyamoto|Huang|Inbar|Graham|Kay|Rottenstrich|Alter|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood,1,Global,all,TRUE +3032,-0.68677692530432,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,5,1,1,5,1,1,5,5,1,1,1,4,1,1,1,1,1,1,5,5,5,1,1,1,1,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|VanLange|Graham|Alter|Ross.Slate1|Huang|Miyamoto|Hauser|Critcher|Bauer|Inbar|Kay|Anderson,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,13,Global,all,TRUE +3033,-0.076888044585984,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,1,1,4,5,4,1,1,3,4,1,3,4,5,1,1,1,5,5,1,1,1,1,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Anderson|Rottenstrich|Miyamoto|VanLange|Inbar|Huang|Kay|Bauer|Hauser|Critcher|Ross.Slate1|Alter,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,2,Global,all,TRUE +3034,-1.46273515683351,Low,ML2_Slate1_Japanese_Inlab_r.csv,doshisha,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,5,4,2,1,2,2,1,1,1,1,1,1,1,3,1,1,3,1,2,2,3,1,1,doshisha,doshisha,doshisha,Japan,"Doshisha University, Kyoto, Japan",Japanese,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Miyamoto|Hauser|Anderson|Graham|Kay|Ross.Slate1|Huang|VanLange|Bauer|Critcher|Alter|Rottenstrich,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +3035,0.497798222901239,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,4,4,3,1,1,1,2,1,2,3,3,3,1,4,1,1,1,1,2,4,3,1,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Inbar|VanLange|Bauer|Kay|Rottenstrich|Graham|Alter|Ross.Slate1|Anderson|Miyamoto|Hauser|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection,10,Global,all,TRUE +3039,0.28322297839637,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,4,3,3,3,4,4,3,3,4,3,2,4,4,4,3,3,5,2,3,4,3,3,4,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Huang|Ross.Slate1|Alter|Bauer|Miyamoto|Kay|Hauser|VanLange|Inbar|Critcher|Graham|Anderson,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,13,Global,all,TRUE +3041,-0.7351448195833,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,4,3,4,3,4,4,4,5,4,4,4,3,4,4,3,4,3,3,3,4,4,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Critcher|Bauer|Ross.Slate1|Anderson|Graham|Inbar|Hauser|Miyamoto|VanLange|Rottenstrich|Huang|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing,5,Global,all,TRUE +3042,1.35719815803852,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,2,5,3,1,1,1,3,1,1,3,3,1,1,3,1,3,3,3,3,3,3,1,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Inbar|Hauser|Huang|Critcher|VanLange|Anderson|Kay|Bauer|Miyamoto|Graham|Alter|Ross.Slate1,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,7,Global,all,TRUE +3043,0.08800116097957,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,5,3,2,2,2,3,3,1,2,2,2,2,1,2,2,3,1,2,2,2,3,2,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Graham|Bauer|Critcher|Alter|VanLange|Ross.Slate1|Rottenstrich|Anderson|Kay|Hauser|Huang|Inbar,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing,9,Global,all,TRUE +3044,0.0257827331493813,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,1,4,2,3,5,2,3,2,2,2,4,3,2,1,2,3,2,2,1,2,3,2,2,3,2,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Inbar|Hauser|Ross.Slate1|Anderson|Huang|Graham|Bauer|Rottenstrich|Alter|Critcher|VanLange|Miyamoto,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,5,Global,all,TRUE +3045,0.667699880202895,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,6,6,2,4,1,1,3,3,1,1,3,4,2,2,4,1,3,1,1,3,3,2,1,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Alter|Inbar|Kay|Bauer|Huang|Hauser|Critcher|Graham|Anderson|Miyamoto|Ross.Slate1|Rottenstrich,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,10,Global,all,TRUE +3046,-0.623111548911799,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,5,5,4,4,3,3,1,1,2,1,2,4,1,2,1,1,1,4,1,2,1,1,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Huang|Miyamoto|Graham|Rottenstrich|Anderson|Critcher|Ross.Slate1|Hauser|Kay|Inbar|Bauer|Alter,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing,6,Global,all,TRUE +3047,0.114234663022979,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,5,2,3,3,4,1,4,5,1,4,5,4,1,5,4,1,4,3,3,4,3,2,1,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Miyamoto|Huang|Critcher|Ross.Slate1|Hauser|Inbar|Alter|Kay|Anderson|VanLange|Graham|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,10,Global,all,TRUE +3048,-2.50639582201985,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,5,5,1,5,4,4,3,3,3,3,3,3,5,4,4,4,4,2,3,4,2,2,4,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Critcher|VanLange|Hauser|Rottenstrich|Miyamoto|Bauer|Inbar|Ross.Slate1|Alter|Huang|Anderson|Kay,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +3049,-0.276713060065617,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,4,2,1,3,2,1,2,3,4,1,1,3,1,3,3,1,3,3,3,1,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Anderson|Miyamoto|Huang|Kay|Rottenstrich|VanLange|Bauer|Graham|Hauser|Inbar|Alter|Critcher,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +3051,-0.0771548479030182,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,5,4,1,1,1,1,1,1,3,1,4,4,1,1,3,1,1,1,1,1,1,1,1,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Alter|Bauer|Ross.Slate1|Rottenstrich|Graham|Huang|Kay|Hauser|VanLange|Inbar|Critcher|Miyamoto,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,1,Global,all,TRUE +3053,1.45130685278885,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,6,3,3,2,1,4,1,1,1,3,4,1,1,4,1,3,2,1,2,4,4,1,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Alter|Huang|Anderson|Bauer|Rottenstrich|Critcher|Hauser|Ross.Slate1|VanLange|Kay|Graham|Inbar,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,4,Global,all,TRUE +3056,-1.05900188799124,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,7,1,4,2,2,3,1,1,4,4,1,1,4,2,1,1,1,3,1,2,1,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Inbar|Rottenstrich|Graham|Alter|Huang|Hauser|Ross.Slate1|Kay|Bauer|Anderson|Critcher|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five,11,Global,all,TRUE +3057,0.0695452038949296,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,5,5,3,1,5,1,1,1,1,2,1,1,1,1,1,1,1,4,1,1,1,1,1,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Rottenstrich|Alter|Critcher|Miyamoto|Graham|Bauer|Hauser|Kay|Inbar|Ross.Slate1|Anderson|Huang,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,12,Global,all,TRUE +3058,-0.342483344615338,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,5,5,5,1,1,1,5,1,1,4,3,1,1,5,1,3,1,1,5,4,5,1,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Alter|Kay|VanLange|Ross.Slate1|Bauer|Huang|Inbar|Hauser|Miyamoto|Anderson|Graham|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,11,Global,all,TRUE +3059,-0.326272520573533,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,3,5,2,2,2,3,2,3,2,3,1,1,4,3,3,4,2,1,2,2,2,1,3,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Critcher|Alter|Graham|Miyamoto|VanLange|Bauer|Anderson|Inbar|Kay|Hauser|Ross.Slate1|Huang,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing,8,Global,all,TRUE +3062,-0.110236681052095,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,5,6,6,3,1,2,2,2,1,1,2,2,1,1,3,1,3,2,1,1,1,2,1,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|VanLange|Graham|Inbar|Miyamoto|Huang|Bauer|Anderson|Kay|Alter|Hauser|Ross.Slate1|Rottenstrich,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,8,Global,all,TRUE +3063,0.548678053540089,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,3,5,3,3,3,4,4,3,4,4,1,2,4,2,2,4,3,4,4,2,2,3,4,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Hauser|Kay|Alter|Miyamoto|Graham|Bauer|Inbar|Rottenstrich|Huang|Ross.Slate1|VanLange|Critcher,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +3064,0.230491396463118,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,6,3,4,4,2,2,3,4,3,3,3,2,1,2,2,3,2,3,3,3,2,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Alter|Kay|Huang|Miyamoto|Critcher|Bauer|Ross.Slate1|Graham|Hauser|Anderson|Rottenstrich|Inbar,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,11,Global,all,TRUE +3065,0.4792156873852,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,6,6,5,2,2,3,2,3,1,1,1,3,1,1,3,1,2,2,2,4,2,1,1,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Rottenstrich|Bauer|Ross.Slate1|Kay|Inbar|Critcher|Hauser|Alter|Anderson|Huang|Miyamoto|VanLange,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,10,Global,all,TRUE +3066,-0.186423025351853,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,3,4,1,1,5,5,3,1,1,4,1,2,4,2,3,5,3,4,3,1,2,2,5,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Bauer|Kay|Graham|Huang|Miyamoto|VanLange|Inbar|Alter|Rottenstrich|Ross.Slate1|Anderson|Critcher,ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,12,Global,all,TRUE +3067,0.180271750889734,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,5,4,2,2,2,3,2,1,1,3,3,2,2,3,1,4,2,2,3,4,3,1,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Kay|Ross.Slate1|Bauer|Graham|Rottenstrich|Huang|Critcher|VanLange|Hauser|Miyamoto|Alter|Anderson,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE,13,Global,all,TRUE +3074,0.479609069133633,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,6,6,6,2,1,1,2,2,1,1,2,3,1,1,2,1,2,1,1,2,4,3,1,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Huang|Critcher|Hauser|VanLange|Ross.Slate1|Bauer|Graham|Miyamoto|Alter|Inbar|Rottenstrich|Kay,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +3076,-0.18813455176062,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,4,5,2,3,4,2,3,3,2,2,2,3,3,2,2,1,3,2,2,3,3,2,1,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Miyamoto|Anderson|Critcher|Graham|Alter|Kay|VanLange|Inbar|Ross.Slate1|Rottenstrich|Hauser|Huang,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,3,Global,all,TRUE +3077,0.079565656425934,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,4,2,3,4,1,2,3,3,1,2,3,3,2,2,4,2,4,1,2,4,3,2,2,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Huang|Inbar|Hauser|Graham|Anderson|Kay|Miyamoto|Rottenstrich|VanLange|Ross.Slate1|Bauer|Critcher,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,6,Global,all,TRUE +3081,0.560018876202027,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,3,2,2,2,1,2,1,1,1,3,1,1,2,1,2,1,2,1,1,1,1,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Graham|Alter|Huang|Rottenstrich|Miyamoto|Ross.Slate1|Hauser|Kay|VanLange|Critcher|Anderson|Inbar,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +3082,-4.37406913586004e-05,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,3,6,4,1,1,3,1,1,1,1,1,1,1,1,1,1,1,1,3,1,1,1,1,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Critcher|Alter|Ross.Slate1|VanLange|Kay|Miyamoto|Huang|Bauer|Graham|Inbar|Hauser|Rottenstrich,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,1,Global,all,TRUE +3084,-0.0216581727470986,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,5,2,1,1,1,1,1,1,3,1,1,2,1,1,1,1,1,1,1,1,1,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Ross.Slate1|Inbar|Miyamoto|Graham|Kay|VanLange|Hauser|Rottenstrich|Bauer|Critcher|Huang|Anderson,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,13,Global,all,TRUE +3085,-0.628248353608699,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,4,2,1,1,3,2,1,1,2,2,1,1,2,1,2,1,1,2,2,2,1,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Huang|Inbar|Miyamoto|Alter|Rottenstrich|Hauser|Graham|Critcher|Bauer|Kay|Anderson|Ross.Slate1,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,12,Global,all,TRUE +3086,0.252372631835892,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,5,6,3,3,1,1,5,2,1,1,2,2,2,3,3,1,4,1,2,3,2,2,1,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Critcher|Alter|Miyamoto|Huang|VanLange|Anderson|Graham|Inbar|Ross.Slate1|Bauer|Hauser|Kay,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +3087,1.12744978438091,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,6,6,6,2,2,2,2,2,1,1,2,2,2,1,2,3,2,2,1,1,1,2,2,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Huang|Rottenstrich|Bauer|Alter|Ross.Slate1|Kay|Miyamoto|Inbar|VanLange|Hauser|Graham|Critcher,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +3089,0.211108450995977,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,4,4,1,1,2,3,1,1,3,3,1,1,2,1,3,1,1,3,2,4,1,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Critcher|Anderson|Hauser|Bauer|Rottenstrich|Kay|Graham|VanLange|Huang|Alter|Miyamoto|Inbar,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,3,Global,all,TRUE +3091,-0.581580564754849,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,4,4,1,2,2,2,4,3,5,5,2,1,4,2,3,4,4,3,1,4,3,3,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Ross.Slate1|VanLange|Alter|Inbar|Bauer|Miyamoto|Huang|Kay|Critcher|Hauser|Anderson|Rottenstrich,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +3093,0.664934786980228,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,6,5,1,2,1,3,2,1,1,1,1,1,1,1,1,2,1,1,2,3,1,1,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Kay|Inbar|Critcher|Rottenstrich|Graham|Anderson|Huang|Alter|Miyamoto|Bauer|VanLange|Ross.Slate1,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,7,Global,all,TRUE +3094,0.165772453256696,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,5,6,3,2,3,2,2,1,3,2,4,3,2,2,3,1,1,3,2,3,1,3,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Critcher|Hauser|Rottenstrich|VanLange|Ross.Slate1|Graham|Kay|Miyamoto|Inbar|Alter|Huang|Bauer,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +3095,0.462077874960894,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,7,6,5,3,1,1,4,4,1,1,4,3,2,1,5,1,2,1,1,5,5,3,1,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|VanLange|Miyamoto|Ross.Slate1|Huang|Bauer|Anderson|Alter|Rottenstrich|Graham|Kay|Critcher|Hauser,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five,7,Global,all,TRUE +3096,0.501616882937806,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,4,4,2,2,1,1,1,1,1,1,3,1,1,4,1,3,1,1,2,2,1,1,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Miyamoto|Graham|Kay|Huang|Bauer|Critcher|Hauser|Rottenstrich|Anderson|VanLange|Inbar|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,10,Global,all,TRUE +3098,0.316038008228413,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,5,6,4,2,2,1,2,2,1,1,2,3,2,1,2,1,3,1,2,2,2,2,1,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Critcher|Graham|Rottenstrich|Inbar|Kay|Ross.Slate1|Miyamoto|Bauer|VanLange|Alter|Hauser|Anderson,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,13,Global,all,TRUE +3101,-0.364757961736546,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,4,2,2,2,1,1,3,2,1,1,1,2,1,1,3,1,3,1,1,1,3,2,1,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Alter|Anderson|Hauser|Critcher|Inbar|Kay|Huang|Rottenstrich|Miyamoto|Bauer|Ross.Slate1|Graham,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +3104,1.01923517374598,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,3,3,3,2,4,1,1,1,1,1,2,2,1,1,2,2,2,3,2,2,1,2,1,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Anderson|Critcher|Huang|Inbar|Miyamoto|Alter|VanLange|Graham|Bauer|Ross.Slate1|Rottenstrich|Hauser,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing,2,Global,all,TRUE +3105,-0.20764407565916,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,6,6,3,1,1,3,1,1,1,1,1,1,1,2,1,4,1,1,1,1,1,1,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Alter|Kay|Hauser|VanLange|Miyamoto|Graham|Huang|Rottenstrich|Bauer|Inbar|Ross.Slate1|Critcher,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,1,Global,all,TRUE +3106,-0.311899801371894,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,4,4,4,5,5,5,5,3,3,3,2,2,4,5,5,1,5,2,5,5,5,3,5,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Graham|Bauer|Huang|Critcher|Alter|VanLange|Ross.Slate1|Kay|Anderson|Inbar|Hauser|Rottenstrich,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,10,Global,all,TRUE +3108,-0.713923769275993,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,5,6,5,4,1,1,2,2,2,1,2,4,1,1,3,1,3,2,2,3,3,2,1,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Miyamoto|Hauser|VanLange|Graham|Inbar|Anderson|Ross.Slate1|Bauer|Huang|Kay|Critcher|Rottenstrich,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +3109,0.41291179620141,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,3,2,2,1,1,3,2,1,1,2,4,1,1,3,1,3,1,1,2,1,4,1,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Critcher|Graham|Miyamoto|Hauser|Rottenstrich|Ross.Slate1|Anderson|Inbar|Bauer|Alter|Kay|Huang,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +3111,-0.55324215455424,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,4,4,4,2,2,3,3,1,2,2,3,3,1,4,2,4,1,1,3,4,3,1,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Ross.Slate1|Critcher|Huang|Anderson|Hauser|Graham|Miyamoto|VanLange|Rottenstrich|Kay|Inbar|Alter,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,5,Global,all,TRUE +3112,-0.497885704283956,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,2,1,1,2,4,1,1,4,4,1,1,3,1,3,1,1,2,3,3,1,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Anderson|Bauer|Miyamoto|VanLange|Kay|Huang|Ross.Slate1|Alter|Rottenstrich|Critcher|Inbar|Hauser,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,2,Global,all,TRUE +3114,0.210855294133179,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,4,4,2,1,2,1,1,2,1,3,1,2,1,1,1,1,1,1,2,1,1,1,1,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Anderson|Kay|Huang|Graham|Bauer|Rottenstrich|Inbar|Ross.Slate1|Critcher|Miyamoto|Alter|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,2,Global,all,TRUE +3115,0.629214439039883,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,5,2,2,2,3,2,1,1,2,2,1,1,2,1,3,2,1,2,2,2,1,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Alter|Kay|Critcher|Graham|Ross.Slate1|Hauser|Inbar|Miyamoto|Anderson|VanLange|Rottenstrich|Bauer,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,10,Global,all,TRUE +3116,-0.0853235491396199,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,2,2,2,1,4,3,1,1,1,1,1,5,1,1,1,1,1,1,1,1,3,1,1,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Rottenstrich|VanLange|Alter|Bauer|Huang|Anderson|Hauser|Miyamoto|Kay|Graham|Ross.Slate1|Critcher,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing,7,Global,all,TRUE +3118,0.120829837265849,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,4,5,5,3,1,3,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Miyamoto|Critcher|Graham|Alter|VanLange|Kay|Huang|Ross.Slate1|Bauer|Anderson|Rottenstrich|Hauser,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +3120,0.734003771386684,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,7,6,3,4,3,4,5,4,2,1,5,4,4,2,4,2,5,2,1,5,2,4,1,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Critcher|Alter|VanLange|Inbar|Ross.Slate1|Anderson|Bauer|Kay|Miyamoto|Hauser|Rottenstrich|Huang,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood,7,Global,all,TRUE +3123,0.177113275918634,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,5,2,2,4,1,1,4,1,1,1,1,3,1,1,4,1,4,1,1,4,1,2,1,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|VanLange|Hauser|Miyamoto|Huang|Critcher|Rottenstrich|Kay|Alter|Ross.Slate1|Graham|Anderson|Bauer,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,12,Global,all,TRUE +3124,-0.000310544008392385,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,3,2,3,1,3,4,2,2,1,3,1,2,4,2,4,4,2,1,2,2,1,2,4,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|Huang|Inbar|Rottenstrich|Alter|Critcher|Kay|VanLange|Bauer|Anderson|Graham|Ross.Slate1,ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +3127,-0.115766867497429,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,6,6,2,3,1,2,2,1,1,2,2,3,1,1,1,3,2,2,2,1,2,1,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Graham|Miyamoto|Kay|VanLange|Inbar|Rottenstrich|Critcher|Bauer|Huang|Anderson|Hauser|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,11,Global,all,TRUE +3128,0.332515635587252,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,6,4,2,2,1,3,2,1,1,2,2,1,1,3,1,2,1,1,2,1,2,1,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Miyamoto|Alter|Graham|VanLange|Kay|Ross.Slate1|Hauser|Inbar|Huang|Critcher|Bauer|Anderson,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five,13,Global,all,TRUE +3129,-1.05543638481747,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,3,3,3,2,2,3,2,1,2,2,2,1,2,2,3,2,2,1,2,1,1,2,2,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Bauer|Rottenstrich|Graham|Alter|Hauser|Inbar|Ross.Slate1|Huang|Miyamoto|Critcher|VanLange|Kay,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +3130,0.164187505279328,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,2,7,3,3,1,2,4,5,2,2,5,4,1,1,4,5,1,4,1,3,1,2,2,1,4,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Bauer|VanLange|Ross.Slate1|Graham|Hauser|Rottenstrich|Huang|Alter|Miyamoto|Anderson|Critcher|Kay,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,11,Global,all,TRUE +3133,-0.126574083525299,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,5,3,2,2,4,4,2,1,4,4,2,1,3,1,4,4,1,3,3,4,1,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Rottenstrich|Alter|Graham|Critcher|Hauser|VanLange|Anderson|Ross.Slate1|Bauer|Kay|Huang|Inbar,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection,8,Global,all,TRUE +3134,0.186335543969136,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,5,4,5,1,2,3,3,3,1,1,1,3,2,1,1,1,1,3,3,2,1,3,1,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Critcher|Hauser|Ross.Slate1|Alter|Inbar|Huang|VanLange|Bauer|Miyamoto|Graham|Kay|Rottenstrich,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,1,Global,all,TRUE +3136,-0.170996739336315,Low,ML2_Slate1_New_ZealandEng_online_execution_illegal_DEPLOY__vuw_r.csv,vuw,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,6,5,5,1,3,1,1,2,1,1,3,1,1,1,2,1,1,1,1,2,3,2,1,vuw,vuw,vuw,New Zealand,"Victoria University of Wellington, New Zealand",English,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Ross.Slate1|Miyamoto|Huang|Kay|Critcher|Graham|VanLange|Hauser|Inbar|Alter|Bauer|Anderson,ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +3137,0.299433802438175,Low,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,3,2,3,1,1,1,4,2,1,1,3,3,1,1,2,1,4,1,1,3,4,3,1,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Inbar|Anderson|Huang|VanLange|Rottenstrich|Ross.Slate1|Hauser|Miyamoto|Alter|Kay|Bauer|Graham,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +3138,-0.192877974709089,Low,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,,,,,,,,,,,,,,,,,,,,,,,,,,6,3,6,6,6,4,1,1,4,5,2,2,5,4,2,1,4,1,5,1,1,4,5,4,1,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Anderson|Rottenstrich|Graham|Hauser|Huang|Critcher|Kay|Bauer|VanLange|Miyamoto|Ross.Slate1|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,2,Global,all,TRUE +3140,0.346748129903256,Low,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,5,4,3,1,1,4,3,1,1,4,3,2,1,4,1,4,1,1,4,3,3,1,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Bauer|Ross.Slate1|Miyamoto|Graham|Anderson|Rottenstrich|Inbar|Hauser|Huang|Critcher|VanLange|Alter,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,6,Global,all,TRUE +3141,0.272008734165831,Low,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,3,5,2,4,4,3,1,1,1,1,1,2,1,1,1,1,5,1,1,1,3,2,1,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Anderson|Inbar|Rottenstrich|Graham|Critcher|Bauer|Alter|VanLange|Hauser|Ross.Slate1|Miyamoto|Huang,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,2,Global,all,TRUE +3142,-0.71919857338793,Low,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,6,4,1,2,3,1,1,1,1,3,2,2,3,1,4,1,1,2,4,2,1,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Hauser|Alter|Graham|VanLange|Ross.Slate1|Miyamoto|Bauer|Inbar|Critcher|Kay|Anderson|Rottenstrich,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,12,Global,all,TRUE +3143,-0.26840413394338,Low,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,2,2,5,2,2,4,2,1,1,4,1,2,1,2,2,1,3,2,1,3,1,1,4,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Alter|Rottenstrich|Miyamoto|Ross.Slate1|Critcher|Bauer|Kay|Huang|Graham|Anderson|Inbar|Hauser,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,11,Global,all,TRUE +3144,0.14758329948909,Low,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,2,3,3,3,2,3,3,1,3,3,4,4,1,3,1,4,2,1,3,4,3,2,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|VanLange|Bauer|Hauser|Alter|Kay|Rottenstrich|Huang|Anderson|Ross.Slate1|Miyamoto|Graham|Inbar,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +3149,-0.613608831090027,Low,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,4,3,3,2,1,2,4,3,1,3,3,3,3,2,3,3,5,1,1,3,3,1,2,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Bauer|Kay|Rottenstrich|Inbar|Anderson|Ross.Slate1|Miyamoto|Huang|VanLange|Critcher|Hauser|Graham,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing,6,Global,all,TRUE +3152,-0.210015787133395,Low,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,5,1,4,2,1,1,2,1,1,1,2,2,1,1,3,1,3,1,1,3,4,1,1,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Critcher|Inbar|Bauer|Huang|Alter|Anderson|Hauser|Miyamoto|Rottenstrich|VanLange|Ross.Slate1|Graham,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE,7,Global,all,TRUE +3153,-0.447539480279174,Low,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,5,2,3,3,3,2,2,2,1,4,1,4,4,1,2,2,3,1,3,1,4,2,2,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Graham|Critcher|Kay|Miyamoto|VanLange|Alter|Hauser|Huang|Ross.Slate1|Anderson|Rottenstrich|Bauer,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +3154,-0.779691828355116,Low,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,6,6,5,3,1,1,4,3,1,1,3,3,1,1,3,1,4,1,1,2,4,3,2,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Huang|Kay|Graham|VanLange|Bauer|Rottenstrich|Hauser|Alter|Critcher|Anderson|Inbar|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing,11,Global,all,TRUE +3155,0.719897855502079,Low,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,3,4,3,2,3,4,4,1,2,4,4,4,1,4,2,3,3,1,3,4,3,3,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Bauer|Inbar|Critcher|Graham|Ross.Slate1|VanLange|Huang|Miyamoto|Anderson|Rottenstrich|Hauser|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,10,Global,all,TRUE +3156,0.692879815432404,Low,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,4,2,1,3,2,2,4,1,1,2,1,1,4,3,2,2,5,2,2,1,2,1,3,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Critcher|Ross.Slate1|Alter|Hauser|Inbar|Kay|VanLange|Anderson|Huang|Graham|Bauer|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,9,Global,all,TRUE +3157,0.241298612490988,Low,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,6,7,5,5,1,1,5,1,1,1,3,1,1,1,3,1,3,1,1,3,2,1,1,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Huang|Inbar|Ross.Slate1|Hauser|Miyamoto|Graham|Bauer|VanLange|Rottenstrich|Anderson|Kay|Critcher,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +3159,0.163794123530895,Low,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,6,4,6,4,4,2,4,4,1,3,2,3,4,1,5,1,4,2,2,4,3,3,2,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Hauser|Kay|Critcher|Huang|Ross.Slate1|Bauer|Inbar|Graham|Alter|Miyamoto|Anderson|VanLange,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood,12,Global,all,TRUE +3160,-0.92494715706133,Low,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,,,,,,,,,,,,,,,,,,,,,,,,,,1,3,2,1,1,4,1,2,4,1,1,1,1,4,1,1,3,1,4,1,1,2,3,5,1,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Alter|Inbar|Kay|VanLange|Hauser|Ross.Slate1|Graham|Miyamoto|Huang|Rottenstrich|Critcher|Bauer,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing,1,Global,all,TRUE +3165,0.223767418318249,Low,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,5,2,3,3,2,1,2,2,1,1,3,4,3,2,3,1,4,1,1,3,3,3,1,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Critcher|Bauer|Inbar|VanLange|Alter|Miyamoto|Ross.Slate1|Rottenstrich|Hauser|Kay|Anderson|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection,12,Global,all,TRUE +3166,-1.47973274437218,Low,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,6,4,4,3,1,1,3,1,1,1,3,3,1,1,2,1,2,1,1,2,4,2,1,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Rottenstrich|Bauer|Inbar|Alter|Huang|Ross.Slate1|Hauser|Kay|VanLange|Critcher|Graham|Anderson,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,13,Global,all,TRUE +3168,-2.04769725918513,Low,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,7,1,3,3,4,1,2,2,1,3,2,1,1,2,3,1,2,1,3,3,2,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Huang|Critcher|Inbar|Ross.Slate1|Rottenstrich|Miyamoto|Bauer|Alter|VanLange|Anderson|Hauser|Kay,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,11,Global,all,TRUE +3170,0.348853038060456,Low,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,1,3,4,1,1,4,3,1,1,3,4,1,1,4,1,4,1,1,4,3,4,1,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Rottenstrich|VanLange|Hauser|Kay|Graham|Miyamoto|Alter|Critcher|Anderson|Bauer|Ross.Slate1|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,10,Global,all,TRUE +3171,0.238926901016754,Low,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,5,4,5,4,1,1,2,1,1,1,1,2,1,1,1,1,3,1,1,1,3,1,1,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Alter|Graham|Miyamoto|Rottenstrich|Anderson|Ross.Slate1|Kay|Inbar|VanLange|Hauser|Bauer|Huang,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,6,Global,all,TRUE +3173,0.0778541300171667,Low,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,5,5,4,1,3,4,1,1,1,1,4,3,2,4,1,2,1,1,1,2,1,3,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Alter|Inbar|Graham|Critcher|Bauer|Ross.Slate1|VanLange|Huang|Anderson|Kay|Rottenstrich|Hauser,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,10,Global,all,TRUE +3174,-1.27885416207865,Low,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,5,6,3,4,1,1,2,2,1,1,3,3,1,1,1,1,3,1,1,2,3,3,1,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Ross.Slate1|Critcher|Miyamoto|Kay|Anderson|Hauser|Inbar|Graham|Huang|Rottenstrich|Alter|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,6,Global,all,TRUE +3175,-1.05794832117734,Low,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,5,2,3,2,2,2,3,1,2,1,2,1,1,1,1,1,3,1,2,2,3,1,2,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|VanLange|Critcher|Anderson|Huang|Hauser|Miyamoto|Ross.Slate1|Graham|Rottenstrich|Alter|Inbar|Bauer,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,4,Global,all,TRUE +3177,-0.598324995430722,Low,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,,,,,,,,,,,,,,,,,,,,,,,,,,1,6,1,1,1,4,3,3,4,3,2,3,1,2,4,4,1,3,4,2,4,2,2,1,4,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Anderson|Graham|Bauer|VanLange|Rottenstrich|Hauser|Kay|Miyamoto|Inbar|Critcher|Ross.Slate1|Huang,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,2,Global,all,TRUE +3184,0.244330509030689,Low,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,6,3,6,4,1,1,3,3,1,1,3,3,1,1,1,1,4,1,1,4,4,3,1,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Critcher|Ross.Slate1|Graham|Miyamoto|Hauser|Alter|Inbar|Huang|VanLange|Kay|Rottenstrich|Anderson,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,13,Global,all,TRUE +3186,0.0532078014217255,Low,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,6,6,5,3,1,1,2,1,1,1,3,4,1,1,1,1,5,1,1,3,4,3,1,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Graham|Inbar|Hauser|Bauer|Ross.Slate1|Anderson|Miyamoto|Alter|Kay|Critcher|VanLange|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,7,Global,all,TRUE +3187,0.232736529505953,Low,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,6,4,5,4,1,1,1,1,1,1,4,3,1,1,4,1,2,1,1,4,3,4,2,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Hauser|Ross.Slate1|Miyamoto|VanLange|Kay|Graham|Critcher|Rottenstrich|Alter|Bauer|Huang|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,1,Global,all,TRUE +3190,-0.373193466290181,Low,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,7,5,1,1,2,1,1,1,1,5,1,1,1,1,4,1,1,2,5,1,1,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Bauer|Critcher|Kay|Graham|Ross.Slate1|Inbar|VanLange|Miyamoto|Alter|Hauser|Anderson|Huang,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,12,Global,all,TRUE +3192,-0.315465304545663,Low,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,,,,,,,,,,,,,,,,,,,,,,,,,,1,6,2,2,1,3,1,2,2,2,1,4,1,1,3,1,3,3,4,1,2,2,3,1,3,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Critcher|Anderson|Miyamoto|Hauser|Alter|Bauer|Graham|Ross.Slate1|Rottenstrich|Kay|Inbar|Huang,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +3196,1.06101931476572,Low,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,4,5,3,1,3,1,2,2,1,3,4,1,1,3,1,3,1,1,4,5,2,2,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Kay|Ross.Slate1|Alter|Rottenstrich|Miyamoto|VanLange|Hauser|Anderson|Bauer|Inbar|Huang|Graham,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing,9,Global,all,TRUE +3197,-0.218451291687031,Low,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,6,5,5,4,2,2,4,4,3,2,5,4,1,2,5,2,4,1,1,5,4,3,2,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Anderson|Huang|Critcher|Bauer|Miyamoto|VanLange|Ross.Slate1|Hauser|Inbar|Alter|Rottenstrich|Kay,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,2,Global,all,TRUE +3201,0.568187577438629,Low,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,6,5,6,4,1,1,4,4,1,1,4,4,1,1,3,1,4,1,1,3,4,3,1,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Rottenstrich|Inbar|Kay|Miyamoto|Hauser|Anderson|Graham|Alter|Critcher|Bauer|VanLange|Ross.Slate1,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,7,Global,all,TRUE +3205,0.374552933469797,Low,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,5,4,3,1,1,3,2,1,1,3,4,1,1,4,1,3,1,1,4,4,3,1,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Graham|Bauer|Miyamoto|VanLange|Huang|Critcher|Alter|Anderson|Inbar|Ross.Slate1|Kay|Rottenstrich,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,9,Global,all,TRUE +3208,-0.721823441724962,Low,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,5,1,1,4,1,2,4,2,1,1,4,3,2,1,4,1,4,1,1,3,2,3,2,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Critcher|Alter|Inbar|Kay|Miyamoto|Graham|Rottenstrich|VanLange|Ross.Slate1|Hauser|Huang|Anderson,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,13,Global,all,TRUE +3209,-1.02090760310606,Low,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,3,3,3,3,1,3,3,2,2,2,2,2,2,1,2,3,3,1,2,2,2,1,2,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Hauser|Alter|VanLange|Inbar|Rottenstrich|Critcher|Graham|Ross.Slate1|Huang|Kay|Anderson|Bauer,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,12,Global,all,TRUE +3210,-0.212387498607629,Low,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,5,3,1,1,3,3,1,1,2,3,1,1,3,1,4,1,1,3,2,3,1,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Critcher|VanLange|Anderson|Ross.Slate1|Hauser|Inbar|Alter|Miyamoto|Bauer|Rottenstrich|Kay|Graham,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,4,Global,all,TRUE +3216,0.607066400350074,Low,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,,,,,,,,,,,,,,,,,,,,,,,,,,1,4,7,3,4,2,2,3,2,1,1,3,1,2,1,1,2,1,1,1,1,3,2,2,2,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Huang|Inbar|Hauser|Bauer|VanLange|Critcher|Graham|Miyamoto|Kay|Ross.Slate1|Alter|Anderson,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,13,Global,all,TRUE +3218,0.485279480464602,Low,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,7,6,6,4,1,2,2,3,1,1,4,4,1,1,3,1,4,1,1,4,4,3,1,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Bauer|Alter|VanLange|Critcher|Ross.Slate1|Huang|Anderson|Rottenstrich|Hauser|Miyamoto|Inbar|Kay,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,8,Global,all,TRUE +3221,-0.29556239889869,Low,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,5,5,4,2,4,5,3,3,4,4,3,4,2,4,3,4,2,3,3,4,3,4,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Anderson|Graham|Rottenstrich|Miyamoto|Alter|VanLange|Bauer|Inbar|Ross.Slate1|Critcher|Hauser|Huang,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +3224,0.720558040567546,Low,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,6,3,5,2,1,1,2,3,1,1,3,3,2,2,2,1,3,1,1,3,2,1,2,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|VanLange|Huang|Rottenstrich|Alter|Bauer|Anderson|Miyamoto|Kay|Inbar|Ross.Slate1|Graham|Critcher,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +3231,-1.30811956066176,Low,ML2_Slate1_Polish_execution_illegal__Wroclaw_r.csv,wroclaw,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,6,7,5,4,1,2,3,2,2,2,4,4,1,1,4,1,3,1,1,3,3,2,2,wroclaw,wroclaw,wroclaw,Poland,"University of Social Sciences and Humanities, Wroclaw, Poland",Polish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Graham|Kay|Huang|Alter|Inbar|Hauser|Anderson|Bauer|Miyamoto|Rottenstrich|Critcher|VanLange,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,8,Global,all,TRUE +3236,0.0424005853938554,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,,,,,,,,,,,,,,,,,,,,,,,,,,4,7,6,5,4,4,1,1,4,3,1,1,4,5,1,1,3,1,5,1,1,4,4,4,1,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Kay|Alter|Ross.Slate1|Graham|Rottenstrich|VanLange|Critcher|Miyamoto|Bauer|Hauser|Huang|Inbar,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +3238,1.02226707028568,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,3,3,3,2,1,4,3,1,1,2,2,1,1,2,1,3,1,1,3,3,1,1,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Miyamoto|Hauser|VanLange|Kay|Graham|Critcher|Bauer|Alter|Anderson|Rottenstrich|Ross.Slate1|Inbar,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,10,Global,all,TRUE +3248,-0.420254636892465,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,3,1,6,2,3,4,2,1,1,4,2,3,4,1,1,1,4,1,1,2,2,1,1,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Rottenstrich|Kay|Graham|Huang|VanLange|Bauer|Ross.Slate1|Critcher|Hauser|Alter|Anderson|Miyamoto,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,12,Global,all,TRUE +3249,0.157997133768527,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,5,4,1,2,2,4,1,1,4,4,1,1,4,1,4,1,1,4,4,4,1,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Inbar|Hauser|Anderson|Rottenstrich|Miyamoto|Critcher|Bauer|Graham|Kay|Alter|Ross.Slate1|VanLange,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,4,Global,all,TRUE +3252,-0.129479401633601,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,6,2,2,1,2,2,1,1,1,2,1,1,2,1,2,1,1,1,3,1,1,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Rottenstrich|VanLange|Critcher|Bauer|Hauser|Huang|Alter|Miyamoto|Inbar|Graham|Ross.Slate1|Anderson,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,13,Global,all,TRUE +3253,-0.185369458537953,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,6,6,7,3,2,1,3,2,1,2,2,3,1,1,3,1,3,1,1,1,2,1,1,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Hauser|Graham|VanLange|Bauer|Huang|Critcher|Inbar|Anderson|Ross.Slate1|Rottenstrich|Miyamoto|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,9,Global,all,TRUE +3255,0.867258092365494,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,5,4,2,1,1,2,1,1,1,2,3,1,1,2,1,2,1,1,3,3,3,1,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Inbar|Huang|Rottenstrich|Alter|Kay|Critcher|Bauer|VanLange|Graham|Anderson|Ross.Slate1|Hauser,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,11,Global,all,TRUE +3257,-2.52194646099619,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,6,3,2,1,4,3,1,2,1,3,1,1,4,1,4,1,1,2,3,1,1,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Huang|Hauser|Critcher|Inbar|Miyamoto|Graham|Ross.Slate1|Alter|Bauer|VanLange|Anderson|Rottenstrich,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,12,Global,all,TRUE +3259,-1.16496914011274,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,6,6,5,3,2,1,2,1,1,1,2,1,1,1,3,1,2,1,1,3,2,1,1,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|VanLange|Hauser|Miyamoto|Bauer|Rottenstrich|Ross.Slate1|Critcher|Kay|Huang|Inbar|Alter|Anderson,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,13,Global,all,TRUE +3260,-0.215292816715931,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,5,6,4,2,1,1,2,1,1,1,3,3,1,1,3,1,1,1,1,1,2,1,1,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Critcher|Ross.Slate1|Huang|Inbar|Alter|Anderson|Bauer|VanLange|Hauser|Miyamoto|Kay|Rottenstrich,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,7,Global,all,TRUE +3263,-0.813574071455295,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,,,,,,,,,,,,,,,,,,,,,,,,,,3,7,5,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Bauer|Graham|Kay|Huang|Alter|VanLange|Critcher|Ross.Slate1|Hauser|Anderson|Inbar|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,11,Global,all,TRUE +3264,0.432294741668552,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,6,3,6,4,3,1,3,3,1,2,3,4,1,1,3,1,4,1,1,3,4,4,1,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Rottenstrich|Kay|Anderson|Alter|VanLange|Inbar|Miyamoto|Critcher|Graham|Hauser|Huang|Ross.Slate1,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +3265,-0.0518483342421098,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,3,2,2,2,2,4,2,1,2,3,1,2,1,3,1,4,1,1,3,1,2,1,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|VanLange|Rottenstrich|Inbar|Graham|Huang|Alter|Kay|Ross.Slate1|Hauser|Miyamoto|Anderson|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,12,Global,all,TRUE +3267,0.789360221656969,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,3,2,2,4,1,2,2,2,1,1,3,3,1,2,3,1,3,2,1,4,3,2,4,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Kay|Miyamoto|Anderson|Bauer|Alter|Critcher|VanLange|Ross.Slate1|Rottenstrich|Huang|Hauser|Inbar,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +3269,-0.0489430161338078,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,7,5,4,5,1,1,3,4,1,1,3,4,2,1,5,1,5,1,1,5,5,5,1,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Graham|Huang|Alter|Inbar|Ross.Slate1|Critcher|Rottenstrich|Hauser|Kay|Bauer|VanLange|Miyamoto,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,1,Global,all,TRUE +3270,-0.0683259616009491,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,,,,,,,,,,,,,,,,,,,,,,,,,,4,7,6,4,6,3,3,1,4,2,1,1,2,3,1,1,3,1,3,1,1,4,2,1,1,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Miyamoto|Critcher|Graham|Ross.Slate1|Kay|VanLange|Hauser|Huang|Inbar|Bauer|Anderson|Alter,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,12,Global,all,TRUE +3271,-0.851134749706405,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,,,,,,,,,,,,,,,,,,,,,,,,,,1,5,4,1,1,3,1,4,5,2,1,1,1,3,1,1,3,1,4,1,1,3,2,1,3,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Huang|Rottenstrich|Ross.Slate1|Miyamoto|Critcher|Alter|Anderson|Bauer|VanLange|Inbar|Graham|Hauser,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,8,Global,all,TRUE +3272,0.557113558093725,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,4,2,1,1,4,3,1,2,1,3,4,1,2,3,2,1,1,4,1,5,1,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Critcher|Miyamoto|Alter|Anderson|Huang|Bauer|Ross.Slate1|Hauser|Kay|VanLange|Inbar|Rottenstrich,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,5,Global,all,TRUE +3274,0.204524697736743,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,5,4,4,2,1,2,4,2,1,2,1,3,1,1,2,1,4,3,1,1,3,2,1,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Ross.Slate1|Rottenstrich|Bauer|Kay|Alter|Miyamoto|Hauser|Huang|VanLange|Inbar|Graham|Critcher,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,1,Global,all,TRUE +3276,0.074822233477466,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,5,3,5,3,1,1,3,3,1,1,3,4,1,1,3,1,4,1,1,3,4,3,1,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Critcher|Miyamoto|Inbar|Anderson|Huang|VanLange|Kay|Bauer|Ross.Slate1|Hauser|Alter|Rottenstrich,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five,5,Global,all,TRUE +3282,0.0555795128959597,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,,,,,,,,,,,,,,,,,,,,,,,,,,4,7,7,6,7,5,1,1,5,3,1,1,3,3,1,1,4,1,5,1,1,4,5,1,1,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Hauser|Alter|Bauer|Ross.Slate1|Rottenstrich|Miyamoto|Inbar|Kay|Anderson|Critcher|Graham|Huang,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,10,Global,all,TRUE +3284,0.540635930734886,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,7,5,5,3,2,1,2,3,1,1,2,4,1,1,3,1,3,1,1,5,3,4,2,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Alter|Critcher|Graham|Huang|Bauer|VanLange|Kay|Inbar|Anderson|Hauser|Ross.Slate1|Rottenstrich,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,10,Global,all,TRUE +3285,-1.36690128922017,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,5,4,3,4,1,2,4,3,1,1,4,3,1,3,4,1,4,1,1,3,4,3,2,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Huang|Bauer|Critcher|Graham|Rottenstrich|Alter|Inbar|Anderson|Miyamoto|Kay|Hauser|VanLange,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing,9,Global,all,TRUE +3288,0.678380517799366,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,4,6,3,2,3,4,3,1,2,3,3,2,1,2,1,3,2,1,2,4,2,3,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Rottenstrich|Huang|Critcher|VanLange|Bauer|Alter|Inbar|Kay|Graham|Anderson|Ross.Slate1|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,11,Global,all,TRUE +3290,-0.492341871384386,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,5,4,2,2,2,4,1,1,3,1,4,3,2,1,2,2,1,1,1,2,3,2,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Graham|Inbar|Kay|Huang|Hauser|Bauer|Miyamoto|VanLange|Alter|Ross.Slate1|Critcher|Anderson,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +3292,0.925126478995647,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,2,2,5,5,2,2,4,3,4,5,4,3,2,4,2,2,2,3,4,4,3,2,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Graham|Huang|Ross.Slate1|Rottenstrich|Alter|Critcher|Inbar|Bauer|Hauser|Anderson|VanLange|Miyamoto,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +3293,0.642660169859021,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,4,5,4,4,3,4,4,1,4,3,2,4,1,3,1,4,1,1,3,4,3,3,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Ross.Slate1|Hauser|Huang|Critcher|VanLange|Bauer|Graham|Kay|Rottenstrich|Inbar|Miyamoto|Anderson,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood,13,Global,all,TRUE +3297,0.767085604535761,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,badaniaon,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,2,3,1,3,4,5,4,2,2,2,2,1,2,5,3,4,2,4,2,1,2,1,5,badaniaon,badaniaon,badaniaon,Poland,badania.net,Polish,1,"",No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Huang|Ross.Slate1|Kay|Inbar|Bauer|Graham|Hauser|Miyamoto|Alter|Anderson|Rottenstrich|VanLange,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,11,Global,all,TRUE +3301,-0.259184091363477,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,badaniaon,,,,,,,,,,,,,,,,,,,,,,,,,,4,7,6,3,5,3,4,3,4,2,1,3,3,3,2,3,4,2,3,4,1,2,4,3,3,badaniaon,badaniaon,badaniaon,Poland,badania.net,Polish,1,"",No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Alter|Miyamoto|Kay|Ross.Slate1|Inbar|Hauser|VanLange|Critcher|Huang|Bauer|Rottenstrich|Anderson,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,13,Global,all,TRUE +3302,-0.533608277694901,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,badaniaon,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,4,2,2,3,1,1,3,3,1,1,3,2,1,1,1,1,4,1,1,3,2,2,1,badaniaon,badaniaon,badaniaon,Poland,badania.net,Polish,1,"",No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Bauer|Anderson|VanLange|Graham|Ross.Slate1|Critcher|Hauser|Miyamoto|Huang|Inbar|Rottenstrich|Alter,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,3,Global,all,TRUE +3304,0.767478986284194,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,3,3,3,2,2,2,2,1,1,2,3,2,1,3,1,4,1,1,2,3,3,2,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Anderson|Rottenstrich|Miyamoto|Bauer|Inbar|Hauser|Kay|VanLange|Huang|Graham|Alter|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,2,Global,all,TRUE +3305,0.326578420939249,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,badaniaon,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,5,3,5,3,2,1,2,2,1,2,2,4,2,1,4,1,2,1,1,2,3,1,2,badaniaon,badaniaon,badaniaon,Poland,badania.net,Polish,1,"",No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Huang|Alter|Graham|Critcher|Bauer|Anderson|VanLange|Rottenstrich|Hauser|Miyamoto|Ross.Slate1|Kay,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,7,Global,all,TRUE +3308,0.519679458274013,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,badaniaon,,,,,,,,,,,,,,,,,,,,,,,,,,1,4,3,1,1,4,4,5,2,1,3,3,3,1,4,4,4,3,3,3,4,1,3,1,4,badaniaon,badaniaon,badaniaon,Poland,badania.net,Polish,1,"",No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Hauser|Miyamoto|Anderson|Ross.Slate1|Graham|Inbar|Critcher|Alter|Kay|Bauer|Huang|VanLange,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,4,Global,all,TRUE +3310,-0.0753030966086156,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,badaniaon,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,5,6,4,4,1,2,3,3,1,1,4,4,1,1,3,1,3,1,1,2,2,1,1,badaniaon,badaniaon,badaniaon,Poland,badania.net,Polish,1,"",No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|VanLange|Ross.Slate1|Kay|Hauser|Miyamoto|Alter|Bauer|Anderson|Rottenstrich|Inbar|Graham|Huang,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,9,Global,all,TRUE +3312,0.719897855502079,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,badaniaon,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,5,2,3,3,1,1,3,2,1,1,1,3,1,1,3,3,1,1,2,1,1,badaniaon,badaniaon,badaniaon,Poland,badania.net,Polish,1,"",No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Huang|Graham|Anderson|VanLange|Bauer|Alter|Inbar|Critcher|Hauser|Miyamoto|Kay|Ross.Slate1,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,4,Global,all,TRUE +3313,-0.607294106618426,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,badaniaon,,,,,,,,,,,,,,,,,,,,,,,,,,1,4,1,1,1,3,2,4,3,1,1,1,1,1,2,1,1,1,3,2,2,1,1,1,1,badaniaon,badaniaon,badaniaon,Poland,badania.net,Polish,1,"",No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Inbar|Bauer|Ross.Slate1|Anderson|Miyamoto|Huang|Alter|Rottenstrich|VanLange|Hauser|Critcher|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,5,Global,all,TRUE +3314,-0.143445092632571,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,badaniaon,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,3,3,2,3,1,1,1,1,2,1,3,3,1,2,2,1,4,1,1,2,2,2,3,badaniaon,badaniaon,badaniaon,Poland,badania.net,Polish,1,"",No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Critcher|Inbar|Kay|Alter|Anderson|Bauer|Hauser|Graham|Rottenstrich|Ross.Slate1|VanLange|Huang,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,6,Global,all,TRUE +3317,-0.145299069397573,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,badaniaon,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,4,3,2,2,2,2,1,1,2,1,1,3,1,1,3,2,1,1,2,1,1,2,badaniaon,badaniaon,badaniaon,Poland,badania.net,Polish,1,"",No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Critcher|Rottenstrich|Inbar|Anderson|Hauser|Ross.Slate1|Huang|Miyamoto|Alter|Bauer|VanLange|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,5,Global,all,TRUE +3318,0.0228910614953157,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,3,6,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|Bauer|VanLange|Inbar|Alter|Kay|Huang|Graham|Critcher|Ross.Slate1|Rottenstrich|Anderson,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection,13,Global,all,TRUE +3319,-0.466908779292079,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,2,1,2,5,1,1,4,2,1,1,4,4,1,1,1,1,2,1,1,3,4,2,1,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|VanLange|Ross.Slate1|Anderson|Kay|Critcher|Rottenstrich|Graham|Hauser|Huang|Inbar|Bauer|Alter,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,4,Global,all,TRUE +3320,-0.0095328120588943,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,6,3,1,1,3,3,1,1,3,3,1,1,4,1,3,1,1,3,3,3,1,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Anderson|Kay|Hauser|Critcher|Inbar|Miyamoto|VanLange|Bauer|Alter|Rottenstrich|Graham|Huang,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,2,Global,all,TRUE +3321,0.0354098039319527,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,5,7,4,2,1,5,3,1,1,2,4,1,1,3,1,4,1,1,3,4,2,1,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Anderson|Huang|VanLange|Ross.Slate1|Critcher|Miyamoto|Graham|Alter|Kay|Rottenstrich|Hauser|Inbar,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,2,Global,all,TRUE +3322,-0.496567559623622,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,badaniaon,,,,,,,,,,,,,,,,,,,,,,,,,,5,1,5,3,4,5,1,2,3,1,1,1,4,2,2,1,3,1,4,1,1,3,3,3,3,badaniaon,badaniaon,badaniaon,Poland,badania.net,Polish,1,"",No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Rottenstrich|Hauser|Anderson|VanLange|Miyamoto|Ross.Slate1|Kay|Huang|Critcher|Inbar|Bauer|Graham,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,4,Global,all,TRUE +3326,-0.364493383890111,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,6,7,5,1,3,2,4,1,2,3,4,2,1,4,2,2,1,2,3,3,1,2,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Huang|Hauser|Ross.Slate1|Miyamoto|Bauer|Inbar|Graham|Kay|Anderson|Critcher|VanLange|Alter,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +3327,-1.37217831880271,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,2,2,1,2,1,2,1,1,1,5,4,1,1,3,1,4,1,1,3,3,1,2,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Miyamoto|Huang|Alter|Anderson|Hauser|Graham|Inbar|Critcher|Ross.Slate1|VanLange|Rottenstrich|Bauer,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +3329,0.74454418409752,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,badaniaon,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,5,3,1,2,2,2,2,3,2,4,2,1,2,1,3,2,1,3,3,3,2,badaniaon,badaniaon,badaniaon,Poland,badania.net,Polish,1,"",No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Hauser|Huang|VanLange|Alter|Critcher|Graham|Miyamoto|Anderson|Rottenstrich|Kay|Ross.Slate1|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection,9,Global,all,TRUE +3334,0.403689528150909,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,4,2,2,3,3,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,1,1,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Inbar|Hauser|Bauer|Alter|Huang|Miyamoto|Graham|Kay|VanLange|Ross.Slate1|Anderson|Rottenstrich,ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +3335,0.811634838778175,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,4,2,1,2,1,1,1,1,4,1,1,2,1,4,1,1,2,2,4,1,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|VanLange|Ross.Slate1|Kay|Rottenstrich|Alter|Anderson|Miyamoto|Huang|Hauser|Critcher|Inbar|Bauer,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,7,Global,all,TRUE +3337,0.814666735317876,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,,,,,,,,,,,,,,,,,,,,,,,,,,4,7,6,7,4,3,1,1,1,1,1,1,1,2,1,1,2,1,3,1,1,3,3,1,1,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Miyamoto|Kay|VanLange|Inbar|Graham|Critcher|Rottenstrich|Alter|Ross.Slate1|Hauser|Bauer|Anderson,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,13,Global,all,TRUE +3338,0.699334764789639,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,4,3,1,2,3,2,3,2,1,2,1,2,3,1,2,1,3,1,1,3,2,2,1,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Inbar|Hauser|Bauer|VanLange|Huang|Ross.Slate1|Critcher|Kay|Rottenstrich|Anderson|Alter|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,11,Global,all,TRUE +3339,-0.564976358964611,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,6,6,3,4,1,2,4,4,1,1,5,3,1,1,4,1,5,1,2,3,4,3,2,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Ross.Slate1|Hauser|Miyamoto|Critcher|VanLange|Bauer|Rottenstrich|Alter|Kay|Huang|Anderson|Graham,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,12,Global,all,TRUE +3340,0.0615167275439627,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,4,4,3,4,1,3,4,3,1,1,4,3,1,3,4,1,4,3,1,2,4,4,3,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Alter|Graham|Anderson|Inbar|Ross.Slate1|Miyamoto|Hauser|Huang|Kay|VanLange|Bauer|Critcher,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,4,Global,all,TRUE +3341,0.515329417073978,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,,,,,,,,,,,,,,,,,,,,,,,,,,1,5,1,1,1,1,1,5,3,1,1,3,1,1,3,4,1,1,1,1,5,1,5,1,4,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Ross.Slate1|Bauer|Huang|Hauser|Graham|Alter|Miyamoto|Kay|Inbar|Anderson|Rottenstrich|VanLange,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,11,Global,all,TRUE +3347,0.246435417187889,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,3,2,1,3,3,2,4,3,1,3,3,3,2,2,1,2,4,2,3,3,3,3,2,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Hauser|Miyamoto|Ross.Slate1|Inbar|Anderson|Graham|Rottenstrich|Huang|VanLange|Kay|Alter|Bauer,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,6,Global,all,TRUE +3348,0.499118593032173,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,5,4,3,3,1,1,1,3,1,1,4,4,1,1,1,1,3,1,1,2,2,4,1,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Graham|VanLange|Alter|Miyamoto|Rottenstrich|Huang|Critcher|Ross.Slate1|Hauser|Inbar|Bauer|Kay,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +3349,0.736108679543884,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,1,1,2,3,1,2,3,3,2,2,1,1,1,2,2,1,1,1,2,2,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Kay|Inbar|Huang|Graham|Hauser|Alter|Anderson|Miyamoto|Bauer|Critcher|Rottenstrich|VanLange,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,8,Global,all,TRUE +3351,0.944369199577153,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,5,4,5,3,4,4,3,1,1,1,2,2,2,1,4,4,2,3,1,3,4,2,4,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Inbar|Bauer|Kay|Ross.Slate1|Alter|Rottenstrich|Critcher|Graham|Huang|Miyamoto|VanLange|Hauser,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +3352,0.217970428555881,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,7,7,4,1,1,4,3,1,1,2,2,3,1,2,1,4,1,1,2,5,3,2,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|Bauer|VanLange|Inbar|Kay|Critcher|Alter|Ross.Slate1|Anderson|Huang|Rottenstrich|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,10,Global,all,TRUE +3358,0.25501114662716,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,swps,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,3,4,4,1,1,2,4,1,1,2,2,1,1,3,1,4,1,1,3,4,3,1,swps,swps,swps,Poland,"Department of Psychology, SWPS University of Social Sciences and Humanities Campus Sopot, Sopot, Poland",Polish,1,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Hauser|Kay|Ross.Slate1|Rottenstrich|Miyamoto|Graham|Inbar|Huang|Bauer|Critcher|Alter|VanLange,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +3360,0.412518414452978,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,badaniaon,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,6,4,5,1,2,1,4,1,2,5,4,1,1,4,1,3,1,1,4,4,4,2,badaniaon,badaniaon,badaniaon,Poland,badania.net,Polish,1,"",No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|VanLange|Graham|Bauer|Rottenstrich|Hauser|Huang|Miyamoto|Kay|Alter|Inbar|Anderson|Ross.Slate1,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,12,Global,all,TRUE +3367,0.374426355038398,Low,ML2_Slate1_Polish_Inlab_execution_illegal_r.csv,badaniaon,,,,,,,,,,,,,,,,,,,,,,,,,,1,3,2,4,5,3,2,2,4,1,1,3,1,2,3,3,4,2,5,1,3,1,4,1,3,badaniaon,badaniaon,badaniaon,Poland,badania.net,Polish,1,"",No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Ross.Slate1|Hauser|Alter|Inbar|Huang|Graham|Bauer|Anderson|Miyamoto|Rottenstrich|Kay|VanLange,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,9,Global,all,TRUE +3368,0.283209331942134,Low,ML2_Slate1_Portugal__Portuguese_execution_illegal_r.csv,uniporto,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,5,5,4,1,2,3,3,4,2,4,3,2,1,3,1,4,1,1,4,4,3,2,uniporto,uniporto,uniporto,Portugal,"Universidade do Porto, Portugal",Portuguese,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Huang|Inbar|Graham|Alter|Rottenstrich|Anderson|Critcher|VanLange|Kay|Miyamoto|Ross.Slate1|Hauser,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,7,Global,all,TRUE +3369,-1.050692961869,Low,ML2_Slate1_Portugal__Portuguese_execution_illegal_r.csv,uniporto,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,5,4,6,4,5,2,4,3,2,4,3,4,4,1,4,4,3,3,3,4,3,3,2,uniporto,uniporto,uniporto,Portugal,"Universidade do Porto, Portugal",Portuguese,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Miyamoto|Ross.Slate1|Rottenstrich|VanLange|Graham|Hauser|Kay|Huang|Inbar|Anderson|Bauer|Alter,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,11,Global,all,TRUE +3372,0.38721190079207,Low,ML2_Slate1_Portugal__Portuguese_execution_illegal_r.csv,uniporto,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,7,6,4,2,1,4,5,1,2,4,5,1,1,5,1,4,1,1,4,5,5,1,uniporto,uniporto,uniporto,Portugal,"Universidade do Porto, Portugal",Portuguese,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Bauer|Inbar|Critcher|Kay|Graham|Miyamoto|VanLange|Hauser|Alter|Rottenstrich|Anderson|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,12,Global,all,TRUE +3373,0.272148959051466,Low,ML2_Slate1_Portugal__Portuguese_execution_illegal_r.csv,uniporto,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,5,5,5,3,2,1,4,1,1,2,3,2,2,1,2,1,4,1,3,1,2,2,1,uniporto,uniporto,uniporto,Portugal,"Universidade do Porto, Portugal",Portuguese,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Ross.Slate1|Inbar|Bauer|Hauser|Critcher|Alter|Rottenstrich|Kay|Miyamoto|Anderson|VanLange|Graham,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +3376,0.521126406836346,Low,ML2_Slate1_Portugal__Portuguese_execution_illegal_r.csv,uniporto,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,5,2,2,2,2,2,1,4,1,1,3,3,3,1,1,2,1,1,2,1,1,uniporto,uniporto,uniporto,Portugal,"Universidade do Porto, Portugal",Portuguese,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Ross.Slate1|Rottenstrich|Kay|Graham|Anderson|Alter|Huang|Miyamoto|Inbar|Bauer|Critcher|VanLange,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,6,Global,all,TRUE +3381,-1.48592311588298,Low,ML2_Slate1_Portugal__Portuguese_execution_illegal_r.csv,uniporto,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,5,1,5,1,1,5,4,1,2,4,4,1,3,5,1,4,1,1,5,5,2,1,uniporto,uniporto,uniporto,Portugal,"Universidade do Porto, Portugal",Portuguese,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Huang|Kay|Anderson|Rottenstrich|Inbar|Bauer|Hauser|Critcher|VanLange|Alter|Ross.Slate1|Graham,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,4,Global,all,TRUE +3382,0.28848636152467,Low,ML2_Slate1_Portugal__Portuguese_execution_illegal_r.csv,uniporto,,,,,,,,,,,,,,,,,,,,,,,,,,6,2,3,3,3,3,1,1,4,3,1,4,3,1,1,1,3,1,3,1,1,1,1,1,1,uniporto,uniporto,uniporto,Portugal,"Universidade do Porto, Portugal",Portuguese,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Ross.Slate1|Rottenstrich|Miyamoto|Bauer|Huang|Anderson|VanLange|Alter|Inbar|Hauser|Graham|Critcher,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,7,Global,all,TRUE +3383,0.720558040567546,Low,ML2_Slate1_Portugal__Portuguese_execution_illegal_r.csv,uniporto,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,5,5,3,4,2,1,4,4,1,1,3,4,1,1,4,1,3,1,2,2,4,2,1,uniporto,uniporto,uniporto,Portugal,"Universidade do Porto, Portugal",Portuguese,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Inbar|Rottenstrich|Critcher|Graham|Miyamoto|Alter|Hauser|Anderson|Ross.Slate1|VanLange|Bauer|Huang,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,9,Global,all,TRUE +3387,0.830877559359682,Low,ML2_Slate1_Portugal__Portuguese_execution_illegal_r.csv,uniporto,,,,,,,,,,,,,,,,,,,,,,,,,,3,1,6,6,2,3,4,1,2,3,1,1,4,3,4,1,4,3,4,4,5,3,4,2,3,uniporto,uniporto,uniporto,Portugal,"Universidade do Porto, Portugal",Portuguese,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Graham|Huang|Alter|Bauer|Hauser|Kay|Critcher|Inbar|Rottenstrich|Anderson|Miyamoto|Ross.Slate1,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,11,Global,all,TRUE +3388,0.310367596897444,Low,ML2_Slate1_Portugal__Portuguese_execution_illegal_r.csv,uniporto,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,5,5,1,2,4,3,2,1,3,3,2,1,2,2,5,1,2,3,3,3,3,uniporto,uniporto,uniporto,Portugal,"Universidade do Porto, Portugal",Portuguese,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Ross.Slate1|Miyamoto|Graham|VanLange|Inbar|Critcher|Alter|Rottenstrich|Kay|Anderson|Huang|Bauer,ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,11,Global,all,TRUE +3391,0.634351243736784,Low,ML2_Slate1_Portugal__Portuguese_execution_illegal_r.csv,uniporto,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,6,6,3,1,1,5,2,1,1,1,1,3,1,4,1,1,1,1,2,1,1,1,uniporto,uniporto,uniporto,Portugal,"Universidade do Porto, Portugal",Portuguese,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Inbar|Huang|Kay|Bauer|Critcher|Ross.Slate1|VanLange|Miyamoto|Anderson|Graham|Hauser|Alter,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE,10,Global,all,TRUE +3396,0.0633548323841288,Low,ML2_Slate1_Portugal__Portuguese_execution_illegal_r.csv,uniporto,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,7,7,6,3,3,1,3,4,1,2,3,4,2,1,4,1,3,2,3,2,4,3,1,uniporto,uniporto,uniporto,Portugal,"Universidade do Porto, Portugal",Portuguese,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|VanLange|Hauser|Ross.Slate1|Graham|Miyamoto|Rottenstrich|Inbar|Bauer|Alter|Kay|Critcher|Huang,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +3397,0.354916831139858,Low,ML2_Slate1_Portugal__Portuguese_execution_illegal_r.csv,uniporto,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,5,6,4,2,3,3,4,3,1,4,3,3,1,3,2,4,2,2,4,5,3,2,uniporto,uniporto,uniporto,Portugal,"Universidade do Porto, Portugal",Portuguese,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Bauer|Miyamoto|Huang|Alter|VanLange|Anderson|Ross.Slate1|Kay|Critcher|Graham|Hauser|Inbar,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,7,Global,all,TRUE +3399,0.446260432667522,Low,ML2_Slate1_Portugal__Portuguese_execution_illegal_r.csv,uniporto,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,2,4,3,1,4,3,2,1,3,3,2,1,3,1,4,1,1,3,3,2,1,uniporto,uniporto,uniporto,Portugal,"Universidade do Porto, Portugal",Portuguese,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Alter|Hauser|Ross.Slate1|Graham|Bauer|Rottenstrich|VanLange|Kay|Critcher|Anderson|Miyamoto|Huang,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,11,Global,all,TRUE +3401,0.81400655025241,Low,ML2_Slate1_Portugal__Portuguese_execution_illegal_r.csv,uniporto,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,5,5,4,3,4,4,2,1,4,2,5,4,2,2,2,4,1,3,2,4,3,1,uniporto,uniporto,uniporto,Portugal,"Universidade do Porto, Portugal",Portuguese,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Hauser|Critcher|Alter|Inbar|Rottenstrich|Kay|Bauer|VanLange|Miyamoto|Anderson|Graham|Ross.Slate1,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,11,Global,all,TRUE +3406,-0.764141189378777,Low,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,7,6,4,1,1,2,2,1,1,3,4,1,1,5,1,4,1,1,1,4,3,1,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Huang|Kay|Inbar|VanLange|Ross.Slate1|Hauser|Graham|Miyamoto|Bauer|Alter|Anderson|Rottenstrich,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +3407,0.925253057427046,Low,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,7,5,6,4,3,2,2,3,1,3,3,3,3,4,4,2,4,1,2,3,3,3,1,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Huang|Miyamoto|Alter|Ross.Slate1|Critcher|Kay|Inbar|Hauser|Bauer|VanLange|Rottenstrich|Anderson,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +3408,0.673496869965263,Low,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,5,5,1,2,4,5,2,1,4,3,2,1,4,2,5,1,3,4,5,1,1,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Hauser|Huang|Bauer|Ross.Slate1|Graham|Rottenstrich|Anderson|Kay|Alter|Inbar|Miyamoto|VanLange,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +3412,0.667699880202895,Low,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,6,6,3,4,1,1,3,1,1,1,4,4,1,1,5,1,3,1,1,4,3,3,1,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Ross.Slate1|Graham|Bauer|Miyamoto|Huang|Rottenstrich|Anderson|Kay|Alter|Inbar|Critcher|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,8,Global,all,TRUE +3414,0.297720050558809,Low,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,5,5,3,3,1,1,3,2,1,1,2,1,2,1,1,1,4,1,1,3,2,2,1,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Inbar|Miyamoto|Bauer|Ross.Slate1|VanLange|Critcher|Kay|Anderson|Alter|Rottenstrich|Huang|Graham,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,9,Global,all,TRUE +3416,-0.144638884332106,Low,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,7,6,5,5,1,1,4,4,1,1,3,4,1,1,5,1,4,1,2,3,5,3,1,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Hauser|Rottenstrich|Ross.Slate1|Bauer|Critcher|Alter|Graham|Kay|Miyamoto|Inbar|Huang|VanLange,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,1,Global,all,TRUE +3417,0.371394458498697,Low,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,4,4,3,3,1,1,2,1,1,1,2,2,3,2,2,1,2,1,2,1,2,2,1,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Critcher|Miyamoto|Hauser|Kay|Ross.Slate1|Inbar|Alter|Anderson|Rottenstrich|VanLange|Graham|Huang,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,9,Global,all,TRUE +3418,0.000349641057074264,Low,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,5,6,2,3,2,2,3,3,3,2,2,2,3,3,2,2,3,2,2,2,2,2,2,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Critcher|Bauer|Huang|Miyamoto|Kay|Rottenstrich|Graham|Ross.Slate1|Hauser|Alter|Anderson|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,12,Global,all,TRUE +3421,0.554081661554024,Low,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,4,6,5,4,1,3,4,2,1,2,3,3,2,2,4,2,5,1,1,3,3,4,3,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|VanLange|Critcher|Rottenstrich|Miyamoto|Alter|Kay|Ross.Slate1|Inbar|Graham|Huang|Bauer|Hauser,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five,1,Global,all,TRUE +3422,0.0915666641533389,Low,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,5,5,2,5,1,4,2,4,4,4,4,3,4,2,4,2,4,2,3,4,4,2,3,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|Critcher|Kay|Rottenstrich|Alter|Inbar|Anderson|Ross.Slate1|VanLange|Bauer|Graham|Huang,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing,8,Global,all,TRUE +3423,0.520999828404947,Low,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,3,3,1,1,3,1,1,1,1,3,1,1,4,1,3,1,1,1,3,2,1,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Rottenstrich|Kay|Inbar|Huang|Bauer|VanLange|Critcher|Miyamoto|Graham|Alter|Anderson|Hauser,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,12,Global,all,TRUE +3424,0.858822587811858,Low,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,6,6,2,4,1,2,3,3,1,1,3,3,2,1,3,1,4,1,1,3,4,3,1,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|VanLange|Inbar|Alter|Anderson|Graham|Hauser|Critcher|Huang|Rottenstrich|Kay|Miyamoto|Bauer,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,5,Global,all,TRUE +3426,0.634618047053818,Low,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,6,6,3,3,2,1,1,1,1,1,2,2,1,1,2,1,2,1,1,2,2,2,1,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Miyamoto|Hauser|Graham|Bauer|Alter|Huang|VanLange|Rottenstrich|Anderson|Ross.Slate1|Critcher|Kay,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,10,Global,all,TRUE +3427,1.05258381021209,Low,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,4,3,1,3,3,4,1,1,2,2,4,1,3,2,4,1,3,2,3,3,1,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Alter|Kay|Miyamoto|Anderson|Hauser|Rottenstrich|Huang|Bauer|Inbar|Graham|Ross.Slate1|VanLange,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,5,Global,all,TRUE +3428,-0.181944180249819,Low,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,7,5,3,1,1,2,4,1,1,3,3,1,1,4,1,3,1,1,2,2,3,1,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Hauser|Anderson|Ross.Slate1|Alter|Miyamoto|Inbar|VanLange|Kay|Graham|Huang|Rottenstrich|Critcher,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,3,Global,all,TRUE +3429,0.465236349931994,Low,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,7,6,4,1,1,2,3,1,1,3,4,1,1,4,1,3,1,1,4,5,4,1,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Kay|Ross.Slate1|Huang|Rottenstrich|Anderson|Alter|Miyamoto|Critcher|Hauser|Inbar|Graham|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,6,Global,all,TRUE +3430,0.0310597627319175,Low,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,6,6,6,4,2,2,2,2,1,1,3,4,2,1,5,1,3,1,1,4,3,3,1,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Alter|Ross.Slate1|VanLange|Graham|Hauser|Kay|Critcher|Miyamoto|Inbar|Bauer|Rottenstrich|Anderson,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE,13,Global,all,TRUE +3432,-0.327059284070399,Low,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,4,4,1,1,2,3,1,1,3,4,1,1,4,1,4,1,1,3,3,3,1,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Bauer|Hauser|Critcher|Anderson|Alter|Inbar|Ross.Slate1|Miyamoto|Graham|Rottenstrich|VanLange|Huang,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,5,Global,all,TRUE +3433,1.12744978438091,Low,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,4,1,1,3,4,1,1,4,3,1,1,3,1,4,1,2,4,4,2,1,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Huang|Miyamoto|Rottenstrich|Graham|Ross.Slate1|VanLange|Bauer|Anderson|Critcher|Hauser|Kay|Alter,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,9,Global,all,TRUE +3436,0.684570889310167,Low,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,6,5,4,1,1,4,1,1,1,3,3,1,1,5,1,4,2,1,3,5,2,1,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Rottenstrich|Bauer|Graham|VanLange|Alter|Kay|Inbar|Hauser|Miyamoto|Ross.Slate1|Huang|Anderson,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,13,Global,all,TRUE +3438,-0.0058407304537265,Low,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,,,,,,,,,,,,,,,,,,,,,,,,,,1,5,3,4,3,2,1,2,3,1,1,3,2,2,1,2,2,1,4,1,1,1,1,1,1,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Graham|Hauser|Anderson|Huang|Critcher|Kay|VanLange|Bauer|Miyamoto|Alter|Rottenstrich|Ross.Slate1,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,4,Global,all,TRUE +3441,0.851705227918556,Low,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,5,5,4,1,1,1,2,1,1,2,1,1,1,3,1,1,1,1,2,2,3,1,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Kay|Hauser|Huang|Alter|Anderson|Inbar|Rottenstrich|Bauer|Miyamoto|Graham|VanLange|Ross.Slate1,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,6,Global,all,TRUE +3442,-0.0766348877231861,Low,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,6,2,2,3,1,3,1,1,1,2,1,2,1,2,1,3,1,1,1,1,1,1,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Alter|Miyamoto|Rottenstrich|Inbar|VanLange|Critcher|Kay|Huang|Graham|Anderson|Hauser|Ross.Slate1,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,11,Global,all,TRUE +3444,-0.340771818206571,Low,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,7,6,6,4,1,3,4,4,4,1,3,5,2,4,5,1,4,1,3,2,4,4,1,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Inbar|Miyamoto|Critcher|Kay|Alter|Graham|Rottenstrich|Hauser|Anderson|Bauer|Huang|Ross.Slate1,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +3446,-0.130926350195934,Low,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,6,6,3,3,2,3,4,3,1,2,2,1,4,1,2,3,4,1,3,2,2,1,3,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Inbar|Bauer|Graham|Alter|Critcher|Ross.Slate1|Hauser|Miyamoto|VanLange|Huang|Anderson|Rottenstrich,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,12,Global,all,TRUE +3447,0.836154588942218,Low,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,6,3,3,2,2,2,1,1,3,2,1,1,4,1,4,1,1,3,3,3,1,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Miyamoto|Anderson|Graham|VanLange|Alter|Kay|Bauer|Hauser|Inbar|Huang|Rottenstrich|Ross.Slate1,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,3,Global,all,TRUE +3449,0.159848885062929,Low,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,4,6,5,1,1,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Critcher|Bauer|Ross.Slate1|Anderson|Huang|VanLange|Rottenstrich|Alter|Hauser|Inbar|Miyamoto|Kay,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +3450,0.636062770145551,Low,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,6,5,6,3,1,1,1,1,1,1,3,2,1,1,4,1,1,1,1,4,2,1,1,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Kay|Inbar|Huang|VanLange|Graham|Bauer|Alter|Rottenstrich|Hauser|Critcher|Anderson|Miyamoto,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,12,Global,all,TRUE +3451,1.22644212696535,Low,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,4,4,3,3,1,2,3,2,1,2,2,3,2,1,3,1,4,1,1,2,3,3,1,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Ross.Slate1|Inbar|Miyamoto|VanLange|Alter|Rottenstrich|Huang|Graham|Critcher|Kay|Hauser|Anderson,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing,13,Global,all,TRUE +3454,0.481460820428035,Low,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,6,5,2,5,5,4,5,2,1,2,2,5,1,4,5,1,5,4,4,3,5,4,1,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Huang|Anderson|Critcher|Rottenstrich|Ross.Slate1|Hauser|Alter|Graham|Miyamoto|Inbar|Bauer|Kay,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,3,Global,all,TRUE +3455,0.635276006648685,Low,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,3,6,2,3,4,1,3,2,1,1,2,2,2,1,2,1,2,4,1,2,3,1,1,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Inbar|Rottenstrich|Kay|Graham|Huang|Anderson|Miyamoto|Hauser|Ross.Slate1|Critcher|Alter|Bauer,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,7,Global,all,TRUE +3458,-0.0233719246264654,Low,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,7,7,5,4,1,1,4,1,1,1,4,4,1,1,5,1,4,1,1,5,3,4,1,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Inbar|Miyamoto|Hauser|Critcher|Kay|Alter|VanLange|Bauer|Huang|Ross.Slate1|Anderson|Rottenstrich,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,12,Global,all,TRUE +3460,0.343716233363555,Low,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,2,5,2,1,1,2,3,1,3,3,1,1,1,1,2,2,3,2,1,1,1,1,1,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Bauer|Critcher|Rottenstrich|Alter|Miyamoto|Anderson|Graham|Inbar|Hauser|Huang|Ross.Slate1|Kay,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,7,Global,all,TRUE +3461,-1.26962047304451,Low,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,7,5,5,1,1,2,3,1,1,4,3,3,1,4,1,4,1,2,4,4,4,2,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Huang|Inbar|Rottenstrich|Miyamoto|Hauser|Kay|Anderson|VanLange|Bauer|Graham|Alter|Critcher,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,8,Global,all,TRUE +3462,0.681412414339067,Low,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,6,6,5,1,1,1,4,1,1,5,5,2,1,4,1,4,1,1,5,5,5,1,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Critcher|Anderson|Inbar|Ross.Slate1|Graham|Rottenstrich|Huang|Hauser|Bauer|Miyamoto|Kay|VanLange,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,3,Global,all,TRUE +3463,0.567920774121595,Low,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,5,3,1,2,3,1,2,1,1,2,2,1,4,1,5,1,1,1,1,3,3,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Huang|Hauser|Bauer|Critcher|Anderson|Inbar|Alter|Miyamoto|Kay|Graham|Ross.Slate1|Rottenstrich,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,6,Global,all,TRUE +3464,-0.0933656719448229,Low,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,7,7,6,5,1,1,3,4,1,1,3,4,1,1,3,1,3,1,1,4,4,5,3,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Huang|Hauser|VanLange|Miyamoto|Alter|Inbar|Bauer|Critcher|Anderson|Kay|Ross.Slate1|Graham,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,10,Global,all,TRUE +3465,0.414229940861745,Low,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,5,3,2,2,2,3,2,1,2,3,4,1,4,1,2,1,1,3,3,2,1,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Bauer|Graham|Kay|VanLange|Huang|Anderson|Ross.Slate1|Critcher|Hauser|Rottenstrich|Inbar|Miyamoto,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,7,Global,all,TRUE +3473,1.2985430079115,Low,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,4,5,2,4,1,2,2,1,1,1,2,2,1,1,3,1,5,1,1,2,2,3,2,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Graham|Huang|Alter|Inbar|Bauer|Anderson|VanLange|Rottenstrich|Kay|Hauser|Critcher|Ross.Slate1,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,7,Global,all,TRUE +3474,-0.122224042325264,Low,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,5,4,1,1,4,4,1,1,4,4,1,1,4,1,4,1,1,4,4,4,1,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Graham|Bauer|Hauser|Inbar|Anderson|VanLange|Critcher|Miyamoto|Rottenstrich|Huang|Ross.Slate1|Alter,ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood,6,Global,all,TRUE +3475,0.722536370293348,Low,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,6,3,1,3,1,1,2,2,1,1,3,4,1,1,3,1,3,1,2,3,4,3,1,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Ross.Slate1|Alter|Critcher|Kay|VanLange|Graham|Bauer|Huang|Miyamoto|Hauser|Rottenstrich|Anderson,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood,13,Global,all,TRUE +3477,1.31844591355848,Low,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,6,5,6,1,2,2,4,1,1,1,1,3,3,1,3,2,4,1,1,1,2,2,1,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Critcher|Kay|Anderson|Ross.Slate1|VanLange|Inbar|Huang|Graham|Alter|Miyamoto|Rottenstrich|Hauser,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +3478,0.878332111710398,Low,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,6,6,6,4,1,1,4,2,1,1,4,1,1,1,4,1,4,1,1,5,4,1,1,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Kay|Graham|Bauer|Critcher|Miyamoto|Anderson|Inbar|Hauser|Alter|Ross.Slate1|Huang|Rottenstrich,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,7,Global,all,TRUE +3484,0.900480150400206,Low,ML2_Slate1_Serbian_inlab_r.csv,unibelgrade,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,5,3,4,2,2,2,3,4,1,1,3,4,2,1,3,2,1,2,2,4,4,4,1,unibelgrade,unibelgrade,unibelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,"",No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Huang|Miyamoto|Alter|Critcher|Anderson|Bauer|Inbar|Rottenstrich|Kay|Ross.Slate1|Hauser|Graham,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,6,Global,all,TRUE +3485,0.708430454408742,Low,ML2_Slate1_Serbian_inlab_r.csv,fmkbelgrade,,,,,,,,,,,,,,,,,,,,,,,,,,4,7,6,6,2,3,1,1,3,1,1,1,2,3,1,1,1,1,3,1,1,2,3,1,1,fmkbelgrade,fmkbelgrade,fmkbelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Bauer|Hauser|Huang|Miyamoto|Anderson|VanLange|Rottenstrich|Alter|Inbar|Critcher|Kay|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood,6,Global,all,TRUE +3490,0.553561701374192,Low,ML2_Slate1_Serbian_inlab_r.csv,fmkbelgrade,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,7,5,4,1,2,4,2,1,1,3,3,2,1,3,1,4,1,2,3,3,4,1,fmkbelgrade,fmkbelgrade,fmkbelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Rottenstrich|Hauser|Graham|Kay|Ross.Slate1|Bauer|Huang|Alter|VanLange|Inbar|Miyamoto|Anderson,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,13,Global,all,TRUE +3492,0.0389753071057216,Low,ML2_Slate1_Serbian_inlab_r.csv,fmkbelgrade,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,7,2,4,2,4,1,1,1,3,5,4,1,5,1,2,3,3,2,3,5,1,fmkbelgrade,fmkbelgrade,fmkbelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Huang|Ross.Slate1|Hauser|Rottenstrich|Miyamoto|Bauer|Graham|VanLange|Critcher|Inbar|Anderson|Kay,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +3496,1.14287384492585,Low,ML2_Slate1_Serbian_inlab_r.csv,fmkbelgrade,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,6,4,2,4,2,2,4,3,1,1,4,5,2,1,5,1,4,3,1,3,3,5,1,fmkbelgrade,fmkbelgrade,fmkbelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Bauer|VanLange|Miyamoto|Critcher|Alter|Rottenstrich|Ross.Slate1|Huang|Hauser|Anderson|Inbar|Kay,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +3501,0.839186485481919,Low,ML2_Slate1_Serbian_inlab_r.csv,fmkbelgrade,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,7,7,1,3,1,1,1,1,1,1,2,3,1,1,5,1,1,1,1,1,4,3,1,fmkbelgrade,fmkbelgrade,fmkbelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Graham|Critcher|Anderson|Alter|Hauser|Huang|Kay|Inbar|Ross.Slate1|Rottenstrich|Bauer|Miyamoto,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +3504,-0.231756797620534,Low,ML2_Slate1_Serbian_inlab_r.csv,fmkbelgrade,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,6,2,3,2,1,2,1,1,1,3,3,1,1,4,1,2,1,1,3,3,3,1,fmkbelgrade,fmkbelgrade,fmkbelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Miyamoto|Anderson|Graham|Ross.Slate1|Inbar|Kay|Bauer|Alter|VanLange|Critcher|Rottenstrich|Hauser,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +3506,0.785934943368835,Low,ML2_Slate1_Serbian_inlab_r.csv,fmkbelgrade,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,4,4,1,2,4,1,1,1,3,3,2,1,4,1,3,2,1,3,3,2,3,fmkbelgrade,fmkbelgrade,fmkbelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Huang|Anderson|Critcher|Ross.Slate1|Inbar|Rottenstrich|Alter|Bauer|VanLange|Hauser|Kay|Miyamoto,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood,3,Global,all,TRUE +3507,0.952411322382356,Low,ML2_Slate1_Serbian_inlab_r.csv,fmkbelgrade,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,5,5,4,4,1,1,2,2,1,1,2,1,2,1,2,1,2,1,1,1,2,1,1,fmkbelgrade,fmkbelgrade,fmkbelgrade,Serbia,"University of Belgrade, Belgrade, Serbia",Serbian,0,illegal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Ross.Slate1|Kay|Anderson|VanLange|Alter|Huang|Graham|Inbar|Miyamoto|Rottenstrich|Hauser|Critcher,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +3513,-0.482194840421983,Low,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburg,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,3,3,3,3,1,2,1,1,4,4,1,1,1,3,2,1,1,4,2,3,1,johannesburg,johannesburg,johannesburg,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Miyamoto|VanLange|Critcher|Hauser|Anderson|Kay|Bauer|Inbar|Alter|Ross.Slate1|Graham|Rottenstrich,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,6,Global,all,TRUE +3515,0.905616955097107,Low,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburg,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,6,2,3,1,1,2,1,2,4,2,1,2,3,1,2,1,1,2,2,2,1,johannesburg,johannesburg,johannesburg,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Bauer|Alter|Inbar|Hauser|Critcher|Rottenstrich|Anderson|Graham|Kay|Miyamoto|Ross.Slate1|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,8,Global,all,TRUE +3516,0.0623012655702291,Low,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburg,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,7,7,6,5,1,1,4,5,1,4,3,4,2,1,5,2,5,2,4,4,3,4,1,johannesburg,johannesburg,johannesburg,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Rottenstrich|Huang|Ross.Slate1|Anderson|Graham|VanLange|Alter|Bauer|Kay|Critcher|Inbar|Miyamoto,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,5,Global,all,TRUE +3517,0.437838574568122,Low,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburg,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,5,2,5,5,5,1,3,5,5,3,3,5,4,5,1,3,2,5,4,4,johannesburg,johannesburg,johannesburg,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Inbar|Alter|Kay|Rottenstrich|Hauser|Bauer|VanLange|Anderson|Huang|Ross.Slate1|Graham|Miyamoto,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,9,Global,all,TRUE +3521,0.747576080637221,Low,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburg,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,5,5,3,2,4,4,1,2,4,4,2,1,5,2,4,3,1,4,5,5,2,johannesburg,johannesburg,johannesburg,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Graham|Kay|VanLange|Hauser|Inbar|Ross.Slate1|Rottenstrich|Anderson|Critcher|Miyamoto|Alter|Bauer,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,9,Global,all,TRUE +3527,0.658477612152393,Low,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburg,,,,,,,,,,,,,,,,,,,,,,,,,,3,1,4,2,2,5,1,2,5,4,3,1,5,3,3,1,5,1,4,2,2,4,2,2,1,johannesburg,johannesburg,johannesburg,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Bauer|Graham|Inbar|Miyamoto|Hauser|VanLange|Ross.Slate1|Kay|Rottenstrich|Critcher|Anderson|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,12,Global,all,TRUE +3528,0.0136687934448138,Low,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburg,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,2,5,5,3,3,5,4,2,3,5,5,4,3,5,4,5,1,3,5,5,5,4,johannesburg,johannesburg,johannesburg,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|VanLange|Bauer|Ross.Slate1|Miyamoto|Kay|Hauser|Graham|Rottenstrich|Alter|Inbar|Huang|Critcher,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,1,Global,all,TRUE +3529,-0.301752770409491,Low,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburg,,,,,,,,,,,,,,,,,,,,,,,,,,4,1,4,3,2,3,1,1,3,3,1,1,3,3,1,1,2,1,5,1,1,3,4,1,1,johannesburg,johannesburg,johannesburg,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Anderson|VanLange|Miyamoto|Ross.Slate1|Graham|Rottenstrich|Inbar|Bauer|Critcher|Kay|Huang|Alter,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,2,Global,all,TRUE +3532,-0.0223183578125652,Low,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburg,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,6,2,4,2,4,2,2,1,1,4,4,2,1,5,2,3,1,1,3,1,5,1,johannesburg,johannesburg,johannesburg,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Inbar|Graham|Anderson|Ross.Slate1|Alter|Miyamoto|Huang|Critcher|Rottenstrich|Kay|Hauser|VanLange,ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,4,Global,all,TRUE +3533,0.791998736448236,Low,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburg,,,,,,,,,,,,,,,,,,,,,,,,,,6,4,6,5,5,3,3,3,2,4,2,1,5,4,2,3,4,3,3,2,3,2,3,2,3,johannesburg,johannesburg,johannesburg,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|VanLange|Ross.Slate1|Huang|Inbar|Graham|Kay|Bauer|Hauser|Anderson|Critcher|Miyamoto|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,10,Global,all,TRUE +3535,0.21493853201618,Low,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburg,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,7,5,3,1,4,3,3,1,1,4,4,2,1,5,1,4,1,1,3,4,5,1,johannesburg,johannesburg,johannesburg,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Huang|VanLange|Inbar|Miyamoto|Ross.Slate1|Critcher|Graham|Rottenstrich|Anderson|Alter|Hauser|Bauer,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,10,Global,all,TRUE +3536,0.122403364259581,Low,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburg,,,,,,,,,,,,,,,,,,,,,,,,,,6,4,5,5,7,4,3,3,5,5,1,1,5,4,2,1,5,2,4,1,3,4,4,4,2,johannesburg,johannesburg,johannesburg,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Alter|Inbar|Miyamoto|Bauer|Kay|Huang|Rottenstrich|Ross.Slate1|Anderson|Hauser|Graham|Critcher,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,10,Global,all,TRUE +3537,-0.0300959027713342,Low,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburgother,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,5,3,5,3,3,3,3,4,2,3,3,3,1,1,4,1,3,1,1,3,1,2,1,johannesburgother,johannesburgother,johannesburgother,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Ross.Slate1|Rottenstrich|VanLange|Huang|Bauer|Critcher|Hauser|Alter|Graham|Miyamoto|Anderson|Kay,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing,12,Global,all,TRUE +3538,0.847748568466954,Low,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburgother,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,6,5,4,4,2,4,3,1,2,3,3,1,1,3,1,3,4,2,2,2,4,2,johannesburgother,johannesburgother,johannesburgother,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|VanLange|Alter|Huang|Kay|Anderson|Critcher|Miyamoto|Inbar|Bauer|Hauser|Graham|Rottenstrich,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,6,Global,all,TRUE +3542,0.670338394994163,Low,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburgother,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,4,2,4,2,3,1,1,2,1,1,3,4,1,1,3,1,2,1,1,3,1,1,1,johannesburgother,johannesburgother,johannesburgother,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Inbar|Graham|Anderson|Miyamoto|VanLange|Huang|Ross.Slate1|Bauer|Critcher|Kay|Alter|Rottenstrich,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing,4,Global,all,TRUE +3543,-1.18658579763908,Low,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburgother,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,6,4,6,2,1,1,1,2,1,1,2,3,1,1,2,1,1,1,1,2,1,4,1,johannesburgother,johannesburgother,johannesburgother,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Huang|VanLange|Hauser|Kay|Bauer|Miyamoto|Critcher|Graham|Rottenstrich|Anderson|Inbar|Ross.Slate1,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,11,Global,all,TRUE +3546,-0.0576453240044777,Low,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburgother,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,1,1,1,3,2,1,1,4,3,1,1,3,2,4,1,1,2,3,4,1,johannesburgother,johannesburgother,johannesburgother,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Hauser|VanLange|Alter|Anderson|Graham|Critcher|Bauer|Ross.Slate1|Huang|Miyamoto|Kay|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing,5,Global,all,TRUE +3549,0.93632707677195,Low,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburgother,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,4,6,4,3,1,3,3,3,1,3,5,5,1,1,5,2,2,5,2,5,3,5,2,johannesburgother,johannesburgother,johannesburgother,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Anderson|Alter|Hauser|Critcher|Kay|Huang|Miyamoto|VanLange|Graham|Inbar|Ross.Slate1|Rottenstrich,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,2,Global,all,TRUE +3551,0.457461030443825,Low,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburgother,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,5,4,2,2,3,3,1,1,4,3,3,1,4,2,3,2,3,4,3,4,2,johannesburgother,johannesburgother,johannesburgother,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Rottenstrich|Critcher|Graham|VanLange|Alter|Miyamoto|Bauer|Kay|Huang|Inbar|Anderson|Hauser,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing,12,Global,all,TRUE +3553,0.385626952814701,Low,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburgother,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,3,1,1,2,3,1,1,4,3,1,1,4,1,3,1,1,4,4,3,1,johannesburgother,johannesburgother,johannesburgother,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Graham|Kay|Anderson|Miyamoto|Inbar|Alter|Bauer|Rottenstrich|Critcher|Hauser|Ross.Slate1|Huang,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,4,Global,all,TRUE +3554,-0.0469646864080066,Low,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburgother,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,4,6,5,4,2,1,4,4,1,1,4,3,1,1,4,1,4,1,1,4,4,3,1,johannesburgother,johannesburgother,johannesburgother,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Critcher|Anderson|Bauer|Kay|Huang|Rottenstrich|Ross.Slate1|Graham|Miyamoto|VanLange|Alter|Inbar,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,3,Global,all,TRUE +3558,0.160888805422593,Low,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburgother,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,4,5,7,4,1,1,4,3,1,1,4,5,1,1,5,1,5,1,1,4,3,1,1,johannesburgother,johannesburgother,johannesburgother,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Ross.Slate1|Anderson|Miyamoto|Critcher|Rottenstrich|Hauser|VanLange|Graham|Bauer|Inbar|Kay|Huang,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,3,Global,all,TRUE +3560,0.45205742242989,Low,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburg,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,5,1,1,4,4,1,1,3,4,4,1,4,1,4,1,1,4,4,4,2,johannesburg,johannesburg,johannesburg,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Inbar|Miyamoto|Ross.Slate1|Huang|VanLange|Graham|Kay|Bauer|Alter|Hauser|Anderson|Rottenstrich,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,12,Global,all,TRUE +3561,0.130838868813217,Low,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburg,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,3,4,2,3,2,4,2,3,4,3,5,2,4,4,3,2,2,3,2,5,2,johannesburg,johannesburg,johannesburg,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|VanLange|Graham|Miyamoto|Alter|Huang|Rottenstrich|Ross.Slate1|Bauer|Inbar|Critcher|Kay|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,13,Global,all,TRUE +3563,-0.694681048694487,Low,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburg,,,,,,,,,,,,,,,,,,,,,,,,,,3,1,4,4,2,3,3,2,4,4,1,1,4,3,4,2,5,3,3,1,1,4,4,3,2,johannesburg,johannesburg,johannesburg,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Graham|Alter|Miyamoto|Huang|Bauer|Kay|Ross.Slate1|Rottenstrich|Critcher|Inbar|Anderson|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,12,Global,all,TRUE +3566,-0.689668596958386,Low,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburg,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,5,6,3,2,5,2,4,2,2,3,3,3,5,3,4,4,4,4,4,3,2,5,4,johannesburg,johannesburg,johannesburg,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|VanLange|Ross.Slate1|Huang|Kay|Rottenstrich|Bauer|Graham|Alter|Miyamoto|Hauser|Anderson|Inbar,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +3568,0.796742159396705,Low,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburg,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,5,5,5,4,2,4,3,3,3,2,5,4,3,2,5,2,4,3,2,4,4,4,2,johannesburg,johannesburg,johannesburg,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Inbar|Critcher|Anderson|Alter|Bauer|Kay|Ross.Slate1|Hauser|Huang|VanLange|Rottenstrich|Miyamoto,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,4,Global,all,TRUE +3571,0.202279564693907,Low,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburg,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,7,6,6,1,1,1,5,3,3,1,1,1,1,1,1,1,3,1,1,1,1,3,1,johannesburg,johannesburg,johannesburg,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Bauer|Miyamoto|Rottenstrich|Anderson|VanLange|Ross.Slate1|Hauser|Critcher|Alter|Inbar|Kay|Graham,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +3573,-0.560106357584744,Low,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburg,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,5,6,6,4,1,2,4,4,1,1,4,4,1,1,4,1,4,1,1,4,3,3,2,johannesburg,johannesburg,johannesburg,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Kay|Miyamoto|Rottenstrich|Huang|Bauer|Anderson|VanLange|Graham|Inbar|Alter|Hauser|Critcher,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,7,Global,all,TRUE +3575,1.3902799911876,Low,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburg,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,4,4,6,5,3,3,4,4,1,2,5,4,2,3,4,4,4,1,3,5,4,4,4,johannesburg,johannesburg,johannesburg,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Ross.Slate1|Bauer|VanLange|Kay|Critcher|Rottenstrich|Anderson|Graham|Alter|Miyamoto|Huang|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,8,Global,all,TRUE +3577,-0.449126653727142,Low,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburg,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,4,6,6,3,1,2,3,3,1,3,4,4,1,1,4,1,4,1,1,3,3,1,1,johannesburg,johannesburg,johannesburg,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Miyamoto|Huang|Hauser|Bauer|Critcher|Anderson|Rottenstrich|Ross.Slate1|Inbar|Graham|Alter|VanLange,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,7,Global,all,TRUE +3578,0.853418979797923,Low,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburg,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,4,2,6,5,4,4,3,4,1,1,4,4,5,1,5,4,3,1,3,3,3,4,4,johannesburg,johannesburg,johannesburg,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Anderson|Huang|Graham|Alter|Bauer|Rottenstrich|Kay|VanLange|Hauser|Inbar|Ross.Slate1|Critcher,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,2,Global,all,TRUE +3582,-0.218844673435463,Low,ML2_Slate1_South_Africa_Inlab_execution_illegal_DEPLOY_r.csv,johannesburg,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,7,5,6,5,1,2,5,4,1,1,5,4,3,1,5,2,4,1,2,5,4,5,2,johannesburg,johannesburg,johannesburg,South Africa,"University of Johannesburg, Johanneburg, South Africa",English,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|VanLange|Huang|Anderson|Critcher|Graham|Hauser|Ross.Slate1|Miyamoto|Bauer|Kay|Alter|Inbar,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +3588,-0.771525352589113,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,4,3,3,4,4,1,3,4,4,4,2,4,2,4,2,4,4,4,3,2,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Anderson|Kay|Ross.Slate1|Miyamoto|Bauer|Rottenstrich|Hauser|VanLange|Critcher|Alter|Inbar|Graham,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood,2,Global,all,TRUE +3589,0.57648285710663,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,5,3,1,1,2,4,1,1,2,1,5,1,2,2,2,2,1,2,1,1,1,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Bauer|Hauser|Inbar|Critcher|Graham|Anderson|Kay|Rottenstrich|Miyamoto|Alter|VanLange|Ross.Slate1,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,7,Global,all,TRUE +3591,0.864492999142827,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,7,7,4,3,3,2,4,1,1,4,4,2,1,3,2,3,1,4,4,4,3,2,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Kay|Rottenstrich|Ross.Slate1|Inbar|Alter|Huang|Critcher|Anderson|Hauser|Miyamoto|VanLange|Bauer,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,9,Global,all,TRUE +3592,1.04691339888112,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,6,5,1,3,3,4,3,1,3,5,4,4,4,1,5,1,3,4,5,5,4,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Critcher|Anderson|Hauser|Ross.Slate1|VanLange|Miyamoto|Rottenstrich|Graham|Alter|Kay|Inbar|Bauer,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +3593,0.568047352552994,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,3,4,1,2,2,4,2,1,4,4,2,3,4,4,1,4,3,3,4,1,2,1,3,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Critcher|Ross.Slate1|Bauer|Kay|Anderson|Inbar|VanLange|Huang|Rottenstrich|Miyamoto|Alter|Hauser,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection,6,Global,all,TRUE +3594,0.551049765014323,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,6,6,3,4,1,1,3,4,1,1,5,4,1,1,3,1,4,1,1,3,3,4,1,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Kay|Huang|Hauser|Ross.Slate1|Critcher|Inbar|VanLange|Bauer|Graham|Anderson|Miyamoto|Rottenstrich,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,11,Global,all,TRUE +3595,0.565549062647361,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,2,2,4,2,2,2,4,1,1,1,4,1,1,3,1,4,1,2,4,5,3,1,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Huang|Rottenstrich|Graham|Anderson|Critcher|VanLange|Inbar|Alter|Ross.Slate1|Miyamoto|Bauer|Hauser,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,5,Global,all,TRUE +3596,0.368235983527597,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,2,2,2,2,2,3,3,1,1,3,3,1,3,1,1,3,3,2,3,1,1,1,3,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Kay|Alter|Miyamoto|Ross.Slate1|Bauer|VanLange|Huang|Hauser|Rottenstrich|Inbar|Anderson|Graham,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,12,Global,all,TRUE +3599,0.670731776742596,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,4,2,3,5,4,2,2,4,4,3,3,4,3,5,1,4,4,4,5,3,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Miyamoto|Bauer|Anderson|Rottenstrich|Alter|Critcher|Graham|VanLange|Hauser|Inbar|Ross.Slate1|Huang,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,4,Global,all,TRUE +3601,-1.14190998496527,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,7,4,1,2,3,3,1,1,3,2,2,1,3,1,4,1,2,3,4,3,2,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Kay|Critcher|Miyamoto|Rottenstrich|Anderson|Inbar|VanLange|Huang|Hauser|Graham|Alter|Ross.Slate1,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,6,Global,all,TRUE +3603,0.117924519157547,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,7,7,5,1,1,4,4,1,1,4,4,1,1,3,3,4,1,1,4,3,4,2,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Kay|Inbar|Rottenstrich|Anderson|Huang|Miyamoto|Ross.Slate1|Bauer|Alter|Hauser|VanLange|Critcher,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,5,Global,all,TRUE +3605,0.676135384756531,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,6,5,3,4,1,4,3,4,3,2,5,2,4,3,2,3,4,1,5,2,3,4,3,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Huang|Inbar|Hauser|Anderson|Bauer|Miyamoto|Rottenstrich|Kay|VanLange|Ross.Slate1|Graham|Critcher,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood,5,Global,all,TRUE +3607,-1.04027912758957,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,5,3,3,3,2,4,1,2,1,2,1,2,2,2,2,2,3,2,4,1,3,1,3,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Alter|Inbar|Rottenstrich|Critcher|Hauser|Bauer|Miyamoto|VanLange|Graham|Ross.Slate1|Kay|Huang,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,1,Global,all,TRUE +3610,0.65359396431829,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,2,4,1,1,3,4,1,1,2,2,1,1,2,1,4,1,1,4,4,3,1,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Ross.Slate1|Anderson|Huang|Inbar|Graham|Critcher|VanLange|Kay|Rottenstrich|Miyamoto|Hauser|Alter,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,3,Global,all,TRUE +3611,0.57648285710663,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,6,6,4,5,4,4,4,3,3,2,4,5,3,3,4,4,2,4,3,3,3,4,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Critcher|Ross.Slate1|Miyamoto|Bauer|Rottenstrich|Huang|VanLange|Hauser|Anderson|Kay|Graham|Inbar,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,10,Global,all,TRUE +3617,-0.696392575103254,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,5,5,1,3,3,4,1,2,1,3,2,2,3,2,2,3,4,1,3,2,4,4,2,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Miyamoto|Critcher|Alter|Inbar|Kay|Bauer|Graham|Ross.Slate1|VanLange|Anderson|Hauser|Huang,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +3619,-1.42609004598126,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,5,6,3,2,2,4,4,1,1,3,4,4,1,3,2,3,1,4,2,2,2,2,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Huang|Miyamoto|Alter|Graham|Rottenstrich|Critcher|Inbar|Ross.Slate1|Bauer|Kay|VanLange|Hauser,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +3623,0.703813609891673,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,6,6,6,3,2,1,2,4,1,1,2,4,3,1,4,3,4,1,3,4,4,2,2,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Bauer|Rottenstrich|Anderson|Kay|Ross.Slate1|Miyamoto|Graham|Huang|VanLange|Critcher|Hauser|Alter,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +3624,-1.26949389461311,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,5,5,2,3,5,5,4,2,1,5,2,3,5,1,4,4,3,4,3,2,1,3,4,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Huang|Graham|Ross.Slate1|Bauer|Critcher|Hauser|Alter|VanLange|Rottenstrich|Kay|Anderson|Miyamoto,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,12,Global,all,TRUE +3625,0.324333287896414,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,7,7,6,4,2,3,4,4,1,3,5,4,4,2,3,3,4,2,3,5,4,4,2,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Kay|Critcher|Alter|Ross.Slate1|Huang|Bauer|Graham|Miyamoto|Inbar|Rottenstrich|Hauser|VanLange,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +3626,0.124648497302416,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,6,4,3,1,4,4,1,2,2,4,1,1,3,2,4,2,1,4,4,4,2,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Miyamoto|Inbar|Bauer|Critcher|Alter|Kay|Hauser|Rottenstrich|Anderson|VanLange|Graham|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,10,Global,all,TRUE +3631,1.0748584273333,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,6,7,4,1,1,4,3,1,1,2,3,1,1,3,1,5,1,1,3,3,3,1,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Alter|VanLange|Ross.Slate1|Rottenstrich|Hauser|Miyamoto|Bauer|Kay|Inbar|Critcher|Huang|Graham,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,1,Global,all,TRUE +3632,0.814666735317876,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,5,3,2,4,2,2,4,4,2,1,3,4,2,2,2,1,5,1,4,4,4,4,4,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Alter|Bauer|Critcher|Rottenstrich|Hauser|Anderson|Graham|VanLange|Miyamoto|Huang|Ross.Slate1|Inbar,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,7,Global,all,TRUE +3633,0.162347174968563,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,3,4,1,3,3,1,2,2,3,2,1,3,1,3,2,3,3,3,3,1,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Graham|Huang|Inbar|Rottenstrich|Anderson|Alter|Hauser|Bauer|VanLange|Miyamoto|Ross.Slate1|Kay,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE,6,Global,all,TRUE +3634,0.363352335693494,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,7,5,4,1,1,4,4,1,1,4,3,1,1,4,1,4,1,2,4,3,3,1,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|VanLange|Miyamoto|Hauser|Inbar|Kay|Alter|Rottenstrich|Anderson|Critcher|Huang|Ross.Slate1|Bauer,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection,9,Global,all,TRUE +3635,0.249073931979157,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,2,5,2,4,4,3,1,2,4,3,4,1,4,1,2,1,3,4,3,4,2,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Anderson|Alter|Ross.Slate1|Inbar|Hauser|Huang|Bauer|Kay|Miyamoto|Critcher|Rottenstrich|Graham,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,2,Global,all,TRUE +3638,-0.150435874094474,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,7,4,1,1,3,1,1,1,1,1,1,1,1,1,4,1,1,2,3,1,1,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Miyamoto|Rottenstrich|Kay|Critcher|Hauser|VanLange|Anderson|Inbar|Alter|Huang|Ross.Slate1|Graham,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +3643,0.997353938373204,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,6,3,1,2,3,2,5,1,3,2,5,1,3,3,3,4,5,3,3,1,2,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Ross.Slate1|Graham|Anderson|Huang|Inbar|Alter|Rottenstrich|Miyamoto|Bauer|Hauser|Kay|VanLange,ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,4,Global,all,TRUE +3644,0.343449430046521,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,7,3,5,3,4,2,3,3,3,3,4,1,3,3,3,3,2,3,2,4,3,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Anderson|Huang|Inbar|Hauser|Graham|Ross.Slate1|Critcher|Rottenstrich|Kay|VanLange|Miyamoto|Bauer,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +3645,0.103692024841544,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,3,2,5,2,1,4,4,1,2,4,3,4,1,3,1,3,2,3,4,2,3,2,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Miyamoto|Bauer|Inbar|Graham|Huang|Kay|Critcher|Hauser|Anderson|VanLange|Rottenstrich|Alter,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,10,Global,all,TRUE +3646,0.29824001073864,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,6,7,4,1,2,1,4,1,1,4,5,1,1,4,1,4,1,1,4,4,4,1,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Miyamoto|Inbar|Rottenstrich|Anderson|Ross.Slate1|VanLange|Huang|Bauer|Critcher|Hauser|Alter|Graham,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,5,Global,all,TRUE +3647,-0.284361801122387,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,5,4,3,4,3,3,3,4,2,3,3,3,5,2,2,4,4,3,3,3,4,4,3,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Critcher|Miyamoto|Hauser|Alter|Anderson|Graham|Inbar|Bauer|Rottenstrich|Huang|Ross.Slate1|VanLange,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,6,Global,all,TRUE +3649,0.11515942593488,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,7,7,5,4,4,2,1,1,4,2,5,5,1,1,5,2,1,5,2,2,5,5,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Rottenstrich|Ross.Slate1|Inbar|Critcher|Graham|Miyamoto|Bauer|Kay|Anderson|Alter|Huang|VanLange,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood,10,Global,all,TRUE +3650,-0.346175426220506,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,6,7,4,2,2,3,4,3,1,4,4,2,2,3,1,5,2,2,4,3,5,3,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Hauser|VanLange|Inbar|Huang|Anderson|Graham|Miyamoto|Critcher|Bauer|Alter|Rottenstrich|Kay,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,6,Global,all,TRUE +3651,-1.36770169917128,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,5,2,5,4,3,4,4,2,3,4,1,1,2,4,3,1,4,2,4,1,2,2,4,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Inbar|Rottenstrich|VanLange|Bauer|Anderson|Hauser|Critcher|Huang|Alter|Graham|Miyamoto|Kay,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,6,Global,all,TRUE +3654,-0.00189549198576056,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,7,4,4,1,3,3,4,1,1,5,5,3,2,2,4,2,2,3,4,5,4,1,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Ross.Slate1|Miyamoto|Critcher|Bauer|Alter|Hauser|VanLange|Rottenstrich|Huang|Anderson|Graham|Inbar,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,11,Global,all,TRUE +3655,0.949506004274054,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,6,4,2,2,1,4,1,1,3,3,2,1,4,1,2,1,3,4,5,3,1,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Miyamoto|Inbar|VanLange|Huang|Graham|Critcher|Bauer|Rottenstrich|Alter|Kay|Anderson|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,12,Global,all,TRUE +3660,-0.158084615151244,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,4,5,2,4,2,1,1,3,1,1,3,2,1,1,2,1,3,1,1,3,3,2,1,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|VanLange|Inbar|Hauser|Rottenstrich|Kay|Anderson|Alter|Miyamoto|Graham|Ross.Slate1|Critcher|Bauer,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +3666,-0.271042648734648,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,2,2,1,1,1,1,3,2,2,1,1,2,1,3,1,3,1,3,2,1,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Rottenstrich|Bauer|Alter|Hauser|Kay|Miyamoto|Ross.Slate1|VanLange|Anderson|Critcher|Inbar|Graham,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,10,Global,all,TRUE +3667,-0.0635825386524807,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,5,6,3,1,1,2,3,1,1,4,2,1,1,1,1,2,1,1,2,3,1,1,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Anderson|Hauser|Alter|Ross.Slate1|Graham|Kay|Critcher|Bauer|Miyamoto|Huang|Rottenstrich|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,2,Global,all,TRUE +3668,0.353596461008924,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,4,1,3,2,4,1,1,5,4,3,1,4,1,3,1,2,4,5,4,4,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Ross.Slate1|Graham|VanLange|Anderson|Kay|Hauser|Miyamoto|Critcher|Rottenstrich|Alter|Huang|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,5,Global,all,TRUE +3669,0.132550395221984,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,5,1,4,3,3,1,1,5,1,3,3,1,1,1,1,4,4,1,1,1,1,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Bauer|Critcher|Miyamoto|Rottenstrich|Ross.Slate1|Hauser|Graham|Kay|Huang|Alter|Anderson|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,12,Global,all,TRUE +3671,-2.24263862683066,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,7,7,3,1,1,2,3,1,1,3,4,1,1,5,1,2,1,1,3,4,4,1,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Alter|Kay|Bauer|Huang|VanLange|Hauser|Inbar|Critcher|Rottenstrich|Ross.Slate1|Graham|Miyamoto,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,1,Global,all,TRUE +3676,-0.00571415202232721,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,6,6,6,5,2,1,4,4,1,1,1,5,5,1,3,3,3,1,3,5,3,3,1,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Rottenstrich|Alter|Huang|Kay|Bauer|Graham|Critcher|Hauser|Anderson|Ross.Slate1|Inbar|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,10,Global,all,TRUE +3677,0.841951578704586,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,4,5,7,4,2,4,4,4,3,2,3,4,4,3,3,4,4,2,4,3,4,4,4,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Huang|Alter|Hauser|Anderson|Kay|Miyamoto|Bauer|Ross.Slate1|Critcher|Graham|Rottenstrich|VanLange,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,5,Global,all,TRUE +3678,0.39656074727397,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,4,6,4,3,1,2,3,2,1,1,2,1,1,1,3,1,5,1,2,2,1,1,1,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Hauser|Bauer|Anderson|Ross.Slate1|Alter|Huang|Rottenstrich|Critcher|Miyamoto|Graham|VanLange|Inbar,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,4,Global,all,TRUE +3681,-0.19578329281739,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,,,,,,,,,,,,,,,,,,,,,,,,,,3,7,6,7,7,5,1,1,5,5,1,1,5,4,3,1,4,1,5,1,3,5,5,2,2,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Inbar|Hauser|Anderson|Miyamoto|Alter|Rottenstrich|Huang|VanLange|Kay|Ross.Slate1|Bauer|Critcher,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +3682,1.30130810113417,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,6,6,4,3,3,2,3,5,4,1,3,5,3,2,4,2,5,4,2,5,3,5,4,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Critcher|Graham|Alter|Hauser|Rottenstrich|Bauer|Ross.Slate1|VanLange|Inbar|Anderson|Miyamoto|Huang,ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,11,Global,all,TRUE +3683,0.109882396352344,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,7,5,7,4,3,1,3,4,1,1,3,4,2,1,4,2,3,1,2,4,5,5,2,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Ross.Slate1|Bauer|Critcher|Kay|Hauser|Rottenstrich|VanLange|Anderson|Alter|Miyamoto|Graham|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,9,Global,all,TRUE +3684,-0.33879348848077,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,4,6,3,2,3,4,3,2,2,3,2,3,4,2,1,3,2,2,5,2,2,2,3,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|Inbar|Alter|Ross.Slate1|Graham|Rottenstrich|Bauer|Anderson|Critcher|Huang|Kay|VanLange,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,9,Global,all,TRUE +3686,-0.517395228182496,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,7,5,6,2,1,1,3,1,2,1,1,1,2,1,4,2,2,2,1,1,1,2,1,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Huang|Critcher|Alter|Anderson|Miyamoto|VanLange|Inbar|Graham|Rottenstrich|Hauser|Ross.Slate1|Kay,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,5,Global,all,TRUE +3689,0.0725771004346305,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,4,5,6,3,1,2,4,2,1,1,4,4,1,1,3,1,4,1,1,3,3,4,1,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Huang|Inbar|Kay|Bauer|Miyamoto|Anderson|Graham|VanLange|Ross.Slate1|Hauser|Critcher|Rottenstrich,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +3690,0.581366504940734,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,7,7,5,4,3,1,4,5,1,1,4,4,2,2,5,1,4,1,1,4,5,5,1,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Bauer|Alter|Critcher|Anderson|Huang|Kay|Miyamoto|VanLange|Hauser|Rottenstrich|Graham|Inbar,ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,5,Global,all,TRUE +3692,-0.135683419598638,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,4,5,4,3,1,2,4,1,3,3,3,2,1,3,1,4,3,2,4,4,3,1,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Kay|Graham|Alter|Ross.Slate1|Rottenstrich|Miyamoto|Hauser|VanLange|Critcher|Anderson|Bauer|Huang,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,11,Global,all,TRUE +3695,0.651348831275455,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,3,2,2,2,3,1,3,1,4,3,2,1,1,1,3,5,4,4,2,2,4,3,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Hauser|Graham|Alter|Miyamoto|Rottenstrich|Ross.Slate1|Bauer|Critcher|Inbar|Anderson|Kay|VanLange,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +3696,0.14560274429269,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,7,4,3,2,5,3,1,1,3,4,4,1,3,4,4,2,4,3,4,3,3,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Anderson|Hauser|Bauer|Graham|Rottenstrich|VanLange|Miyamoto|Alter|Inbar|Critcher|Huang|Kay,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,2,Global,all,TRUE +3697,-0.514758938861827,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,6,3,1,1,3,4,1,1,3,3,1,1,3,1,4,1,2,4,3,4,1,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Huang|Inbar|Rottenstrich|Hauser|Alter|Graham|Miyamoto|Ross.Slate1|Kay|Anderson|VanLange|Bauer,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +3698,-0.378470495872717,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,3,2,3,1,4,2,2,2,1,1,2,1,3,1,4,4,4,1,2,3,2,1,4,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Bauer|Ross.Slate1|Huang|Graham|Hauser|VanLange|Critcher|Rottenstrich|Inbar|Anderson|Kay|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,11,Global,all,TRUE +3699,0.509265623994576,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,5,6,5,4,2,2,3,2,1,1,3,4,5,2,2,2,4,1,5,3,3,2,3,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Hauser|Bauer|Anderson|Alter|Graham|Rottenstrich|VanLange|Kay|Inbar|Huang|Miyamoto|Critcher,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,4,Global,all,TRUE +3700,0.368755943707429,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,5,6,5,3,1,1,3,1,1,1,3,2,2,1,2,1,3,1,2,1,1,3,1,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Graham|Rottenstrich|Kay|Critcher|Anderson|Alter|Inbar|Ross.Slate1|Bauer|Hauser|VanLange|Huang,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood,6,Global,all,TRUE +3703,-0.199742177739592,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,7,7,7,2,1,1,2,2,1,1,1,2,1,1,1,1,2,1,2,1,1,1,1,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Huang|Kay|Alter|Anderson|Ross.Slate1|Graham|VanLange|Critcher|Bauer|Rottenstrich|Hauser|Miyamoto,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +3704,0.0802258414914009,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,,,,,,,,,,,,,,,,,,,,,,,,,,3,7,6,6,6,3,4,4,1,5,4,4,5,2,4,4,1,4,5,1,4,4,3,3,4,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Ross.Slate1|Inbar|Miyamoto|VanLange|Alter|Rottenstrich|Anderson|Graham|Huang|Hauser|Critcher|Bauer,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,8,Global,all,TRUE +3705,1.01580989545784,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,6,6,4,1,1,3,4,1,1,3,4,1,1,4,1,4,1,1,4,4,1,1,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Kay|VanLange|Inbar|Alter|Huang|Bauer|Critcher|Ross.Slate1|Miyamoto|Anderson|Graham|Rottenstrich,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,11,Global,all,TRUE +3707,1.09673966270607,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,7,7,4,2,1,3,3,1,1,4,3,1,1,3,1,5,1,1,5,5,4,1,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Rottenstrich|Hauser|Alter|Ross.Slate1|Miyamoto|Graham|Anderson|Huang|Kay|Inbar|Critcher|Bauer,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +3710,0.34041753350682,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,4,4,3,3,4,2,3,2,1,2,2,1,2,3,3,1,3,4,5,2,4,3,1,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Critcher|Hauser|VanLange|Graham|Anderson|Huang|Rottenstrich|Miyamoto|Bauer|Kay|Ross.Slate1|Inbar,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +3711,0.514669232008511,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,2,5,4,2,4,1,3,4,1,2,2,2,1,2,4,3,3,4,2,2,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Hauser|Anderson|Alter|Kay|Ross.Slate1|VanLange|Graham|Critcher|Huang|Bauer|Rottenstrich|Miyamoto,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,3,Global,all,TRUE +3712,0.657944005518325,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,5,6,3,2,1,4,4,1,1,3,3,2,1,4,1,4,1,1,4,4,2,1,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|Alter|Rottenstrich|Bauer|Anderson|Graham|Critcher|Huang|Ross.Slate1|Inbar|VanLange|Kay,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,6,Global,all,TRUE +3713,-0.680575132809882,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,5,2,3,3,2,2,2,3,1,1,1,3,2,3,2,2,2,2,1,2,1,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Inbar|Miyamoto|Kay|VanLange|Ross.Slate1|Anderson|Alter|Graham|Huang|Critcher|Rottenstrich|Hauser,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +3714,0.282155765128234,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,7,4,2,2,2,3,2,1,3,1,4,1,1,4,1,4,1,2,1,1,4,1,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Rottenstrich|VanLange|Anderson|Hauser|Alter|Kay|Miyamoto|Critcher|Bauer|Inbar|Ross.Slate1|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,4,Global,all,TRUE +3715,0.499509749310007,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,6,5,7,3,4,3,4,3,3,2,2,4,2,2,2,1,3,1,2,3,3,2,1,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Bauer|Miyamoto|Ross.Slate1|Graham|Alter|Anderson|VanLange|Kay|Hauser|Huang|Inbar|Rottenstrich,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,7,Global,all,TRUE +3716,0.110935963166244,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,5,5,2,2,1,1,1,2,2,1,1,2,2,1,2,2,2,2,2,2,2,2,2,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Rottenstrich|Miyamoto|Anderson|VanLange|Ross.Slate1|Huang|Alter|Graham|Kay|Critcher|Hauser|Bauer,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +3717,-0.0884956705649558,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,5,4,1,1,4,4,1,1,4,4,1,1,4,1,4,1,2,4,4,4,1,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Critcher|Rottenstrich|Inbar|Anderson|Kay|Miyamoto|Ross.Slate1|VanLange|Bauer|Huang|Alter|Hauser,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,5,Global,all,TRUE +3718,0.119244889288481,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,7,6,2,1,1,2,3,1,1,3,4,1,2,3,1,2,1,1,4,2,3,1,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Kay|Critcher|Rottenstrich|VanLange|Hauser|Anderson|Ross.Slate1|Alter|Graham|Miyamoto|Inbar|Huang,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,7,Global,all,TRUE +3720,0.244988468625556,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,5,6,6,4,4,5,5,4,1,1,4,3,5,1,3,5,5,2,3,3,5,4,3,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Ross.Slate1|Anderson|VanLange|Inbar|Critcher|Huang|Alter|Hauser|Rottenstrich|Graham|Bauer|Miyamoto,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,3,Global,all,TRUE +3723,0.650168686030156,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,4,2,3,4,2,1,4,4,1,1,4,3,1,2,3,2,3,2,4,3,2,2,2,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Rottenstrich|Miyamoto|VanLange|Huang|Critcher|Bauer|Inbar|Kay|Ross.Slate1|Anderson|Graham|Alter,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +3724,0.326578420939249,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,4,2,5,3,1,1,5,2,3,3,1,4,1,1,4,1,2,1,5,2,2,5,1,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Ross.Slate1|Rottenstrich|VanLange|Anderson|Hauser|Bauer|Critcher|Miyamoto|Kay|Huang|Graham|Inbar,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,5,Global,all,TRUE +3727,-0.227940363054566,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,6,1,1,1,1,1,1,1,1,3,1,1,2,1,3,1,1,2,2,2,1,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Kay|Graham|Bauer|VanLange|Rottenstrich|Hauser|Critcher|Miyamoto|Huang|Inbar,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing,3,Global,all,TRUE +3728,0.676008806325132,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,4,2,2,3,2,1,1,1,1,3,1,4,1,4,1,3,2,3,1,1,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Bauer|Critcher|Kay|Huang|Miyamoto|Alter|VanLange|Ross.Slate1|Rottenstrich|Hauser|Graham|Inbar,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +3729,0.982854640740165,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,7,6,7,3,1,1,1,5,1,1,4,3,2,1,4,1,3,1,2,3,2,3,1,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Kay|Graham|Hauser|Inbar|Miyamoto|Huang|Ross.Slate1|Bauer|Critcher|Anderson|Rottenstrich|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,11,Global,all,TRUE +3730,0.0728439037516647,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,5,6,4,1,3,3,5,3,1,5,1,1,4,2,3,3,1,2,4,4,5,1,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|VanLange|Anderson|Miyamoto|Alter|Kay|Critcher|Graham|Bauer|Huang|Inbar|Rottenstrich|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing,3,Global,all,TRUE +3731,0.295474917515973,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,3,4,3,2,1,1,2,2,2,1,3,2,1,3,2,2,3,2,2,3,3,3,2,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Miyamoto|Huang|Critcher|Graham|Kay|Inbar|Alter|Hauser|Ross.Slate1|VanLange|Bauer|Rottenstrich,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,1,Global,all,TRUE +3732,-1.07270077567318,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,5,3,1,4,1,3,1,3,2,1,2,1,3,2,3,1,2,2,2,2,1,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Alter|Anderson|Huang|Graham|Rottenstrich|Hauser|Critcher|Miyamoto|Ross.Slate1|Kay|Inbar|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,3,Global,all,TRUE +3735,-0.907151385042157,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,4,1,1,3,4,1,1,2,3,3,1,2,1,4,1,2,2,4,1,2,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Anderson|Hauser|Kay|Inbar|Rottenstrich|VanLange|Alter|Miyamoto|Ross.Slate1|Graham|Critcher|Bauer,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,2,Global,all,TRUE +3739,-0.300574850634791,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,santiagoon,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,4,6,4,1,3,2,4,1,2,3,3,4,1,3,2,3,4,4,3,3,3,2,santiagoon,santiagoon,santiagoon,Chile,"Santiago, Chile",Spanish,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Kay|Ross.Slate1|Rottenstrich|Hauser|Alter|Anderson|Graham|Inbar|Bauer|VanLange|Critcher|Miyamoto,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,7,Global,all,TRUE +3741,0.116606374497213,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,6,6,4,1,3,4,4,2,1,3,3,4,1,3,2,4,1,5,4,4,3,2,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Anderson|Hauser|Inbar|Graham|Kay|Bauer|Miyamoto|Alter|Huang|Rottenstrich|Critcher|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE,2,Global,all,TRUE +3742,-0.478502758816815,Low,ML2_Slate1_Spanish_execution_illegal__Chile_r.csv,udd,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,6,6,2,4,4,2,2,1,1,1,2,4,1,3,2,1,4,1,4,3,2,3,1,udd,udd,udd,Chile,"Concepción, Chile",Spanish,1,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Graham|Inbar|VanLange|Hauser|Alter|Ross.Slate1|Kay|Miyamoto|Bauer|Rottenstrich|Critcher|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,1,Global,all,TRUE +3744,0.650168686030156,Low,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,4,3,4,4,5,4,3,3,4,5,4,2,5,2,2,4,3,4,5,3,5,3,4,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Bauer|Alter|Miyamoto|VanLange|Inbar|Kay|Ross.Slate1|Anderson|Critcher|Hauser|Rottenstrich|Graham,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +3747,0.910753759794008,Low,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,3,2,1,1,1,1,1,1,1,1,1,3,1,1,1,1,1,3,1,1,1,1,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Kay|Critcher|Hauser|Huang|Inbar|Rottenstrich|Graham|Ross.Slate1|VanLange|Miyamoto|Anderson|Bauer,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +3748,-0.993624985189953,Low,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,6,6,5,3,1,1,1,1,1,1,1,2,1,1,1,1,3,1,2,1,2,3,1,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Rottenstrich|Bauer|Kay|Hauser|Inbar|Anderson|Miyamoto|VanLange|Critcher|Graham|Alter|Ross.Slate1,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +3749,0.448505565710357,Low,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,7,7,7,4,3,1,3,3,1,2,3,4,1,1,3,1,3,3,3,3,4,4,1,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Graham|Huang|Alter|Hauser|Rottenstrich|Anderson|Miyamoto|Ross.Slate1|Kay|VanLange|Critcher|Inbar,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing,7,Global,all,TRUE +3751,0.266605126151896,Low,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,4,5,5,1,2,3,5,1,2,5,5,3,1,4,2,4,3,3,5,5,5,1,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Ross.Slate1|Critcher|Kay|Alter|Hauser|VanLange|Inbar|Huang|Miyamoto|Anderson|Rottenstrich|Graham,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,11,Global,all,TRUE +3753,-0.0659542501267147,Low,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,7,7,7,4,1,1,2,5,1,1,5,3,2,1,2,1,3,1,2,5,3,4,2,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Hauser|Alter|VanLange|Critcher|Huang|Bauer|Kay|Graham|Inbar|Ross.Slate1|Miyamoto|Rottenstrich,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,1,Global,all,TRUE +3754,-0.172850716101316,Low,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,3,3,3,4,1,2,1,2,1,1,2,3,1,2,3,1,4,1,1,2,3,3,2,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Critcher|Huang|Hauser|Anderson|Miyamoto|Rottenstrich|Alter|Bauer|VanLange|Ross.Slate1|Inbar|Graham,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,5,Global,all,TRUE +3755,-1.31391655042412,Low,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,5,5,1,3,4,2,2,1,1,3,2,3,3,1,3,1,3,3,4,2,3,3,1,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Inbar|Anderson|Graham|Miyamoto|Alter|VanLange|Critcher|Rottenstrich|Kay|Hauser|Bauer|Ross.Slate1,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,3,Global,all,TRUE +3762,0.539188982172553,Low,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,3,2,3,2,2,1,2,2,1,3,3,2,3,3,3,4,1,4,2,2,1,2,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Rottenstrich|Inbar|Anderson|Alter|Miyamoto|Huang|Bauer|Kay|VanLange|Graham|Hauser|Critcher,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,4,Global,all,TRUE +3763,0.689707694007068,Low,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,4,5,7,4,4,4,2,5,2,4,4,3,1,1,2,1,4,3,3,3,3,3,1,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|VanLange|Graham|Ross.Slate1|Rottenstrich|Critcher|Alter|Huang|Bauer|Miyamoto|Kay|Anderson|Inbar,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,12,Global,all,TRUE +3767,1.22986740525348,Low,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,7,3,2,2,1,2,3,1,1,3,3,3,1,2,1,3,1,3,3,3,3,1,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Huang|Rottenstrich|Critcher|Anderson|Graham|VanLange|Kay|Inbar|Ross.Slate1|Bauer|Miyamoto|Alter,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE,5,Global,all,TRUE +3768,-0.98558286238475,Low,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,5,6,4,3,1,5,4,1,1,3,1,4,1,1,1,3,4,1,5,1,1,4,1,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Rottenstrich|Kay|Alter|Anderson|Graham|Miyamoto|Ross.Slate1|Inbar|Hauser|VanLange|Bauer|Huang,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,5,Global,all,TRUE +3769,0.706058742934508,Low,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,5,5,1,1,1,1,3,1,2,3,3,1,4,2,1,1,1,1,3,3,4,1,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|VanLange|Bauer|Miyamoto|Rottenstrich|Graham|Anderson|Huang|Ross.Slate1|Critcher|Hauser|Inbar|Kay,ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,7,Global,all,TRUE +3770,0.0912998608363049,Low,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,5,5,5,4,1,1,5,4,1,1,4,3,1,1,2,1,4,1,2,4,4,4,1,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|VanLange|Graham|Kay|Ross.Slate1|Rottenstrich|Alter|Hauser|Bauer|Miyamoto|Critcher|Huang|Anderson,ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +3774,-0.247449886953106,Low,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,7,7,4,1,3,4,3,1,2,4,4,4,1,2,2,5,1,4,3,3,2,3,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Huang|Rottenstrich|Bauer|Anderson|Alter|Hauser|Ross.Slate1|Graham|Inbar|Miyamoto|VanLange|Critcher,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,5,Global,all,TRUE +3777,0.3764046847642,Low,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,3,3,3,3,2,3,1,2,3,3,3,3,1,2,4,3,3,3,3,4,3,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Miyamoto|Rottenstrich|Alter|Kay|Ross.Slate1|Bauer|Anderson|Inbar|VanLange|Hauser|Huang|Graham,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +3779,0.634351243736784,Low,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,6,6,4,3,1,1,2,2,1,1,2,4,1,1,1,1,3,1,1,2,2,2,1,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Hauser|Alter|Rottenstrich|Anderson|Kay|Inbar|Ross.Slate1|Graham|Miyamoto|VanLange|Critcher|Huang,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,5,Global,all,TRUE +3780,0.436771361299986,Low,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,2,1,4,1,2,5,2,1,1,3,3,3,1,4,1,1,2,2,3,2,3,2,4,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Inbar|Graham|Kay|Miyamoto|VanLange|Ross.Slate1|Anderson|Hauser|Critcher|Alter|Rottenstrich|Huang,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +3782,-0.0489452416044073,Low,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,4,3,5,3,3,2,3,3,2,2,3,3,2,2,3,2,3,2,4,3,3,3,2,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Ross.Slate1|Kay|Miyamoto|Alter|Bauer|Rottenstrich|Graham|Anderson|Inbar|Critcher|VanLange|Hauser,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,9,Global,all,TRUE +3783,0.508872242246143,Low,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,6,6,4,4,4,3,4,4,4,3,3,3,3,3,3,2,4,4,3,3,4,4,2,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Graham|Critcher|Anderson|Kay|Miyamoto|Ross.Slate1|Rottenstrich|Inbar|Alter|Huang|Hauser|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing,4,Global,all,TRUE +3784,1.19348687224767,Low,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,3,2,1,5,3,3,4,2,3,3,4,3,2,1,3,2,5,2,4,4,3,3,4,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Rottenstrich|Huang|VanLange|Alter|Ross.Slate1|Kay|Bauer|Miyamoto|Graham|Critcher|Anderson|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,12,Global,all,TRUE +3785,0.617873616377944,Low,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,6,6,4,1,1,2,3,1,1,2,4,1,1,3,1,2,1,3,2,3,4,1,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Kay|Critcher|Alter|VanLange|Bauer|Huang|Inbar|Miyamoto|Graham|Anderson|Hauser|Rottenstrich,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +3787,-0.0299670988693358,Low,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,7,7,6,5,1,1,2,5,1,1,5,5,1,1,3,1,5,1,1,4,5,1,1,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Kay|Anderson|Alter|Rottenstrich|Huang|Inbar|Graham|Hauser|VanLange|Ross.Slate1|Miyamoto|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,3,Global,all,TRUE +3788,0.171696021450464,Low,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,6,5,4,1,2,2,4,1,2,5,3,2,1,3,1,5,2,1,3,5,4,1,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Anderson|VanLange|Rottenstrich|Critcher|Huang|Ross.Slate1|Bauer|Alter|Inbar|Graham|Miyamoto|Hauser,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +3792,1.14392741173975,Low,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,5,3,2,1,1,1,3,1,1,1,1,1,1,2,1,2,1,3,2,1,2,1,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Ross.Slate1|Inbar|Bauer|Alter|Critcher|Anderson|Graham|Hauser|VanLange|Rottenstrich|Huang|Miyamoto,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,7,Global,all,TRUE +3793,0.35227831634859,Low,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,,,,,,,,,,,,,,,,,,,,,,,,,,6,4,5,2,3,1,1,1,2,2,1,1,2,4,1,1,3,1,4,1,1,1,1,3,1,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Bauer|Anderson|Inbar|Ross.Slate1|Rottenstrich|Kay|Graham|Hauser|Critcher|Miyamoto|VanLange|Huang,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,3,Global,all,TRUE +3796,0.786988510182734,Low,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,3,1,1,2,1,1,1,1,1,1,1,2,1,3,2,4,2,1,3,1,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Huang|Kay|Hauser|Alter|Graham|Inbar|Critcher|Miyamoto|Rottenstrich|VanLange|Anderson|Bauer,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five,12,Global,all,TRUE +3797,0.155878579157091,Low,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,6,7,4,2,4,1,1,1,1,1,3,3,3,1,1,3,2,4,1,1,1,3,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Hauser|Huang|Bauer|Rottenstrich|VanLange|Kay|Alter|Anderson|Critcher|Miyamoto|Inbar|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,9,Global,all,TRUE +3798,0.869236422091295,Low,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,4,5,3,5,1,5,2,4,3,1,4,3,3,2,2,3,4,2,3,4,3,4,2,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Hauser|Bauer|Kay|Graham|Alter|Inbar|Miyamoto|VanLange|Huang|Anderson|Critcher|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,11,Global,all,TRUE +3800,-0.0536886645528754,Low,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,2,4,3,1,3,4,1,1,2,3,3,2,3,2,3,3,3,3,3,4,2,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Critcher|Bauer|Graham|Rottenstrich|VanLange|Inbar|Hauser|Huang|Kay|Ross.Slate1|Miyamoto|Alter,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +3802,0.442441772630955,Low,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,,,,,,,,,,,,,,,,,,,,,,,,,,7,4,7,7,6,3,1,1,3,3,1,1,5,5,2,1,3,1,3,3,2,3,5,3,2,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Graham|Miyamoto|VanLange|Kay|Anderson|Inbar|Critcher|Rottenstrich|Huang|Ross.Slate1|Bauer|Alter,ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,6,Global,all,TRUE +3804,-0.0177015132954961,Low,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,3,4,3,3,1,1,2,1,1,1,1,1,2,3,1,1,3,1,3,1,1,1,1,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Miyamoto|Ross.Slate1|Bauer|Critcher|Kay|Rottenstrich|Huang|Alter|VanLange|Inbar|Hauser|Graham,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,1,Global,all,TRUE +3805,0.603247740313508,Low,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,6,6,1,3,3,3,4,1,2,4,4,1,3,3,2,4,2,4,4,4,3,2,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Critcher|Ross.Slate1|Inbar|Bauer|VanLange|Anderson|Hauser|Kay|Huang|Alter|Rottenstrich|Graham,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,7,Global,all,TRUE +3808,0.911287366428076,Low,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,6,4,2,2,3,4,1,1,4,4,1,1,4,1,4,1,2,4,3,4,1,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Miyamoto|VanLange|Inbar|Hauser|Ross.Slate1|Graham|Huang|Critcher|Kay|Bauer|Alter|Anderson,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +3809,0.0865564378878369,Low,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,5,6,4,3,2,4,2,1,1,2,1,4,4,1,3,1,2,1,1,3,4,3,4,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Critcher|Hauser|Rottenstrich|Bauer|VanLange|Miyamoto|Huang|Graham|Alter|Anderson|Kay|Inbar,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +3812,-0.287787079410521,Low,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,5,6,3,3,2,1,3,3,2,2,2,4,2,2,3,1,4,1,3,3,4,4,2,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Huang|Inbar|Kay|Bauer|Critcher|Rottenstrich|Anderson|Graham|Miyamoto|VanLange|Hauser|Ross.Slate1,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,8,Global,all,TRUE +3813,0.079565656425934,Low,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,6,6,3,2,2,4,3,1,1,1,4,1,1,4,1,2,2,4,3,4,4,1,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Hauser|Inbar|VanLange|Alter|Rottenstrich|Critcher|Huang|Anderson|Graham|Kay|Miyamoto|Bauer,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,9,Global,all,TRUE +3814,0.839186485481919,Low,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,6,4,2,1,4,3,1,1,1,1,1,3,1,1,1,3,1,1,1,1,1,3,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Graham|Anderson|Miyamoto|Hauser|Bauer|Ross.Slate1|Huang|Kay|Inbar|Critcher|Alter|VanLange,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +3817,0.542347457143653,Low,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,4,6,2,3,4,4,1,2,4,4,2,2,4,3,2,3,4,3,5,3,1,5,4,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Huang|Alter|Graham|Critcher|Rottenstrich|Inbar|Kay|Bauer|Hauser|Miyamoto|Ross.Slate1|VanLange,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,1,Global,all,TRUE +3824,0.345427759772322,Low,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,5,4,1,1,3,3,1,1,3,4,1,1,4,1,3,1,2,4,4,3,1,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Critcher|Huang|Ross.Slate1|Alter|Kay|Hauser|Rottenstrich|Anderson|Miyamoto|VanLange|Bauer|Graham,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,9,Global,all,TRUE +3825,-0.632727198710733,Low,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,,,,,,,,,,,,,,,,,,,,,,,,,,4,7,7,6,5,2,2,2,1,2,1,2,2,4,1,3,2,1,5,1,3,4,4,5,1,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Huang|Critcher|VanLange|Ross.Slate1|Bauer|Graham|Rottenstrich|Anderson|Inbar|Miyamoto|Hauser|Alter,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood,9,Global,all,TRUE +3831,0.533911952590017,Low,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,2,2,4,1,1,3,2,3,1,1,1,1,4,1,3,4,1,1,4,3,3,3,3,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Miyamoto|Critcher|Rottenstrich|Hauser|Huang|Ross.Slate1|Graham|Kay|Anderson|Alter|VanLange|Bauer,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,10,Global,all,TRUE +3833,0.25816962159826,Low,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,5,3,4,2,3,3,4,3,2,4,4,2,1,3,2,4,1,4,4,5,4,1,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Ross.Slate1|Bauer|VanLange|Rottenstrich|Anderson|Kay|Graham|Alter|Huang|Hauser|Miyamoto|Critcher,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,6,Global,all,TRUE +3836,-0.309134708149227,Low,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,5,5,4,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Bauer|VanLange|Kay|Rottenstrich|Hauser|Anderson|Huang|Inbar|Graham|Critcher|Ross.Slate1|Miyamoto,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,7,Global,all,TRUE +3841,-1.0232815400509,Low,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,7,7,5,2,1,3,5,1,1,5,3,1,1,3,1,4,1,1,5,5,4,1,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Rottenstrich|Miyamoto|Inbar|Anderson|Alter|Bauer|VanLange|Huang|Kay|Critcher|Graham|Hauser,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +3843,0.949772807591088,Low,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,6,5,4,3,2,2,2,1,4,2,4,1,1,5,2,2,3,2,2,1,4,4,4,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Alter|Ross.Slate1|Rottenstrich|Miyamoto|Hauser|Anderson|Huang|Kay|Critcher|Inbar|Bauer|VanLange,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,7,Global,all,TRUE +3844,-0.356715838931343,Low,ML2_Slate1_Spanish_execution_illegal__Costa_Rica_r.csv,ucron,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,4,1,3,3,4,3,3,2,2,3,2,2,3,3,1,3,2,3,2,3,4,2,ucron,ucron,ucron,Costa Rica,"Universidad de Costa Rica, Costa Rica",Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Rottenstrich|Graham|Bauer|Ross.Slate1|Kay|Hauser|Alter|Critcher|Anderson|VanLange|Huang|Miyamoto,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,10,Global,all,TRUE +3849,-0.721038903698696,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,6,3,3,2,3,4,1,1,3,3,2,2,3,1,3,2,2,3,3,1,3,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Anderson|Kay|Ross.Slate1|Alter|Graham|Huang|Hauser|Inbar|Rottenstrich|Miyamoto|Critcher|Bauer,ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +3851,0.883468916407299,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,5,6,6,3,4,3,4,3,2,3,1,1,4,3,2,2,3,3,3,3,3,2,2,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Alter|Ross.Slate1|Hauser|Inbar|Anderson|Kay|Critcher|Graham|VanLange|Rottenstrich|Bauer|Miyamoto,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,6,Global,all,TRUE +3853,0.985886537279866,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,5,5,3,1,1,1,1,1,1,1,1,3,1,1,3,1,3,1,1,1,2,1,1,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Kay|Inbar|Hauser|Ross.Slate1|Miyamoto|Rottenstrich|VanLange|Huang|Alter|Anderson|Bauer|Graham,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood,11,Global,all,TRUE +3855,-0.101941401384094,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,6,6,5,1,2,2,3,2,1,2,3,3,3,1,2,1,3,2,3,2,3,2,2,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Miyamoto|Ross.Slate1|Critcher|VanLange|Bauer|Anderson|Hauser|Kay|Rottenstrich|Graham|Huang|Inbar,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,7,Global,all,TRUE +3859,-0.295955780647123,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,5,4,4,1,1,1,3,1,1,4,4,1,1,4,1,5,1,3,3,2,5,3,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Bauer|Huang|Ross.Slate1|VanLange|Hauser|Alter|Graham|Miyamoto|Anderson|Critcher|Kay|Inbar,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +3860,-0.37991744443505,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,7,6,2,1,2,1,5,1,1,2,4,2,1,3,2,4,1,2,5,5,4,2,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Huang|Bauer|Rottenstrich|Graham|Anderson|Alter|Critcher|Hauser|Inbar|Miyamoto|Kay|VanLange,ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +3861,0.108297448374976,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,7,5,2,1,2,2,4,1,1,4,3,2,1,3,1,3,1,1,3,4,2,1,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Kay|Ross.Slate1|VanLange|Anderson|Hauser|Rottenstrich|Miyamoto|Alter|Inbar|Critcher|Huang|Graham,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,5,Global,all,TRUE +3862,0.595865802573771,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,6,7,3,4,3,5,3,3,1,3,3,3,5,2,2,5,3,3,4,3,4,3,5,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Inbar|Kay|Ross.Slate1|Alter|Critcher|Graham|Anderson|VanLange|Miyamoto|Hauser|Huang|Bauer,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood,8,Global,all,TRUE +3863,0.700781713351972,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,7,6,7,5,1,3,4,4,1,1,3,4,5,1,3,1,5,3,3,3,4,4,1,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Critcher|Huang|Ross.Slate1|Hauser|Miyamoto|Alter|Rottenstrich|Inbar|Kay|Anderson|VanLange|Graham,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood,11,Global,all,TRUE +3867,0.839313063913317,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,5,7,4,2,1,2,4,1,3,1,5,1,1,3,1,3,1,5,5,3,1,1,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|VanLange|Inbar|Alter|Bauer|Critcher|Anderson|Ross.Slate1|Kay|Graham|Hauser|Huang|Rottenstrich,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,7,Global,all,TRUE +3868,0.567527392373163,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,4,7,3,3,2,4,5,2,2,4,2,1,2,2,2,1,2,2,2,4,2,4,2,2,2,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|VanLange|Critcher|Huang|Hauser|Kay|Miyamoto|Ross.Slate1|Anderson|Graham|Rottenstrich|Alter|Inbar,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,9,Global,all,TRUE +3871,0.318676523019681,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,3,4,5,3,1,4,3,2,2,1,3,3,5,3,2,4,3,1,4,2,2,3,5,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Ross.Slate1|Kay|Anderson|Graham|Rottenstrich|Miyamoto|Critcher|Hauser|Huang|VanLange|Alter|Bauer,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,4,Global,all,TRUE +3872,-0.571967140426514,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,5,1,7,7,4,4,4,4,1,4,2,1,1,2,4,3,1,2,2,3,4,1,2,2,3,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Ross.Slate1|Kay|Miyamoto|Huang|Graham|VanLange|Hauser|Inbar|Bauer|Anderson|Critcher|Alter,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +3873,0.583611637983569,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,7,6,7,4,1,2,2,4,2,3,4,3,2,2,3,2,2,1,3,3,4,3,1,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Alter|VanLange|Anderson|Inbar|Ross.Slate1|Hauser|Bauer|Huang|Rottenstrich|Miyamoto|Kay|Critcher,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing,4,Global,all,TRUE +3874,0.35584159405176,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,6,4,3,2,2,4,1,1,4,3,4,1,3,1,4,1,3,4,3,3,2,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Ross.Slate1|Bauer|Kay|Inbar|Rottenstrich|Critcher|VanLange|Graham|Huang|Hauser|Miyamoto|Anderson,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,13,Global,all,TRUE +3875,0.9861533405969,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,2,4,3,2,5,3,2,2,4,4,3,2,4,2,4,2,2,3,4,3,2,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Rottenstrich|Inbar|Critcher|Huang|Alter|Anderson|Miyamoto|Ross.Slate1|Bauer|Graham|Hauser|VanLange,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,7,Global,all,TRUE +3876,0.0443789151196569,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,5,5,3,4,1,1,1,3,1,1,1,3,1,1,1,1,4,1,1,3,2,2,1,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|VanLange|Huang|Critcher|Bauer|Miyamoto|Rottenstrich|Kay|Inbar|Alter|Anderson|Graham|Ross.Slate1,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,11,Global,all,TRUE +3878,0.592440524285638,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,5,6,4,2,2,3,3,2,1,3,2,2,2,3,1,3,1,2,3,4,3,1,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Kay|Inbar|Alter|Hauser|Graham|Miyamoto|Critcher|Huang|VanLange|Anderson|Bauer|Ross.Slate1,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,11,Global,all,TRUE +3879,-0.759917726610141,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,7,7,4,1,1,5,5,1,1,4,3,1,1,4,1,5,1,1,5,5,5,1,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Graham|Critcher|Inbar|Rottenstrich|Bauer|Miyamoto|Alter|VanLange|Huang|Ross.Slate1|Kay|Anderson,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood,13,Global,all,TRUE +3886,-0.564723202101813,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,3,3,1,1,1,2,1,1,2,1,1,1,2,1,3,2,1,2,3,1,1,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Hauser|Ross.Slate1|Graham|Huang|Kay|Rottenstrich|Bauer|Alter|Anderson|Inbar|Critcher|Miyamoto,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,10,Global,all,TRUE +3890,-0.803286815607256,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,6,2,2,2,2,3,1,1,2,2,2,2,2,1,3,2,2,3,2,4,1,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Ross.Slate1|Hauser|Critcher|Graham|Anderson|Miyamoto|Huang|Kay|VanLange|Inbar|Bauer|Rottenstrich,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,6,Global,all,TRUE +3895,-0.154645690408874,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,6,6,3,2,1,1,1,4,1,1,4,3,1,1,1,1,3,2,1,1,3,3,1,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Rottenstrich|Inbar|Kay|VanLange|Ross.Slate1|Bauer|Critcher|Alter|Hauser|Anderson|Huang|Graham,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,11,Global,all,TRUE +3898,0.181856698867103,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,5,1,1,4,5,1,1,4,5,1,1,4,1,5,1,1,5,5,5,1,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Kay|VanLange|Critcher|Anderson|Ross.Slate1|Bauer|Huang|Inbar|Hauser|Alter|Miyamoto|Rottenstrich,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,5,Global,all,TRUE +3900,0.415156929244245,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,5,6,3,4,3,2,4,4,1,2,3,5,3,1,3,2,4,2,4,4,4,5,2,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Rottenstrich|Miyamoto|Kay|VanLange|Hauser|Inbar|Bauer|Ross.Slate1|Anderson|Graham|Alter|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,10,Global,all,TRUE +3901,1.16884054365223,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,5,7,3,4,3,3,3,3,3,2,4,3,4,3,3,1,3,2,4,4,3,4,3,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Ross.Slate1|Anderson|Alter|Bauer|Rottenstrich|Critcher|Hauser|Huang|VanLange|Kay|Miyamoto|Inbar,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,3,Global,all,TRUE +3906,-0.0859837342050869,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,3,3,2,2,3,4,2,2,4,4,2,3,3,2,3,3,3,2,4,4,2,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|VanLange|Ross.Slate1|Alter|Graham|Inbar|Critcher|Bauer|Hauser|Huang|Miyamoto|Anderson|Kay,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,12,Global,all,TRUE +3907,0.252105828518858,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,3,5,3,4,2,4,1,5,1,3,5,3,2,5,2,4,2,2,1,5,3,3,1,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|VanLange|Alter|Miyamoto|Anderson|Graham|Hauser|Inbar|Huang|Bauer|Ross.Slate1|Rottenstrich|Critcher,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,5,Global,all,TRUE +3908,1.09133605469213,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,6,3,7,6,2,3,1,3,4,4,1,1,2,3,1,1,1,1,3,1,4,4,4,3,2,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Hauser|Alter|Inbar|Ross.Slate1|Huang|Anderson|Kay|Bauer|VanLange|Critcher|Graham|Rottenstrich,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,7,Global,all,TRUE +3909,-0.313486974819862,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,3,1,4,3,3,3,3,5,5,3,5,4,3,3,5,5,1,5,5,5,5,3,3,3,4,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|VanLange|Hauser|Graham|Huang|Critcher|Alter|Rottenstrich|Bauer|Anderson|Miyamoto|Ross.Slate1|Kay,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +3912,0.79449702635387,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,6,5,2,1,4,3,1,1,3,3,1,1,2,1,5,1,1,4,4,4,1,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Hauser|VanLange|Huang|Bauer|Anderson|Rottenstrich|Critcher|Kay|Graham|Alter|Ross.Slate1|Inbar,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +3913,0.172229628084531,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,6,6,3,1,1,2,3,1,1,3,3,1,1,2,1,2,1,1,3,3,1,1,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Kay|Huang|VanLange|Inbar|Alter|Critcher|Hauser|Graham|Ross.Slate1|Bauer|Miyamoto|Rottenstrich,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,1,Global,all,TRUE +3914,0.750874780493956,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,6,4,2,6,3,4,3,2,3,2,2,2,3,3,4,2,2,4,2,3,4,1,2,2,4,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Alter|Anderson|Inbar|Rottenstrich|Miyamoto|VanLange|Bauer|Ross.Slate1|Graham|Huang|Kay|Critcher,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing,3,Global,all,TRUE +3916,-0.420254636892465,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,2,1,3,4,4,4,2,2,4,2,2,3,2,3,2,3,1,4,2,3,2,2,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Huang|Inbar|Anderson|Bauer|Miyamoto|Kay|Alter|Ross.Slate1|Hauser|Graham|Critcher|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing,4,Global,all,TRUE +3917,0.0778541300171667,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,3,4,3,2,2,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Bauer|Huang|VanLange|Anderson|Alter|Kay|Miyamoto|Rottenstrich|Inbar|Graham|Ross.Slate1|Critcher,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,5,Global,all,TRUE +3919,1.1826796562198,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,7,5,6,7,6,4,1,2,2,4,1,1,4,3,1,1,3,1,5,1,2,4,3,5,1,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Bauer|Alter|Huang|Critcher|Anderson|Ross.Slate1|Hauser|Kay|Miyamoto|Inbar|VanLange|Rottenstrich,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,6,Global,all,TRUE +3922,0.180665132638167,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,5,3,1,2,3,3,2,4,2,3,3,2,3,1,2,4,4,2,3,3,1,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Inbar|Anderson|Miyamoto|Bauer|Ross.Slate1|Graham|Alter|VanLange|Hauser|Critcher|Kay|Huang,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,3,Global,all,TRUE +3925,-1.03790519064473,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,7,5,3,3,4,4,4,2,2,4,3,4,1,2,2,4,3,4,4,3,4,2,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Anderson|Rottenstrich|Alter|Inbar|Graham|Bauer|Critcher|Kay|Miyamoto|Hauser|Huang|VanLange,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing,2,Global,all,TRUE +3926,0.236161807794086,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,7,6,4,1,1,2,3,2,1,3,3,2,1,1,1,2,2,1,1,4,3,1,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|VanLange|Anderson|Ross.Slate1|Hauser|Graham|Miyamoto|Bauer|Rottenstrich|Critcher|Kay|Inbar|Huang,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,3,Global,all,TRUE +3927,0.473938657802664,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,7,6,4,4,5,2,1,1,5,2,2,5,1,1,1,4,1,5,1,3,4,3,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|VanLange|Kay|Inbar|Critcher|Rottenstrich|Ross.Slate1|Hauser|Bauer|Graham|Alter|Miyamoto|Anderson,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,13,Global,all,TRUE +3928,-0.0572519422560451,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,7,3,7,6,7,5,2,2,4,4,1,1,5,4,4,1,4,1,4,1,2,4,2,5,1,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Kay|Miyamoto|Rottenstrich|Anderson|Bauer|VanLange|Alter|Ross.Slate1|Hauser|Huang|Graham|Inbar,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,5,Global,all,TRUE +3929,0.150095235848959,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,3,4,2,2,1,3,3,1,2,3,2,3,4,1,2,2,2,4,2,2,1,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Huang|Miyamoto|Inbar|Ross.Slate1|Anderson|Kay|Alter|VanLange|Rottenstrich|Graham|Critcher|Bauer,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,6,Global,all,TRUE +3931,0.290858072998904,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,3,3,2,1,2,2,1,3,2,2,1,1,2,1,3,2,1,2,1,3,1,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|VanLange|Miyamoto|Graham|Critcher|Kay|Hauser|Ross.Slate1|Alter|Inbar|Huang|Anderson|Bauer,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,12,Global,all,TRUE +3936,0.684570889310167,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,7,3,4,1,3,1,4,1,4,4,4,4,1,3,1,4,1,4,4,4,4,1,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Inbar|Hauser|Graham|Miyamoto|Rottenstrich|VanLange|Ross.Slate1|Alter|Bauer|Huang|Critcher|Kay,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE,1,Global,all,TRUE +3937,0.296655062761272,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,6,4,6,6,7,4,2,3,4,3,1,2,3,4,2,2,3,1,4,1,3,4,2,4,3,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|VanLange|Rottenstrich|Alter|Hauser|Critcher|Huang|Anderson|Graham|Miyamoto|Inbar|Ross.Slate1|Kay,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,8,Global,all,TRUE +3938,-0.0418278817111058,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,4,1,2,3,3,2,1,3,4,2,2,3,2,4,1,2,4,3,4,3,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Bauer|Rottenstrich|Graham|Kay|Hauser|VanLange|Ross.Slate1|Anderson|Inbar|Critcher|Huang|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,9,Global,all,TRUE +3939,-0.216206158644196,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,4,2,1,4,4,1,1,2,3,1,1,3,1,4,1,2,4,3,3,1,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Huang|Ross.Slate1|Bauer|Rottenstrich|Hauser|Graham|Kay|Anderson|Critcher|Alter|Inbar|Miyamoto,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,9,Global,all,TRUE +3942,0.972047424712295,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,4,3,4,5,4,3,3,4,3,3,3,2,3,5,3,4,4,3,4,3,4,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Anderson|Critcher|Hauser|Bauer|Alter|Kay|Inbar|Graham|Rottenstrich|Huang|Miyamoto|Ross.Slate1,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE,2,Global,all,TRUE +3943,0.46840847135733,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,7,7,6,4,1,1,4,3,1,1,3,4,1,1,4,1,4,1,1,3,3,4,1,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Alter|Anderson|Inbar|VanLange|Kay|Bauer|Hauser|Miyamoto|Ross.Slate1|Rottenstrich|Critcher|Graham,ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +3945,0.233256489685785,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,6,5,5,1,1,2,3,3,1,1,2,4,1,2,1,1,3,1,1,5,5,3,1,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Huang|Alter|Hauser|Miyamoto|Rottenstrich|Graham|Bauer|Anderson|Inbar|VanLange|Critcher|Ross.Slate1,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing,9,Global,all,TRUE +3947,-0.0463045013425396,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,4,2,3,4,3,1,1,4,3,3,2,3,2,4,1,2,4,4,4,2,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Kay|Miyamoto|Ross.Slate1|VanLange|Graham|Alter|Bauer|Huang|Anderson|Rottenstrich|Hauser|Critcher,ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,10,Global,all,TRUE +3953,0.0976168107785051,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,6,4,5,2,1,2,2,4,1,2,3,4,2,2,2,3,4,3,2,4,3,4,2,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Critcher|Inbar|Anderson|VanLange|Huang|Kay|Ross.Slate1|Miyamoto|Bauer|Graham|Rottenstrich|Hauser,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five,4,Global,all,TRUE +3954,0.567260589056129,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,5,4,1,2,4,3,1,1,4,3,1,1,3,1,4,2,1,3,2,4,1,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Inbar|Bauer|Anderson|VanLange|Graham|Huang|Critcher|Hauser|Rottenstrich|Miyamoto|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five,5,Global,all,TRUE +3956,0.95583660067049,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,6,3,2,2,2,3,1,3,2,4,2,1,4,2,3,2,3,3,3,4,2,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Miyamoto|Hauser|Anderson|Inbar|Alter|Rottenstrich|Kay|Critcher|Huang|Ross.Slate1|Graham|VanLange,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,4,Global,all,TRUE +3958,-0.836242070324935,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,6,3,1,2,4,5,1,2,4,3,4,2,4,2,4,1,2,5,4,3,2,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Ross.Slate1|Anderson|Huang|Inbar|Rottenstrich|Miyamoto|Critcher|Bauer|Kay|Hauser|Alter|Graham,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing,3,Global,all,TRUE +3959,0.817038446792111,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,6,6,4,3,2,2,1,2,3,1,2,4,1,2,3,1,2,1,4,3,2,4,1,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Miyamoto|Ross.Slate1|Hauser|Alter|Critcher|Huang|Graham|Rottenstrich|VanLange|Anderson|Bauer|Inbar,ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,11,Global,all,TRUE +3961,-0.601750273718856,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,5,3,4,2,3,4,3,2,1,3,4,2,1,3,3,4,2,4,4,4,3,1,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Miyamoto|Huang|Anderson|Graham|Ross.Slate1|Hauser|Kay|VanLange|Bauer|Alter|Rottenstrich|Inbar,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,4,Global,all,TRUE +3962,-1.30745937559629,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,7,3,1,1,2,5,1,1,4,4,1,1,3,1,5,1,1,5,4,5,1,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Graham|Alter|Inbar|VanLange|Bauer|Anderson|Rottenstrich|Miyamoto|Hauser|Ross.Slate1|Critcher|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,7,Global,all,TRUE +3964,-0.0034690189794924,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,6,3,2,1,3,3,1,1,3,2,1,1,3,1,3,1,1,3,3,4,1,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Hauser|Ross.Slate1|Miyamoto|Bauer|Huang|VanLange|Rottenstrich|Kay|Critcher|Inbar|Anderson|Alter,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,12,Global,all,TRUE +3966,0.0137953718762125,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,3,3,2,4,4,4,4,4,1,4,5,4,3,4,2,1,5,2,5,5,5,3,2,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Critcher|Miyamoto|Bauer|VanLange|Graham|Alter|Kay|Huang|Anderson|Rottenstrich|Hauser|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,10,Global,all,TRUE +3968,-1.31049127213599,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,3,3,4,2,2,3,4,1,2,4,3,2,1,2,2,3,1,2,4,3,1,3,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Ross.Slate1|Rottenstrich|Graham|Miyamoto|Kay|Alter|Huang|Inbar|Bauer|Critcher|Anderson|VanLange,ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,12,Global,all,TRUE +3971,1.05534890343476,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,5,5,5,5,1,3,3,4,2,1,4,4,3,2,4,3,4,1,3,4,3,4,3,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Rottenstrich|Ross.Slate1|Bauer|Miyamoto|Alter|Graham|Kay|VanLange|Critcher|Huang|Anderson|Hauser,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five,12,Global,all,TRUE +3972,-0.590816479259587,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,6,6,3,2,2,3,5,1,3,4,3,3,1,4,1,5,2,3,4,5,4,1,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Ross.Slate1|Miyamoto|Hauser|Anderson|Graham|Rottenstrich|Alter|VanLange|Critcher|Huang|Kay|Inbar,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,5,Global,all,TRUE +3974,-0.503162733866492,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,6,4,1,1,4,4,1,1,4,4,1,1,4,1,4,1,2,4,4,4,1,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Critcher|Rottenstrich|Miyamoto|Bauer|Kay|Graham|VanLange|Hauser|Huang|Anderson|Inbar|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,11,Global,all,TRUE +3981,0.670071591677129,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,4,1,1,4,4,1,1,4,4,1,1,4,1,4,1,1,4,3,4,1,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Kay|Bauer|Hauser|Rottenstrich|Graham|Huang|Critcher|Inbar|Anderson|Alter|VanLange|Miyamoto,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,10,Global,all,TRUE +3982,0.543274445526154,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,4,4,1,1,1,4,4,1,1,2,3,2,1,1,1,3,1,1,4,4,4,1,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Huang|Rottenstrich|Kay|Ross.Slate1|VanLange|Anderson|Inbar|Critcher|Miyamoto|Bauer|Graham|Hauser,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,7,Global,all,TRUE +3986,-0.447539480279174,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,5,6,5,3,1,2,3,4,2,2,4,5,3,1,3,1,4,1,2,4,3,2,1,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Kay|Critcher|Miyamoto|Bauer|Alter|Hauser|Rottenstrich|Huang|Anderson|VanLange|Ross.Slate1|Inbar,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five,10,Global,all,TRUE +3988,0.141912888158121,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,5,6,5,5,2,2,3,3,2,1,4,4,4,1,2,1,3,3,1,3,5,4,1,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Ross.Slate1|Hauser|Anderson|Bauer|Huang|VanLange|Graham|Alter|Inbar|Critcher|Rottenstrich|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,4,Global,all,TRUE +3989,-0.143191935769773,Low,ML2_Slate1_Spanish_execution_illegal__Mexico_unam_r.csv,unam,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,6,5,1,1,2,4,1,1,4,4,4,1,4,2,5,1,3,4,3,3,2,unam,unam,unam,Mexico,National Autonomous University of Mexico in Mexico City,Spanish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Rottenstrich|Miyamoto|Hauser|Ross.Slate1|Bauer|Kay|VanLange|Huang|Critcher|Anderson|Graham|Alter,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing,11,Global,all,TRUE +3990,-0.525437350987699,Low,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,3,4,2,1,2,3,2,1,3,4,2,1,3,1,3,2,2,3,4,4,1,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Alter|Ross.Slate1|Graham|VanLange|Bauer|Kay|Critcher|Inbar|Anderson,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing,10,Global,all,TRUE +3991,-0.862335347482708,Low,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,6,7,4,1,1,3,3,1,1,3,4,1,1,4,1,3,1,1,2,4,4,1,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Hauser|Graham|Alter|Kay|Inbar|VanLange|Bauer|Ross.Slate1|Critcher,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,1,Global,all,TRUE +3992,-0.133438286555803,Low,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,6,6,4,2,1,3,3,1,1,3,2,2,1,1,1,4,1,1,3,3,2,1,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Hauser|Alter|VanLange|Graham|Ross.Slate1|Critcher|Kay|Bauer|Inbar,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,1,Global,all,TRUE +3994,-0.29661596571259,Low,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,2,6,4,2,2,1,2,1,2,2,2,2,3,2,1,2,1,3,3,4,1,2,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Anderson|Bauer|Critcher|VanLange|Inbar|Hauser|Kay|Graham|Ross.Slate1,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,2,Global,all,TRUE +3998,-1.31865997337259,Low,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,4,2,1,1,1,2,1,1,2,1,3,1,2,1,1,1,1,1,1,1,1,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Inbar|Ross.Slate1|Miyamoto|Graham|Alter|Bauer|Kay|Rottenstrich|Huang|Critcher|Hauser|VanLange,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +4002,-0.238227618902604,Low,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,5,4,5,1,1,1,1,2,1,1,1,2,1,1,1,1,3,1,1,1,2,2,1,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Miyamoto|Rottenstrich|Huang|VanLange|Critcher|Ross.Slate1|Inbar|Kay|Hauser|Bauer|Anderson|Alter,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,12,Global,all,TRUE +4003,-0.738834675717869,Low,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,4,2,2,4,3,3,5,5,1,2,4,4,4,1,2,1,4,3,4,5,4,4,4,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Critcher|Rottenstrich|Ross.Slate1|Inbar|Graham|Anderson|VanLange|Bauer|Huang|Miyamoto|Alter|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,7,Global,all,TRUE +4005,0.236021582908452,Low,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,3,4,3,1,1,3,2,1,1,2,3,1,1,3,1,3,1,1,2,3,1,1,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Inbar|Hauser|Anderson|Miyamoto|Rottenstrich|Kay|Graham|Huang|Alter|Critcher|VanLange|Bauer,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,4,Global,all,TRUE +4006,0.212960202290379,Low,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,5,6,4,4,1,1,4,4,1,1,4,5,1,1,5,1,4,1,1,4,4,4,1,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Hauser|Inbar|Rottenstrich|Miyamoto|Bauer|Huang|Alter|Ross.Slate1|Critcher|Kay|Graham|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,1,Global,all,TRUE +4008,0.32961031747895,Low,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,7,6,1,4,2,1,1,4,1,2,4,3,2,1,3,1,3,1,2,4,4,3,1,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Bauer|Alter|Anderson|Ross.Slate1|Graham|VanLange|Huang|Kay|Hauser|Critcher|Rottenstrich|Miyamoto,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +4009,0.0750890367944998,Low,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,6,5,3,4,1,1,3,4,1,2,3,3,2,1,4,1,3,1,3,4,4,3,1,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Alter|Bauer|Huang|Anderson|Kay|Graham|VanLange|Miyamoto|Ross.Slate1|Inbar|Critcher|Hauser,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood,5,Global,all,TRUE +4010,-0.848369656483738,Low,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,6,6,5,1,1,3,5,1,1,4,3,2,1,3,1,4,1,2,5,3,3,1,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Inbar|Critcher|VanLange|Ross.Slate1|Kay|Rottenstrich|Hauser|Graham|Huang|Miyamoto|Bauer|Alter,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,1,Global,all,TRUE +4011,-1.23667886478107,Low,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,6,5,4,2,1,3,3,1,1,3,4,2,1,2,1,4,1,4,3,4,3,1,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Graham|Hauser|Rottenstrich|Miyamoto|Critcher|Ross.Slate1|Bauer|Anderson|Inbar|VanLange|Huang|Kay,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,9,Global,all,TRUE +4013,0.830750980928282,Low,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,7,6,5,2,1,1,4,2,1,4,4,1,1,4,1,3,2,1,5,4,3,2,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Huang|Ross.Slate1|Hauser|Critcher|Anderson|VanLange|Alter|Inbar|Miyamoto|Rottenstrich|Kay|Bauer,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,6,Global,all,TRUE +4014,-1.40592033701726,Low,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,4,4,1,3,4,4,3,3,2,4,2,1,3,1,1,2,1,3,4,3,2,4,3,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|VanLange|Anderson|Miyamoto|Alter|Rottenstrich|Hauser|Critcher|Ross.Slate1|Bauer|Huang|Graham|Inbar,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,3,Global,all,TRUE +4020,0.354523449391425,Low,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,7,7,7,5,1,2,5,4,1,1,4,5,3,1,4,2,3,2,2,5,4,4,4,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Alter|Hauser|Inbar|Bauer|Ross.Slate1|Huang|Kay|Critcher|VanLange|Graham|Rottenstrich|Anderson,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,13,Global,all,TRUE +4022,0.869896607156762,Low,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,3,1,1,3,5,2,1,4,4,2,2,4,4,2,2,1,4,3,4,2,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|VanLange|Alter|Ross.Slate1|Miyamoto|Graham|Rottenstrich|Huang|Critcher|Inbar|Hauser|Bauer|Anderson,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five,13,Global,all,TRUE +4025,0.260934714820927,Low,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,5,6,3,4,4,4,4,3,2,3,3,3,4,3,2,3,3,3,4,4,4,3,2,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Huang|Rottenstrich|VanLange|Bauer|Inbar|Ross.Slate1|Alter|Graham|Hauser|Anderson|Miyamoto|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,11,Global,all,TRUE +4027,0.974685939503563,Low,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,,,,,,,,,,,,,,,,,,,,,,,,,,4,2,3,5,2,3,5,5,5,2,4,5,2,1,5,3,1,5,4,3,5,2,5,2,5,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Critcher|Kay|Alter|Ross.Slate1|VanLange|Inbar|Hauser|Bauer|Anderson|Graham|Rottenstrich|Miyamoto,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,10,Global,all,TRUE +4028,-0.916118270759261,Low,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,5,6,4,3,2,1,2,1,1,1,2,3,3,1,3,1,2,1,3,1,4,1,1,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Alter|Critcher|Rottenstrich|VanLange|Kay|Huang|Anderson|Inbar|Graham|Ross.Slate1|Hauser|Miyamoto,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,8,Global,all,TRUE +4029,0.176973051032999,Low,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,4,3,1,2,2,2,1,1,3,3,1,1,3,1,2,1,2,3,4,1,1,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Critcher|Huang|Anderson|Hauser|Miyamoto|Graham|VanLange|Rottenstrich|Inbar|Kay|Bauer,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,5,Global,all,TRUE +4030,0.0754824185429331,Low,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,7,5,6,4,1,1,3,4,1,1,2,2,3,1,3,1,5,1,2,3,1,2,1,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Critcher|Alter|Anderson|Huang|Inbar|Miyamoto|Ross.Slate1|Hauser|Kay|VanLange|Bauer|Rottenstrich,ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +4031,0.708037072660309,Low,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,5,6,3,4,2,2,1,2,1,1,3,2,1,1,1,1,4,1,1,1,3,3,1,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Bauer|VanLange|Miyamoto|Hauser|Rottenstrich|Alter|Graham|Inbar|Kay|Ross.Slate1|Huang|Anderson,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,13,Global,all,TRUE +4037,-0.264978855655246,Low,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,7,6,7,2,2,1,2,2,1,2,1,1,3,1,1,1,2,1,3,1,2,1,1,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Hauser|Ross.Slate1|Graham|VanLange|Critcher|Rottenstrich|Kay|Bauer|Anderson|Miyamoto|Inbar|Huang,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood,10,Global,all,TRUE +4039,0.0878745825481711,Low,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,,,,,,,,,,,,,,,,,,,,,,,,,,1,4,5,3,7,5,2,1,4,5,3,1,3,1,1,1,5,1,4,1,2,5,3,4,1,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Miyamoto|Anderson|Rottenstrich|Critcher|Inbar|Kay|Huang|Ross.Slate1|Graham|Hauser|Alter|Bauer,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing,3,Global,all,TRUE +4046,-0.303604521703893,Low,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,4,4,1,1,2,3,1,1,3,1,1,1,4,1,4,1,1,3,4,1,1,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Anderson|Alter|Hauser|Miyamoto|VanLange|Huang|Ross.Slate1|Inbar|Critcher|Rottenstrich|Bauer|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,2,Global,all,TRUE +4049,0.980089547517498,Low,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,5,3,1,1,1,3,1,1,2,3,1,1,2,1,4,2,2,3,2,3,1,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Critcher|Miyamoto|Ross.Slate1|Huang|Hauser|VanLange|Bauer|Inbar|Graham|Rottenstrich|Kay|Alter,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,1,Global,all,TRUE +4051,-0.670159073059846,Low,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,7,7,5,1,1,3,4,1,1,4,5,2,1,5,1,4,1,1,5,5,4,1,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Kay|Graham|Inbar|Anderson|Alter|Huang|Rottenstrich|Miyamoto|Bauer|Ross.Slate1|Hauser|VanLange,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing,5,Global,all,TRUE +4052,-0.0117779451017295,Low,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,6,7,4,1,1,1,3,1,1,4,3,1,1,4,1,5,3,3,3,4,4,1,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Inbar|Ross.Slate1|Anderson|Rottenstrich|Critcher|VanLange|Huang|Bauer|Kay|Graham|Miyamoto|Hauser,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,4,Global,all,TRUE +4057,-0.129619626519236,Low,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,5,5,4,1,1,3,4,1,1,2,2,1,2,1,1,4,1,1,3,4,1,1,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Bauer|Graham|Critcher|Ross.Slate1|Hauser|Rottenstrich|Miyamoto|Kay|Alter|Anderson|Huang|Inbar,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,11,Global,all,TRUE +4058,0.770117501075462,Low,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,7,5,4,3,1,1,4,1,1,4,4,3,1,4,1,3,1,2,4,5,3,1,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Graham|Critcher|VanLange|Bauer|Alter|Kay|Hauser|Miyamoto|Huang|Rottenstrich|Anderson|Ross.Slate1,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,12,Global,all,TRUE +4059,-0.739101479034903,Low,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,5,5,4,3,1,1,4,3,3,1,3,4,1,1,4,1,4,1,1,3,3,1,1,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Inbar|Hauser|Kay|Anderson|Miyamoto|VanLange|Graham|Alter|Critcher|Huang|Bauer|Rottenstrich,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,5,Global,all,TRUE +4060,0.307068897040709,Low,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,3,3,1,1,3,3,1,1,1,3,1,1,3,1,2,1,2,3,3,1,1,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Inbar|Alter|Anderson|Miyamoto|Ross.Slate1|Huang|Graham|Bauer|Rottenstrich|Critcher|Kay|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,4,Global,all,TRUE +4061,-0.0944192387587231,Low,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,3,3,4,2,1,1,1,3,1,1,2,1,1,1,1,4,1,3,2,1,1,2,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Rottenstrich|Inbar|Alter|Bauer|VanLange|Hauser|Graham|Ross.Slate1|Miyamoto|Huang|Kay|Critcher,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,1,Global,all,TRUE +4064,0.0521542346078259,Low,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,5,4,2,3,1,1,4,2,1,1,1,2,1,1,4,1,4,1,1,2,3,1,1,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Bauer|Graham|Critcher|Hauser|Huang|Rottenstrich|Inbar|Anderson|VanLange|Miyamoto|Alter|Ross.Slate1,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,9,Global,all,TRUE +4066,0.465896534997461,Low,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,5,3,2,4,2,2,3,3,3,1,1,1,2,1,2,1,3,1,2,2,2,4,1,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Miyamoto|Ross.Slate1|Alter|Anderson|Graham|Kay|Rottenstrich|Critcher|Bauer|VanLange|Huang|Hauser,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,5,Global,all,TRUE +4067,-0.146743792489306,Low,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,5,4,6,2,3,2,4,1,1,2,2,3,4,3,2,4,3,1,5,4,4,3,4,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Alter|Ross.Slate1|Critcher|Huang|Miyamoto|Graham|Bauer|Anderson|VanLange|Hauser|Inbar|Kay,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,9,Global,all,TRUE +4070,-0.485760343595752,Low,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,3,5,3,4,2,3,3,1,2,1,3,1,1,3,1,3,2,2,2,3,3,1,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|VanLange|Kay|Graham|Alter|Ross.Slate1|Bauer|Huang|Anderson|Inbar|Hauser|Critcher|Rottenstrich,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing,9,Global,all,TRUE +4072,-0.648024680824274,Low,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,6,6,7,4,1,1,4,5,1,1,3,5,3,1,4,1,5,1,2,5,5,5,1,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Anderson|Hauser|Inbar|Bauer|Graham|Rottenstrich|Alter|Kay|Huang|Ross.Slate1|Critcher|VanLange,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,2,Global,all,TRUE +4073,0.102893840361041,Low,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,3,4,2,2,3,4,1,2,4,4,3,1,3,1,4,1,2,3,4,3,2,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Bauer|Kay|Ross.Slate1|Critcher|Hauser|Rottenstrich|Inbar|VanLange|Miyamoto|Huang|Graham|Alter,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,1,Global,all,TRUE +4075,0.666646313388995,Low,ML2_Slate1_Spanish_execution_illegal__Uruguay_r.csv,pscio,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,2,3,3,3,1,2,1,1,1,1,1,3,1,1,1,1,5,1,1,1,3,1,1,pscio,pscio,pscio,Uruguay,"University of the Republic, Montevideo, Uruguay",Spanish,0,illegal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Kay|Miyamoto|Huang|Ross.Slate1|Bauer|Alter|VanLange|Graham|Inbar|Anderson|Critcher|Hauser,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood,11,Global,all,TRUE +4082,-1.36044411439234,Low,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,5,6,3,3,1,2,3,2,1,2,3,4,1,1,3,2,3,1,1,3,4,4,1,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|VanLange|Huang|Anderson|Inbar|Alter|Bauer|Graham|Miyamoto|Kay|Rottenstrich|Critcher|Hauser,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,4,Global,all,TRUE +4083,0.648583738052788,Low,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,4,4,1,1,4,3,1,1,2,2,1,1,4,2,4,1,2,4,4,3,1,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Bauer|VanLange|Rottenstrich|Ross.Slate1|Graham|Kay|Huang|Alter|Miyamoto|Anderson|Inbar|Critcher,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,11,Global,all,TRUE +4084,0.0417404003283888,Low,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,2,1,4,3,3,2,1,3,2,2,3,3,3,2,3,3,2,2,2,2,2,3,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Anderson|Rottenstrich|Alter|Bauer|Critcher|Kay|Miyamoto|Inbar|Huang|Graham|VanLange|Ross.Slate1,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing,2,Global,all,TRUE +4086,-0.141213606043972,Low,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,5,2,3,1,2,3,4,3,1,2,3,3,3,1,3,1,4,2,1,1,4,4,1,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Ross.Slate1|Graham|Kay|Huang|VanLange|Rottenstrich|Hauser|Bauer|Inbar|Alter|Critcher|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,1,Global,all,TRUE +4087,0.258029396712624,Low,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,2,2,1,3,2,2,3,3,1,2,3,3,1,2,2,1,3,1,3,3,2,1,1,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Miyamoto|Bauer|Kay|Rottenstrich|Ross.Slate1|VanLange|Hauser|Alter|Anderson|Huang|Graham|Critcher,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,10,Global,all,TRUE +4089,-0.0544868490333779,Low,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,7,5,5,5,4,2,4,4,3,1,4,4,5,2,4,2,4,1,5,4,4,4,2,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|Bauer|Huang|Ross.Slate1|VanLange|Graham|Alter|Critcher|Inbar|Anderson|Kay|Rottenstrich,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood,11,Global,all,TRUE +4090,-0.885534727515817,Low,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,5,6,5,4,1,1,4,3,1,1,4,4,1,1,3,1,4,1,4,4,4,3,1,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|VanLange|Anderson|Hauser|Miyamoto|Huang|Critcher|Rottenstrich|Ross.Slate1|Graham|Bauer|Alter|Inbar,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE,3,Global,all,TRUE +4093,0.0910330575192708,Low,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,4,4,2,1,2,1,4,1,2,3,1,3,1,1,4,1,1,2,3,1,1,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Inbar|Rottenstrich|Ross.Slate1|Kay|Huang|Hauser|Bauer|Anderson|Alter|VanLange|Miyamoto|Graham,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +4094,-0.392045030593854,Low,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,,,,,,,,,,,,,,,,,,,,,,,,,,6,3,6,5,7,2,1,2,2,1,1,1,2,2,1,1,2,1,4,1,1,1,1,2,1,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Bauer|Alter|Huang|Miyamoto|Graham|Critcher|Anderson|Rottenstrich|VanLange|Ross.Slate1|Kay|Hauser,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,8,Global,all,TRUE +4102,0.080366066377036,Low,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,3,5,4,2,1,2,2,1,1,4,4,4,2,4,1,2,1,5,4,4,3,1,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Hauser|Ross.Slate1|Graham|Critcher|Miyamoto|Bauer|Inbar|VanLange|Anderson|Alter|Kay|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,10,Global,all,TRUE +4103,-0.110630062800528,Low,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,3,3,4,1,1,3,3,1,1,4,4,1,1,4,1,4,2,1,4,4,4,1,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Bauer|Anderson|Miyamoto|Alter|Inbar|Rottenstrich|VanLange|Kay|Hauser|Graham|Critcher|Ross.Slate1,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,3,Global,all,TRUE +4107,-0.409967381044427,Low,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,6,4,6,3,1,1,4,1,1,1,2,4,1,1,4,1,4,1,1,1,2,2,1,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Rottenstrich|Critcher|Kay|Huang|Ross.Slate1|Anderson|Miyamoto|Graham|Alter|Inbar|VanLange|Hauser,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,7,Global,all,TRUE +4114,-1.47261760994948,Low,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,3,2,1,2,5,3,3,2,4,5,1,2,2,1,3,1,3,1,1,3,2,1,1,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Hauser|Rottenstrich|Kay|Alter|Miyamoto|Inbar|Graham|Ross.Slate1|VanLange|Anderson|Critcher|Huang,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +4115,-0.390064475397453,Low,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,6,3,2,2,1,1,2,1,1,1,1,3,1,1,3,1,3,1,1,2,2,3,1,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|VanLange|Anderson|Graham|Alter|Rottenstrich|Hauser|Ross.Slate1|Huang|Inbar|Bauer|Miyamoto|Critcher,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,3,Global,all,TRUE +4120,-0.947488577499571,Low,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,7,7,3,1,1,1,1,1,1,2,3,1,1,2,1,2,1,1,2,2,4,2,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Huang|Rottenstrich|Miyamoto|Ross.Slate1|Hauser|Alter|Graham|Anderson|Critcher|VanLange|Inbar|Bauer,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,9,Global,all,TRUE +4122,-0.308083366805927,Low,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,7,5,3,1,5,4,3,4,5,4,4,1,4,2,4,2,3,5,4,4,4,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Hauser|Graham|Ross.Slate1|Huang|Anderson|Miyamoto|Kay|Critcher|Inbar|Bauer|VanLange|Alter,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,6,Global,all,TRUE +4123,-0.656319960492275,Low,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,4,2,3,4,5,5,2,5,4,4,2,4,2,4,3,4,4,4,4,2,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Hauser|Huang|Miyamoto|Graham|Bauer|VanLange|Ross.Slate1|Rottenstrich|Alter|Kay|Inbar|Critcher,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,1,Global,all,TRUE +4126,0.414890125927212,Low,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,6,3,4,1,1,3,1,1,1,4,4,1,1,3,1,4,1,3,4,4,4,1,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Inbar|Rottenstrich|Critcher|Hauser|VanLange|Bauer|Kay|Miyamoto|Anderson|Graham|Alter|Huang,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing,10,Global,all,TRUE +4127,-0.474559745819448,Low,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,6,3,2,2,2,1,4,1,2,2,4,4,2,3,2,2,2,2,2,2,4,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Ross.Slate1|Inbar|Graham|Huang|Miyamoto|Alter|Kay|VanLange|Critcher|Bauer|Anderson|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,12,Global,all,TRUE +4128,-0.380310826183483,Low,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,5,6,1,2,3,4,1,1,2,2,2,2,3,2,2,2,3,2,1,2,2,1,4,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Kay|Bauer|VanLange|Inbar|Rottenstrich|Critcher|Ross.Slate1|Alter|Graham|Anderson|Hauser|Miyamoto,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,11,Global,all,TRUE +4130,-1.68271623482291,Low,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,6,5,3,2,1,3,1,1,1,1,3,1,1,3,1,4,1,2,2,3,1,1,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Critcher|Inbar|Huang|Graham|Kay|Hauser|Rottenstrich|Alter|VanLange|Ross.Slate1|Anderson|Miyamoto,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE,12,Global,all,TRUE +4131,-0.657246948874776,Low,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,3,4,1,1,3,3,1,1,4,4,1,1,3,1,4,1,1,3,2,4,1,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Huang|Ross.Slate1|Alter|Anderson|Rottenstrich|Miyamoto|Bauer|Hauser|Inbar|Kay|VanLange|Critcher,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,5,Global,all,TRUE +4134,0.157463527134459,Low,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,5,6,3,3,1,1,4,1,1,1,4,2,1,1,3,1,5,1,4,2,4,2,1,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Anderson|Bauer|Inbar|Critcher|Hauser|Ross.Slate1|Rottenstrich|Alter|Kay|Graham|Huang|Miyamoto,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,2,Global,all,TRUE +4137,-0.549158916671239,Low,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,5,3,1,1,3,2,1,1,3,3,1,1,2,1,3,1,2,4,4,4,2,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Hauser|Miyamoto|Kay|Ross.Slate1|Bauer|Inbar|Alter|Critcher|Huang|Anderson|Graham|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,11,Global,all,TRUE +4140,-0.948415565882072,Low,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,5,7,1,4,1,1,4,2,1,1,3,5,2,1,5,2,5,1,2,1,3,1,2,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|VanLange|Kay|Rottenstrich|Alter|Huang|Ross.Slate1|Bauer|Graham|Critcher|Inbar|Hauser|Anderson,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,13,Global,all,TRUE +4143,0.753513295285224,Low,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,4,3,3,2,2,1,2,1,1,1,2,2,1,1,3,1,3,1,1,2,3,1,1,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Kay|Hauser|Ross.Slate1|Graham|Critcher|Huang|Bauer|Alter|Inbar|Miyamoto|Anderson|Rottenstrich,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +4144,-1.4314914285246,Low,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,7,2,3,2,1,1,2,1,1,2,3,2,1,4,1,3,2,1,2,2,4,2,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Critcher|Anderson|Rottenstrich|Bauer|VanLange|Miyamoto|Graham|Ross.Slate1|Huang|Alter|Kay|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood,3,Global,all,TRUE +4146,-0.682944618813517,Low,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,6,3,2,4,1,1,1,1,4,1,3,3,1,1,2,1,3,1,1,3,2,1,1,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Miyamoto|Bauer|Anderson|Critcher|VanLange|Hauser|Alter|Rottenstrich|Graham|Huang|Inbar|Ross.Slate1,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,4,Global,all,TRUE +4147,0.1748681428758,Low,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,5,4,1,1,3,1,1,1,1,2,1,4,3,1,3,1,1,1,2,1,1,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Rottenstrich|Anderson|Alter|Critcher|Bauer|Kay|Inbar|Graham|Miyamoto|Hauser|Huang|Ross.Slate1,ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE,3,Global,all,TRUE +4148,-1.2379970094414,Low,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,5,7,2,2,1,1,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Alter|Anderson|Bauer|Rottenstrich|Huang|Miyamoto|Critcher|VanLange|Ross.Slate1|Graham|Hauser|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing,3,Global,all,TRUE +4149,-1.13900466685697,Low,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,5,6,2,4,1,2,3,1,2,1,3,2,3,1,2,1,4,2,2,3,2,1,2,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Miyamoto|Bauer|Inbar|Ross.Slate1|Graham|VanLange|Alter|Rottenstrich|Hauser|Kay|Anderson|Huang,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,12,Global,all,TRUE +4150,-0.373853651355648,Low,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,,,,,,,,,,,,,,,,,,,,,,,,,,2,1,5,7,2,2,2,5,3,1,1,4,2,1,5,1,2,5,5,1,2,1,1,2,5,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Ross.Slate1|Hauser|Miyamoto|Inbar|Critcher|Alter|Huang|Rottenstrich|Kay|Anderson|Graham|Bauer,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,11,Global,all,TRUE +4151,0.420293733941147,Low,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,4,5,6,4,1,2,3,3,2,3,3,2,1,3,3,2,3,2,2,3,4,2,3,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Kay|Graham|Huang|Alter|Hauser|Inbar|Anderson|Bauer|Rottenstrich|Miyamoto|Ross.Slate1|Critcher,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,8,Global,all,TRUE +4154,-0.580934026143619,Low,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,4,1,1,4,3,1,1,4,4,1,1,3,1,4,1,1,4,4,4,1,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Anderson|VanLange|Kay|Ross.Slate1|Graham|Bauer|Huang|Alter|Critcher|Rottenstrich|Hauser|Inbar,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,2,Global,all,TRUE +4159,0.637383140276485,Low,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,3,4,1,1,3,1,2,1,2,3,2,2,2,1,3,1,2,3,3,2,1,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|VanLange|Graham|Miyamoto|Anderson|Huang|Hauser|Kay|Rottenstrich|Ross.Slate1|Critcher|Bauer|Inbar,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,5,Global,all,TRUE +4162,-0.0163947896187987,Low,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,3,2,3,2,1,2,1,1,3,4,3,1,2,1,2,2,3,2,4,2,1,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Kay|Ross.Slate1|VanLange|Alter|Miyamoto|Graham|Rottenstrich|Anderson|Inbar|Huang|Critcher|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,9,Global,all,TRUE +4163,0.450877277184591,Low,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,6,3,3,4,1,1,1,3,3,2,3,3,1,1,3,1,3,1,3,1,3,3,1,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|Inbar|VanLange|Kay|Alter|Huang|Graham|Rottenstrich|Critcher|Ross.Slate1|Anderson|Bauer,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,12,Global,all,TRUE +4165,-0.309401511466261,Low,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,6,4,5,3,1,3,3,1,1,4,4,2,1,4,1,4,2,2,4,3,4,2,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Alter|Anderson|Rottenstrich|Graham|Bauer|Ross.Slate1|Hauser|VanLange|Kay|Inbar|Huang|Miyamoto,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +4170,0.351884934600157,Low,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,5,3,2,3,1,1,3,2,1,1,2,2,1,1,2,1,3,1,3,3,1,4,1,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Ross.Slate1|Anderson|Critcher|Alter|VanLange|Bauer|Huang|Kay|Miyamoto|Rottenstrich|Inbar|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,3,Global,all,TRUE +4171,-0.610059199841093,Low,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,3,6,2,4,1,2,3,2,1,1,2,4,1,1,4,1,4,1,1,2,2,3,1,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Miyamoto|Anderson|Ross.Slate1|Critcher|Hauser|Inbar|Rottenstrich|Bauer|VanLange|Alter|Huang|Graham,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,3,Global,all,TRUE +4172,0.046483823276857,Low,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,,,,,,,,,,,,,,,,,,,,,,,,,,6,3,6,3,7,3,2,2,2,3,1,2,4,4,1,2,4,1,2,1,1,2,2,4,1,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Rottenstrich|Alter|Miyamoto|Anderson|Inbar|Huang|Bauer|VanLange|Hauser|Kay|Critcher|Ross.Slate1,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,5,Global,all,TRUE +4177,-0.504609682428825,Low,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,,,,,,,,,,,,,,,,,,,,,,,,,,1,6,5,2,2,4,2,1,4,2,2,1,3,1,1,1,3,1,5,1,1,4,5,1,1,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Critcher|Kay|Hauser|Huang|Graham|Anderson|VanLange|Rottenstrich|Bauer|Inbar|Ross.Slate1|Alter,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,7,Global,all,TRUE +4178,-0.967391483146544,Low,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,6,6,7,4,2,1,3,3,1,3,4,2,3,1,4,2,4,2,2,2,3,3,3,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|VanLange|Inbar|Huang|Critcher|Alter|Rottenstrich|Graham|Ross.Slate1|Hauser|Kay|Anderson|Bauer,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing,12,Global,all,TRUE +4179,-0.825168050980031,Low,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,4,3,3,2,4,3,1,1,4,1,1,1,4,4,1,4,1,1,2,1,2,1,1,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Alter|Anderson|Bauer|Rottenstrich|Inbar|Hauser|Kay|Graham|Ross.Slate1|Critcher|Huang|VanLange,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +4181,-0.808690423621192,Low,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,6,2,1,1,1,2,1,1,2,3,1,2,3,1,4,1,1,2,1,3,1,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Inbar|Alter|Rottenstrich|Kay|Hauser|VanLange|Critcher|Ross.Slate1|Huang|Graham|Miyamoto|Bauer,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,1,Global,all,TRUE +4184,0.0445054935510558,Low,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,5,5,3,4,1,1,4,1,1,1,4,4,2,1,4,1,4,1,1,2,4,4,1,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Inbar|Bauer|Huang|Miyamoto|Hauser|Rottenstrich|Ross.Slate1|Kay|Graham|Alter|VanLange|Anderson,ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,13,Global,all,TRUE +4186,-0.598591798747756,Low,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,7,5,4,1,3,1,2,2,2,4,2,1,3,1,1,3,2,1,2,1,1,3,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Rottenstrich|Miyamoto|Hauser|Huang|VanLange|Graham|Alter|Anderson|Kay|Ross.Slate1|Bauer|Critcher,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection,9,Global,all,TRUE +4187,-0.462825541409078,Low,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,7,7,5,4,2,1,4,1,1,1,3,3,1,1,4,1,5,1,2,3,4,2,1,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Kay|Hauser|Anderson|Inbar|Rottenstrich|Miyamoto|Critcher|Alter|Graham|Huang|Ross.Slate1|VanLange,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,4,Global,all,TRUE +4188,-0.557594421224875,Low,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,6,3,2,1,1,1,1,1,1,1,2,2,3,1,1,1,1,1,1,1,3,2,1,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Huang|Graham|VanLange|Bauer|Inbar|Kay|Miyamoto|Alter|Anderson|Rottenstrich|Ross.Slate1|Critcher,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,10,Global,all,TRUE +4190,-0.564316173899145,Low,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,6,3,2,3,2,3,3,1,1,2,2,3,3,1,2,1,3,1,1,1,3,1,1,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Kay|Alter|Rottenstrich|Graham|Miyamoto|Anderson|Inbar|Ross.Slate1|Huang|Critcher|VanLange|Bauer,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE,7,Global,all,TRUE +4191,-1.6543778246223,Low,ML2_Slate1_Swedish_execution_illegal_r.csv,lundon,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,6,4,1,2,3,4,1,1,3,4,1,1,2,1,4,1,3,4,3,4,1,lundon,lundon,lundon,Sweden,"Lund University, Lund, Sweden",Swedish,1,illegal,"",Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Miyamoto|Inbar|Hauser|Graham|Bauer|Anderson|Ross.Slate1|Huang|Alter|VanLange|Kay|Critcher,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +4192,-0.385574209311783,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,4,6,2,2,2,2,3,3,2,3,3,3,3,2,3,2,2,2,2,3,4,3,2,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Anderson|Inbar|Bauer|Miyamoto|Ross.Slate1|VanLange|Hauser|Critcher|Huang|Graham|Rottenstrich|Kay,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,2,Global,all,TRUE +4194,-0.20659273431586,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,4,3,2,3,4,2,2,3,4,3,4,4,2,4,3,2,3,2,2,3,3,2,2,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Rottenstrich|VanLange|Inbar|Hauser|Anderson|Alter|Graham|Bauer|Huang|Critcher|Ross.Slate1|Kay,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,6,Global,all,TRUE +4195,0.37073427343323,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,4,3,2,3,4,2,3,3,1,4,3,3,4,1,3,4,3,1,3,4,4,2,4,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Huang|Rottenstrich|Alter|Bauer|Graham|Miyamoto|Hauser|VanLange|Inbar|Anderson|Kay|Ross.Slate1,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,11,Global,all,TRUE +4197,0.331588647204751,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,2,5,4,4,2,5,3,4,3,4,2,3,4,2,2,2,2,5,5,2,2,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Anderson|Critcher|Graham|Alter|Rottenstrich|Bauer|Miyamoto|Hauser|Inbar|Ross.Slate1|Kay|Huang,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing,2,Global,all,TRUE +4198,-0.658818250397908,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,5,1,2,4,2,3,3,4,1,1,4,4,2,1,3,2,3,1,2,4,5,3,3,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Hauser|Huang|Kay|VanLange|Ross.Slate1|Miyamoto|Alter|Graham|Critcher|Bauer|Inbar|Rottenstrich,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE,1,Global,all,TRUE +4200,0.0476639685221555,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,5,4,4,3,2,1,3,3,2,3,3,4,2,2,4,4,3,1,4,1,2,2,3,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Critcher|Bauer|Ross.Slate1|Graham|Inbar|Kay|Alter|Rottenstrich|VanLange|Huang|Hauser|Miyamoto,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,1,Global,all,TRUE +4201,-0.685191977326952,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,4,5,5,2,2,2,3,2,1,2,2,4,2,1,4,2,2,1,2,3,3,2,2,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Hauser|Alter|Rottenstrich|Miyamoto|Anderson|Huang|Graham|Kay|Inbar|Ross.Slate1|Bauer|VanLange,ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,6,Global,all,TRUE +4202,0.103160643678075,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,2,6,4,4,1,3,4,2,3,4,4,3,2,4,2,3,2,1,4,3,4,2,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Hauser|Ross.Slate1|Inbar|VanLange|Critcher|Bauer|Kay|Miyamoto|Rottenstrich|Anderson|Alter|Graham,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,11,Global,all,TRUE +4204,-0.0158611829847305,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,6,3,3,4,2,2,2,1,2,2,2,3,1,1,2,2,3,1,3,3,2,3,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Ross.Slate1|Alter|VanLange|Rottenstrich|Graham|Huang|Inbar|Miyamoto|Critcher|Hauser|Kay|Anderson,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,13,Global,all,TRUE +4205,-0.505661023772125,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,,,,,,,,,,,,,,,,,,,,,,,,,,6,3,5,1,2,4,4,1,4,4,1,2,3,4,5,2,4,1,3,2,2,4,4,4,1,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Miyamoto|Inbar|Anderson|Kay|Rottenstrich|Huang|Ross.Slate1|Bauer|Hauser|Alter|VanLange|Critcher,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +4207,0.514669232008511,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,2,2,2,3,1,1,1,1,1,1,1,2,1,1,2,1,2,1,1,2,3,2,3,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Bauer|VanLange|Inbar|Alter|Hauser|Miyamoto|Graham|Critcher|Rottenstrich|Anderson|Kay|Ross.Slate1,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,11,Global,all,TRUE +4208,-0.0573785206874438,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,3,3,1,4,4,3,4,3,3,4,4,3,4,3,4,3,2,4,3,3,4,4,3,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Critcher|Hauser|Miyamoto|VanLange|Kay|Ross.Slate1|Anderson|Graham|Huang|Bauer|Alter|Rottenstrich,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,8,Global,all,TRUE +4210,-0.339453673546237,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,5,3,5,3,2,1,2,4,1,2,3,3,2,2,3,1,3,1,1,3,4,1,1,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Kay|Huang|Ross.Slate1|Critcher|Inbar|VanLange|Bauer|Graham|Rottenstrich|Anderson|Miyamoto|Alter,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,11,Global,all,TRUE +4211,-2.07906756592544,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,4,4,3,1,4,2,2,1,2,3,3,2,3,2,2,2,1,1,3,1,1,2,2,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Anderson|Critcher|Hauser|Alter|Ross.Slate1|Inbar|Graham|Rottenstrich|Miyamoto|Kay|VanLange|Huang,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +4216,0.00904972345714509,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,,,,,,,,,,,,,,,,,,,,,,,,,,2,1,2,1,1,5,1,1,1,2,1,1,1,3,2,4,3,1,5,1,1,2,2,1,2,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Critcher|Inbar|Ross.Slate1|Huang|VanLange|Hauser|Anderson|Graham|Alter|Kay|Rottenstrich|Bauer,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,8,Global,all,TRUE +4218,-1.4527147043025,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,4,6,4,3,2,2,3,1,2,3,5,1,1,4,2,5,1,1,5,5,4,1,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Miyamoto|Rottenstrich|Anderson|Kay|Alter|Ross.Slate1|Hauser|Huang|Inbar|Critcher|VanLange|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,4,Global,all,TRUE +4220,-0.394948123231557,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,3,5,3,2,4,1,1,4,1,4,1,3,4,1,2,1,2,1,3,3,3,3,2,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Graham|Inbar|Ross.Slate1|Alter|Kay|Hauser|Anderson|Miyamoto|VanLange|Rottenstrich|Critcher|Bauer,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing,8,Global,all,TRUE +4222,0.587697101337169,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,5,6,4,2,1,2,1,1,2,1,1,3,1,1,1,4,1,1,2,2,4,1,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Kay|Rottenstrich|Graham|Miyamoto|Ross.Slate1|Hauser|Alter|Inbar|Bauer|Huang|Anderson|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,12,Global,all,TRUE +4225,0.25816962159826,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,3,4,3,2,2,1,1,3,1,2,1,1,1,1,3,1,4,1,1,3,2,1,1,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Inbar|Bauer|Anderson|Kay|Hauser|Rottenstrich|Graham|Critcher|Huang|Alter|Ross.Slate1|Miyamoto,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,4,Global,all,TRUE +4226,-1.14506845993637,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,3,2,7,4,2,3,2,3,1,2,3,4,3,1,4,1,2,5,1,4,4,2,2,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Alter|Huang|Critcher|Rottenstrich|Graham|Bauer|Miyamoto|Inbar|Ross.Slate1|Hauser|Anderson|Kay,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +4230,-0.176793729098683,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,,,,,,,,,,,,,,,,,,,,,,,,,,6,4,5,4,3,4,4,2,4,4,2,4,3,3,2,2,2,4,2,4,4,5,4,4,4,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Hauser|Miyamoto|Alter|Bauer|Rottenstrich|Critcher|VanLange|Kay|Graham|Inbar|Ross.Slate1|Anderson,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,13,Global,all,TRUE +4232,-2.02515583874689,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,2,2,2,1,1,2,4,3,2,3,4,3,3,2,4,1,1,2,3,2,2,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Miyamoto|VanLange|Graham|Critcher|Hauser|Bauer|Inbar|Rottenstrich|Kay|Alter|Ross.Slate1|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,13,Global,all,TRUE +4235,0.634477822168182,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,4,5,4,1,1,3,4,1,1,4,3,1,1,4,2,4,1,1,4,4,3,1,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Anderson|Miyamoto|VanLange|Kay|Critcher|Rottenstrich|Hauser|Bauer|Ross.Slate1|Graham|Alter|Huang,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,2,Global,all,TRUE +4237,-0.0490695945652067,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,4,4,3,2,4,2,2,1,1,4,2,3,3,1,2,3,3,1,1,1,2,1,2,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Ross.Slate1|Alter|Hauser|Huang|Rottenstrich|Kay|Miyamoto|Anderson|Graham|Critcher|VanLange|Inbar,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,9,Global,all,TRUE +4238,0.709484021222642,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,4,4,5,3,5,4,4,1,1,5,3,1,1,5,2,1,3,1,3,3,3,3,5,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Anderson|Rottenstrich|Kay|Bauer|Graham|Critcher|VanLange|Ross.Slate1|Alter|Huang|Hauser|Miyamoto,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,2,Global,all,TRUE +4239,0.917084356190444,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,5,4,3,2,2,1,1,2,2,3,2,1,3,1,3,1,2,1,1,2,2,1,3,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Critcher|Graham|Inbar|Bauer|Alter|Ross.Slate1|VanLange|Rottenstrich|Miyamoto|Hauser|Kay|Huang,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood,1,Global,all,TRUE +4241,0.645298684650288,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,4,2,4,2,1,2,3,1,2,2,1,2,1,4,1,5,1,1,4,5,1,1,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Bauer|Hauser|Huang|Graham|Critcher|Rottenstrich|Anderson|Kay|Miyamoto|Ross.Slate1|VanLange|Inbar,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,8,Global,all,TRUE +4242,0.534445559224085,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,5,3,2,2,4,4,2,1,2,4,1,2,2,4,1,1,3,1,4,2,3,1,2,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Inbar|Alter|Ross.Slate1|Hauser|Kay|VanLange|Miyamoto|Rottenstrich|Bauer|Graham|Huang|Anderson,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,13,Global,all,TRUE +4243,-0.127107690159367,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,2,4,3,3,4,4,1,4,3,3,4,1,3,2,2,1,1,3,4,1,2,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Ross.Slate1|Bauer|Kay|Rottenstrich|Inbar|Huang|Miyamoto|Anderson|Critcher|VanLange|Graham|Hauser,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood,9,Global,all,TRUE +4244,-0.0489430161338078,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,4,3,4,2,3,2,5,1,1,5,4,1,2,4,1,4,1,1,4,4,4,1,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Bauer|Critcher|Rottenstrich|Ross.Slate1|Anderson|Alter|Inbar|VanLange|Graham|Huang|Kay|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection,6,Global,all,TRUE +4245,-0.640502518198902,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,2,3,4,3,3,1,3,1,3,1,1,3,1,2,1,5,1,1,2,3,1,1,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Graham|Hauser|Kay|Huang|Inbar|Bauer|VanLange|Alter|Miyamoto|Rottenstrich|Anderson|Ross.Slate1,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,12,Global,all,TRUE +4247,-0.883165241512182,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,5,4,3,2,4,3,3,2,3,4,3,3,2,4,3,1,4,3,3,3,3,1,1,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Alter|Rottenstrich|Huang|Kay|Anderson|VanLange|Bauer|Ross.Slate1|Inbar|Critcher|Graham|Hauser,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,6,Global,all,TRUE +4248,0.460630926398561,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,3,4,4,3,4,4,2,4,3,4,3,2,2,2,3,4,2,4,2,4,2,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Critcher|Hauser|Anderson|Inbar|Kay|Bauer|Alter|Miyamoto|VanLange|Rottenstrich|Graham|Ross.Slate1,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood,4,Global,all,TRUE +4249,0.991683527042234,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,4,4,1,1,1,4,1,1,4,4,1,1,4,1,4,1,1,4,4,3,1,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Huang|Bauer|Anderson|Inbar|Rottenstrich|Critcher|VanLange|Ross.Slate1|Alter|Hauser|Miyamoto|Kay,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +4250,-1.2331133616073,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,5,6,3,1,1,1,2,2,2,2,1,2,1,2,1,2,1,1,2,2,1,1,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Bauer|Critcher|Rottenstrich|Alter|Ross.Slate1|Kay|Inbar|Graham|Anderson|Huang|VanLange|Hauser,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,10,Global,all,TRUE +4254,0.77591449083783,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,5,4,2,3,2,1,1,3,1,2,4,4,2,2,3,1,4,2,1,4,3,4,1,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Kay|Bauer|Critcher|Alter|Ross.Slate1|Rottenstrich|Hauser|Anderson|Graham|Huang|VanLange|Miyamoto,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +4256,-0.139235276318171,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,4,5,3,2,4,1,2,3,2,2,2,2,2,2,2,1,3,1,3,2,2,2,2,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Rottenstrich|Ross.Slate1|Bauer|Miyamoto|Huang|Alter|Inbar|Kay|Critcher|Hauser|Anderson|Graham,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,12,Global,all,TRUE +4260,-0.850741367957972,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,5,4,2,1,1,1,1,1,2,1,1,1,1,2,1,2,1,1,1,2,1,1,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Miyamoto|Ross.Slate1|Critcher|Bauer|Huang|Rottenstrich|Anderson|VanLange|Graham|Inbar|Alter|Hauser,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,8,Global,all,TRUE +4261,0.133477383604485,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,3,2,1,4,5,4,4,3,5,5,4,3,4,5,4,3,3,4,3,2,3,2,4,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Ross.Slate1|Hauser|VanLange|Miyamoto|Anderson|Rottenstrich|Huang|Graham|Alter|Bauer|Critcher|Kay,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,6,Global,all,TRUE +4264,0.393542497188505,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,5,3,2,3,1,1,2,2,1,3,2,1,1,1,3,1,5,1,2,3,3,2,1,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Kay|Graham|Anderson|Inbar|Huang|Ross.Slate1|Bauer|Miyamoto|Hauser|Rottenstrich|Critcher|Alter,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,4,Global,all,TRUE +4265,0.0445054935510558,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,5,4,4,4,2,2,4,1,3,3,3,4,2,4,2,4,1,2,4,5,2,3,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Critcher|Huang|Alter|Inbar|Anderson|Bauer|Ross.Slate1|Graham|Miyamoto|Kay|Rottenstrich|Hauser,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,6,Global,all,TRUE +4266,0.684570889310167,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,5,3,1,1,1,3,2,1,3,3,2,1,3,1,3,1,1,3,3,4,1,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Miyamoto|Bauer|VanLange|Kay|Alter|Ross.Slate1|Rottenstrich|Inbar|Graham|Hauser|Critcher|Anderson,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +4267,-0.564976358964611,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,4,2,6,2,4,3,2,1,1,4,1,2,2,1,3,2,2,3,3,1,2,2,2,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Rottenstrich|VanLange|Ross.Slate1|Huang|Kay|Miyamoto|Inbar|Graham|Alter|Hauser|Bauer|Critcher,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +4269,0.179878369141302,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,3,3,2,2,2,1,1,1,1,2,3,2,1,1,3,1,4,1,1,1,2,1,1,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Alter|Bauer|Kay|Rottenstrich|Huang|Ross.Slate1|Hauser|Inbar|Miyamoto|Anderson|Critcher|Graham,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,11,Global,all,TRUE +4270,-0.123949215188267,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,3,3,4,2,1,4,4,1,2,2,3,1,1,3,1,2,1,1,3,2,3,2,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Critcher|Huang|Kay|Alter|VanLange|Ross.Slate1|Hauser|Miyamoto|Graham|Anderson|Inbar|Bauer,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,11,Global,all,TRUE +4271,0.428602660063384,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,4,4,6,3,1,1,1,1,2,1,4,2,1,2,3,1,3,1,1,2,2,2,1,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Critcher|Rottenstrich|Hauser|VanLange|Miyamoto|Alter|Bauer|Graham|Anderson|Huang|Inbar|Kay,ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,10,Global,all,TRUE +4273,1.04718020219815,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,2,2,4,4,2,1,1,1,1,1,3,1,1,1,4,1,4,1,1,2,4,2,1,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Graham|Huang|Ross.Slate1|VanLange|Alter|Hauser|Anderson|Bauer|Kay|Miyamoto|Critcher|Rottenstrich,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood,8,Global,all,TRUE +4275,-2.71267578685672,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnu,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,5,3,2,1,1,1,1,2,1,1,3,1,4,1,5,1,1,3,4,1,1,ntnu,ntnu,ntnu,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Graham|Alter|Hauser|Huang|Ross.Slate1|Inbar|VanLange|Miyamoto|Rottenstrich|Anderson|Bauer|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,11,Global,all,TRUE +4278,0.70342022814324,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnutab,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,2,4,3,2,5,4,2,2,1,2,2,2,1,2,2,4,4,2,2,2,2,5,ntnu,ntnu,ntnutab,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Rottenstrich|Miyamoto|VanLange|Graham|Huang|Critcher|Anderson|Bauer|Ross.Slate1|Hauser|Kay|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,8,Global,all,TRUE +4279,0.0282946695092506,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnutab,,,,,,,,,,,,,,,,,,,,,,,,,,3,1,1,2,3,4,2,2,3,2,4,2,4,1,2,1,3,3,4,2,2,3,4,2,2,ntnu,ntnu,ntnutab,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Rottenstrich|Miyamoto|Graham|Bauer|Hauser|Critcher|VanLange|Anderson|Huang|Inbar|Kay|Alter,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood,9,Global,all,TRUE +4281,-0.210015787133395,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnutab,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,6,3,5,2,1,3,5,1,2,4,5,2,1,5,1,4,1,1,5,5,3,1,ntnu,ntnu,ntnutab,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Ross.Slate1|Anderson|Miyamoto|Inbar|Huang|Bauer|Rottenstrich|Critcher|Hauser|Alter|Graham|VanLange,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,3,Global,all,TRUE +4285,0.0853762926425382,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnutab,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,4,2,6,2,3,3,2,3,3,3,1,3,3,3,3,3,3,3,3,3,3,3,3,ntnu,ntnu,ntnutab,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Miyamoto|Bauer|Hauser|Alter|Anderson|Inbar|VanLange|Graham|Ross.Slate1|Huang|Kay|Critcher,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,6,Global,all,TRUE +4288,-0.251799928153142,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnutab,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,3,2,3,4,1,1,1,1,1,1,1,1,1,1,4,1,4,1,1,1,4,4,1,ntnu,ntnu,ntnutab,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|Alter|Huang|Graham|Rottenstrich|VanLange|Anderson|Ross.Slate1|Critcher|Inbar|Bauer|Kay,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +4289,0.914052459650743,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnutab,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,3,3,3,4,3,4,3,2,4,3,2,3,2,3,2,1,2,4,3,2,1,3,ntnu,ntnu,ntnutab,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Graham|Hauser|Inbar|Critcher|Kay|Anderson|Rottenstrich|Huang|Miyamoto|Ross.Slate1|Bauer|Alter,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,7,Global,all,TRUE +4291,-0.45241170712964,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnutab,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,3,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,ntnu,ntnu,ntnutab,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Ross.Slate1|Rottenstrich|Miyamoto|Inbar|VanLange|Kay|Critcher|Graham|Alter|Anderson|Bauer|Huang,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,11,Global,all,TRUE +4293,0.568047352552994,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnutab,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,4,3,3,4,4,1,4,3,4,2,4,4,1,1,4,2,4,1,1,4,4,3,1,ntnu,ntnu,ntnutab,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Ross.Slate1|Anderson|Graham|Huang|Miyamoto|Kay|Inbar|Critcher|Hauser|Bauer|Alter|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,3,Global,all,TRUE +4294,0.0087851456107105,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnutab,,,,,,,,,,,,,,,,,,,,,,,,,,4,2,3,2,3,1,4,5,3,1,1,4,1,2,5,1,2,3,2,3,5,1,1,1,4,ntnu,ntnu,ntnutab,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Kay|Bauer|Rottenstrich|Miyamoto|Inbar|Huang|VanLange|Ross.Slate1|Alter|Hauser|Anderson|Critcher,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +4295,-0.00755225686249339,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnutab,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,7,7,3,1,1,1,1,1,1,1,2,1,1,3,1,5,1,1,3,4,1,1,ntnu,ntnu,ntnutab,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Alter|Kay|Ross.Slate1|VanLange|Inbar|Anderson|Graham|Bauer|Rottenstrich|Miyamoto|Critcher|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing,7,Global,all,TRUE +4296,0.529435332958583,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnutab,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,3,4,2,2,1,1,1,2,1,1,1,2,1,1,2,1,2,1,1,5,2,2,1,ntnu,ntnu,ntnutab,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Graham|Rottenstrich|Kay|Critcher|Miyamoto|VanLange|Ross.Slate1|Huang|Inbar|Hauser|Alter|Bauer,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +4300,-0.68018175106145,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnutab,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,3,3,2,3,2,2,2,3,3,2,2,3,2,1,3,2,3,2,1,3,4,2,2,ntnu,ntnu,ntnutab,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Critcher|Bauer|Huang|Anderson|Alter|VanLange|Kay|Graham|Ross.Slate1|Miyamoto|Hauser|Inbar,ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +4301,0.0670469139892968,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnutab,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,1,1,1,3,2,1,1,3,4,1,1,4,3,3,3,2,1,1,1,1,1,1,ntnu,ntnu,ntnutab,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Critcher|Kay|Huang|Alter|Inbar|Graham|Hauser|Ross.Slate1|VanLange|Anderson|Rottenstrich|Bauer,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,11,Global,all,TRUE +4303,-0.620866415868963,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnutab,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,2,4,3,4,5,1,2,4,2,1,4,2,2,4,4,4,3,1,4,1,4,ntnu,ntnu,ntnutab,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Anderson|Miyamoto|Bauer|Graham|Rottenstrich|VanLange|Alter|Critcher|Ross.Slate1|Hauser|Huang|Inbar,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +4306,0.323939906147981,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnutab,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,1,2,4,3,3,1,1,4,3,1,3,1,4,3,3,3,3,2,5,3,3,ntnu,ntnu,ntnutab,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Miyamoto|Inbar|Rottenstrich|Graham|Alter|Ross.Slate1|Huang|Kay|Hauser|Bauer|Anderson|Critcher,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,12,Global,all,TRUE +4307,-0.198815189357092,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnutab,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,6,3,4,1,1,1,1,1,1,2,1,1,5,3,1,4,1,4,3,4,1,1,ntnu,ntnu,ntnutab,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Miyamoto|VanLange|Critcher|Graham|Alter|Rottenstrich|Inbar|Bauer|Hauser|Kay|Ross.Slate1|Anderson,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,13,Global,all,TRUE +4310,0.340024151758388,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnutab,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,3,4,3,2,2,2,3,2,2,2,4,2,1,2,3,2,2,2,1,3,2,1,1,ntnu,ntnu,ntnutab,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Bauer|Alter|Critcher|Huang|Graham|Miyamoto|Rottenstrich|Inbar|Anderson|VanLange|Hauser|Kay,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,10,Global,all,TRUE +4313,-0.440944306036303,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnutab,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,4,3,2,3,1,1,2,1,2,1,1,1,1,1,1,2,1,1,2,3,3,1,ntnu,ntnu,ntnutab,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|VanLange|Graham|Ross.Slate1|Bauer|Critcher|Alter|Hauser|Huang|Kay|Anderson|Miyamoto|Inbar,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,11,Global,all,TRUE +4314,0.798062529527638,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnutab,,,,,,,,,,,,,,,,,,,,,,,,,,4,2,3,1,7,4,5,4,5,3,4,5,4,1,5,3,4,4,3,5,5,3,4,2,4,ntnu,ntnu,ntnutab,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Hauser|Huang|Miyamoto|Ross.Slate1|Graham|VanLange|Inbar|Kay|Rottenstrich|Critcher|Bauer|Anderson,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +4317,0.359140293908495,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnutab,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,5,3,4,2,2,3,4,2,2,4,4,3,3,4,2,4,2,4,4,4,4,2,ntnu,ntnu,ntnutab,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Kay|VanLange|Graham|Ross.Slate1|Huang|Bauer|Hauser|Inbar|Miyamoto|Critcher|Alter|Rottenstrich,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,1,Global,all,TRUE +4318,-0.381502392412418,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnutab,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,6,7,7,4,2,1,1,2,1,2,2,1,2,1,3,2,4,1,2,2,5,1,1,ntnu,ntnu,ntnutab,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Ross.Slate1|Miyamoto|Hauser|Rottenstrich|VanLange|Bauer|Graham|Alter|Huang|Inbar|Anderson|Critcher,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +4323,0.819943764900412,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnutab,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,5,3,3,2,4,4,3,2,4,4,4,3,4,4,2,4,2,3,4,2,2,2,4,ntnu,ntnu,ntnutab,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Kay|Critcher|Inbar|VanLange|Graham|Hauser|Alter|Anderson|Bauer|Miyamoto|Huang|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing,9,Global,all,TRUE +4324,0.471173564579997,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnutab,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,1,1,3,4,2,2,3,3,1,4,4,2,1,1,4,1,4,1,1,3,2,1,1,ntnu,ntnu,ntnutab,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Hauser|Huang|Kay|VanLange|Bauer|Critcher|Anderson|Alter|Miyamoto|Inbar|Rottenstrich|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,8,Global,all,TRUE +4326,1.01383156573204,Low,ML2_Slate1_Taiwan_Inlab_execution_legal_DEPLOY_r.csv,ntnutab,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,6,4,5,3,2,1,2,3,1,2,3,1,2,1,4,1,4,1,1,4,4,3,1,ntnu,ntnu,ntnutab,Taiwan,"Academia Sinica, Taiwan National Taiwan Normal University, Taiwan",Chinese (traditional),0,legal,No,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Hauser|Ross.Slate1|Anderson|Critcher|Kay|VanLange|Miyamoto|Bauer|Inbar|Huang|Alter|Rottenstrich,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +4332,0.058218027687228,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,6,3,1,5,1,1,5,4,5,3,4,5,1,4,5,2,5,1,1,5,3,2,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Critcher|Ross.Slate1|VanLange|Anderson|Bauer|Miyamoto|Huang|Alter|Hauser|Inbar|Rottenstrich|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five,5,Global,all,TRUE +4337,0.634224665305385,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,7,5,4,3,3,4,4,4,4,5,2,2,1,4,2,4,1,2,4,2,5,4,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Kay|Critcher|Anderson|Inbar|Graham|Bauer|Hauser|VanLange|Rottenstrich|Huang|Alter|Ross.Slate1,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,4,Global,all,TRUE +4339,0.451664040681457,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,6,6,1,4,4,2,5,5,3,2,3,4,3,4,5,1,5,2,3,3,3,5,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Ross.Slate1|VanLange|Alter|Miyamoto|Anderson|Inbar|Rottenstrich|Huang|Graham|Kay|Critcher|Hauser,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,6,Global,all,TRUE +4340,0.15839051551696,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,6,5,6,4,1,1,4,1,3,1,4,3,2,1,3,1,4,1,1,4,4,1,3,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Ross.Slate1|Critcher|Bauer|Hauser|Miyamoto|Anderson|Graham|Kay|Rottenstrich|Inbar|Huang|VanLange,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +4342,0.592833906034071,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,4,4,5,3,4,2,4,4,3,3,4,3,4,3,3,3,2,2,3,4,3,3,2,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Alter|Kay|VanLange|Bauer|Critcher|Inbar|Ross.Slate1|Rottenstrich|Hauser|Huang|Anderson|Miyamoto,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,12,Global,all,TRUE +4345,0.592440524285638,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,4,1,2,4,5,2,2,5,4,2,2,4,2,4,2,2,5,4,4,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Graham|Alter|Critcher|Inbar|Anderson|Ross.Slate1|VanLange|Bauer|Huang|Hauser|Miyamoto|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection,6,Global,all,TRUE +4348,-0.218184488369997,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,3,4,2,4,3,1,1,2,2,3,3,1,4,1,3,1,2,3,4,4,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|VanLange|Miyamoto|Anderson|Huang|Hauser|Ross.Slate1|Bauer|Graham|Critcher|Inbar|Alter|Rottenstrich,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,4,Global,all,TRUE +4356,0.701188741554641,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,6,3,3,2,3,3,1,1,4,4,3,1,5,1,3,3,2,3,3,1,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Huang|Hauser|Anderson|Alter|VanLange|Kay|Graham|Miyamoto|Bauer|Inbar|Critcher|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,4,Global,all,TRUE +4357,-0.602143655467289,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,7,5,4,1,2,4,3,1,1,3,4,2,1,3,1,4,1,1,4,5,5,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Critcher|Anderson|Kay|Hauser|Miyamoto|Inbar|Huang|Alter|Graham|Bauer|Ross.Slate1|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,3,Global,all,TRUE +4358,0.941997488102919,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,7,7,7,2,3,2,3,3,1,2,3,4,2,1,4,2,3,1,2,4,3,2,2,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Graham|Critcher|Inbar|Alter|Ross.Slate1|Anderson|Rottenstrich|Miyamoto|VanLange|Huang|Bauer|Hauser,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,7,Global,all,TRUE +4360,-0.179825625638383,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,6,6,4,1,1,4,3,1,1,3,4,1,1,4,1,4,1,1,4,4,5,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Ross.Slate1|Miyamoto|Kay|Rottenstrich|Anderson|Alter|Hauser|Bauer|Critcher|Huang|VanLange|Inbar,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,6,Global,all,TRUE +4362,0.498458407966706,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,4,1,1,4,4,1,2,4,4,5,1,5,1,4,2,2,4,4,4,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Bauer|Anderson|Alter|Inbar|VanLange|Critcher|Hauser|Kay|Graham|Huang|Rottenstrich|Ross.Slate1,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,3,Global,all,TRUE +4365,0.235234819411586,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,5,3,2,2,4,2,1,1,3,3,2,1,4,1,4,1,2,2,3,1,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Alter|Ross.Slate1|Hauser|Kay|Rottenstrich|Bauer|Graham|Inbar|Anderson|Huang|Miyamoto|VanLange,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,10,Global,all,TRUE +4366,0.193984285025906,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,3,3,4,3,4,4,3,2,3,3,3,1,3,1,4,1,4,3,3,3,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Inbar|Critcher|Huang|Kay|Rottenstrich|Alter|VanLange|Bauer|Ross.Slate1|Hauser|Anderson|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,12,Global,all,TRUE +4367,0.221789088592447,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,4,2,2,3,2,1,1,4,5,1,1,4,1,1,1,1,2,4,4,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Bauer|Critcher|Kay|Inbar|VanLange|Miyamoto|Ross.Slate1|Huang|Rottenstrich|Alter|Graham|Anderson,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +4368,-0.0217847511784979,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,7,6,5,4,2,2,2,1,2,3,4,4,2,1,4,2,2,1,3,3,3,4,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Alter|Critcher|Inbar|Anderson|VanLange|Hauser|Kay|Ross.Slate1|Bauer|Graham|Rottenstrich|Miyamoto,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +4369,0.330270502544417,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,5,4,3,2,2,2,3,3,1,3,2,3,2,1,2,1,3,1,2,2,4,4,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Huang|Inbar|Alter|Graham|Hauser|Rottenstrich|Critcher|VanLange|Ross.Slate1|Anderson|Kay|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,11,Global,all,TRUE +4372,1.00842795771811,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,2,1,2,1,4,3,1,2,2,3,2,1,2,4,1,2,3,1,2,1,1,3,3,5,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Hauser|Rottenstrich|Graham|Miyamoto|Bauer|Alter|Huang|Anderson|Ross.Slate1|Critcher|Kay|VanLange,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,9,Global,all,TRUE +4373,-0.113928762657263,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,5,2,3,3,1,2,2,3,2,4,4,3,2,4,1,2,3,4,4,4,5,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Bauer|VanLange|Miyamoto|Rottenstrich|Inbar|Anderson|Critcher|Graham|Huang|Kay|Alter|Ross.Slate1,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +4375,0.878332111710398,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,3,4,2,4,3,5,2,1,1,2,1,3,1,1,3,1,3,1,4,2,1,3,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Alter|Critcher|Hauser|VanLange|Huang|Ross.Slate1|Rottenstrich|Miyamoto|Graham|Inbar|Bauer|Anderson,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +4377,0.634618047053818,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,5,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Critcher|Ross.Slate1|Huang|Graham|Miyamoto|Alter|Inbar|Anderson|Hauser|Bauer|VanLange|Kay,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood,9,Global,all,TRUE +4378,-0.353824167277276,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,5,6,6,4,2,2,3,1,1,1,3,4,2,1,3,1,3,1,1,2,2,2,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Critcher|VanLange|Ross.Slate1|Anderson|Rottenstrich|Kay|Alter|Hauser|Inbar|Graham|Miyamoto|Huang,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,5,Global,all,TRUE +4379,-0.476397850659615,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,2,2,2,4,2,3,4,3,1,2,4,4,2,1,3,1,4,1,1,3,3,3,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|VanLange|Graham|Rottenstrich|Huang|Hauser|Alter|Anderson|Critcher|Kay|Inbar|Bauer|Miyamoto,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,8,Global,all,TRUE +4384,0.31471763809748,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,4,5,4,3,1,3,1,1,1,3,3,2,1,1,1,1,1,1,1,3,1,3,4,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Anderson|Kay|Graham|Rottenstrich|Ross.Slate1|Inbar|Hauser|Huang|Miyamoto|Bauer|VanLange|Critcher,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +4386,-0.0108509567192285,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,4,6,1,5,1,4,2,4,2,3,2,5,2,1,5,2,2,1,1,5,5,3,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Miyamoto|Ross.Slate1|Bauer|Critcher|Alter|Huang|Kay|Anderson|Rottenstrich|Graham|Inbar|Hauser,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,9,Global,all,TRUE +4390,-1.17274668507151,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,6,7,3,5,2,1,3,3,1,1,4,4,2,1,4,1,3,1,3,3,1,5,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Huang|Critcher|Graham|VanLange|Inbar|Hauser|Miyamoto|Bauer|Anderson|Alter|Rottenstrich|Ross.Slate1,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,10,Global,all,TRUE +4392,0.146389507789555,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,2,2,3,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Miyamoto|Inbar|Hauser|Critcher|Alter|Huang|Ross.Slate1|Rottenstrich|Anderson|Kay|Graham|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,10,Global,all,TRUE +4393,-0.252853494967041,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,6,4,1,1,4,3,1,1,3,4,1,1,3,1,4,1,2,3,3,4,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Bauer|Miyamoto|Anderson|Alter|Graham|Huang|VanLange|Critcher|Inbar|Ross.Slate1|Rottenstrich|Hauser,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,4,Global,all,TRUE +4394,0.357681924362525,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,7,7,6,4,2,1,4,3,1,1,3,5,3,1,4,2,4,1,2,4,5,2,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Kay|Miyamoto|Ross.Slate1|Hauser|Anderson|Graham|Inbar|Huang|Rottenstrich|Critcher|VanLange|Bauer,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,6,Global,all,TRUE +4395,-0.758077396299376,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,7,6,2,4,4,3,2,1,3,3,3,4,3,3,2,3,4,4,2,3,4,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Rottenstrich|Anderson|Graham|Ross.Slate1|Alter|Kay|Bauer|VanLange|Hauser|Miyamoto|Huang|Inbar,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing,3,Global,all,TRUE +4397,-0.897662313674621,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,5,4,4,4,3,4,2,4,2,2,4,4,4,2,3,1,2,1,3,3,4,4,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Miyamoto|Hauser|Huang|Inbar|Critcher|VanLange|Anderson|Alter|Kay|Ross.Slate1|Bauer|Graham,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,8,Global,all,TRUE +4398,0.235628201160019,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,6,6,3,3,1,3,3,3,1,3,3,4,1,1,2,1,3,1,2,3,4,3,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Huang|Critcher|Anderson|VanLange|Graham|Inbar|Alter|Miyamoto|Bauer|Kay|Ross.Slate1|Hauser,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five,4,Global,all,TRUE +4401,0.803466137541573,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,2,5,1,3,2,4,1,2,1,5,3,4,4,2,1,3,1,1,2,4,3,3,5,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Bauer|Critcher|Kay|Ross.Slate1|Rottenstrich|Miyamoto|Alter|VanLange|Anderson|Inbar|Huang|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,10,Global,all,TRUE +4402,0.287826176459203,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,6,4,6,5,6,3,2,2,3,3,1,2,3,3,2,1,3,1,3,1,1,3,3,3,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Rottenstrich|Inbar|Miyamoto|Bauer|Anderson|Graham|Kay|Critcher|Ross.Slate1|Hauser|Alter|VanLange,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +4405,0.308122463854609,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,1,3,4,1,1,2,5,5,1,5,3,5,2,2,5,5,1,3,1,1,5,5,2,2,3,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|VanLange|Bauer|Inbar|Rottenstrich|Hauser|Miyamoto|Critcher|Kay|Anderson|Graham|Huang|Alter,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing,10,Global,all,TRUE +4411,-0.839540770181669,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,7,5,6,1,5,5,1,3,1,1,1,1,5,1,1,1,1,1,4,1,1,1,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Ross.Slate1|Critcher|Miyamoto|Graham|Huang|Alter|VanLange|Kay|Anderson|Inbar|Rottenstrich|Bauer,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,10,Global,all,TRUE +4413,-0.218451291687031,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,5,6,5,2,1,2,1,1,1,1,3,2,1,1,3,1,1,1,2,1,1,3,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Kay|Ross.Slate1|Alter|Critcher|Bauer|Huang|Rottenstrich|Inbar|Graham|Anderson|VanLange|Hauser,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +4414,-0.337346539918437,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,3,3,2,4,1,2,4,2,1,2,3,4,1,1,3,1,4,1,1,4,4,3,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Miyamoto|Critcher|Rottenstrich|Kay|Inbar|Ross.Slate1|Anderson|VanLange|Huang|Alter|Hauser|Bauer,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,8,Global,all,TRUE +4415,0.0468772050252901,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,7,6,5,1,1,1,1,1,1,1,4,1,1,5,1,1,1,1,2,5,1,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Ross.Slate1|Critcher|Alter|Huang|Anderson|Graham|Kay|Hauser|Bauer|Inbar|Rottenstrich|Miyamoto,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +4416,0.11831790090598,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,7,6,3,4,1,1,4,1,1,1,3,3,1,1,3,1,4,1,1,4,3,1,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Anderson|Graham|Alter|Huang|VanLange|Kay|Hauser|Miyamoto|Inbar|Critcher|Ross.Slate1|Bauer,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,2,Global,all,TRUE +4419,0.0756089969743318,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,6,7,2,1,1,4,2,1,1,3,3,1,1,2,1,4,1,1,1,4,3,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Bauer|Kay|Ross.Slate1|Rottenstrich|VanLange|Alter|Graham|Miyamoto|Anderson|Inbar|Hauser|Huang,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,10,Global,all,TRUE +4422,-1.08166766139028,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,6,6,5,2,2,5,5,1,2,5,5,2,1,5,1,5,1,2,5,5,5,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Rottenstrich|Hauser|Kay|Critcher|Alter|Anderson|VanLange|Graham|Bauer|Ross.Slate1|Inbar|Huang,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,7,Global,all,TRUE +4425,1.05825422154306,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,5,6,3,2,1,2,2,1,1,2,1,3,2,1,2,1,2,1,1,1,2,2,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Kay|Rottenstrich|Critcher|VanLange|Inbar|Anderson|Hauser|Graham|Alter|Bauer|Miyamoto|Ross.Slate1,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,7,Global,all,TRUE +4426,-1.17973524106281,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,5,4,4,3,3,2,2,4,2,3,5,3,2,3,3,1,2,1,1,4,2,2,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Graham|VanLange|Miyamoto|Anderson|Hauser|Kay|Alter|Inbar|Ross.Slate1|Rottenstrich|Huang|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,5,Global,all,TRUE +4429,-1.69972746881582,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,5,1,4,3,5,4,3,3,4,3,1,3,5,3,3,2,4,2,4,1,2,3,4,3,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Alter|Huang|VanLange|Bauer|Ross.Slate1|Hauser|Anderson|Graham|Inbar|Rottenstrich|Kay|Critcher,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,8,Global,all,TRUE +4432,0.647796974555922,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,1,2,2,1,1,1,1,1,4,1,1,1,1,1,1,1,1,1,1,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Ross.Slate1|Rottenstrich|Inbar|VanLange|Anderson|Alter|Critcher|Kay|Huang|Hauser|Graham|Miyamoto,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,6,Global,all,TRUE +4434,-1.32129848816386,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,5,4,3,1,2,3,4,1,2,4,3,1,1,3,1,3,1,1,4,3,3,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Miyamoto|Kay|Critcher|Graham|VanLange|Huang|Inbar|Alter|Hauser|Ross.Slate1|Bauer|Rottenstrich,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,1,Global,all,TRUE +4435,-0.471921231028181,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,7,5,4,1,1,1,4,1,1,4,5,1,1,4,1,1,1,1,4,4,4,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Miyamoto|Ross.Slate1|Alter|Critcher|Bauer|Inbar|Rottenstrich|VanLange|Anderson|Huang|Kay|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood,10,Global,all,TRUE +4436,0.554475043302457,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,6,4,1,2,2,5,1,2,4,4,3,2,5,2,2,2,3,4,4,3,2,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Huang|Rottenstrich|Alter|Ross.Slate1|Graham|Critcher|Hauser|Miyamoto|Inbar|Anderson|Bauer|VanLange,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +4438,-0.207377272342127,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,6,5,3,2,3,3,1,1,4,4,2,1,5,1,3,1,3,4,4,3,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Anderson|Ross.Slate1|Inbar|Alter|Bauer|Huang|Critcher|Miyamoto|VanLange|Graham|Hauser|Rottenstrich,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,2,Global,all,TRUE +4439,-0.468495952740047,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,4,3,2,2,1,3,4,1,1,1,2,3,2,1,2,1,4,1,1,1,2,1,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Anderson|Critcher|Hauser|Graham|VanLange|Kay|Ross.Slate1|Alter|Rottenstrich|Huang|Inbar|Miyamoto,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,2,Global,all,TRUE +4440,0.105532355152309,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,4,4,6,3,3,3,3,4,2,3,4,4,3,2,3,2,3,2,3,4,3,4,2,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Alter|Hauser|Anderson|Critcher|Inbar|VanLange|Graham|Miyamoto|Rottenstrich|Kay|Huang|Ross.Slate1,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,4,Global,all,TRUE +4441,-0.40720228782176,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,3,5,1,2,2,4,1,2,5,4,2,1,5,2,3,1,1,5,5,4,2,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Graham|Inbar|Hauser|Kay|VanLange|Critcher|Ross.Slate1|Alter|Miyamoto|Anderson|Huang|Bauer,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing,11,Global,all,TRUE +4443,0.420293733941147,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,5,5,3,1,1,3,3,1,1,5,4,1,1,3,1,3,1,1,3,4,5,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Miyamoto|Anderson|VanLange|Ross.Slate1|Hauser|Graham|Alter|Critcher|Rottenstrich|Bauer|Huang|Kay,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing,3,Global,all,TRUE +4444,0.501223501189373,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,4,1,3,6,3,3,4,3,4,2,1,1,3,3,4,1,5,1,4,1,3,3,2,4,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Graham|Huang|Kay|Alter|VanLange|Bauer|Rottenstrich|Inbar|Hauser|Ross.Slate1|Anderson|Critcher,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,12,Global,all,TRUE +4453,0.423325630480848,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,5,5,3,4,3,2,3,4,1,2,3,4,2,1,4,1,3,1,2,3,4,4,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Anderson|Hauser|Inbar|VanLange|Kay|Bauer|Ross.Slate1|Alter|Critcher|Rottenstrich|Miyamoto|Graham,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,2,Global,all,TRUE +4455,1.15473462776762,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,3,3,1,2,3,1,1,1,3,3,4,1,1,1,3,1,1,2,1,4,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Rottenstrich|Inbar|Hauser|Miyamoto|Kay|Alter|Ross.Slate1|Bauer|Graham|Anderson|Critcher|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,11,Global,all,TRUE +4457,-1.22230614557943,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,7,5,3,1,2,3,4,1,1,3,4,1,1,4,1,3,1,1,4,4,3,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Kay|Alter|VanLange|Rottenstrich|Inbar|Bauer|Miyamoto|Hauser|Anderson|Graham|Critcher|Ross.Slate1,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,10,Global,all,TRUE +4458,-0.102194558246892,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,6,6,3,3,1,1,2,1,1,1,2,2,1,1,2,1,2,1,1,2,1,2,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Graham|Ross.Slate1|Kay|Hauser|Miyamoto|Alter|Huang|Inbar|Anderson|Critcher|Bauer|Rottenstrich,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,10,Global,all,TRUE +4459,-0.133831668304236,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,4,5,3,5,1,2,2,4,1,1,3,5,2,1,5,1,2,1,1,5,5,5,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|VanLange|Anderson|Huang|Miyamoto|Hauser|Graham|Alter|Critcher|Ross.Slate1|Rottenstrich|Kay|Inbar,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood,3,Global,all,TRUE +4461,-0.0679211588688793,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,7,7,7,4,1,1,2,3,1,1,3,3,1,1,4,1,2,1,1,4,3,3,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Kay|Rottenstrich|Hauser|Anderson|Alter|Miyamoto|Graham|Critcher|Inbar|Huang|Bauer|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,5,Global,all,TRUE +4466,0.384840189317836,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,7,7,3,5,1,2,3,2,1,1,5,4,3,1,4,1,3,1,1,4,5,5,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Miyamoto|Graham|Hauser|Kay|VanLange|Alter|Anderson|Rottenstrich|Ross.Slate1|Huang|Critcher|Bauer,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,8,Global,all,TRUE +4468,-1.2493241856491,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,7,4,6,4,5,5,1,2,4,5,1,2,4,4,1,1,5,1,4,2,2,5,4,5,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|VanLange|Bauer|Inbar|Miyamoto|Kay|Graham|Ross.Slate1|Alter|Rottenstrich|Critcher|Anderson|Huang,ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +4471,-0.908736333019525,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,5,4,2,3,3,3,4,1,1,3,1,4,2,1,4,1,4,3,2,3,3,3,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Critcher|Kay|Graham|Hauser|Miyamoto|Rottenstrich|Ross.Slate1|Inbar|Alter|Huang|Anderson|Bauer,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +4474,-0.0960041867360913,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,4,5,2,2,3,1,2,1,2,1,2,3,2,2,2,1,1,2,3,3,2,2,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Bauer|Rottenstrich|Huang|Kay|Graham|Anderson|VanLange|Hauser|Miyamoto|Critcher|Ross.Slate1|Inbar,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +4475,-0.0224449362439647,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,6,6,2,4,2,4,4,2,2,4,1,3,2,1,3,1,4,1,2,2,3,3,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Bauer|VanLange|Critcher|Rottenstrich|Alter|Anderson|Ross.Slate1|Kay|Huang|Inbar|Miyamoto|Graham,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood,7,Global,all,TRUE +4476,-0.928639238666498,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,3,1,1,1,2,3,1,1,1,1,2,5,2,2,1,3,1,1,1,2,2,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Bauer|Ross.Slate1|Huang|Graham|Alter|VanLange|Inbar|Rottenstrich|Hauser|Miyamoto|Critcher|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,13,Global,all,TRUE +4477,-0.279744956605318,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,5,3,3,4,1,3,1,2,3,2,3,3,3,1,2,1,1,1,1,2,2,1,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Ross.Slate1|Kay|Rottenstrich|Bauer|Huang|Alter|Graham|Critcher|Anderson|Inbar|VanLange|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,10,Global,all,TRUE +4478,0.371127655181663,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,3,2,1,1,5,5,1,1,1,5,1,1,5,5,1,3,1,1,5,1,1,1,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Kay|Alter|Anderson|Inbar|Rottenstrich|Hauser|Critcher|Ross.Slate1|Miyamoto|Huang|VanLange|Bauer,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +4479,-0.318499426555963,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,6,6,4,4,1,1,4,5,1,1,5,4,1,1,5,1,4,1,1,5,5,4,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Huang|Ross.Slate1|Inbar|Critcher|Kay|Miyamoto|Bauer|Hauser|Anderson|Graham|Rottenstrich|Alter,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +4482,-0.700082431237823,Low,ML2_Slate1_Turkish_execution_illegal_Bilgi_r.csv,bilgi,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,4,5,3,3,2,4,4,2,2,3,3,3,3,1,3,1,4,1,2,2,3,4,1,bilgi,bilgi,bilgi,Turkey,"Bilgi University, Istanbul, Turkey",Turkish,0,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Critcher|Huang|Kay|Hauser|Inbar|Anderson|Bauer|Miyamoto|Ross.Slate1|Graham|Rottenstrich|VanLange,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +4483,0.414763547495813,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,6,4,7,6,1,4,1,2,4,4,1,2,5,5,2,1,5,1,3,1,1,5,4,3,1,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Rottenstrich|Anderson|Huang|Miyamoto|Hauser|Alter|Kay|Ross.Slate1|Graham|Bauer|Critcher|VanLange,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,3,Global,all,TRUE +4484,-0.344590478243138,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,7,5,3,1,2,3,3,1,1,3,3,1,1,4,1,3,1,1,4,2,3,1,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Huang|Ross.Slate1|Kay|Inbar|Anderson|Rottenstrich|Alter|Miyamoto|Bauer|Critcher|Graham|Hauser,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing,6,Global,all,TRUE +4485,0.214013769104278,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,4,1,2,3,4,1,1,3,4,2,1,4,1,3,1,2,4,3,4,1,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Critcher|Hauser|Huang|Anderson|VanLange|Bauer|Graham|Alter|Inbar|Miyamoto|Rottenstrich|Kay,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,5,Global,all,TRUE +4487,-0.534926422355235,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,7,7,4,1,2,1,4,1,1,3,4,1,1,4,1,2,1,1,4,4,4,1,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Anderson|Ross.Slate1|VanLange|Miyamoto|Rottenstrich|Huang|Inbar|Kay|Critcher|Graham|Bauer|Hauser,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,2,Global,all,TRUE +4488,-0.0667410136235809,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,3,1,5,4,2,2,1,2,4,3,1,1,3,1,2,2,4,1,4,1,1,4,4,3,2,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Anderson|Graham|Huang|Critcher|Hauser|Inbar|Alter|VanLange|Rottenstrich|Miyamoto|Bauer|Kay,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing,2,Global,all,TRUE +4489,-0.173635254127582,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,7,7,6,3,1,1,1,1,1,1,2,3,1,1,4,1,1,1,1,2,3,4,1,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Huang|Bauer|Critcher|Ross.Slate1|Rottenstrich|Anderson|VanLange|Hauser|Miyamoto|Alter|Inbar|Graham,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +4490,0.683390744064868,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,6,2,1,2,1,2,1,1,2,3,2,1,4,1,4,1,2,2,4,2,1,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Kay|Graham|Anderson|Alter|Rottenstrich|Huang|VanLange|Miyamoto|Bauer|Inbar|Critcher|Ross.Slate1,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing,4,Global,all,TRUE +4491,0.792392118196669,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,7,5,1,1,2,1,1,1,1,1,4,1,1,4,1,1,1,1,1,2,4,1,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|VanLange|Rottenstrich|Ross.Slate1|Bauer|Hauser|Graham|Alter|Anderson|Critcher|Miyamoto|Huang|Inbar,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,9,Global,all,TRUE +4492,0.226405933109517,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,4,1,1,3,4,1,2,3,3,2,1,3,1,3,1,1,4,3,3,1,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Ross.Slate1|Hauser|Inbar|Rottenstrich|Critcher|Anderson|Huang|Graham|Alter|Miyamoto|Kay|VanLange,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,7,Global,all,TRUE +4493,0.59599238100517,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,4,1,1,4,4,1,1,4,2,1,1,4,1,4,1,1,4,3,4,1,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Bauer|Kay|Huang|Inbar|Graham|Hauser|VanLange|Critcher|Alter|Rottenstrich|Ross.Slate1|Miyamoto,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +4495,-0.0249568726038337,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Rottenstrich|Miyamoto|VanLange|Anderson|Bauer|Huang|Ross.Slate1|Inbar|Alter|Graham|Critcher|Kay,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,5,Global,all,TRUE +4497,-0.490897148292653,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,7,7,4,1,2,3,2,1,2,2,3,2,2,4,1,3,1,1,3,3,3,1,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Inbar|Graham|Hauser|Kay|Ross.Slate1|VanLange|Alter|Miyamoto|Critcher|Bauer|Huang|Rottenstrich,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing,1,Global,all,TRUE +4498,0.149028022580823,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,4,4,3,4,2,3,3,3,1,2,3,3,3,1,3,1,3,1,2,3,3,3,1,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|VanLange|Graham|Anderson|Ross.Slate1|Critcher|Hauser|Alter|Miyamoto|Kay|Huang|Bauer|Inbar,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,4,Global,all,TRUE +4500,-0.117087237628363,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,7,6,4,3,1,1,4,1,1,1,5,3,1,1,3,1,4,1,1,1,4,4,1,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Hauser|Anderson|Rottenstrich|Alter|Huang|Miyamoto|Bauer|Graham|Kay|Ross.Slate1|Inbar|Critcher,ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,3,Global,all,TRUE +4501,-1.11633666798733,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,1,3,4,4,5,2,4,4,5,2,4,2,2,3,5,3,4,5,3,4,2,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Graham|Huang|Bauer|Critcher|Inbar|Kay|Rottenstrich|Hauser|Miyamoto|Alter|Ross.Slate1|VanLange,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,1,Global,all,TRUE +4503,-0.19578329281739,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,7,6,6,4,1,2,3,2,1,1,4,4,1,1,5,1,5,1,1,5,5,4,1,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Graham|VanLange|Bauer|Alter|Critcher|Ross.Slate1|Huang|Miyamoto|Kay|Inbar|Hauser|Rottenstrich,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +4506,-1.03105685953907,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,2,2,3,1,4,1,2,2,4,1,1,2,1,1,2,1,1,1,2,2,3,2,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Alter|Graham|Kay|Hauser|Rottenstrich|Miyamoto|Bauer|Anderson|Critcher|Huang|VanLange|Ross.Slate1,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,9,Global,all,TRUE +4507,-0.848763038232171,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,3,2,2,2,3,1,2,2,3,2,1,4,3,2,1,2,4,3,3,1,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Kay|VanLange|Rottenstrich|Anderson|Miyamoto|Hauser|Alter|Bauer|Inbar|Critcher|Huang|Graham,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,5,Global,all,TRUE +4509,0.150612970558192,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,7,7,5,3,3,3,2,3,4,2,5,2,4,3,3,2,2,3,3,2,3,4,3,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Miyamoto|Hauser|Anderson|Critcher|Kay|Inbar|Rottenstrich|VanLange|Ross.Slate1|Bauer|Graham|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,4,Global,all,TRUE +4511,-0.310848460028594,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,3,1,1,1,3,1,2,2,4,1,1,3,1,1,1,1,3,3,3,1,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Kay|Graham|Alter|Hauser|Ross.Slate1|Rottenstrich|Inbar|Anderson|Huang|Bauer|Miyamoto|VanLange,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,9,Global,all,TRUE +4513,-0.771258549272079,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,6,6,4,3,1,4,4,1,4,4,5,1,1,5,1,3,1,2,5,4,4,1,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Rottenstrich|Graham|Anderson|Bauer|VanLange|Kay|Alter|Ross.Slate1|Huang|Hauser|Critcher|Inbar,ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,4,Global,all,TRUE +4514,-0.596220087273522,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,5,2,1,2,2,4,3,1,1,2,1,1,2,4,1,1,3,4,2,1,1,2,3,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Ross.Slate1|Miyamoto|Kay|Anderson|Critcher|Inbar|Bauer|Huang|Rottenstrich|Graham|Hauser|VanLange,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +4515,0.102893840361041,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,4,4,2,3,2,1,2,2,2,2,1,1,1,3,1,1,1,2,2,2,2,1,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|VanLange|Ross.Slate1|Huang|Graham|Bauer|Hauser|Rottenstrich|Anderson|Alter|Miyamoto|Kay|Critcher,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood,9,Global,all,TRUE +4517,1.33162484106058,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,6,6,2,4,3,3,3,1,1,1,3,5,1,1,4,1,3,2,2,3,4,4,1,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Critcher|Kay|Miyamoto|Bauer|Huang|Anderson|Inbar|Rottenstrich|Alter|VanLange|Graham|Hauser,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,7,Global,all,TRUE +4518,1.02424540001148,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,7,7,4,1,2,1,2,1,1,3,5,2,1,4,1,1,1,1,4,4,4,1,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Miyamoto|Ross.Slate1|VanLange|Graham|Rottenstrich|Kay|Bauer|Hauser|Huang|Inbar|Alter|Critcher,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing,1,Global,all,TRUE +4520,0.551443146762756,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,6,2,1,1,5,4,1,1,1,3,2,2,5,1,2,4,1,1,4,1,3,2,3,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Rottenstrich|Graham|Anderson|Ross.Slate1|Inbar|Huang|VanLange|Miyamoto|Bauer|Kay|Alter|Hauser,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,4,Global,all,TRUE +4521,0.980089547517498,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,6,2,1,2,1,1,1,1,1,3,1,1,3,1,1,1,1,1,3,1,1,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Critcher|Huang|Miyamoto|Ross.Slate1|Inbar|Hauser|Alter|Bauer|VanLange|Rottenstrich|Kay|Graham,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,1,Global,all,TRUE +4524,-0.331549550156069,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,5,4,2,2,1,3,2,2,2,2,2,3,3,3,3,1,1,2,2,2,2,2,1,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Anderson|Bauer|Alter|Rottenstrich|Hauser|Graham|VanLange|Inbar|Ross.Slate1|Critcher|Miyamoto|Kay,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,2,Global,all,TRUE +4525,0.00575324907100954,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,4,2,5,5,2,2,1,2,2,3,1,1,4,4,2,1,4,1,2,1,1,3,4,4,1,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Miyamoto|Alter|Huang|Inbar|VanLange|Graham|Anderson|Critcher|Hauser|Kay|Rottenstrich|Ross.Slate1,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +4526,-0.717613625410562,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,6,2,1,3,4,5,5,2,4,4,2,3,4,4,3,4,5,5,5,3,3,2,4,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Anderson|Rottenstrich|Ross.Slate1|Critcher|Miyamoto|Huang|VanLange|Graham|Bauer|Kay|Alter|Hauser,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood,2,Global,all,TRUE +4529,-1.59256419952418,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,5,4,2,3,4,5,4,2,4,4,4,2,4,1,4,1,3,5,4,4,1,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Huang|Bauer|Critcher|Hauser|Kay|Graham|Anderson|Inbar|Ross.Slate1|VanLange|Miyamoto|Alter,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing,8,Global,all,TRUE +4531,-0.782725950365416,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,5,5,4,1,1,2,3,1,1,4,3,1,1,4,1,2,1,1,3,3,4,1,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Miyamoto|Alter|Rottenstrich|Huang|Kay|Graham|Inbar|Ross.Slate1|Critcher|Anderson|VanLange|Hauser,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +4533,-0.0987692799587582,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,4,3,1,2,5,2,1,1,5,3,1,1,4,1,5,1,1,2,4,3,1,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Kay|Inbar|Critcher|Rottenstrich|Alter|Graham|VanLange|Ross.Slate1|Anderson|Huang|Bauer|Miyamoto,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,10,Global,all,TRUE +4534,0.864226195825793,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,3,2,2,4,1,2,3,3,2,1,4,3,3,3,4,1,4,2,2,4,3,5,3,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Bauer|VanLange|Graham|Ross.Slate1|Hauser|Kay|Miyamoto|Alter|Inbar|Rottenstrich|Critcher|Huang,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +4535,-0.0940258570102898,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,5,6,2,1,1,3,1,1,1,3,2,1,3,1,1,1,1,1,1,1,1,1,1,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Critcher|Huang|Rottenstrich|Miyamoto|Alter|Hauser|Anderson|Ross.Slate1|Kay|Inbar|Graham|VanLange,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,8,Global,all,TRUE +4537,-0.655662000897407,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,6,4,2,5,4,4,1,1,5,3,4,1,3,1,4,1,3,4,4,4,1,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|VanLange|Ross.Slate1|Graham|Critcher|Bauer|Inbar|Kay|Anderson|Huang|Rottenstrich|Miyamoto|Hauser,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,9,Global,all,TRUE +4538,-0.373853651355648,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,6,6,3,2,2,1,3,3,1,1,2,3,2,1,3,1,3,3,2,2,3,2,1,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|VanLange|Anderson|Hauser|Graham|Bauer|Kay|Ross.Slate1|Critcher|Alter|Inbar|Huang|Miyamoto,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,3,Global,all,TRUE +4540,-1.16773645880601,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,4,5,2,1,4,3,2,1,1,3,1,2,3,1,2,1,1,3,3,1,2,2,1,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Rottenstrich|Kay|Critcher|Inbar|Hauser|VanLange|Huang|Alter|Bauer|Anderson|Ross.Slate1|Graham,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,11,Global,all,TRUE +4542,-0.569860006798714,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,7,5,2,1,1,3,1,1,2,2,1,1,2,2,2,1,1,2,1,3,3,1,1,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Kay|Alter|VanLange|Inbar|Bauer|Rottenstrich|Ross.Slate1|Miyamoto|Huang|Graham|Critcher|Anderson,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,13,Global,all,TRUE +4543,-0.837422215570233,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,6,5,2,2,1,1,3,1,1,1,3,4,1,1,4,1,3,1,1,2,4,4,1,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Ross.Slate1|Critcher|Inbar|Alter|Huang|Bauer|Graham|Hauser|Kay|Miyamoto|Rottenstrich|Anderson,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,13,Global,all,TRUE +4544,-0.143191935769773,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,4,3,3,4,2,3,2,4,3,3,4,1,3,2,2,1,3,3,2,4,1,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Graham|Hauser|VanLange|Critcher|Inbar|Miyamoto|Bauer|Kay|Rottenstrich|Anderson|Ross.Slate1|Huang,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing,11,Global,all,TRUE +4545,-0.159936366445647,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,7,6,6,5,2,3,2,3,1,2,4,3,3,2,5,3,2,1,1,2,2,2,3,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Graham|Rottenstrich|Miyamoto|Hauser|VanLange|Bauer|Ross.Slate1|Inbar|Anderson|Kay|Huang|Alter,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,10,Global,all,TRUE +4546,0.800827622750305,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,6,4,6,6,5,3,1,1,2,3,1,1,3,3,1,1,4,1,2,1,1,3,4,4,1,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Hauser|Anderson|Bauer|Kay|Alter|Graham|Rottenstrich|Critcher|Ross.Slate1|Huang|Miyamoto|Inbar,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,3,Global,all,TRUE +4548,-1.04528935385507,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,4,1,2,3,2,3,1,2,1,2,3,1,2,3,2,1,3,1,1,3,1,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Rottenstrich|VanLange|Hauser|Kay|Graham|Bauer|Inbar|Miyamoto|Huang|Anderson|Ross.Slate1|Critcher,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,11,Global,all,TRUE +4549,-2.02713639394329,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,5,2,4,5,2,2,2,2,2,1,4,4,2,1,5,1,2,1,2,5,4,4,1,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Miyamoto|Rottenstrich|Critcher|Graham|Ross.Slate1|Inbar|Alter|Huang|Kay|VanLange|Bauer|Hauser,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +4550,0.767605564715593,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,2,1,4,3,1,3,4,4,2,3,1,5,4,2,5,1,2,1,2,5,4,2,1,4,2,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Kay|Critcher|VanLange|Rottenstrich|Bauer|Miyamoto|Anderson|Hauser|Inbar|Graham|Alter|Ross.Slate1,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,8,Global,all,TRUE +4552,-0.148595543783708,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,7,5,1,1,2,2,1,1,4,4,1,1,5,1,2,1,1,5,4,3,1,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Critcher|Kay|Hauser|Graham|VanLange|Inbar|Ross.Slate1|Miyamoto|Rottenstrich|Anderson|Bauer|Alter,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,11,Global,all,TRUE +4553,0.341204297003686,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,3,3,2,3,3,4,3,1,4,3,1,1,3,4,1,3,3,1,3,2,2,2,4,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Kay|VanLange|Huang|Miyamoto|Inbar|Ross.Slate1|Rottenstrich|Graham|Alter|Critcher|Anderson|Bauer,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,12,Global,all,TRUE +4556,-0.298200913689958,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,4,5,1,2,1,2,1,1,1,2,2,1,2,1,1,1,1,1,1,2,2,1,1,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Inbar|Graham|VanLange|Ross.Slate1|Hauser|Bauer|Miyamoto|Anderson|Critcher|Alter|Kay|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood,9,Global,all,TRUE +4558,0.880703823184632,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,5,5,2,1,3,2,2,1,2,3,1,4,4,3,3,2,2,1,3,1,2,4,1,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Rottenstrich|Huang|Kay|Anderson|Critcher|Hauser|Ross.Slate1|Graham|Alter|Inbar|Miyamoto|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five,5,Global,all,TRUE +4559,-0.234408958866038,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,2,3,2,3,4,2,1,1,4,3,2,1,2,1,4,1,1,3,4,1,1,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Alter|Inbar|Kay|Anderson|Critcher|Graham|Rottenstrich|Miyamoto|Huang|Hauser|Ross.Slate1|Bauer,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,5,Global,all,TRUE +4564,-1.01800451046836,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,5,5,3,4,3,3,4,1,1,1,4,4,1,1,4,3,4,1,1,3,2,2,1,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Alter|Miyamoto|Inbar|Rottenstrich|Ross.Slate1|Anderson|Graham|Huang|Critcher|Bauer|VanLange|Kay,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,7,Global,all,TRUE +4565,-0.284221576236752,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,6,3,3,3,2,1,4,1,1,1,3,4,1,1,4,1,4,1,1,1,2,4,1,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Hauser|Ross.Slate1|Miyamoto|Graham|Huang|Alter|VanLange|Anderson|Bauer|Rottenstrich|Inbar|Kay,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,9,Global,all,TRUE +4566,1.20416750984414,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,6,4,2,1,2,2,1,1,3,3,3,1,1,3,2,2,1,1,3,3,2,1,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Alter|Miyamoto|Inbar|Kay|Hauser|Huang|Anderson|Critcher|Rottenstrich|Ross.Slate1|VanLange|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,8,Global,all,TRUE +4567,-0.807903660124326,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,3,4,3,2,3,4,2,2,4,5,3,2,5,1,3,2,3,5,5,5,1,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Hauser|Rottenstrich|Kay|VanLange|Bauer|Graham|Miyamoto|Inbar|Huang|Anderson|Alter|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,11,Global,all,TRUE +4569,-0.825701657614098,Low,ML2_Slate1_Turkish_execution_illegal_Koc_r.csv,koc,,,,,,,,,,,,,,,,,,,,,,,,,,5,1,6,6,5,2,1,1,1,3,3,1,4,3,1,2,3,1,1,1,1,2,3,4,1,koc,koc,koc,Turkey,"Koç University, Istanbul, Turkey",Turkish,0,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Bauer|Critcher|Anderson|Miyamoto|Kay|Hauser|VanLange|Huang|Graham|Alter|Inbar|Ross.Slate1,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,4,Global,all,TRUE +4571,-0.0130960897620636,Low,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,3,5,3,4,2,1,2,3,3,3,2,2,3,1,4,1,2,1,3,3,2,1,2,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Alter|Kay|Hauser|Bauer|Ross.Slate1|Critcher|VanLange|Huang|Graham|Rottenstrich|Miyamoto,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,1,Global,all,TRUE +4578,-0.447932862027607,Low,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,7,6,5,2,2,4,3,2,2,5,5,2,2,4,2,3,2,2,4,4,3,3,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Miyamoto|Alter|Ross.Slate1|Huang|Kay|Bauer|Rottenstrich|Critcher|VanLange|Graham|Hauser,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,1,Global,all,TRUE +4579,-1.77735631073671,Low,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,6,7,5,1,5,5,5,1,1,5,5,1,1,5,1,5,1,1,5,5,5,1,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Huang|VanLange|Anderson|Kay|Ross.Slate1|Hauser|Rottenstrich|Critcher|Graham|Miyamoto|Alter,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,4,Global,all,TRUE +4582,-0.833870358850701,Low,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,7,6,4,5,1,3,4,3,1,3,4,4,1,1,5,1,5,3,2,3,4,4,1,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Ross.Slate1|Alter|Anderson|Hauser|Graham|Rottenstrich|Bauer|Critcher|Miyamoto|Kay|Huang,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing,4,Global,all,TRUE +4583,0.0259207325644172,Low,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,6,2,3,2,2,3,3,1,2,3,3,2,1,5,1,3,1,4,3,3,2,1,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Graham|Ross.Slate1|Rottenstrich|Critcher|Miyamoto|Anderson|Alter|Bauer|Kay|Huang|VanLange,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,7,Global,all,TRUE +4585,1.19915728357864,Low,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,6,7,5,1,5,2,2,1,1,3,1,2,1,1,2,2,3,4,1,1,1,1,1,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Graham|Bauer|Anderson|Kay|Huang|Alter|VanLange|Rottenstrich|Ross.Slate1|Hauser|Miyamoto,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,4,Global,all,TRUE +4586,-0.0034690189794924,Low,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,1,1,5,1,1,1,1,2,3,3,2,5,1,2,1,3,1,1,1,1,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Bauer|Graham|VanLange|Huang|Alter|Anderson|Rottenstrich|Kay|Hauser|Miyamoto|Ross.Slate1,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,7,Global,all,TRUE +4589,-0.771258549272079,Low,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,4,6,3,3,4,4,4,1,4,5,3,1,4,3,2,5,3,3,4,2,1,1,2,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Graham|Ross.Slate1|Huang|Alter|Miyamoto|Critcher|Kay|Anderson|VanLange|Rottenstrich|Bauer,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,9,Global,all,TRUE +4590,-2.3537585555739,Low,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,6,6,3,4,3,3,4,1,1,2,2,4,1,4,1,5,1,4,4,4,4,1,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Critcher|Miyamoto|Huang|Alter|Rottenstrich|Ross.Slate1|Kay|Bauer|Anderson|VanLange|Graham,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,10,Global,all,TRUE +4592,-0.121043897079965,Low,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,7,7,3,2,1,1,3,3,1,1,2,3,1,1,2,1,4,1,1,3,4,3,1,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Anderson|Graham|Alter|Kay|Rottenstrich|Ross.Slate1|Huang|VanLange|Miyamoto|Critcher|Bauer,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,2,Global,all,TRUE +4593,-0.771258549272079,Low,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,3,3,3,4,3,2,3,3,2,3,2,3,2,2,2,1,5,2,2,4,3,3,2,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Ross.Slate1|Graham|Bauer|Alter|Miyamoto|Anderson|Kay|Huang|VanLange|Critcher|Rottenstrich,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,7,Global,all,TRUE +4594,0.794637251239505,Low,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,3,5,2,3,2,2,3,1,1,1,1,2,1,1,2,1,3,1,1,1,1,1,1,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Rottenstrich|Critcher|Kay|Ross.Slate1|Anderson|Bauer|Graham|Miyamoto|Alter|Hauser|Huang,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,6,Global,all,TRUE +4595,-0.799468155570689,Low,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,5,5,4,3,1,1,2,2,1,1,2,3,2,1,2,1,3,1,1,1,3,3,1,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Bauer|Hauser|Ross.Slate1|VanLange|Rottenstrich|Anderson|Alter|Huang|Miyamoto|Critcher|Kay,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood,7,Global,all,TRUE +4597,-0.279084771539851,Low,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,,,,,,,,,,,,,,,,,,,,,,,,,,4,7,7,6,3,1,5,2,5,1,1,1,1,5,1,1,5,1,5,5,1,1,1,1,1,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Anderson|Kay|Hauser|Graham|Huang|VanLange|Ross.Slate1|Bauer|Critcher|Rottenstrich|Miyamoto,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,2,Global,all,TRUE +4602,-0.913353177536594,Low,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,5,6,3,3,3,1,2,1,1,1,3,2,1,1,2,1,4,4,2,2,1,4,1,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Alter|Miyamoto|Graham|VanLange|Bauer|Kay|Ross.Slate1|Critcher|Huang|Anderson|Hauser,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,11,Global,all,TRUE +4605,1.14380083330835,Low,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,1,1,1,2,3,5,4,2,5,5,1,1,5,5,3,5,4,1,5,2,3,1,5,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Kay|VanLange|Bauer|Ross.Slate1|Rottenstrich|Hauser|Alter|Graham|Anderson|Miyamoto|Critcher,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,10,Global,all,TRUE +4607,-1.20122309468716,Low,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,7,4,3,1,1,4,1,1,1,2,4,1,1,3,1,4,3,1,3,3,3,1,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Kay|Ross.Slate1|Bauer|Alter|Huang|Hauser|Rottenstrich|Anderson|Miyamoto|VanLange|Critcher,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing,9,Global,all,TRUE +4609,0.657817427086926,Low,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,6,5,4,4,2,1,1,4,1,3,4,2,1,1,4,1,1,2,1,3,3,4,1,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Ross.Slate1|Hauser|Rottenstrich|Anderson|Kay|Miyamoto|Graham|VanLange|Alter|Bauer|Critcher,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,5,Global,all,TRUE +4611,-0.361726065196845,Low,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,6,6,1,4,3,1,1,1,1,2,5,1,1,3,1,1,3,1,1,3,3,1,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Miyamoto|Alter|Kay|Graham|Huang|Bauer|Anderson|Rottenstrich|Critcher|Hauser|Ross.Slate1,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood,8,Global,all,TRUE +4613,-0.0741229513633171,Low,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,3,1,1,3,1,2,2,1,1,2,1,2,1,3,3,1,4,1,2,1,1,1,1,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Hauser|Critcher|Kay|Bauer|Graham|Rottenstrich|VanLange|Ross.Slate1|Anderson|Alter|Huang,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,10,Global,all,TRUE +4618,-0.81436083495216,Low,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,7,3,3,3,3,4,3,4,2,4,3,3,5,4,1,4,1,5,5,4,2,2,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Critcher|VanLange|Anderson|Miyamoto|Kay|Huang|Hauser|Graham|Bauer|Rottenstrich|Alter,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,4,Global,all,TRUE +4619,-0.552988997691442,Low,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,,,,,,,,,,,,,,,,,,,,,,,,,,2,7,7,5,3,4,1,1,5,3,1,1,3,4,1,1,5,1,5,1,1,4,5,3,1,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Rottenstrich|Critcher|Ross.Slate1|Alter|Anderson|Kay|Hauser|Huang|VanLange|Graham|Bauer,ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,6,Global,all,TRUE +4623,1.13285339239485,Low,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,,,,,,,,,,,,,,,,,,,,,,,,,,4,1,7,7,1,1,1,1,2,1,1,1,5,3,1,2,5,1,2,1,5,5,1,2,1,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Bauer|Graham|Anderson|Kay|Miyamoto|Alter|Rottenstrich|VanLange|Huang|Ross.Slate1|Hauser,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,4,Global,all,TRUE +4624,0.454429133904124,Low,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,,,,,,,,,,,,,,,,,,,,,,,,,,3,7,5,2,3,3,5,5,5,1,1,5,3,1,5,1,5,5,5,1,5,1,3,4,5,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Huang|Anderson|VanLange|Rottenstrich|Graham|Bauer|Hauser|Ross.Slate1|Miyamoto|Critcher|Alter,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,3,Global,all,TRUE +4628,0.262519662798295,Low,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,3,2,3,1,1,5,1,1,1,4,5,1,1,5,1,5,2,2,4,2,1,1,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Bauer|Alter|Ross.Slate1|Rottenstrich|Kay|Hauser|Graham|VanLange|Huang|Miyamoto|Anderson,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood,12,Global,all,TRUE +4629,0.105012394972477,Low,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,7,3,3,2,2,1,3,2,2,5,3,2,4,4,2,2,1,1,3,2,4,2,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Alter|VanLange|Huang|Miyamoto|Anderson|Kay|Graham|Hauser|Critcher|Ross.Slate1|Bauer,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood,6,Global,all,TRUE +4630,-0.661330186757777,Low,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,5,6,4,3,4,3,1,4,1,2,2,5,4,1,4,4,3,3,4,2,3,5,3,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Bauer|Graham|Kay|Huang|Anderson|Rottenstrich|Miyamoto|VanLange|Critcher|Hauser|Alter,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,6,Global,all,TRUE +4632,0.0442386902340216,Low,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,7,7,5,4,3,3,2,5,1,1,4,4,2,2,5,1,3,1,2,5,3,4,1,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Ross.Slate1|Huang|Anderson|VanLange|Critcher|Graham|Alter|Bauer|Kay|Rottenstrich|Miyamoto,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing,4,Global,all,TRUE +4633,0.299813537732372,Low,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,4,4,4,1,1,3,3,1,1,3,2,1,1,4,1,3,1,1,4,2,3,1,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Critcher|Huang|Kay|Anderson|Rottenstrich|Ross.Slate1|Bauer|Graham|Miyamoto|VanLange|Alter,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,5,Global,all,TRUE +4634,0.35122474953469,Low,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,,,,,,,,,,,,,,,,,,,,,,,,,,1,3,2,3,1,4,4,3,3,1,3,4,2,1,3,4,3,4,4,3,3,2,2,2,4,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Graham|Alter|Critcher|Anderson|VanLange|Ross.Slate1|Kay|Bauer|Hauser|Miyamoto|Huang,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,5,Global,all,TRUE +4638,0.159708660177295,Low,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,6,5,3,1,2,1,3,1,2,3,4,1,1,4,1,4,1,4,2,2,4,3,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Graham|Kay|Ross.Slate1|Hauser|Miyamoto|Alter|Anderson|VanLange|Bauer|Rottenstrich|Critcher,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,8,Global,all,TRUE +4639,-0.88790866446065,Low,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,4,2,3,5,3,3,3,4,3,3,4,3,4,2,4,3,4,2,4,4,4,3,2,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Hauser|Rottenstrich|Huang|VanLange|Miyamoto|Graham|Kay|Anderson|Bauer|Critcher|Alter,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,9,Global,all,TRUE +4642,-0.00492738852546186,Low,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,7,5,2,1,3,5,4,1,1,3,5,2,1,5,2,5,1,3,4,3,4,1,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Alter|Critcher|Bauer|VanLange|Hauser|Miyamoto|Huang|Rottenstrich|Ross.Slate1|Graham|Anderson,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,12,Global,all,TRUE +4645,0.0810126049882669,Low,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,6,5,3,1,1,3,3,1,1,3,3,2,1,4,1,4,2,3,3,3,3,2,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Ross.Slate1|Miyamoto|Huang|VanLange|Graham|Kay|Anderson|Rottenstrich|Alter|Bauer|Hauser,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,8,Global,all,TRUE +4648,0.63711633695945,Low,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,3,2,3,3,3,1,2,1,3,1,2,3,1,1,2,1,2,1,1,1,1,3,1,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Critcher|Miyamoto|Alter|Anderson|Bauer|Graham|Ross.Slate1|Rottenstrich|Kay|Hauser|Huang,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,5,Global,all,TRUE +4652,0.32196157642218,Low,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,5,2,2,2,2,2,3,2,1,2,4,3,1,1,2,1,3,1,1,3,2,3,1,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Ross.Slate1|Critcher|Alter|Miyamoto|VanLange|Rottenstrich|Bauer|Huang|Graham|Kay|Anderson,ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,12,Global,all,TRUE +4655,-0.250088401744374,Low,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,5,5,4,2,4,4,4,1,1,4,4,2,1,5,2,4,3,3,4,4,4,1,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Critcher|Miyamoto|Graham|Kay|Anderson|Huang|Hauser|Bauer|Rottenstrich|VanLange|Alter,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection,6,Global,all,TRUE +4656,0.176579669284567,Low,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,3,5,3,2,4,2,3,1,1,1,2,3,4,1,2,3,3,3,4,3,3,2,4,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Anderson|Miyamoto|VanLange|Ross.Slate1|Hauser|Rottenstrich|Huang|Critcher|Graham|Kay|Bauer,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood,2,Global,all,TRUE +4658,0.276752157114299,Low,ML2_Slate1_UAEEng_Inlab_execution_legal_r.csv,aus,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,5,4,7,4,1,1,4,1,1,2,5,4,1,1,3,1,5,1,3,1,4,4,1,aus,aus,aus,United Arab Emirates,"American University of Sharjah, United Arab Emirates",English,0,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|VanLange|Rottenstrich|Critcher|Graham|Kay|Bauer|Miyamoto|Hauser|Huang|Anderson|Ross.Slate1,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing,11,Global,all,TRUE +4662,0.750607977176922,Low,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,5,3,6,2,1,4,3,3,3,1,3,4,5,2,4,4,2,1,1,3,3,3,3,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Bauer|Huang|Ross.Slate1|Rottenstrich|Anderson|Inbar|Kay|Hauser|Alter|Graham|Miyamoto|Critcher,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +4665,-0.109843299303662,Low,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,,,,,,,,,,,,,,,,,,,,,,,,,,1,4,2,2,2,2,4,3,3,1,1,1,1,1,1,1,5,1,3,3,1,1,1,1,1,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Alter|Miyamoto|Graham|Hauser|Anderson|Inbar|VanLange|Bauer|Kay|Rottenstrich|Critcher|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five,6,Global,all,TRUE +4668,0.528775147893117,Low,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,3,3,1,1,2,3,1,1,2,1,1,1,3,1,4,1,1,3,1,4,1,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Kay|Huang|Anderson|VanLange|Graham|Inbar|Critcher|Rottenstrich|Hauser|Alter|Miyamoto|Bauer,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,4,Global,all,TRUE +4671,-0.0357640886317036,Low,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,6,6,3,1,4,3,4,1,1,3,3,1,1,5,1,3,2,1,3,4,5,1,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Rottenstrich|Huang|Miyamoto|Anderson|Ross.Slate1|Inbar|Alter|VanLange|Bauer|Kay|Hauser|Graham,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,5,Global,all,TRUE +4672,-0.0605506421127801,Low,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,7,7,4,3,3,3,3,3,3,3,3,3,3,2,4,3,3,2,2,3,3,3,3,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Huang|Graham|Critcher|Hauser|Ross.Slate1|VanLange|Alter|Inbar|Anderson|Miyamoto|Kay|Bauer,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,10,Global,all,TRUE +4675,-0.595293098891021,Low,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,,,,,,,,,,,,,,,,,,,,,,,,,,1,4,5,2,1,3,3,3,2,2,3,3,2,4,3,1,4,1,2,1,3,1,3,3,2,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Inbar|Alter|Ross.Slate1|VanLange|Kay|Graham|Rottenstrich|Anderson|Bauer|Critcher|Huang|Miyamoto,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,9,Global,all,TRUE +4678,1.14392741173975,Low,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,4,5,3,1,1,4,1,1,1,2,3,1,1,3,1,4,3,1,3,2,1,1,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Anderson|Inbar|Huang|Miyamoto|VanLange|Critcher|Alter|Bauer|Hauser|Ross.Slate1|Rottenstrich|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,2,Global,all,TRUE +4679,0.147581074018491,Low,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,7,3,7,3,2,1,3,4,1,1,4,3,3,1,3,3,3,1,1,4,3,3,3,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Huang|Alter|Kay|Hauser|Rottenstrich|Graham|VanLange|Miyamoto|Bauer|Ross.Slate1|Anderson|Critcher,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +4684,0.695644908655071,Low,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,2,4,3,3,4,3,3,3,3,4,4,3,3,3,4,3,3,3,4,3,3,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Kay|Rottenstrich|VanLange|Ross.Slate1|Critcher|Inbar|Graham|Alter|Miyamoto|Hauser|Anderson|Huang,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,12,Global,all,TRUE +4690,0.806357809195639,Low,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,6,3,3,3,3,3,1,3,3,3,3,2,4,2,3,1,1,1,3,3,1,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Rottenstrich|Alter|Ross.Slate1|Miyamoto|Hauser|Graham|Huang|Inbar|Bauer|Critcher|VanLange|Kay,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,1,Global,all,TRUE +4691,0.601002607270672,Low,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,3,2,3,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Inbar|VanLange|Graham|Alter|Anderson|Ross.Slate1|Bauer|Critcher|Hauser|Rottenstrich|Kay|Huang,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,6,Global,all,TRUE +4692,-0.179965850524018,Low,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,2,5,4,1,3,3,1,1,2,1,2,2,1,1,2,1,2,1,1,1,2,2,2,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Anderson|Rottenstrich|Ross.Slate1|Bauer|Kay|Alter|VanLange|Graham|Huang|Inbar|Hauser|Miyamoto,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,2,Global,all,TRUE +4695,-0.796829640779422,Low,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,4,3,2,2,2,2,1,1,1,1,1,1,1,3,1,3,1,1,1,1,1,1,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Miyamoto|Graham|Alter|Bauer|Huang|Kay|Anderson|Hauser|Critcher|Inbar|Rottenstrich|Ross.Slate1,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +4697,1.09568609589217,Low,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,4,4,3,3,3,5,2,2,4,4,2,2,3,4,3,4,2,1,3,2,2,2,4,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Ross.Slate1|Inbar|Kay|Huang|Anderson|Alter|VanLange|Rottenstrich|Hauser|Miyamoto|Critcher|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,6,Global,all,TRUE +4701,-0.0688459217807811,Low,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,,,,,,,,,,,,,,,,,,,,,,,,,,1,3,3,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Huang|Hauser|Bauer|Miyamoto|Anderson|Inbar|Kay|Rottenstrich|Graham|Ross.Slate1|VanLange|Alter,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,6,Global,all,TRUE +4703,-0.114322144405696,Low,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,3,2,2,3,4,4,3,3,3,4,3,2,2,1,3,2,3,1,1,1,3,2,2,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Bauer|Graham|Kay|Alter|Inbar|Critcher|Anderson|Miyamoto|Huang|Rottenstrich|VanLange|Hauser,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,8,Global,all,TRUE +4705,-0.452144903812607,Low,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Huang|Anderson|Miyamoto|Ross.Slate1|VanLange|Bauer|Critcher|Rottenstrich|Alter|Hauser|Inbar|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,3,Global,all,TRUE +4706,0.531807044432817,Low,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,6,3,2,2,4,3,2,2,3,2,2,2,3,2,4,1,1,3,3,3,3,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Miyamoto|Kay|Bauer|Rottenstrich|Anderson|Inbar|Huang|Hauser|Ross.Slate1|Alter|Graham|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing,6,Global,all,TRUE +4707,0.0894481095419026,Low,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,4,3,2,5,2,3,4,5,2,2,4,3,2,2,4,3,3,4,3,4,5,3,2,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Bauer|Critcher|Kay|Rottenstrich|Inbar|VanLange|Graham|Hauser|Ross.Slate1|Anderson|Miyamoto|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,11,Global,all,TRUE +4710,-0.151360637006376,Low,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,5,3,2,3,5,5,3,3,1,3,5,5,3,4,5,4,5,2,1,3,5,2,5,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Anderson|Alter|Huang|Rottenstrich|Hauser|Graham|Ross.Slate1|Critcher|VanLange|Kay|Bauer|Inbar,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,2,Global,all,TRUE +4713,-0.788927742859853,Low,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,4,2,1,1,4,4,3,1,3,5,1,1,3,2,3,3,4,2,4,1,1,1,4,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Rottenstrich|Miyamoto|Bauer|Kay|Ross.Slate1|Inbar|Anderson|Hauser|Alter|Graham|Critcher|Huang,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood,8,Global,all,TRUE +4714,0.209268120685211,Low,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,5,5,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Graham|Alter|Hauser|Miyamoto|Huang|Critcher|Rottenstrich|Anderson|Ross.Slate1|VanLange|Bauer|Inbar,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood,9,Global,all,TRUE +4720,1.36233496273542,Low,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,4,2,1,3,1,1,1,3,3,1,1,5,1,4,1,1,2,1,1,1,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Critcher|Inbar|Graham|Miyamoto|Bauer|Alter|Anderson|Hauser|Kay|Rottenstrich|VanLange|Huang,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,8,Global,all,TRUE +4721,0.594812235759871,Low,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,4,3,7,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Hauser|Critcher|Kay|Rottenstrich|Huang|Bauer|Inbar|Anderson|VanLange|Alter|Miyamoto|Graham,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,9,Global,all,TRUE +4722,0.282549146876667,Low,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,5,4,2,2,3,4,2,2,3,4,3,2,3,3,4,1,1,4,4,3,3,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|VanLange|Kay|Huang|Rottenstrich|Miyamoto|Ross.Slate1|Critcher|Bauer|Anderson|Alter|Graham|Hauser,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,10,Global,all,TRUE +4723,-0.0546134274647767,Low,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,5,5,1,1,2,1,1,1,1,2,1,3,1,2,4,1,3,1,1,1,2,1,2,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Rottenstrich|Ross.Slate1|VanLange|Graham|Hauser|Critcher|Bauer|Kay|Miyamoto|Alter|Anderson|Huang,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,12,Global,all,TRUE +4727,0.0587379878670597,Low,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,5,3,5,2,3,2,3,2,3,1,2,2,3,2,3,2,2,1,1,2,1,2,3,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Rottenstrich|Alter|VanLange|Ross.Slate1|Kay|Critcher|Miyamoto|Huang|Graham|Inbar|Bauer|Hauser,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,1,Global,all,TRUE +4729,-0.576050378309516,Low,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Inbar|Rottenstrich|Critcher|Alter|Huang|Hauser|Graham|Miyamoto|Kay|VanLange|Bauer|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,1,Global,all,TRUE +4730,-0.0407743148972056,Low,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Graham|Bauer|VanLange|Huang|Hauser|Alter|Critcher|Ross.Slate1|Rottenstrich|Anderson|Inbar|Kay,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,11,Global,all,TRUE +4735,-0.865505243437445,Low,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,6,6,2,3,1,2,1,1,1,1,1,1,1,5,1,1,1,1,1,5,1,1,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Kay|Huang|Anderson|Graham|Miyamoto|Alter|Inbar|Critcher|Hauser|Ross.Slate1|Rottenstrich|VanLange,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,4,Global,all,TRUE +4748,0.260934714820927,Low,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,5,3,4,1,1,5,2,1,2,2,3,2,2,2,2,4,2,1,1,1,1,1,3,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Bauer|Anderson|Hauser|Critcher|Graham|Alter|Rottenstrich|Huang|Kay|Ross.Slate1|Inbar|Miyamoto,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,3,Global,all,TRUE +4749,0.00614663081944237,Low,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,4,2,1,1,2,3,1,1,1,2,2,1,1,2,1,3,1,2,1,2,1,1,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Critcher|VanLange|Rottenstrich|Bauer|Huang|Inbar|Alter|Kay|Ross.Slate1|Miyamoto|Hauser|Anderson,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing,13,Global,all,TRUE +4752,-0.364631383305146,Low,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,6,1,2,1,1,3,1,1,4,4,1,1,3,1,3,1,1,3,1,2,1,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Rottenstrich|Graham|Ross.Slate1|Miyamoto|VanLange|Critcher|Alter|Inbar|Anderson|Kay|Hauser|Huang,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing,10,Global,all,TRUE +4753,-0.380577629500517,Low,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,5,3,2,2,3,5,1,1,3,3,1,1,5,1,3,1,2,3,4,4,1,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Miyamoto|Alter|Ross.Slate1|Critcher|Graham|Anderson|Bauer|Inbar|VanLange|Rottenstrich|Hauser|Huang,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,7,Global,all,TRUE +4756,-0.771258549272079,Low,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,3,4,3,3,3,1,2,1,2,2,2,3,3,1,3,1,3,1,1,2,2,2,1,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Graham|Alter|Hauser|Anderson|Kay|VanLange|Inbar|Miyamoto|Bauer|Ross.Slate1|Critcher|Rottenstrich,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,5,Global,all,TRUE +4757,0.454822515652557,Low,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,5,2,1,2,2,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Miyamoto|Graham|Alter|Anderson|Hauser|Bauer|VanLange|Kay|Huang|Inbar|Ross.Slate1|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,5,Global,all,TRUE +4758,1.01620327720628,Low,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,5,5,4,2,3,3,4,3,2,4,4,3,3,4,3,3,3,2,4,5,4,2,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|VanLange|Miyamoto|Kay|Ross.Slate1|Bauer|Huang|Rottenstrich|Alter|Hauser|Inbar|Critcher|Graham,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +4759,-0.342876726363771,Low,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,,,,,,,,,,,,,,,,,,,,,,,,,,1,4,4,2,1,1,1,1,1,1,2,1,1,1,1,2,2,1,1,1,1,1,1,1,1,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Inbar|Anderson|Bauer|Kay|Rottenstrich|Miyamoto|Huang|Alter|Hauser|Graham|Critcher|VanLange,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,3,Global,all,TRUE +4760,0.343842811794954,Low,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,5,3,4,1,1,4,5,1,2,4,4,3,1,5,1,4,1,2,5,4,5,3,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|VanLange|Alter|Critcher|Kay|Bauer|Huang|Ross.Slate1|Rottenstrich|Miyamoto|Graham|Hauser|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,13,Global,all,TRUE +4762,0.661636087123493,Low,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,7,6,4,4,3,5,4,1,3,4,5,4,1,5,2,5,3,4,4,4,5,4,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Anderson|VanLange|Huang|Bauer|Ross.Slate1|Rottenstrich|Hauser|Graham|Inbar|Miyamoto|Alter|Kay,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,2,Global,all,TRUE +4763,0.700655134920573,Low,ML2_Slate1_USEng_execution_legal_DEPLOY__hawaiion_r.csv,hawaiion,,,,,,,,,,,,,,,,,,,,,,,,,,1,4,7,6,6,5,1,1,5,5,1,1,5,5,1,1,5,1,5,1,1,5,5,5,1,hawaiion,hawaiion,hawaiion,USA,"University of Hawaii, Honolulu, HI",English,1,legal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Huang|Ross.Slate1|Kay|Miyamoto|Inbar|Critcher|Graham|Alter|Hauser|Anderson|Bauer|VanLange,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +4764,0.806357809195639,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,5,7,5,4,1,1,1,4,1,1,1,4,1,1,3,1,3,1,1,5,5,4,1,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Huang|Anderson|Hauser|Graham|Kay|Bauer|Rottenstrich|Alter|Critcher|VanLange|Ross.Slate1|Inbar,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,3,Global,all,TRUE +4766,-0.444369584324437,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,6,3,1,1,2,3,1,1,2,3,2,3,4,2,3,1,2,4,5,2,2,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Bauer|Alter|Hauser|VanLange|Graham|Critcher|Inbar|Miyamoto|Anderson|Kay|Huang|Rottenstrich,ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +4769,-0.174295439193049,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,7,6,2,1,1,1,3,1,2,3,2,1,1,3,1,2,1,2,3,1,2,1,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Hauser|Huang|Graham|Critcher|Rottenstrich|Kay|Anderson|Bauer|VanLange|Inbar|Miyamoto|Ross.Slate1,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,8,Global,all,TRUE +4771,-0.686116740238853,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,3,2,1,1,3,1,1,1,1,3,1,1,1,1,3,1,1,1,3,1,1,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Inbar|Alter|Rottenstrich|VanLange|Hauser|Ross.Slate1|Anderson|Miyamoto|Critcher|Kay|Graham|Huang,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +4775,-0.892258705660685,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,5,4,5,4,1,4,3,2,1,3,2,1,4,2,2,1,4,1,4,2,1,1,1,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Inbar|Hauser|Kay|Alter|Graham|Bauer|Huang|Critcher|Anderson|Miyamoto|Rottenstrich|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,10,Global,all,TRUE +4776,0.429909383740081,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,4,4,4,3,5,2,2,5,4,3,2,5,5,4,1,2,5,3,4,3,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Ross.Slate1|Inbar|Critcher|Hauser|Miyamoto|Rottenstrich|Graham|Alter|VanLange|Bauer|Kay|Anderson,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,13,Global,all,TRUE +4777,0.932241613418349,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,4,3,1,4,1,1,1,1,1,2,2,1,1,1,2,1,1,1,1,1,1,1,1,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Critcher|Kay|Bauer|Rottenstrich|Alter|Inbar|VanLange|Miyamoto|Huang|Ross.Slate1|Anderson|Graham,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,12,Global,all,TRUE +4778,0.400390828294174,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,4,1,1,2,4,1,1,3,4,1,1,3,1,3,1,1,2,4,1,1,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Critcher|Graham|Bauer|VanLange|Inbar|Miyamoto|Ross.Slate1|Anderson|Hauser|Rottenstrich|Alter|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood,9,Global,all,TRUE +4780,-0.171136964221949,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,5,4,2,3,3,1,4,4,4,3,2,3,4,4,2,3,3,1,3,2,2,2,2,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Anderson|Graham|Inbar|VanLange|Kay|Alter|Rottenstrich|Hauser|Ross.Slate1|Critcher|Miyamoto|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,2,Global,all,TRUE +4781,0.299686959300973,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,7,2,3,3,2,3,2,1,2,3,4,2,1,4,1,4,1,2,2,1,4,2,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Alter|Inbar|Critcher|Huang|Ross.Slate1|VanLange|Miyamoto|Rottenstrich|Hauser|Kay|Bauer|Anderson,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing,13,Global,all,TRUE +4783,-0.890544953781319,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,7,7,4,1,1,3,2,1,1,2,4,2,1,2,1,4,1,1,2,3,2,1,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Rottenstrich|Kay|Anderson|Miyamoto|Hauser|Bauer|Ross.Slate1|Critcher|VanLange|Graham|Alter|Huang,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,4,Global,all,TRUE +4790,-0.642480847924704,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,4,6,2,4,1,1,4,2,1,1,4,2,1,1,3,1,4,1,5,3,5,4,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Rottenstrich|Graham|Huang|Ross.Slate1|Miyamoto|Critcher|Alter|VanLange|Inbar|Bauer|Anderson|Kay,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,12,Global,all,TRUE +4793,0.176046062650499,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,4,3,2,1,1,1,3,1,1,1,1,1,1,1,1,1,4,1,1,2,1,1,1,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Critcher|Kay|Miyamoto|Graham|Hauser|Inbar|Anderson|Ross.Slate1|VanLange|Bauer|Alter|Huang,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,8,Global,all,TRUE +4799,-0.373333691175817,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,6,1,3,1,2,1,2,4,1,2,2,1,3,3,1,1,2,1,1,3,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Ross.Slate1|Anderson|Huang|VanLange|Kay|Hauser|Miyamoto|Inbar|Graham|Rottenstrich|Critcher|Alter,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,3,Global,all,TRUE +4801,0.858822587811858,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,5,2,3,1,2,2,1,1,1,2,1,1,1,1,2,1,2,1,1,1,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|VanLange|Inbar|Critcher|Huang|Anderson|Rottenstrich|Kay|Alter|Hauser|Ross.Slate1|Graham|Bauer,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,6,Global,all,TRUE +4802,0.880577244753233,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,3,2,1,3,2,1,1,2,3,1,1,4,1,3,1,1,1,4,3,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Hauser|Kay|Miyamoto|VanLange|Ross.Slate1|Huang|Critcher|Inbar|Bauer|Alter|Anderson|Rottenstrich,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,12,Global,all,TRUE +4803,0.216778862326945,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,6,5,5,2,4,4,2,1,3,4,2,3,3,2,1,3,2,3,4,2,2,1,4,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Huang|Kay|Critcher|Inbar|VanLange|Hauser|Alter|Ross.Slate1|Bauer|Rottenstrich|Anderson|Graham,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,12,Global,all,TRUE +4805,0.357415121045491,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,5,6,2,4,2,2,1,2,4,1,1,1,3,3,1,3,2,1,2,1,1,1,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Kay|VanLange|Bauer|Rottenstrich|Anderson|Huang|Alter|Hauser|Graham|Ross.Slate1|Critcher|Inbar,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,6,Global,all,TRUE +4807,1.01013948412687,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,7,5,3,1,1,2,1,1,1,3,1,1,1,3,1,2,1,1,1,2,2,1,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|VanLange|Miyamoto|Bauer|Alter|Huang|Hauser|Anderson|Ross.Slate1|Critcher|Graham|Rottenstrich|Kay,ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,8,Global,all,TRUE +4809,0.473545276054231,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,7,6,4,3,1,1,4,1,1,1,1,1,1,1,1,1,4,1,1,1,1,1,1,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Miyamoto|Inbar|Anderson|Critcher|Graham|Hauser|Bauer|Rottenstrich|Ross.Slate1|Alter|Kay|VanLange,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +4813,0.548678053540089,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,7,2,3,2,3,2,2,2,1,2,2,2,2,3,2,2,1,3,3,2,1,2,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Ross.Slate1|Kay|Bauer|Huang|Anderson|Miyamoto|Hauser|Graham|VanLange|Rottenstrich|Alter|Critcher,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,6,Global,all,TRUE +4815,-0.536640174234602,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,2,2,2,2,4,2,1,4,5,1,2,3,1,3,1,1,4,4,3,1,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Inbar|Huang|Critcher|Anderson|Rottenstrich|Graham|Miyamoto|Alter|Kay|VanLange|Bauer|Ross.Slate1,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,5,Global,all,TRUE +4816,0.489756100096036,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,6,5,7,4,1,1,2,1,1,1,1,2,1,1,2,1,3,1,1,1,1,1,1,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Huang|Miyamoto|Ross.Slate1|VanLange|Hauser|Anderson|Kay|Graham|Alter|Bauer|Rottenstrich|Critcher,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +4821,-0.0801867444427187,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,6,6,5,5,2,4,4,5,1,1,4,4,2,1,5,1,5,1,3,5,3,3,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Hauser|Critcher|Inbar|Kay|Anderson|VanLange|Miyamoto|Bauer|Ross.Slate1|Rottenstrich|Graham|Huang,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,6,Global,all,TRUE +4822,0.0247291663354819,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,6,5,4,1,1,1,1,1,1,3,3,1,1,3,1,3,1,1,1,1,3,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Inbar|Critcher|Kay|VanLange|Hauser|Miyamoto|Bauer|Graham|Anderson|Alter|Huang|Ross.Slate1,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,10,Global,all,TRUE +4827,0.365990850484762,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,3,4,1,3,3,3,2,3,1,3,2,2,2,3,2,2,4,2,4,4,2,3,3,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Inbar|Bauer|Huang|Miyamoto|Anderson|Rottenstrich|Alter|Graham|Kay|Critcher|Hauser|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,6,Global,all,TRUE +4829,0.111062541597643,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,4,4,4,4,4,1,2,5,3,4,2,4,4,4,1,4,5,4,4,4,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Kay|Graham|Alter|Rottenstrich|VanLange|Ross.Slate1|Anderson|Critcher|Hauser|Inbar|Bauer|Miyamoto,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,8,Global,all,TRUE +4830,-0.448986428841507,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,6,6,4,2,2,4,5,1,2,4,4,3,3,4,3,4,1,3,4,4,4,1,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Alter|Huang|Anderson|Miyamoto|Bauer|Rottenstrich|Inbar|Graham|VanLange|Ross.Slate1|Kay|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five,4,Global,all,TRUE +4833,-1.15166363417924,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,6,6,2,2,1,1,1,1,1,2,1,1,1,1,2,2,1,1,1,1,3,2,2,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Ross.Slate1|Bauer|Critcher|Rottenstrich|Hauser|Graham|Alter|Miyamoto|Inbar|Huang|Anderson|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,12,Global,all,TRUE +4834,-0.0269352023296346,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,7,7,7,5,3,1,5,4,1,1,4,4,1,1,5,1,5,1,1,3,3,4,2,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Critcher|Rottenstrich|Kay|Alter|Ross.Slate1|Inbar|Anderson|Huang|VanLange|Miyamoto|Hauser|Bauer,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,8,Global,all,TRUE +4838,0.4823741623563,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,5,3,1,1,4,3,1,1,5,4,3,1,5,1,3,1,2,3,3,5,3,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|VanLange|Critcher|Anderson|Inbar|Miyamoto|Rottenstrich|Hauser|Huang|Kay|Graham|Alter|Ross.Slate1,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,4,Global,all,TRUE +4840,0.0529409981046916,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,2,4,1,4,1,4,2,2,4,5,1,1,4,1,1,1,1,2,3,3,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Graham|Miyamoto|Anderson|Hauser|Alter|Critcher|Huang|Kay|Rottenstrich|Inbar|Ross.Slate1|Bauer,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,4,Global,all,TRUE +4842,-0.673724576233615,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,6,6,6,3,1,1,3,3,1,2,2,1,2,1,3,1,3,1,2,3,3,1,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Anderson|Alter|Hauser|Rottenstrich|Ross.Slate1|Huang|VanLange|Critcher|Inbar|Miyamoto|Bauer|Kay,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,2,Global,all,TRUE +4843,0.277538920611165,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,6,5,3,1,1,3,2,1,1,1,3,1,1,2,1,4,1,2,3,2,2,1,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Alter|Kay|VanLange|Huang|Ross.Slate1|Hauser|Anderson|Inbar|Graham|Critcher|Miyamoto|Rottenstrich,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood,8,Global,all,TRUE +4844,-0.497365744104124,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,2,5,5,2,1,4,3,1,3,1,2,1,1,3,2,1,2,1,1,2,3,1,1,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Rottenstrich|Bauer|Inbar|Anderson|Hauser|Alter|Graham|Kay|Huang|Critcher|Ross.Slate1|VanLange,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing,5,Global,all,TRUE +4846,0.327238606004716,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,,,,,,,,,,,,,,,,,,,,,,,,,,3,7,6,6,5,3,1,1,3,1,1,1,1,2,1,1,4,1,4,1,1,2,1,1,1,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Miyamoto|Huang|Kay|Graham|Ross.Slate1|Hauser|Bauer|Anderson|Critcher|Inbar|Rottenstrich|VanLange,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +4847,0.645551841513086,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,7,6,5,2,1,1,3,1,1,1,1,2,1,1,3,1,2,1,2,2,2,1,1,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|VanLange|Huang|Critcher|Bauer|Kay|Rottenstrich|Anderson|Inbar|Hauser|Graham|Miyamoto|Alter,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,8,Global,all,TRUE +4849,0.576229700243832,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,3,4,3,4,1,3,3,1,3,4,3,3,4,3,4,4,2,3,1,3,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Miyamoto|Critcher|Alter|Ross.Slate1|Bauer|Rottenstrich|Anderson|Inbar|Hauser|VanLange|Kay|Huang,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +4852,-1.09418862929752,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,3,6,1,2,2,3,2,1,2,2,1,2,3,3,2,3,1,1,4,1,2,2,1,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Hauser|Graham|Anderson|Bauer|Critcher|VanLange|Miyamoto|Alter|Ross.Slate1|Kay|Huang|Rottenstrich,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection,4,Global,all,TRUE +4853,-0.58607083084052,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,5,3,2,2,2,1,2,1,1,1,1,1,1,1,3,1,3,1,1,2,1,2,1,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Critcher|Kay|Graham|Miyamoto|Bauer|Ross.Slate1|Rottenstrich|Huang|Alter|Hauser|VanLange|Anderson,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,13,Global,all,TRUE +4855,0.565282259330327,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,5,5,1,1,3,2,2,3,2,3,3,1,2,3,1,1,1,2,2,2,3,1,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Bauer|Critcher|Alter|Rottenstrich|Graham|Huang|VanLange|Hauser|Anderson|Ross.Slate1|Kay|Miyamoto,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing,10,Global,all,TRUE +4856,1.0941011479148,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,5,5,4,1,2,1,1,1,1,1,4,2,1,4,1,2,1,1,1,1,1,1,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Inbar|Anderson|Rottenstrich|Graham|Critcher|Hauser|Bauer|Kay|Ross.Slate1|VanLange|Miyamoto|Alter,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +4857,-0.614535819472528,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,,,,,,,,,,,,,,,,,,,,,,,,,,1,3,3,4,2,4,3,2,4,2,5,4,2,1,1,4,3,1,4,1,2,3,4,2,1,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Anderson|Ross.Slate1|Bauer|VanLange|Miyamoto|Rottenstrich|Graham|Critcher|Hauser|Alter|Huang|Inbar,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,2,Global,all,TRUE +4859,-0.688223873866652,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,5,5,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Huang|Rottenstrich|Hauser|Inbar|Critcher|Anderson|Ross.Slate1|Alter|Bauer|Graham|Kay|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,7,Global,all,TRUE +4860,0.731365256595416,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,4,5,2,3,2,2,3,3,1,1,2,3,1,1,5,1,4,1,2,3,4,3,1,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Inbar|Miyamoto|Rottenstrich|Critcher|Alter|Kay|Hauser|Graham|Ross.Slate1|VanLange|Bauer|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,13,Global,all,TRUE +4861,-0.528202444210366,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,3,3,3,2,1,2,2,2,2,3,3,1,3,2,3,2,1,2,3,1,2,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Rottenstrich|Graham|Alter|Miyamoto|Kay|Anderson|Huang|Inbar|VanLange|Critcher|Bauer|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,7,Global,all,TRUE +4865,0.178026617846899,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,6,5,4,2,1,3,4,2,2,4,4,2,2,4,1,3,1,1,4,4,4,1,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Hauser|Bauer|Huang|Graham|Critcher|Rottenstrich|VanLange|Inbar|Miyamoto|Alter|Kay|Anderson,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,13,Global,all,TRUE +4869,0.287826176459203,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,6,6,5,1,2,1,3,1,1,1,1,3,1,1,2,1,1,1,1,1,1,1,1,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Critcher|Inbar|Huang|Graham|Bauer|Anderson|Hauser|Miyamoto|Kay|Alter|VanLange|Rottenstrich,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,7,Global,all,TRUE +4870,1.35152774670755,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,6,5,3,5,2,1,4,4,2,1,3,3,4,2,5,1,4,1,3,3,3,4,1,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Inbar|Rottenstrich|Anderson|Critcher|Alter|VanLange|Bauer|Graham|Kay|Miyamoto|Ross.Slate1|Hauser,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five,4,Global,all,TRUE +4871,-0.124609400253734,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,2,2,3,4,1,1,2,1,1,3,1,4,1,4,1,3,1,1,1,2,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Huang|Rottenstrich|Ross.Slate1|Bauer|Inbar|Graham|Hauser|Kay|VanLange|Anderson|Critcher|Alter,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +4874,-0.749908695062773,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,6,6,1,1,1,2,1,1,1,2,4,2,1,4,4,3,1,1,1,1,1,3,3,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|VanLange|Huang|Anderson|Rottenstrich|Bauer|Hauser|Kay|Graham|Critcher|Ross.Slate1|Alter|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,4,Global,all,TRUE +4875,-1.36611452572331,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,5,3,2,1,4,4,1,2,1,4,4,2,4,1,4,4,4,4,2,3,1,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Critcher|Hauser|VanLange|Graham|Miyamoto|Anderson|Ross.Slate1|Huang|Inbar|Bauer|Alter|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,7,Global,all,TRUE +4877,0.706185321365907,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,5,5,5,5,2,2,4,3,1,1,4,3,2,1,5,1,3,2,1,3,3,4,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Rottenstrich|Inbar|Critcher|Ross.Slate1|Graham|Kay|Miyamoto|Huang|Anderson|VanLange|Alter|Hauser,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +4878,0.6839107042447,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,5,2,1,1,4,1,1,1,1,1,1,1,3,1,4,1,1,2,1,1,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Hauser|Alter|Rottenstrich|Bauer|Miyamoto|Ross.Slate1|Huang|Inbar|Critcher|Anderson|Graham|VanLange,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing,11,Global,all,TRUE +4880,0.983514825805632,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,4,4,3,4,4,3,5,5,4,2,5,4,5,1,4,4,3,3,5,4,4,4,5,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Rottenstrich|Kay|Critcher|VanLange|Ross.Slate1|Graham|Bauer|Anderson|Miyamoto|Inbar|Alter|Hauser,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,9,Global,all,TRUE +4883,-1.13452804722553,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,7,3,4,2,1,4,1,1,1,1,1,1,1,3,1,4,1,1,1,3,1,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|VanLange|Ross.Slate1|Huang|Anderson|Hauser|Kay|Bauer|Rottenstrich|Miyamoto|Graham|Alter|Critcher,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE,5,Global,all,TRUE +4884,1.04111640911875,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,6,4,1,1,4,1,1,1,1,4,1,1,4,1,4,1,1,1,1,4,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Anderson|Huang|Hauser|Rottenstrich|VanLange|Bauer|Alter|Critcher|Graham|Ross.Slate1|Inbar|Miyamoto,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,2,Global,all,TRUE +4885,-0.157424430085777,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,5,5,1,3,5,3,1,1,4,5,3,1,5,2,5,1,3,4,3,5,2,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Bauer|Miyamoto|VanLange|Hauser|Critcher|Huang|Alter|Inbar|Rottenstrich|Graham|Anderson|Kay,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood,12,Global,all,TRUE +4887,0.883075534658866,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,3,1,1,2,1,1,1,4,4,1,1,4,1,4,1,1,2,2,2,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Kay|Miyamoto|Hauser|Bauer|Anderson|VanLange|Alter|Huang|Critcher|Inbar|Ross.Slate1|Rottenstrich,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,6,Global,all,TRUE +4888,0.778679584060497,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,3,2,1,1,1,1,1,1,3,1,1,3,1,4,1,1,1,1,1,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Anderson|Huang|Critcher|VanLange|Hauser|Rottenstrich|Kay|Ross.Slate1|Alter|Bauer|Miyamoto|Graham,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,2,Global,all,TRUE +4891,1.25478053716596,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,5,6,6,4,1,4,1,1,1,3,1,4,4,3,5,5,1,1,1,1,3,4,5,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Anderson|Critcher|VanLange|Miyamoto|Bauer|Rottenstrich|Alter|Inbar|Hauser|Ross.Slate1|Graham|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five,2,Global,all,TRUE +4892,0.316431389976846,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,6,7,4,1,1,4,3,1,1,3,3,1,1,2,1,4,1,1,3,2,3,1,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Critcher|Ross.Slate1|Rottenstrich|Graham|Bauer|Huang|Inbar|Miyamoto|VanLange|Hauser|Alter|Kay,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,1,Global,all,TRUE +4896,-0.0501368078333429,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,3,1,2,4,5,1,1,5,3,2,1,5,2,4,1,1,4,4,4,2,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Alter|Kay|Graham|VanLange|Anderson|Inbar|Rottenstrich|Huang|Miyamoto|Hauser|Ross.Slate1|Critcher,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,6,Global,all,TRUE +4897,0.2829425286251,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,3,2,1,2,2,2,2,1,1,1,1,2,1,1,1,1,3,1,1,1,1,1,1,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Alter|Huang|Kay|VanLange|Miyamoto|Ross.Slate1|Anderson|Bauer|Critcher|Inbar|Rottenstrich|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,8,Global,all,TRUE +4898,-0.384267485635085,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,7,3,3,1,1,3,1,1,1,1,5,1,1,1,1,3,1,1,1,2,1,1,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Critcher|Huang|VanLange|Ross.Slate1|Alter|Anderson|Hauser|Miyamoto|Kay|Graham|Rottenstrich|Bauer,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,7,Global,all,TRUE +4901,0.108297448374976,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,,,,,,,,,,,,,,,,,,,,,,,,,,4,7,7,7,6,3,1,1,3,1,1,2,1,3,1,1,2,1,3,1,3,2,2,2,1,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Huang|VanLange|Miyamoto|Inbar|Ross.Slate1|Kay|Critcher|Graham|Anderson|Hauser|Rottenstrich|Alter,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,10,Global,all,TRUE +4902,0.69261301211537,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,7,7,7,5,2,1,4,5,1,1,5,4,3,1,5,1,5,1,3,5,5,5,1,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Miyamoto|Kay|VanLange|Huang|Graham|Anderson|Hauser|Ross.Slate1|Bauer|Critcher|Rottenstrich|Alter,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,7,Global,all,TRUE +4904,0.146656311106589,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,6,7,2,3,1,4,1,1,1,1,1,3,1,1,1,4,1,4,2,3,2,1,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|VanLange|Rottenstrich|Critcher|Hauser|Kay|Alter|Huang|Ross.Slate1|Bauer|Miyamoto|Anderson|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,12,Global,all,TRUE +4905,0.0974902323471059,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,4,5,5,3,3,1,2,2,1,1,1,1,1,1,3,1,1,1,1,1,2,1,1,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Ross.Slate1|Huang|Anderson|Alter|Miyamoto|Critcher|Bauer|Kay|VanLange|Inbar|Rottenstrich|Graham,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +4909,0.103160643678075,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,5,4,2,2,3,3,2,2,1,2,1,3,4,1,2,3,3,2,3,2,2,2,3,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Bauer|Hauser|Inbar|Critcher|Huang|Alter|Kay|Graham|VanLange|Ross.Slate1|Rottenstrich|Miyamoto,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +4910,-1.046480920084,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,3,1,2,2,2,1,1,2,1,2,1,1,2,1,2,1,4,1,1,2,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Inbar|Alter|Ross.Slate1|VanLange|Hauser|Miyamoto|Graham|Kay|Anderson|Rottenstrich|Huang|Bauer,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +4911,-0.49710116625769,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,5,4,3,3,2,1,4,2,1,1,2,4,1,1,4,1,4,1,1,3,3,2,1,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Ross.Slate1|Miyamoto|Kay|Inbar|Huang|Critcher|VanLange|Anderson|Bauer|Rottenstrich|Graham|Hauser,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,9,Global,all,TRUE +4913,-0.730665974481267,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,5,2,3,2,1,3,1,1,2,1,2,3,2,2,3,1,3,1,1,1,2,3,2,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|VanLange|Inbar|Huang|Graham|Critcher|Bauer|Anderson|Kay|Hauser|Miyamoto|Rottenstrich|Alter,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +4916,0.45205742242989,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Bauer|Kay|Miyamoto|Huang|Inbar|Alter|VanLange|Critcher|Rottenstrich|Graham|Hauser|Anderson,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,13,Global,all,TRUE +4917,0.124901654165214,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,2,3,1,4,4,1,1,4,4,3,1,3,1,4,1,1,4,4,5,1,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Anderson|Ross.Slate1|Critcher|Bauer|Rottenstrich|Graham|Miyamoto|Kay|Huang|Hauser|Inbar|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,2,Global,all,TRUE +4919,-0.630746643514333,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,5,3,5,3,5,3,3,2,4,4,2,4,1,3,2,3,3,2,3,4,1,3,3,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Anderson|Hauser|Ross.Slate1|Huang|Inbar|Alter|Bauer|Miyamoto|Rottenstrich|Critcher|Graham|Kay,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,2,Global,all,TRUE +4920,-0.0994294650242251,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,4,1,1,4,2,1,1,4,3,2,2,3,1,4,1,1,3,3,3,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Anderson|Hauser|Huang|Ross.Slate1|Critcher|Bauer|Kay|Inbar|Alter|Graham|VanLange|Miyamoto,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,2,Global,all,TRUE +4924,0.110935963166244,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,3,6,5,1,3,2,2,1,1,2,2,1,2,1,5,1,2,1,1,1,1,2,1,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|VanLange|Ross.Slate1|Inbar|Graham|Alter|Hauser|Critcher|Anderson|Bauer|Huang|Rottenstrich|Kay,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,9,Global,all,TRUE +4926,0.445726826033454,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,6,5,3,2,4,3,1,1,2,2,3,3,1,3,1,4,1,1,2,1,1,1,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|VanLange|Rottenstrich|Anderson|Alter|Ross.Slate1|Graham|Inbar|Huang|Hauser|Critcher|Bauer|Kay,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +4930,0.0135285685591785,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,2,3,3,2,1,2,2,2,1,3,4,4,1,3,1,1,1,1,3,1,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Graham|Alter|Kay|Critcher|Ross.Slate1|Anderson|Rottenstrich|Bauer|VanLange|Hauser|Huang|Miyamoto,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,7,Global,all,TRUE +4931,0.495819893175438,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,6,7,4,4,2,1,3,1,2,1,1,1,2,1,1,1,3,1,2,2,3,1,1,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Ross.Slate1|Alter|Graham|VanLange|Hauser|Rottenstrich|Inbar|Anderson|Kay|Miyamoto|Bauer|Critcher,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,9,Global,all,TRUE +4932,-0.652501300455708,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,4,6,3,2,2,2,3,2,1,4,4,3,2,5,1,2,1,1,4,3,4,1,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Ross.Slate1|Miyamoto|Graham|Kay|Inbar|Bauer|Hauser|Anderson|Huang|VanLange|Critcher|Alter,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood,9,Global,all,TRUE +4933,0.275965393617433,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,5,4,6,3,1,5,3,1,4,4,3,1,4,5,2,5,2,1,4,3,2,1,4,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Kay|Critcher|Rottenstrich|Inbar|Huang|Graham|Anderson|Miyamoto|Hauser|Bauer|Ross.Slate1|Alter,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +4934,-0.538745082391802,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,,,,,,,,,,,,,,,,,,,,,,,,,,4,1,1,2,1,3,1,1,3,4,2,1,4,3,1,1,3,1,3,1,1,4,3,1,1,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Miyamoto|Huang|Critcher|Bauer|Kay|Alter|Ross.Slate1|Anderson|Rottenstrich|Inbar|Graham|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,9,Global,all,TRUE +4935,0.309440608514943,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,7,3,6,6,6,1,4,4,3,1,1,2,1,4,1,2,4,1,3,1,4,1,2,1,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Rottenstrich|Kay|Huang|Graham|Hauser|VanLange|Inbar|Critcher|Miyamoto|Ross.Slate1|Bauer|Anderson,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +4936,0.499118593032173,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,2,3,4,2,3,3,1,2,4,4,4,1,3,1,4,3,3,3,4,3,3,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Inbar|VanLange|Rottenstrich|Bauer|Miyamoto|Critcher|Ross.Slate1|Anderson|Kay|Hauser|Huang|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five,9,Global,all,TRUE +4939,0.465769956566062,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,2,1,1,1,1,3,4,4,2,1,4,4,2,3,4,4,3,3,2,4,1,1,2,1,3,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Miyamoto|Anderson|Kay|Critcher|Rottenstrich|Graham|VanLange|Hauser|Inbar|Ross.Slate1|Alter|Bauer,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +4944,-0.315465304545663,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,3,4,1,4,1,2,4,2,1,1,1,2,2,2,2,1,4,1,3,3,2,1,1,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Critcher|Huang|Kay|Bauer|VanLange|Miyamoto|Graham|Rottenstrich|Anderson|Alter|Hauser|Inbar,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +4946,0.291378033178736,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,6,5,3,1,1,3,2,1,1,2,3,1,1,3,1,3,1,2,3,2,3,1,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Alter|Kay|Anderson|Rottenstrich|VanLange|Critcher|Huang|Inbar|Graham|Miyamoto|Bauer|Hauser,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,4,Global,all,TRUE +4947,0.153113485934424,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,1,1,1,3,2,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Bauer|Rottenstrich|Huang|Graham|VanLange|Alter|Hauser|Critcher|Kay|Ross.Slate1|Miyamoto|Anderson,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +4951,0.265551559337996,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,6,4,1,2,4,4,1,1,3,4,1,1,4,2,4,1,1,4,4,3,1,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Bauer|Alter|VanLange|Anderson|Hauser|Ross.Slate1|Miyamoto|Critcher|Graham|Kay|Inbar|Huang,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,5,Global,all,TRUE +4952,-0.500130837326791,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,7,6,3,2,2,2,3,1,2,2,1,2,1,2,1,2,1,2,3,1,4,1,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Graham|Rottenstrich|Inbar|VanLange|Alter|Hauser|Bauer|Anderson|Miyamoto|Critcher|Huang|Ross.Slate1,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +4953,-0.331942931904502,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,7,7,4,4,2,1,3,1,1,1,3,2,1,1,3,1,4,1,1,1,1,4,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|VanLange|Rottenstrich|Critcher|Inbar|Bauer|Graham|Ross.Slate1|Anderson|Alter|Miyamoto|Kay|Hauser,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,9,Global,all,TRUE +4954,0.988918433819567,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,5,3,2,3,3,1,4,1,1,2,1,1,1,1,1,1,3,2,4,1,3,1,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Inbar|Huang|VanLange|Bauer|Ross.Slate1|Alter|Rottenstrich|Critcher|Anderson|Graham|Kay|Miyamoto,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +4955,0.528775147893117,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,5,5,3,3,4,2,3,3,1,2,3,3,1,1,3,1,1,1,1,3,1,1,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Graham|Miyamoto|Critcher|VanLange|Kay|Alter|Bauer|Ross.Slate1|Inbar|Hauser|Anderson|Huang,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,12,Global,all,TRUE +4957,0.522051169748247,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,5,5,7,3,2,1,4,1,1,1,1,2,1,1,2,1,4,1,1,3,2,1,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Bauer|Inbar|Miyamoto|Hauser|Anderson|VanLange|Huang|Ross.Slate1|Critcher|Rottenstrich|Graham|Alter,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,6,Global,all,TRUE +4962,0.634351243736784,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,5,3,3,2,1,2,2,1,1,2,3,3,2,3,1,2,1,3,2,2,3,2,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Ross.Slate1|Huang|Critcher|Graham|Inbar|Anderson|Alter|Bauer|Hauser|Miyamoto|VanLange|Rottenstrich,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,7,Global,all,TRUE +4963,0.0866830163192358,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,5,4,3,3,3,4,2,1,2,4,3,1,1,3,1,3,1,1,2,2,4,1,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Graham|Bauer|VanLange|Ross.Slate1|Rottenstrich|Huang|Kay|Alter|Miyamoto|Inbar|Anderson|Critcher,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,12,Global,all,TRUE +4964,0.369022747024463,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,5,3,2,3,2,2,2,1,2,2,5,1,1,2,2,1,1,3,1,2,1,1,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Critcher|Hauser|Inbar|Anderson|Kay|VanLange|Rottenstrich|Bauer|Huang|Alter|Miyamoto|Graham,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +4969,0.376531263195599,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,6,3,4,1,1,4,3,1,1,2,4,4,1,5,1,4,1,1,4,1,4,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Hauser|Kay|Alter|Graham|Huang|Critcher|Inbar|Miyamoto|Ross.Slate1|Bauer|VanLange|Anderson,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,13,Global,all,TRUE +4970,-0.627854971860267,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,2,5,2,2,2,2,2,1,2,2,3,4,1,4,3,2,2,1,1,2,2,3,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Inbar|Rottenstrich|Anderson|VanLange|Graham|Miyamoto|Alter|Ross.Slate1|Critcher|Hauser|Huang|Bauer,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,4,Global,all,TRUE +4972,0.562643744539059,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,7,7,7,3,1,1,3,4,1,1,4,5,2,1,4,2,3,1,1,2,1,4,2,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Graham|Alter|Critcher|Bauer|Ross.Slate1|Inbar|Rottenstrich|Anderson|Kay|VanLange|Huang|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,9,Global,all,TRUE +4973,-0.776268775537581,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,4,1,2,2,1,2,2,1,1,1,2,1,1,1,1,2,1,1,1,1,2,1,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Kay|Critcher|Ross.Slate1|Miyamoto|Rottenstrich|Alter|Huang|Hauser|VanLange|Anderson|Graham|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,11,Global,all,TRUE +4974,0.272008734165831,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,wpi,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,5,2,3,3,4,3,4,3,2,3,3,1,4,1,3,4,3,4,2,4,2,wpi,wpi,wpi,USA,"Social Science and Policy Studies Department, Worcester Polytechnic Institute, Worcester, MA 01609",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Critcher|VanLange|Graham|Inbar|Ross.Slate1|Hauser|Kay|Bauer|Rottenstrich|Alter|Miyamoto|Anderson,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,13,Global,all,TRUE +4975,0.158643672379758,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,4,2,1,4,4,1,1,2,2,1,1,2,1,4,1,1,3,1,1,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Hauser|Rottenstrich|Inbar|Bauer|Ross.Slate1|Miyamoto|Huang|Graham|Alter|Kay|VanLange|Critcher,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,1,Global,all,TRUE +4979,0.268583455877697,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,4,2,4,2,7,5,3,3,2,3,1,2,4,5,2,3,5,2,3,3,2,3,2,2,2,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Bauer|Huang|Critcher|Inbar|Graham|Hauser|Anderson|VanLange|Rottenstrich|Miyamoto|Ross.Slate1|Kay,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood,8,Global,all,TRUE +4982,0.0754824185429331,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,7,7,4,1,3,5,1,1,1,2,3,2,1,4,1,4,1,2,2,2,1,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Inbar|Miyamoto|Graham|VanLange|Bauer|Rottenstrich|Ross.Slate1|Kay|Alter|Anderson|Critcher|Huang,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +4985,-0.0966643718015579,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,3,5,5,4,4,2,4,2,1,2,5,5,3,1,5,1,5,1,5,5,4,4,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|VanLange|Graham|Critcher|Inbar|Huang|Ross.Slate1|Hauser|Bauer|Rottenstrich|Alter|Kay|Anderson,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,13,Global,all,TRUE +4989,-0.646830889124739,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,6,7,2,1,2,1,2,1,1,2,2,1,1,3,1,4,1,1,1,4,1,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Huang|Hauser|Rottenstrich|VanLange|Miyamoto|Graham|Anderson|Inbar|Ross.Slate1|Alter|Critcher|Kay,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +4991,-0.0705596736601476,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,4,1,2,4,4,1,1,4,4,1,1,4,1,4,2,3,2,4,4,2,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Hauser|Graham|Huang|Kay|Anderson|Ross.Slate1|Bauer|Critcher|Alter|Miyamoto|VanLange|Inbar,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +4992,0.357681924362525,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,4,4,1,1,1,1,2,1,1,3,3,1,1,3,1,1,1,1,1,3,3,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Critcher|Inbar|Ross.Slate1|Anderson|Bauer|Graham|Alter|Kay|Hauser|Rottenstrich|Miyamoto|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,5,Global,all,TRUE +4993,-0.124075793619666,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,4,5,3,3,2,2,3,1,1,3,4,3,1,4,1,3,2,1,3,3,4,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Huang|Ross.Slate1|Rottenstrich|Bauer|Graham|Kay|Miyamoto|Alter|Inbar|Critcher|Hauser|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,1,Global,all,TRUE +4997,0.731365256595416,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,5,3,2,3,2,2,1,1,1,3,3,2,1,3,1,4,1,2,4,1,3,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Inbar|Miyamoto|VanLange|Huang|Ross.Slate1|Bauer|Anderson|Kay|Alter|Graham|Hauser|Rottenstrich,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,8,Global,all,TRUE +4998,1.04150979086718,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,1,3,1,2,5,4,2,1,2,1,3,1,1,2,5,1,1,2,1,1,4,1,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Critcher|Bauer|Hauser|Kay|Graham|Anderson|Huang|Miyamoto|Ross.Slate1|Inbar|Rottenstrich|Alter,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +5000,0.365063862102261,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,3,4,3,4,1,4,3,1,1,3,4,1,1,4,2,4,1,2,4,3,4,2,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Bauer|Hauser|Anderson|Huang|Graham|Alter|Ross.Slate1|Inbar|Miyamoto|Critcher|VanLange|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,4,Global,all,TRUE +5005,-0.345782044472073,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,6,3,6,6,3,3,1,1,4,3,1,1,3,3,2,1,4,1,4,1,1,4,3,5,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Graham|Alter|Miyamoto|Kay|Hauser|Critcher|Ross.Slate1|Inbar|Bauer|Anderson|Rottenstrich|VanLange,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,11,Global,all,TRUE +5010,0.370074088367764,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,6,4,7,3,1,1,2,4,1,1,5,4,1,1,4,1,3,1,1,4,4,4,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|VanLange|Graham|Kay|Alter|Bauer|Huang|Anderson|Critcher|Inbar|Rottenstrich|Hauser|Miyamoto,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,8,Global,all,TRUE +5011,-0.398893361699523,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,7,7,2,1,2,2,2,1,1,1,2,2,1,2,1,1,1,1,2,1,3,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Kay|Bauer|Critcher|Miyamoto|Rottenstrich|Huang|Ross.Slate1|Alter|Inbar|Graham|Anderson|Hauser,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +5013,0.177759814529865,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,4,7,1,3,1,1,2,1,1,1,1,2,2,1,2,4,2,1,1,2,2,1,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Anderson|Hauser|Huang|Ross.Slate1|VanLange|Bauer|Alter|Rottenstrich|Inbar|Kay|Graham|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,2,Global,all,TRUE +5015,-0.0935058968304582,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,7,1,4,4,4,3,4,4,4,4,2,4,4,4,4,3,2,4,3,4,2,4,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|VanLange|Hauser|Critcher|Inbar|Graham|Ross.Slate1|Bauer|Rottenstrich|Alter|Anderson|Huang|Miyamoto,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood,11,Global,all,TRUE +5023,0.662422850620359,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,6,7,4,2,3,4,3,1,1,3,5,4,1,5,3,4,1,4,4,4,5,3,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Anderson|Hauser|Rottenstrich|Miyamoto|Graham|Ross.Slate1|Kay|Alter|VanLange|Inbar|Bauer|Critcher,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing,2,Global,all,TRUE +5024,-0.837955822204301,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,3,3,3,2,1,3,2,2,1,3,2,1,4,3,1,5,1,1,3,3,4,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Hauser|Critcher|Kay|Rottenstrich|Ross.Slate1|Graham|Anderson|Huang|Miyamoto|Alter|VanLange|Inbar,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,8,Global,all,TRUE +5027,0.0170940717329476,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,7,7,4,2,2,4,3,1,1,1,4,1,1,3,3,4,1,1,3,2,5,3,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Huang|Ross.Slate1|Inbar|Hauser|Rottenstrich|Kay|Alter|Bauer|Anderson|VanLange|Graham|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection,10,Global,all,TRUE +5028,-1.49462542375365,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,4,4,4,1,1,3,3,1,1,2,3,2,1,3,1,4,1,2,4,4,3,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Critcher|VanLange|Anderson|Alter|Graham|Inbar|Hauser|Miyamoto|Rottenstrich|Huang|Bauer|Ross.Slate1,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,4,Global,all,TRUE +5029,-1.0272381995025,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,3,5,3,3,1,1,4,1,1,1,1,1,1,1,1,1,4,1,1,1,1,1,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Hauser|Alter|Graham|Rottenstrich|Kay|VanLange|Bauer|Anderson|Critcher|Ross.Slate1|Huang|Inbar,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,9,Global,all,TRUE +5030,0.50188368625484,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,7,6,7,4,1,3,4,3,1,1,3,3,4,1,4,1,4,1,3,2,2,2,2,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Miyamoto|Huang|Inbar|Rottenstrich|Bauer|Critcher|Hauser|Kay|Ross.Slate1|Alter|Graham|VanLange,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +5031,0.537604034195185,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,4,2,3,5,1,1,3,5,1,1,5,5,1,1,5,1,4,1,3,5,3,4,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Huang|Miyamoto|Ross.Slate1|Rottenstrich|Inbar|Kay|Alter|Anderson|VanLange|Graham|Bauer|Hauser,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +5032,0.877812151530566,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,5,1,2,2,1,1,4,1,1,1,2,4,1,1,3,1,4,1,1,1,2,4,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Ross.Slate1|Alter|Bauer|Anderson|Hauser|Kay|Miyamoto|Inbar|Graham|VanLange|Rottenstrich|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood,5,Global,all,TRUE +5034,0.52665659328168,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,7,5,3,4,1,3,4,3,2,1,5,2,3,2,5,3,3,3,1,4,4,3,2,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Huang|Hauser|Kay|Critcher|Anderson|Inbar|Alter|Miyamoto|Bauer|VanLange|Rottenstrich|Ross.Slate1,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +5035,0.423199052049449,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,5,3,3,3,2,2,3,2,1,2,2,3,3,2,3,1,3,1,2,2,3,3,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Anderson|Alter|Bauer|Rottenstrich|Graham|VanLange|Ross.Slate1|Miyamoto|Critcher|Huang|Hauser|Kay,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,2,Global,all,TRUE +5039,-0.0113845633532967,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,1,2,1,2,1,1,1,1,1,1,1,1,1,3,1,1,1,1,1,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Alter|Bauer|Rottenstrich|Critcher|Anderson|Kay|Ross.Slate1|Hauser|VanLange|Inbar|Miyamoto|Huang,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,6,Global,all,TRUE +5041,1.13852380372582,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,7,7,6,4,1,2,3,3,1,1,4,3,1,1,4,1,4,1,2,4,3,3,1,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Anderson|VanLange|Alter|Huang|Bauer|Kay|Critcher|Inbar|Ross.Slate1|Graham|Hauser|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,2,Global,all,TRUE +5042,0.431367753286051,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,6,6,6,2,1,1,3,1,1,1,2,2,3,1,2,1,4,1,1,2,1,1,1,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Inbar|Kay|Alter|VanLange|Critcher|Anderson|Miyamoto|Graham|Ross.Slate1|Rottenstrich|Bauer|Hauser,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,7,Global,all,TRUE +5044,0.346481326586222,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,5,6,3,1,1,4,5,1,1,4,2,1,1,4,1,5,1,4,4,5,5,1,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Anderson|Critcher|Miyamoto|Hauser|Kay|Ross.Slate1|Bauer|Rottenstrich|Alter|VanLange|Huang|Inbar,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,2,Global,all,TRUE +5046,1.24370651782105,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,5,6,5,5,1,2,4,2,2,1,3,2,1,2,3,1,5,1,1,4,2,2,1,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Inbar|Graham|Hauser|Critcher|Rottenstrich|Anderson|Ross.Slate1|Bauer|Miyamoto|Kay|VanLange|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing,7,Global,all,TRUE +5048,0.0694186254635307,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,7,6,2,2,1,4,1,1,1,1,2,1,1,2,1,4,1,3,2,2,1,1,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Huang|Inbar|Anderson|Bauer|Graham|Rottenstrich|Ross.Slate1|Critcher|Miyamoto|Hauser|VanLange|Alter,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE,4,Global,all,TRUE +5050,0.226405933109517,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,6,6,2,2,4,3,1,4,4,1,3,2,3,2,1,3,1,3,1,3,2,1,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Hauser|Inbar|Kay|Ross.Slate1|Graham|Bauer|Rottenstrich|Huang|Miyamoto|Alter|VanLange|Critcher,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,1,Global,all,TRUE +5051,-0.0698994885946806,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,4,2,3,3,5,1,1,4,4,3,1,5,1,4,1,2,5,5,3,1,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Huang|Graham|Anderson|Ross.Slate1|Kay|Alter|Critcher|Inbar|Bauer|Rottenstrich|Hauser|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing,4,Global,all,TRUE +5052,-1.01523941724569,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,6,7,7,1,2,3,2,1,1,2,1,3,3,1,2,1,2,1,2,1,1,3,2,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Ross.Slate1|Critcher|Miyamoto|Graham|Huang|VanLange|Bauer|Rottenstrich|Kay|Hauser|Anderson|Inbar,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +5053,0.202546368010941,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,2,1,1,1,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Miyamoto|Anderson|Critcher|Hauser|Inbar|Rottenstrich|Bauer|Kay|Alter|VanLange|Ross.Slate1|Graham,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,3,Global,all,TRUE +5056,0.709217217905608,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,5,5,6,4,1,2,3,3,1,1,3,5,2,2,4,1,4,1,1,3,2,3,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Anderson|VanLange|Inbar|Bauer|Huang|Ross.Slate1|Rottenstrich|Kay|Alter|Hauser|Graham|Miyamoto,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,2,Global,all,TRUE +5062,0.540635930734886,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,3,3,3,2,1,1,2,1,1,1,1,2,1,1,2,1,4,1,1,1,1,1,1,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Hauser|Graham|Critcher|Huang|Kay|Miyamoto|Anderson|Ross.Slate1|Rottenstrich|Bauer|Alter|VanLange,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,8,Global,all,TRUE +5063,-0.219238055183896,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,7,5,6,4,3,2,4,4,1,3,3,4,2,2,4,1,4,3,3,4,5,3,2,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Huang|Alter|Anderson|Critcher|VanLange|Kay|Miyamoto|Hauser|Graham|Rottenstrich|Bauer|Ross.Slate1,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,4,Global,all,TRUE +5064,-0.689148636778554,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,3,3,2,2,2,1,1,2,3,3,2,1,4,1,2,1,2,3,3,3,2,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Hauser|Alter|Ross.Slate1|Rottenstrich|Bauer|Huang|Anderson|Graham|Kay|Inbar|VanLange|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,8,Global,all,TRUE +5065,-0.472452612191649,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,7,5,5,2,1,1,4,1,1,1,1,4,2,1,4,1,4,1,1,2,2,1,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|VanLange|Graham|Hauser|Bauer|Critcher|Huang|Rottenstrich|Alter|Anderson|Ross.Slate1|Inbar|Kay,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,10,Global,all,TRUE +5066,-0.187741170012187,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,6,4,7,4,4,4,1,3,2,2,1,1,1,1,3,1,3,1,4,1,1,2,2,2,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Anderson|Graham|Huang|Hauser|Ross.Slate1|Alter|Critcher|VanLange|Kay|Miyamoto|Inbar|Rottenstrich,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +5069,0.387605282540503,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,6,7,4,3,4,2,2,2,1,3,2,3,2,1,5,2,4,1,1,3,4,2,2,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Inbar|Huang|Anderson|Miyamoto|VanLange|Ross.Slate1|Graham|Kay|Rottenstrich|Critcher|Hauser|Bauer,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +5071,-0.273287781777483,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,4,3,1,1,2,2,1,1,1,2,1,1,4,1,4,1,1,2,1,2,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Miyamoto|Kay|Huang|Anderson|Bauer|Alter|Critcher|Rottenstrich|VanLange|Inbar|Ross.Slate1|Hauser,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood,5,Global,all,TRUE +5072,0.332375410701617,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,6,5,5,3,2,1,4,1,2,1,4,4,1,1,5,1,4,2,1,1,1,2,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Kay|Huang|Miyamoto|Alter|Hauser|Graham|VanLange|Inbar|Ross.Slate1|Critcher|Anderson|Bauer,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,12,Global,all,TRUE +5074,-1.03870560059584,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,4,4,1,2,4,3,2,1,1,3,2,2,1,1,3,1,2,3,1,1,2,1,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Kay|Huang|Inbar|Hauser|Graham|Critcher|Miyamoto|Bauer|Ross.Slate1|Anderson|Alter|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,11,Global,all,TRUE +5075,0.561590177725159,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,3,3,3,2,4,4,1,3,3,4,4,1,4,1,4,1,5,5,4,4,4,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Critcher|Kay|Inbar|Alter|VanLange|Anderson|Huang|Graham|Hauser|Ross.Slate1|Rottenstrich|Bauer,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +5078,-0.81897767946923,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,7,6,3,2,2,1,1,1,1,2,3,1,1,3,1,3,1,1,1,2,2,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Inbar|Bauer|Miyamoto|Rottenstrich|Alter|Graham|Hauser|VanLange|Critcher|Anderson|Ross.Slate1|Kay,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +5082,0.891117657464069,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,5,5,5,3,3,1,3,1,1,1,1,1,1,1,3,1,3,3,1,1,1,1,1,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|VanLange|Hauser|Kay|Inbar|Ross.Slate1|Alter|Huang|Anderson|Bauer|Critcher|Miyamoto|Graham,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,9,Global,all,TRUE +5083,1.25754563038862,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,6,6,3,3,5,4,1,2,3,4,1,2,3,2,2,2,3,3,2,1,2,2,2,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|VanLange|Ross.Slate1|Hauser|Miyamoto|Rottenstrich|Inbar|Critcher|Huang|Kay|Bauer|Alter|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,1,Global,all,TRUE +5084,-0.185762840286386,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,5,3,2,1,3,2,1,4,5,2,2,5,2,4,1,1,5,5,4,2,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Kay|Rottenstrich|Graham|Miyamoto|Alter|Bauer|Huang|VanLange|Anderson|Inbar|Hauser|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,10,Global,all,TRUE +5085,0.534965519403917,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,3,1,1,3,4,1,1,3,4,2,1,2,1,3,1,4,3,3,1,1,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Ross.Slate1|Hauser|Critcher|Huang|VanLange|Kay|Miyamoto|Bauer|Anderson|Rottenstrich|Graham|Inbar,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five,10,Global,all,TRUE +5087,-0.150702677411508,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,6,5,1,1,5,4,1,1,5,5,2,2,5,2,5,1,2,4,4,5,2,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|VanLange|Anderson|Miyamoto|Hauser|Ross.Slate1|Kay|Huang|Critcher|Rottenstrich|Inbar|Graham|Alter,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,3,Global,all,TRUE +5089,0.285581043416368,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,5,6,3,3,4,5,3,2,1,4,3,3,3,1,4,2,4,3,3,1,3,3,2,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Huang|Bauer|Anderson|Hauser|Inbar|Kay|Miyamoto|Critcher|Ross.Slate1|Rottenstrich|Graham|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,4,Global,all,TRUE +5091,0.618140419694979,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,5,4,1,2,4,3,1,1,2,3,2,1,3,1,4,1,2,3,3,2,1,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Bauer|Ross.Slate1|Anderson|Graham|VanLange|Hauser|Critcher|Kay|Huang|Miyamoto|Inbar|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,4,Global,all,TRUE +5094,-0.661330186757777,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,5,6,4,1,1,4,5,1,1,4,5,1,1,5,1,4,1,2,4,5,4,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Anderson|Hauser|Kay|Ross.Slate1|Graham|Critcher|Inbar|VanLange|Rottenstrich|Miyamoto|Alter|Huang,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,2,Global,all,TRUE +5097,-0.50895972362886,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,5,5,1,3,1,1,1,1,1,1,1,1,1,1,1,1,4,1,1,1,1,1,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Miyamoto|Graham|Inbar|Kay|Bauer|Anderson|Hauser|Alter|VanLange|Huang|Ross.Slate1|Critcher,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,7,Global,all,TRUE +5102,0.0947251391244387,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,3,6,7,3,3,4,4,4,1,2,3,3,3,1,5,1,4,2,1,3,4,4,1,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Graham|Critcher|Hauser|Rottenstrich|Huang|VanLange|Anderson|Alter|Miyamoto|Inbar|Bauer|Ross.Slate1,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE,8,Global,all,TRUE +5104,0.345427759772322,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,5,1,1,5,2,1,1,3,5,1,1,4,1,5,1,1,3,2,1,1,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Graham|Ross.Slate1|Anderson|Alter|Inbar|Huang|Bauer|Hauser|Rottenstrich|VanLange|Critcher|Kay,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,4,Global,all,TRUE +5105,-0.278691389791418,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,7,3,1,1,3,4,1,1,2,2,1,1,3,1,3,1,1,3,2,2,1,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Kay|Graham|Anderson|Miyamoto|Hauser|Rottenstrich|Inbar|Critcher|Huang|VanLange|Ross.Slate1|Bauer,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,4,Global,all,TRUE +5106,0.933295180232249,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,6,6,5,2,2,2,2,1,1,1,2,2,3,1,4,1,2,1,1,2,3,1,1,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Ross.Slate1|Hauser|Inbar|Huang|Rottenstrich|Graham|Miyamoto|Kay|Anderson|VanLange|Alter|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,10,Global,all,TRUE +5107,1.03887127607592,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,3,1,1,3,1,1,1,1,2,1,1,1,1,2,1,1,1,2,1,1,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Huang|Bauer|Critcher|Anderson|Miyamoto|Rottenstrich|Hauser|VanLange|Ross.Slate1|Alter|Inbar|Kay,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,5,Global,all,TRUE +5109,-1.16655631356071,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,7,7,7,1,2,1,3,1,1,1,1,4,1,1,1,1,3,1,1,1,1,1,1,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|VanLange|Huang|Hauser|Kay|Inbar|Critcher|Graham|Ross.Slate1|Miyamoto|Alter|Bauer|Anderson,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,13,Global,all,TRUE +5110,-0.675169299325348,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,3,4,3,1,1,1,3,1,1,1,1,1,1,1,1,2,5,1,1,1,1,1,2,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Bauer|VanLange|Rottenstrich|Ross.Slate1|Hauser|Critcher|Graham|Alter|Kay|Inbar|Huang|Anderson,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,13,Global,all,TRUE +5111,0.648583738052788,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,6,5,7,4,1,1,2,3,1,1,1,4,1,1,2,1,4,1,2,3,1,3,1,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Huang|Miyamoto|Bauer|Kay|Critcher|Hauser|Alter|VanLange|Inbar|Rottenstrich|Ross.Slate1|Graham,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five,1,Global,all,TRUE +5112,0.2829425286251,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,5,5,3,3,1,3,3,1,1,2,3,1,1,4,1,3,1,1,2,5,2,1,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Ross.Slate1|Critcher|Alter|Huang|Hauser|Anderson|Miyamoto|Rottenstrich|Inbar|VanLange|Bauer|Kay,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +5114,-0.00017031912275738,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,2,5,4,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Huang|Miyamoto|Ross.Slate1|Alter|Hauser|Kay|Rottenstrich|Inbar|VanLange|Critcher|Graham|Anderson,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five,13,Global,all,TRUE +5116,-1.36980438185788,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,4,3,3,4,4,4,1,1,2,3,4,1,3,3,3,2,2,2,3,3,5,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Inbar|Ross.Slate1|Bauer|Kay|VanLange|Huang|Alter|Graham|Critcher|Rottenstrich|Anderson|Hauser,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,12,Global,all,TRUE +5117,0.460366348552127,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,6,3,2,1,3,1,1,1,1,3,1,1,4,1,3,1,1,1,4,2,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Kay|Ross.Slate1|Hauser|Alter|Critcher|Inbar|Huang|Miyamoto|Anderson|Bauer|VanLange|Rottenstrich,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,10,Global,all,TRUE +5120,0.589141824428903,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,6,6,6,4,1,1,4,3,2,1,4,3,1,3,4,1,4,1,1,3,4,2,1,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Critcher|Inbar|Rottenstrich|Graham|Miyamoto|Anderson|Kay|Bauer|Ross.Slate1|VanLange|Hauser|Alter,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,7,Global,all,TRUE +5122,1.13852380372582,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,5,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Kay|Critcher|Miyamoto|Inbar|Graham|Bauer|Huang|Hauser|Ross.Slate1|Rottenstrich|Anderson|Alter,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,12,Global,all,TRUE +5124,0.0811528298739017,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,3,3,1,1,3,2,1,1,1,3,1,1,2,1,3,1,2,2,2,1,1,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Huang|Inbar|Bauer|Anderson|Alter|Graham|Critcher|Kay|Ross.Slate1|VanLange|Rottenstrich|Miyamoto,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,5,Global,all,TRUE +5126,-0.462698962977679,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,5,4,2,4,3,4,2,3,2,3,4,3,4,1,3,4,4,1,4,3,3,2,4,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Bauer|Miyamoto|Huang|Anderson|Ross.Slate1|Inbar|VanLange|Rottenstrich|Hauser|Alter|Kay|Critcher,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,5,Global,all,TRUE +5128,0.243403520648188,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,7,6,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Ross.Slate1|Rottenstrich|Bauer|Miyamoto|Anderson|Alter|Inbar|VanLange|Hauser|Graham|Critcher|Huang,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,6,Global,all,TRUE +5129,-0.528736050844434,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,4,3,4,1,1,4,3,1,1,3,4,2,1,5,1,4,1,1,4,4,4,1,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Anderson|Bauer|VanLange|Hauser|Huang|Ross.Slate1|Miyamoto|Rottenstrich|Graham|Critcher|Alter|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing,2,Global,all,TRUE +5130,-0.749248509997306,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,3,3,1,3,1,1,1,3,1,1,2,2,1,1,3,1,3,1,1,3,3,2,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Rottenstrich|Inbar|Anderson|Bauer|VanLange|Hauser|Alter|Graham|Ross.Slate1|Critcher|Kay|Miyamoto,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,4,Global,all,TRUE +5131,0.463131441774794,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,3,7,6,4,3,1,5,4,1,1,4,4,2,1,4,1,5,2,3,3,4,4,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Alter|Miyamoto|Huang|Critcher|Ross.Slate1|Rottenstrich|Hauser|Kay|Inbar|Graham|Bauer|Anderson,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,13,Global,all,TRUE +5133,-0.590282872625519,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,5,1,4,6,3,1,1,1,4,2,1,1,3,2,3,1,3,1,4,1,2,1,4,1,4,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Anderson|Huang|Rottenstrich|Graham|VanLange|Alter|Ross.Slate1|Critcher|Inbar|Hauser|Bauer|Miyamoto,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,2,Global,all,TRUE +5135,-0.438572594562069,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,4,4,4,3,2,4,3,1,3,4,3,3,2,5,1,4,1,4,4,4,3,1,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Bauer|Anderson|Critcher|Alter|Rottenstrich|Kay|VanLange|Ross.Slate1|Hauser|Graham|Miyamoto|Inbar,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +5137,0.399466065382272,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,3,1,1,2,3,1,1,3,3,2,1,3,1,2,1,1,4,3,3,1,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Inbar|Critcher|Hauser|Kay|Bauer|Ross.Slate1|VanLange|Anderson|Miyamoto|Alter|Rottenstrich|Huang,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,9,Global,all,TRUE +5140,-0.606760499984358,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,6,7,3,4,3,2,1,1,1,1,3,1,1,3,1,4,2,3,1,2,3,1,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|VanLange|Kay|Critcher|Rottenstrich|Bauer|Anderson|Alter|Huang|Ross.Slate1|Graham|Hauser|Miyamoto,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,7,Global,all,TRUE +5141,0.186068740652102,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,5,7,4,2,2,4,3,1,1,3,5,1,1,4,1,4,1,1,3,5,3,1,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Critcher|Ross.Slate1|Inbar|Alter|Hauser|VanLange|Huang|Bauer|Miyamoto|Anderson|Rottenstrich|Graham,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing,11,Global,all,TRUE +5143,-1.01313228361789,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,6,2,1,1,3,3,1,1,2,3,1,3,2,1,4,1,4,2,3,2,1,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Anderson|Huang|Miyamoto|Critcher|Bauer|VanLange|Kay|Ross.Slate1|Graham|Inbar|Hauser|Alter,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing,2,Global,all,TRUE +5144,-0.0532952828044425,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,washlee,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,5,6,5,2,2,1,2,2,1,2,3,2,2,1,3,1,3,2,2,2,2,2,1,washlee,washlee,washlee,USA,"Department of Psychology, Washington and Lee University, Lexington, VA 24450",English,1,legal,No,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Anderson|Huang|Ross.Slate1|Inbar|Rottenstrich|Bauer|Hauser|Alter|Kay|Critcher|VanLange|Miyamoto,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,2,Global,all,TRUE +5146,0.465503153249028,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,7,6,5,3,2,1,5,5,1,1,5,5,2,1,5,1,4,1,2,5,3,5,1,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Critcher|Bauer|Miyamoto|VanLange|Inbar|Graham|Alter|Kay|Huang|Ross.Slate1|Rottenstrich|Anderson,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,13,Global,all,TRUE +5148,-0.511993845639161,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,5,6,3,1,3,1,1,1,1,1,2,1,1,2,1,1,1,1,1,1,1,1,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Rottenstrich|VanLange|Graham|Ross.Slate1|Hauser|Inbar|Miyamoto|Anderson|Critcher|Huang|Bauer|Kay,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection,9,Global,all,TRUE +5154,-0.514236753211396,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,3,6,2,1,3,3,1,1,1,1,1,1,1,1,1,1,2,3,1,1,1,1,1,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Hauser|Miyamoto|Critcher|Inbar|Kay|Graham|Huang|Rottenstrich|VanLange|Bauer|Anderson|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing,12,Global,all,TRUE +5159,0.236021582908452,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,4,2,3,4,1,1,1,3,2,3,5,2,4,4,3,2,1,1,2,3,2,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|VanLange|Alter|Anderson|Hauser|Ross.Slate1|Huang|Inbar|Rottenstrich|Miyamoto|Bauer|Critcher|Kay,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +5161,0.216245255692877,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,7,6,3,3,2,4,2,1,1,3,2,3,1,3,2,4,1,3,2,2,2,2,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Kay|Inbar|Graham|Huang|Ross.Slate1|Critcher|Miyamoto|Anderson|Alter|Hauser|Bauer|VanLange,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,9,Global,all,TRUE +5162,0.194237441888705,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,2,3,5,2,1,1,3,1,1,1,3,3,1,1,3,1,3,1,1,3,3,1,1,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Critcher|Bauer|Rottenstrich|Graham|Alter|Anderson|Ross.Slate1|Miyamoto|VanLange|Inbar|Kay|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,7,Global,all,TRUE +5164,0.490809666909936,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,6,6,5,2,4,3,4,3,1,1,1,3,1,1,2,1,2,1,4,4,2,2,2,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Bauer|Critcher|VanLange|Hauser|Inbar|Graham|Miyamoto|Anderson|Kay|Rottenstrich|Ross.Slate1|Alter,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,9,Global,all,TRUE +5165,0.119891427899712,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,4,4,2,2,2,2,1,2,2,1,1,2,1,2,3,3,2,1,2,1,1,2,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Anderson|Rottenstrich|Graham|Kay|Hauser|Inbar|Miyamoto|Bauer|Critcher|Ross.Slate1|Alter|VanLange,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,2,Global,all,TRUE +5166,-0.636557279730937,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,5,6,2,1,4,5,2,1,4,4,3,4,5,3,3,4,3,1,3,1,4,4,4,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Kay|Huang|Miyamoto|Graham|VanLange|Ross.Slate1|Inbar|Hauser|Anderson|Critcher|Rottenstrich|Bauer,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five,10,Global,all,TRUE +5167,0.122009982511148,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,7,7,4,1,1,4,2,1,1,1,3,2,1,3,1,4,1,2,4,3,2,1,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Hauser|Bauer|Kay|Rottenstrich|Miyamoto|Critcher|Inbar|Alter|Anderson|VanLange|Graham|Huang,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,10,Global,all,TRUE +5168,0.54300764220912,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,5,6,3,4,2,1,2,4,1,2,5,5,4,1,5,1,1,1,1,5,3,4,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Alter|Critcher|Anderson|Inbar|Bauer|Rottenstrich|Miyamoto|Hauser|Kay|VanLange|Huang|Ross.Slate1,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,4,Global,all,TRUE +5170,-0.3258791388251,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,6,6,4,1,1,4,3,1,2,3,4,1,1,4,1,3,1,1,3,4,4,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Miyamoto|Anderson|Inbar|Hauser|Rottenstrich|VanLange|Kay|Graham|Bauer|Huang|Ross.Slate1|Critcher,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +5172,0.5810997016237,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,3,3,2,4,4,4,3,2,2,2,4,2,2,1,4,2,3,1,2,2,1,3,2,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Alter|Rottenstrich|Huang|Miyamoto|Critcher|Graham|Hauser|Bauer|VanLange|Ross.Slate1|Anderson|Inbar,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,12,Global,all,TRUE +5174,-0.583165512732218,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,7,7,3,4,4,3,4,4,3,3,2,4,5,5,5,5,4,4,4,4,4,5,4,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Huang|Graham|Rottenstrich|VanLange|Inbar|Miyamoto|Anderson|Alter|Ross.Slate1|Kay|Hauser|Bauer,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE,8,Global,all,TRUE +5175,-0.426318429971867,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,7,7,7,5,1,1,4,5,1,1,5,5,5,1,5,2,5,1,1,5,5,5,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Miyamoto|Bauer|Alter|Graham|Critcher|Anderson|Inbar|Hauser|VanLange|Rottenstrich|Kay|Huang,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,7,Global,all,TRUE +5177,-0.880397922818916,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,sandiegosu,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,5,3,1,1,5,1,1,2,1,3,2,1,4,1,4,1,2,1,1,1,1,sandiegosu,sandiegosu,sandiegosu,USA,"Department of Psychology, San Diego State University, San Diego, CA 92182",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Critcher|Miyamoto|Kay|Graham|Alter|Ross.Slate1|Bauer|Huang|Hauser|Rottenstrich|Inbar|VanLange,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +5179,1.18004114142853,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,5,5,6,2,2,3,3,1,1,1,1,1,2,1,3,1,4,1,1,2,2,2,3,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Ross.Slate1|Hauser|Inbar|Kay|Anderson|Miyamoto|VanLange|Bauer|Huang|Rottenstrich|Graham|Alter,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,6,Global,all,TRUE +5182,-0.222143373292199,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,6,4,1,1,4,1,1,1,1,4,1,1,4,1,4,1,1,1,2,4,1,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Rottenstrich|Alter|Graham|Hauser|Anderson|Critcher|Kay|VanLange|Huang|Bauer|Inbar|Ross.Slate1,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,6,Global,all,TRUE +5184,-0.140426842547106,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,,,,,,,,,,,,,,,,,,,,,,,,,,6,4,5,6,7,3,4,4,3,1,1,2,2,3,1,1,5,1,3,1,1,1,1,4,1,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|VanLange|Miyamoto|Critcher|Ross.Slate1|Inbar|Kay|Alter|Anderson|Rottenstrich|Bauer|Huang|Hauser,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood,9,Global,all,TRUE +5185,-0.598985180496189,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,6,4,1,2,3,2,1,1,1,1,2,1,3,1,4,1,1,1,1,1,1,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Kay|Huang|Rottenstrich|Graham|Inbar|Critcher|VanLange|Hauser|Anderson|Bauer|Ross.Slate1|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,10,Global,all,TRUE +5186,0.224947563563548,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,7,3,2,1,1,2,1,1,1,1,2,1,1,3,1,3,1,1,1,1,1,1,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Huang|Critcher|Hauser|Ross.Slate1|Bauer|Inbar|VanLange|Alter|Kay|Miyamoto|Anderson|Graham,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,12,Global,all,TRUE +5187,0.74243927594032,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,3,6,3,1,1,3,2,1,1,2,4,1,1,1,1,3,1,1,2,4,3,1,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Hauser|Critcher|Graham|Huang|Bauer|Rottenstrich|VanLange|Inbar|Kay|Ross.Slate1|Alter|Miyamoto,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,1,Global,all,TRUE +5188,-0.744111705300405,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,5,7,3,1,2,1,1,1,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Rottenstrich|Anderson|Bauer|Graham|Miyamoto|Inbar|Kay|Alter|Ross.Slate1|Huang|Hauser|Critcher,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +5189,0.327365184436115,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,3,3,3,2,4,2,4,2,1,3,2,3,2,1,2,2,3,1,3,3,1,3,2,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Graham|Alter|Hauser|Inbar|Miyamoto|Rottenstrich|Bauer|Critcher|Ross.Slate1|Huang|Anderson|VanLange,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,12,Global,all,TRUE +5192,-0.313360396388463,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,6,5,2,4,1,1,4,2,1,1,2,4,1,1,5,1,2,1,1,1,3,4,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Hauser|Graham|Bauer|Kay|VanLange|Huang|Miyamoto|Ross.Slate1|Inbar|Rottenstrich|Critcher|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,1,Global,all,TRUE +5194,0.113967859705945,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,6,3,2,2,4,2,1,2,4,4,2,1,4,1,2,1,2,3,3,4,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Ross.Slate1|Rottenstrich|Alter|Hauser|Graham|Bauer|Anderson|VanLange|Miyamoto|Kay|Huang|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,8,Global,all,TRUE +5199,0.0367301740628868,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,6,2,3,3,2,1,1,2,2,4,2,2,3,1,2,1,1,2,3,4,1,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Critcher|Huang|Rottenstrich|VanLange|Hauser|Alter|Kay|Anderson|Graham|Inbar|Bauer|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,9,Global,all,TRUE +5200,1.11084557859068,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,3,4,3,3,2,1,3,1,1,1,2,1,4,1,1,2,2,1,1,1,2,1,1,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Anderson|Miyamoto|Hauser|Alter|Critcher|Inbar|Ross.Slate1|Graham|Huang|VanLange|Bauer|Kay,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,2,Global,all,TRUE +5201,-0.615196004537994,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,5,7,3,5,5,4,4,4,3,4,5,4,4,1,4,4,4,1,1,4,4,4,4,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Bauer|Rottenstrich|Huang|Graham|Inbar|VanLange|Hauser|Kay|Alter|Anderson|Miyamoto|Critcher,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood,11,Global,all,TRUE +5203,0.512297520534277,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,7,6,3,2,1,3,4,1,1,3,4,2,2,4,1,3,1,2,4,5,4,1,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Anderson|Kay|Rottenstrich|Critcher|VanLange|Miyamoto|Ross.Slate1|Hauser|Inbar|Bauer|Huang|Graham,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,2,Global,all,TRUE +5207,-0.0356375102003048,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,7,5,3,1,1,3,1,1,1,2,3,1,1,5,1,4,1,1,3,3,1,1,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Rottenstrich|Alter|Critcher|Bauer|Hauser|Inbar|Ross.Slate1|Huang|Graham|Anderson|VanLange|Miyamoto,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +5214,0.0417404003283888,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,6,5,4,2,2,4,4,1,1,5,4,2,1,4,1,5,2,1,3,4,3,1,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Bauer|Alter|Kay|Miyamoto|Critcher|Huang|Inbar|Hauser|Graham|Anderson|Ross.Slate1|VanLange,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,11,Global,all,TRUE +5217,-0.611110541184394,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,4,3,1,1,4,4,1,1,4,3,1,1,4,1,4,1,1,4,4,3,1,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Critcher|Huang|Bauer|Alter|Rottenstrich|Kay|Ross.Slate1|VanLange|Hauser|Inbar|Miyamoto|Graham,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +5220,0.681538992770466,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,4,1,1,4,2,1,1,2,1,1,1,2,1,4,1,2,4,1,1,1,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Huang|Graham|Inbar|Critcher|Ross.Slate1|Bauer|VanLange|Anderson|Hauser|Miyamoto|Rottenstrich|Alter,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,9,Global,all,TRUE +5221,0.285974425164801,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,6,3,1,1,4,2,1,1,3,4,1,1,5,1,4,1,1,3,2,5,1,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Miyamoto|Graham|Critcher|VanLange|Bauer|Rottenstrich|Anderson|Kay|Hauser|Huang|Ross.Slate1|Inbar,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,8,Global,all,TRUE +5223,-0.0387959851714048,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,6,3,4,1,2,2,4,1,1,4,3,2,2,4,1,4,1,1,4,2,3,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Miyamoto|Kay|Ross.Slate1|Inbar|Huang|Anderson|Rottenstrich|Graham|Bauer|Critcher|Alter|VanLange,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,7,Global,all,TRUE +5226,0.470246576197496,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,5,7,2,4,1,1,4,4,1,1,2,2,2,2,3,1,4,1,2,3,1,3,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Inbar|Kay|Bauer|Miyamoto|Critcher|Graham|Huang|Hauser|VanLange|Anderson|Rottenstrich|Alter,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,11,Global,all,TRUE +5227,0.914052459650743,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,5,4,2,1,1,1,1,1,1,1,2,1,1,1,1,3,1,1,1,1,3,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Rottenstrich|Bauer|Anderson|Critcher|Miyamoto|Alter|VanLange|Graham|Huang|Hauser|Ross.Slate1|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,4,Global,all,TRUE +5230,0.63711633695945,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,5,4,2,1,1,1,1,1,1,1,2,2,1,1,1,1,4,1,2,2,3,3,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Bauer|VanLange|Anderson|Alter|Kay|Miyamoto|Huang|Graham|Hauser|Critcher|Inbar|Ross.Slate1,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE,4,Global,all,TRUE +5231,-1.49423204200522,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,4,3,2,4,1,3,4,3,2,2,3,4,1,1,4,2,4,1,2,3,4,3,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Anderson|Graham|Huang|Alter|Hauser|Ross.Slate1|VanLange|Kay|Miyamoto|Bauer|Inbar|Critcher,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,2,Global,all,TRUE +5232,-0.979252265988314,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,4,1,2,3,2,1,1,2,4,3,1,3,1,4,1,1,4,3,3,2,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|VanLange|Miyamoto|Ross.Slate1|Rottenstrich|Hauser|Kay|Critcher|Bauer|Graham|Anderson|Huang|Alter,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,11,Global,all,TRUE +5233,-0.865505243437445,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,5,3,4,3,1,2,2,1,1,2,1,3,1,1,3,1,3,1,1,3,2,2,2,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Inbar|Kay|Rottenstrich|VanLange|Alter|Miyamoto|Hauser|Huang|Critcher|Bauer|Ross.Slate1|Graham,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +5235,-0.638662187888137,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,5,4,4,2,3,5,5,2,4,4,2,5,1,3,3,4,3,2,3,3,2,5,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Miyamoto|Hauser|Rottenstrich|Critcher|VanLange|Inbar|Alter|Huang|Anderson|Ross.Slate1|Kay|Graham,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +5237,0.283209331942134,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,3,2,2,4,1,1,4,3,1,3,4,4,2,1,1,1,3,4,3,4,4,3,3,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Inbar|Graham|Anderson|VanLange|Ross.Slate1|Hauser|Huang|Miyamoto|Critcher|Alter|Kay|Bauer,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,4,Global,all,TRUE +5239,0.49872521128374,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,5,3,3,2,3,3,3,2,2,3,3,2,2,4,2,4,2,2,3,3,3,3,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|VanLange|Rottenstrich|Bauer|Inbar|Miyamoto|Huang|Hauser|Critcher|Alter|Ross.Slate1|Graham|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,13,Global,all,TRUE +5240,0.299686959300973,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,3,2,1,2,3,1,1,2,2,1,1,2,1,4,1,1,3,2,2,1,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Hauser|Huang|Alter|Kay|Ross.Slate1|Miyamoto|VanLange|Graham|Rottenstrich|Inbar|Anderson|Bauer,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +5242,-1.25565478204554,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,5,5,2,3,1,4,3,1,1,1,5,3,4,3,5,1,3,1,1,5,1,3,2,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Graham|Miyamoto|Anderson|Bauer|Inbar|Huang|Ross.Slate1|VanLange|Hauser|Rottenstrich|Alter|Critcher,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,4,Global,all,TRUE +5243,0.0242092061556497,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,5,7,5,5,5,3,4,4,1,5,5,5,1,3,4,2,5,4,1,3,1,3,2,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Critcher|Kay|Rottenstrich|VanLange|Miyamoto|Graham|Huang|Bauer|Hauser|Alter|Inbar|Ross.Slate1,ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,1,Global,all,TRUE +5244,-0.0478916747905073,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,7,6,5,1,1,5,1,1,1,4,5,2,1,5,1,5,1,5,4,3,3,1,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Huang|Rottenstrich|Bauer|VanLange|Ross.Slate1|Graham|Critcher|Kay|Miyamoto|Anderson|Hauser|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,11,Global,all,TRUE +5247,-0.61954604573803,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,4,4,5,2,5,5,2,1,5,5,3,4,5,3,4,3,4,3,4,1,4,1,5,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Critcher|Kay|Huang|Rottenstrich|Hauser|Ross.Slate1|Alter|Miyamoto|Inbar|Anderson|VanLange|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing,11,Global,all,TRUE +5248,0.0948517175558379,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,2,2,3,1,3,4,1,1,1,3,3,1,1,4,1,4,1,1,3,1,1,1,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Inbar|Ross.Slate1|VanLange|Graham|Hauser|Critcher|Anderson|Bauer|Huang|Kay|Miyamoto|Rottenstrich,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE,8,Global,all,TRUE +5250,0.112787714460646,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,4,2,1,3,4,4,3,2,1,2,2,2,2,3,3,2,3,2,2,2,3,2,3,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Kay|Graham|Ross.Slate1|Miyamoto|Inbar|Critcher|Hauser|Rottenstrich|VanLange|Anderson|Bauer|Alter,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,11,Global,all,TRUE +5251,0.385233571066269,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,3,3,4,1,2,4,5,2,2,3,4,2,2,3,2,3,1,2,4,4,4,2,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Kay|Miyamoto|Inbar|Anderson|Critcher|Huang|Bauer|Alter|Hauser|Rottenstrich|VanLange|Ross.Slate1,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,5,Global,all,TRUE +5255,0.53430533433845,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,7,3,3,4,3,2,1,3,3,2,2,2,4,2,3,2,2,1,4,3,2,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Ross.Slate1|Huang|Critcher|Kay|Bauer|Hauser|Inbar|Rottenstrich|VanLange|Miyamoto|Alter|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing,1,Global,all,TRUE +5256,1.14326722667429,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,5,6,2,3,1,2,2,2,3,2,1,2,2,4,2,4,2,2,1,2,2,3,3,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Graham|Kay|Bauer|Hauser|Miyamoto|Anderson|Inbar|Alter|VanLange|Rottenstrich|Critcher|Huang,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,7,Global,all,TRUE +5259,0.620905512917645,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,6,5,3,2,2,2,4,2,2,4,3,2,1,4,2,3,1,2,4,4,3,1,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Alter|Graham|Miyamoto|VanLange|Hauser|Huang|Bauer|Rottenstrich|Critcher|Inbar|Ross.Slate1|Kay,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,1,Global,all,TRUE +5262,1.19651876878737,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,5,1,1,1,4,1,1,1,1,1,1,1,1,1,4,1,1,1,1,1,1,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Inbar|Ross.Slate1|VanLange|Huang|Kay|Hauser|Critcher|Rottenstrich|Alter|Anderson|Miyamoto|Bauer,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,11,Global,all,TRUE +5263,0.232863107937351,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,5,1,3,1,5,1,1,4,2,1,4,5,1,4,4,3,1,1,1,2,3,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Graham|Miyamoto|Anderson|VanLange|Bauer|Huang|Ross.Slate1|Inbar|Critcher|Alter|Rottenstrich|Kay,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,4,Global,all,TRUE +5264,-0.37121513656438,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,5,7,5,1,3,1,2,1,1,1,1,3,4,1,3,1,2,1,2,1,2,3,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Hauser|Graham|Anderson|Rottenstrich|VanLange|Critcher|Kay|Huang|Inbar|Alter|Ross.Slate1|Bauer,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +5266,-0.999813131230154,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,5,7,3,5,2,4,5,4,1,2,5,4,1,1,5,1,5,1,2,3,2,2,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Critcher|Rottenstrich|Huang|Anderson|Alter|Graham|VanLange|Inbar|Bauer|Miyamoto|Ross.Slate1|Hauser,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood,5,Global,all,TRUE +5268,-0.0297002955523016,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,5,2,4,1,1,5,1,1,1,1,3,1,1,4,1,4,1,1,2,4,3,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Miyamoto|Kay|Hauser|Alter|Inbar|Ross.Slate1|Bauer|Critcher|Huang|VanLange|Anderson|Rottenstrich,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,12,Global,all,TRUE +5270,-0.269471347211516,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,3,5,4,2,4,3,1,2,4,4,4,2,4,3,3,3,4,3,2,3,1,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Miyamoto|Anderson|Rottenstrich|Ross.Slate1|Bauer|Alter|Hauser|Inbar|Critcher|Kay|Graham|Huang,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,3,Global,all,TRUE +5272,0.446387011098921,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,3,2,3,2,2,3,2,3,3,3,2,2,2,3,3,3,2,3,3,2,2,3,3,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Ross.Slate1|Graham|Bauer|Inbar|Huang|Critcher|Miyamoto|Hauser|Kay|Rottenstrich|VanLange|Alter,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,1,Global,all,TRUE +5279,-0.163094841416746,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,6,5,4,2,1,5,2,1,1,4,4,2,2,5,1,4,1,2,3,4,3,1,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Anderson|Miyamoto|Bauer|Rottenstrich|Hauser|Alter|VanLange|Ross.Slate1|Inbar|Critcher|Graham|Huang,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,2,Global,all,TRUE +5281,0.297048444509705,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,5,6,3,1,3,2,1,2,1,2,1,2,1,3,2,1,2,2,1,1,1,1,1,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Graham|Hauser|Inbar|Critcher|Ross.Slate1|Miyamoto|Rottenstrich|Alter|Kay|Anderson|VanLange|Huang,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,11,Global,all,TRUE +5282,-1.28794985169775,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,6,2,2,4,2,2,3,1,1,4,2,1,2,4,1,2,1,4,4,1,2,1,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|VanLange|Ross.Slate1|Graham|Bauer|Critcher|Anderson|Rottenstrich|Kay|Miyamoto|Alter|Hauser|Huang,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,7,Global,all,TRUE +5284,-0.984135913822417,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,6,4,2,1,4,5,1,1,5,4,2,1,5,1,3,1,1,4,4,4,1,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Rottenstrich|Miyamoto|Alter|Huang|Hauser|VanLange|Inbar|Anderson|Bauer|Ross.Slate1|Graham|Kay,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood,9,Global,all,TRUE +5287,0.542881063777721,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,5,3,5,5,4,5,5,1,3,4,5,5,1,4,2,4,1,4,4,3,3,1,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Ross.Slate1|Inbar|Hauser|Rottenstrich|Kay|Huang|Critcher|Anderson|VanLange|Miyamoto|Graham|Alter,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,9,Global,all,TRUE +5288,-0.343930293177671,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,2,3,1,2,4,5,2,1,2,2,1,2,4,2,2,3,2,2,4,1,2,1,4,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Alter|Inbar|Critcher|Kay|Bauer|Huang|Rottenstrich|Graham|VanLange|Hauser|Miyamoto|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,1,Global,all,TRUE +5293,0.728600163372749,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,5,5,4,1,1,4,2,1,1,1,4,3,1,4,1,4,1,3,2,4,1,1,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Huang|Inbar|Graham|Rottenstrich|Hauser|Bauer|Kay|Alter|Anderson|VanLange|Miyamoto|Critcher,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,10,Global,all,TRUE +5294,-1.41672755304513,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,5,6,3,1,1,5,4,1,1,5,3,2,1,5,1,5,1,1,3,4,3,1,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Hauser|Huang|Anderson|Rottenstrich|Graham|Bauer|Critcher|Alter|Miyamoto|Kay|VanLange|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,4,Global,all,TRUE +5295,-0.324560994164766,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,3,1,1,3,3,1,1,1,2,1,1,1,1,3,1,1,1,1,3,1,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Bauer|Graham|Rottenstrich|Huang|VanLange|Kay|Hauser|Critcher|Inbar|Alter|Miyamoto|Ross.Slate1,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,1,Global,all,TRUE +5296,-0.558785987453811,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,6,3,2,2,3,2,1,1,3,3,1,1,2,1,4,1,1,1,1,3,1,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Hauser|Bauer|Huang|Inbar|Ross.Slate1|Miyamoto|Graham|Critcher|VanLange|Alter|Rottenstrich|Anderson,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,13,Global,all,TRUE +5297,0.438218309862318,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,,,,,,,,,,,,,,,,,,,,,,,,,,3,7,7,7,1,3,1,2,2,3,1,1,4,3,1,2,4,2,3,1,3,3,3,4,1,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Kay|Anderson|Bauer|Rottenstrich|Huang|Hauser|Alter|Inbar|Critcher|VanLange|Ross.Slate1|Graham,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,3,Global,all,TRUE +5307,-0.446614717367272,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,4,2,1,1,4,3,1,1,4,4,1,1,4,1,4,1,1,3,3,4,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Hauser|Critcher|VanLange|Anderson|Graham|Alter|Kay|Inbar|Miyamoto|Bauer|Huang|Rottenstrich,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,5,Global,all,TRUE +5309,-0.415370989058361,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,4,3,5,2,1,1,1,1,1,1,2,2,1,1,2,1,2,1,1,2,2,1,1,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Ross.Slate1|Kay|Inbar|Huang|VanLange|Miyamoto|Alter|Anderson|Critcher|Bauer|Graham|Rottenstrich,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five,9,Global,all,TRUE +5310,0.951751137316889,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,,,,,,,,,,,,,,,,,,,,,,,,,,2,7,3,5,5,2,2,4,3,3,4,3,3,1,5,4,4,5,2,1,5,3,3,1,5,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|VanLange|Graham|Bauer|Inbar|Critcher|Hauser|Kay|Miyamoto|Huang|Ross.Slate1|Rottenstrich|Anderson,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +5312,-0.805798751967125,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,,,,,,,,,,,,,,,,,,,,,,,,,,3,7,6,6,6,3,2,1,3,2,1,2,2,2,1,3,4,1,3,1,1,1,2,3,1,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|VanLange|Rottenstrich|Kay|Inbar|Miyamoto|Alter|Hauser|Bauer|Anderson|Ross.Slate1|Graham|Critcher,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,10,Global,all,TRUE +5315,-0.0378826432431398,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,6,5,2,3,2,3,3,2,1,3,2,4,1,2,4,1,3,1,3,4,4,4,1,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Ross.Slate1|Anderson|Huang|Alter|Kay|Inbar|Miyamoto|VanLange|Critcher|Bauer|Rottenstrich|Graham,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing,3,Global,all,TRUE +5317,0.136242476827152,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,3,4,1,3,2,2,1,1,1,1,1,3,1,2,1,1,1,1,1,1,1,1,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Miyamoto|Hauser|Alter|Graham|Anderson|Inbar|Rottenstrich|VanLange|Huang|Kay|Ross.Slate1|Bauer,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +5318,-0.190112881486422,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,6,5,5,3,2,2,3,4,1,2,3,3,1,1,4,1,3,1,1,4,2,2,1,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Ross.Slate1|Graham|Critcher|Kay|Miyamoto|Rottenstrich|Bauer|VanLange|Hauser|Inbar|Alter|Huang,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,1,Global,all,TRUE +5319,-0.643536640209203,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,4,1,1,4,3,1,1,3,5,1,1,4,1,3,1,1,4,3,5,1,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Bauer|Huang|Graham|Miyamoto|Alter|Anderson|Critcher|Rottenstrich|VanLange|Hauser|Kay|Ross.Slate1,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,7,Global,all,TRUE +5320,-0.551404049714074,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,4,1,1,1,2,1,1,3,3,1,1,2,1,4,1,1,2,1,1,1,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Bauer|Graham|Miyamoto|Anderson|Inbar|Huang|VanLange|Alter|Critcher|Ross.Slate1|Kay|Rottenstrich,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,5,Global,all,TRUE +5323,-0.474166364071015,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,6,5,5,4,1,2,4,3,1,1,2,3,1,1,3,1,4,1,1,3,3,3,1,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Anderson|Miyamoto|Alter|Rottenstrich|VanLange|Inbar|Ross.Slate1|Bauer|Kay|Critcher|Hauser|Huang,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE,2,Global,all,TRUE +5327,-0.789447703039685,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,3,4,2,2,4,5,2,1,4,4,1,2,5,2,4,1,1,5,5,3,1,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Huang|Graham|Hauser|Miyamoto|Alter|Inbar|VanLange|Ross.Slate1|Critcher|Bauer|Kay|Anderson,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,13,Global,all,TRUE +5329,0.478555502319733,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,3,1,1,3,1,1,1,1,1,1,1,1,1,3,1,1,3,3,1,1,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Ross.Slate1|Bauer|Miyamoto|Kay|Huang|Inbar|Hauser|Alter|Rottenstrich|Anderson|Critcher|VanLange,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,11,Global,all,TRUE +5331,0.161029030308228,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,5,3,1,3,4,3,1,1,3,3,1,1,2,2,4,3,1,3,3,3,1,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Miyamoto|Hauser|Rottenstrich|Ross.Slate1|Kay|Alter|Graham|Inbar|Critcher|Bauer|VanLange|Anderson,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +5335,0.38813888917457,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,6,5,5,4,1,3,4,2,1,1,3,3,1,1,3,1,4,1,1,3,3,3,1,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Rottenstrich|Ross.Slate1|Alter|Kay|Anderson|Critcher|Inbar|VanLange|Hauser|Graham|Bauer|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,6,Global,all,TRUE +5338,0.421347300755046,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,6,3,1,1,2,1,2,1,3,2,1,1,4,1,2,1,1,1,1,2,1,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Graham|VanLange|Bauer|Anderson|Alter|Rottenstrich|Critcher|Kay|Hauser|Ross.Slate1|Miyamoto|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection,5,Global,all,TRUE +5341,0.620512131169213,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,4,3,2,2,2,3,2,2,3,2,1,2,2,2,3,1,2,3,3,2,2,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Miyamoto|Hauser|Rottenstrich|Bauer|Kay|Graham|Huang|VanLange|Inbar|Ross.Slate1|Alter|Critcher,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,1,Global,all,TRUE +5351,0.27213531259723,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,6,6,2,4,1,1,3,2,1,1,1,1,2,2,2,1,4,1,3,2,3,1,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Inbar|Rottenstrich|Hauser|VanLange|Graham|Alter|Huang|Ross.Slate1|Bauer|Anderson|Kay|Critcher,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,11,Global,all,TRUE +5356,1.05258381021209,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,2,1,3,1,4,2,1,1,1,1,1,1,1,1,3,1,3,1,2,1,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Huang|Alter|Miyamoto|Graham|Bauer|Hauser|Anderson|Rottenstrich|VanLange|Inbar|Critcher|Kay,ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,8,Global,all,TRUE +5358,-0.100876413586558,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,5,3,1,2,1,1,3,1,1,1,1,3,1,1,1,1,3,1,1,1,1,1,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Graham|VanLange|Rottenstrich|Ross.Slate1|Critcher|Alter|Anderson|Huang|Kay|Bauer|Inbar|Hauser,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing,8,Global,all,TRUE +5359,0.410399859841542,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,4,4,2,2,2,2,3,1,1,2,2,3,1,2,3,1,3,1,1,2,2,1,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Ross.Slate1|Huang|Graham|Hauser|Inbar|Alter|Anderson|Bauer|VanLange|Kay|Rottenstrich|Miyamoto,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,8,Global,all,TRUE +5361,0.246828798936322,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,6,5,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Miyamoto|Graham|Critcher|Huang|Kay|Rottenstrich|Alter|Hauser|Ross.Slate1|VanLange|Anderson|Bauer,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood,12,Global,all,TRUE +5362,-0.135683419598638,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,4,1,1,1,2,1,1,3,3,1,1,3,1,2,1,1,3,3,4,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Rottenstrich|Huang|Alter|Hauser|Bauer|VanLange|Critcher|Graham|Inbar|Ross.Slate1|Anderson|Kay,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,12,Global,all,TRUE +5365,-0.178521127432285,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,6,6,3,2,1,2,4,3,1,1,1,1,3,1,2,1,4,1,1,2,2,1,1,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Graham|Ross.Slate1|Bauer|Inbar|Alter|VanLange|Huang|Critcher|Hauser|Miyamoto|Rottenstrich|Anderson,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,13,Global,all,TRUE +5369,0.321174812925314,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,5,4,4,1,1,3,4,2,2,3,4,2,2,4,1,4,1,2,4,5,4,1,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|VanLange|Critcher|Huang|Ross.Slate1|Kay|Hauser|Graham|Rottenstrich|Anderson|Inbar|Bauer|Miyamoto,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,10,Global,all,TRUE +5370,0.326971802687682,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,4,1,1,3,3,1,1,4,4,1,1,4,1,3,1,1,4,2,4,1,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Alter|Kay|Miyamoto|Inbar|Bauer|Rottenstrich|Graham|Huang|Ross.Slate1|Critcher|Anderson|VanLange,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,12,Global,all,TRUE +5371,0.384966767749234,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,6,2,5,4,1,3,5,1,1,5,4,4,1,5,5,5,2,1,4,5,5,4,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Miyamoto|Critcher|Bauer|Rottenstrich|VanLange|Ross.Slate1|Graham|Hauser|Kay|Anderson|Huang|Inbar,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood,11,Global,all,TRUE +5374,0.759043481730558,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,5,4,4,4,1,2,4,3,1,1,2,4,3,1,4,1,5,1,1,3,3,3,1,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Hauser|Rottenstrich|Anderson|Miyamoto|Huang|Graham|Alter|VanLange|Ross.Slate1|Inbar|Critcher|Bauer,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +5375,0.800827622750305,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,7,4,3,1,2,1,3,1,1,1,2,3,1,1,5,1,3,1,1,3,2,3,2,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Rottenstrich|Kay|Ross.Slate1|Anderson|Miyamoto|Graham|Critcher|Huang|Alter|Inbar|Hauser|VanLange,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,5,Global,all,TRUE +5376,0.410540084727176,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,7,5,5,1,1,3,5,1,1,4,4,1,1,3,2,3,1,3,3,3,2,2,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Huang|Ross.Slate1|VanLange|Kay|Critcher|Anderson|Miyamoto|Alter|Rottenstrich|Bauer|Hauser|Graham,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,7,Global,all,TRUE +5378,0.584005019732001,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,6,2,1,4,2,3,1,1,1,3,3,1,1,2,1,3,1,4,2,2,3,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Graham|Ross.Slate1|Inbar|Huang|Critcher|Anderson|VanLange|Alter|Kay|Miyamoto|Rottenstrich|Bauer,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,7,Global,all,TRUE +5381,-0.060017035478712,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,5,5,2,4,1,2,1,2,1,1,3,3,1,1,4,1,4,1,1,2,1,1,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Alter|Critcher|Anderson|Graham|Huang|Bauer|Ross.Slate1|Miyamoto|Rottenstrich|Hauser|VanLange|Inbar,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,4,Global,all,TRUE +5383,-0.635756869779835,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,2,6,2,2,1,2,4,3,4,2,2,1,2,2,3,2,2,1,3,2,2,1,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Miyamoto|Hauser|VanLange|Huang|Kay|Critcher|Ross.Slate1|Rottenstrich|Bauer|Graham|Inbar|Anderson,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,13,Global,all,TRUE +5389,0.880970626501666,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,6,4,3,2,1,1,2,1,1,1,1,1,2,1,2,1,3,1,1,1,1,2,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Hauser|Critcher|Graham|Rottenstrich|Miyamoto|Inbar|VanLange|Huang|Bauer|Kay|Alter|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,1,Global,all,TRUE +5397,0.271882155734432,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,5,5,3,2,2,3,4,2,1,1,2,2,2,1,2,1,4,2,2,2,2,2,2,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Inbar|Huang|Graham|Miyamoto|VanLange|Bauer|Anderson|Hauser|Ross.Slate1|Alter|Kay|Critcher,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +5398,0.0603229358444281,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,5,5,2,2,3,2,1,2,1,3,1,1,1,1,1,1,3,1,2,1,1,1,1,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Bauer|Alter|Ross.Slate1|Graham|Kay|Anderson|Critcher|Hauser|Inbar|Miyamoto|VanLange|Huang,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,7,Global,all,TRUE +5400,-0.413659462649594,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,4,4,3,3,1,1,3,1,2,1,3,2,1,1,2,1,3,1,1,3,3,2,1,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Alter|Kay|Anderson|Miyamoto|Huang|Bauer|Critcher|Ross.Slate1|Graham|Hauser|Inbar|VanLange,ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +5403,-0.449379810589939,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,5,6,2,3,2,1,4,2,1,1,1,3,3,1,2,1,3,1,2,1,1,3,1,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Graham|Bauer|Anderson|Ross.Slate1|Miyamoto|VanLange|Hauser|Critcher|Huang|Kay|Alter|Rottenstrich,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,4,Global,all,TRUE +5405,0.595079039076906,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,6,7,5,3,2,5,5,1,1,5,5,3,1,5,2,5,1,1,5,5,5,2,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Critcher|Kay|Graham|Bauer|Anderson|Rottenstrich|Huang|Alter|Miyamoto|VanLange|Hauser|Inbar,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,6,Global,all,TRUE +5406,0.723196555358814,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Hauser|VanLange|Bauer|Kay|Anderson|Rottenstrich|Graham|Ross.Slate1|Inbar|Critcher|Huang|Alter,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +5411,-0.309401511466261,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,3,5,4,3,4,4,2,4,3,3,2,4,1,4,3,3,1,2,3,2,3,5,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Graham|Critcher|Anderson|Hauser|Miyamoto|VanLange|Inbar|Rottenstrich|Alter|Bauer|Kay|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,4,Global,all,TRUE +5413,-0.453729851789975,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,4,1,2,2,1,1,2,1,1,1,1,1,1,1,2,1,3,1,1,1,2,1,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Huang|Hauser|VanLange|Rottenstrich|Ross.Slate1|Inbar|Kay|Critcher|Graham|Miyamoto|Bauer|Alter,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection,1,Global,all,TRUE +5414,0.15839051551696,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,4,6,3,4,1,1,4,1,1,1,1,1,1,2,1,1,4,1,3,1,1,1,1,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Ross.Slate1|Graham|VanLange|Inbar|Bauer|Huang|Anderson|Kay|Miyamoto|Critcher|Hauser|Rottenstrich,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,8,Global,all,TRUE +5415,-0.342356766183939,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,3,4,4,3,3,4,3,3,3,4,3,4,4,1,4,3,3,3,3,4,1,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Bauer|Alter|Inbar|Hauser|Anderson|Huang|Rottenstrich|Miyamoto|Kay|Critcher|Ross.Slate1|VanLange,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,6,Global,all,TRUE +5416,-0.439373004513171,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,5,1,1,5,5,1,1,5,5,1,1,5,1,5,1,1,5,5,5,1,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|VanLange|Anderson|Alter|Miyamoto|Hauser|Bauer|Huang|Graham|Rottenstrich|Critcher|Ross.Slate1|Inbar,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,3,Global,all,TRUE +5417,0.299813537732372,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,7,5,5,1,2,4,4,1,3,4,4,4,1,5,1,4,1,1,4,4,4,1,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|VanLange|Graham|Bauer|Alter|Huang|Critcher|Anderson|Miyamoto|Ross.Slate1|Rottenstrich|Hauser|Kay,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,8,Global,all,TRUE +5418,-0.127107690159367,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,1,6,2,1,1,1,1,1,1,1,1,5,1,1,2,1,1,1,1,1,5,4,1,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Huang|Bauer|Kay|Hauser|Rottenstrich|Alter|Miyamoto|VanLange|Critcher|Anderson|Ross.Slate1|Inbar,ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,11,Global,all,TRUE +5420,-1.10697640052179,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,6,7,7,3,1,1,1,1,1,1,1,1,1,1,1,1,3,1,1,1,1,1,1,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Huang|Rottenstrich|Kay|Ross.Slate1|Alter|Miyamoto|Critcher|VanLange|Inbar|Anderson|Graham|Hauser,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,11,Global,all,TRUE +5422,-0.579082274849216,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,5,4,1,4,1,2,1,3,4,2,3,4,4,3,1,3,1,1,1,3,1,1,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|VanLange|Anderson|Ross.Slate1|Bauer|Critcher|Alter|Graham|Hauser|Miyamoto|Huang|Inbar|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,3,Global,all,TRUE +5424,0.948719240777188,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,4,3,3,1,3,4,3,1,1,3,3,1,1,3,1,3,1,2,3,3,3,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Huang|Alter|Kay|Hauser|Ross.Slate1|Rottenstrich|Anderson|Miyamoto|VanLange|Graham|Inbar|Bauer,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,8,Global,all,TRUE +5425,0.625522357434715,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,5,5,3,1,2,3,1,1,1,3,1,2,1,4,1,4,1,1,1,1,2,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Hauser|Alter|Anderson|Miyamoto|Huang|Ross.Slate1|Bauer|Graham|Critcher|Rottenstrich|Inbar|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,4,Global,all,TRUE +5426,0.377191448261066,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,5,5,5,4,2,3,4,2,1,2,2,3,4,2,3,2,5,1,1,2,2,3,2,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Graham|Inbar|Bauer|Ross.Slate1|Huang|VanLange|Alter|Rottenstrich|Critcher|Kay|Miyamoto|Hauser,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,1,Global,all,TRUE +5427,0.609704915141343,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,5,4,3,2,1,3,2,2,1,1,4,2,1,1,3,1,2,1,1,3,4,2,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Rottenstrich|Miyamoto|Graham|Bauer|Huang|Kay|Critcher|Ross.Slate1|Hauser|Alter|VanLange|Inbar,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +5431,0.393669075619904,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,,,,,,,,,,,,,,,,,,,,,,,,,,6,4,6,5,5,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Miyamoto|Bauer|Alter|Graham|Kay|Critcher|Rottenstrich|Huang|Ross.Slate1|VanLange|Anderson|Hauser,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,12,Global,all,TRUE +5432,0.412251611135944,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,6,3,2,2,4,3,4,2,3,1,3,5,1,5,5,4,1,5,2,3,2,4,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Rottenstrich|Kay|Miyamoto|Ross.Slate1|Graham|VanLange|Hauser|Bauer|Huang|Alter|Anderson|Inbar,ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,12,Global,all,TRUE +5434,0.479735647565032,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,6,5,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Miyamoto|Critcher|Huang|Rottenstrich|Hauser|Anderson|VanLange|Graham|Inbar|Alter|Ross.Slate1|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,7,Global,all,TRUE +5437,0.246828798936322,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,5,1,2,3,1,1,1,1,3,1,1,1,3,1,3,1,1,1,1,1,1,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Hauser|Graham|Bauer|VanLange|Anderson|Alter|Huang|Inbar|Rottenstrich|Miyamoto|Ross.Slate1|Kay,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,6,Global,all,TRUE +5440,-0.707857750725992,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,6,1,4,2,1,4,3,1,1,3,3,1,1,4,1,4,1,1,3,4,1,1,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Ross.Slate1|Kay|Critcher|Miyamoto|Inbar|Rottenstrich|Alter|VanLange|Anderson|Bauer|Huang|Graham,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing,10,Global,all,TRUE +5443,-0.616907530946762,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,6,5,5,1,4,5,3,1,1,4,3,4,1,4,3,4,1,3,2,4,3,4,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Huang|Bauer|Anderson|Hauser|Critcher|VanLange|Inbar|Ross.Slate1|Graham|Miyamoto|Kay|Rottenstrich,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,4,Global,all,TRUE +5446,1.21800662241171,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,5,6,6,3,2,1,2,4,1,2,2,4,3,2,4,3,2,1,2,2,2,3,3,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Anderson|Bauer|VanLange|Graham|Alter|Kay|Miyamoto|Critcher|Ross.Slate1|Hauser|Huang|Rottenstrich,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +5447,-0.739101479034903,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,3,2,1,2,2,2,4,1,1,2,1,1,1,1,1,1,4,1,1,1,1,1,1,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Ross.Slate1|Huang|Alter|Bauer|Anderson|Graham|Inbar|VanLange|Rottenstrich|Critcher|Hauser|Kay,ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,6,Global,all,TRUE +5450,-0.868270336660112,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,4,2,2,3,4,1,1,4,4,2,1,5,1,3,1,2,3,4,4,1,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Anderson|Rottenstrich|Bauer|VanLange|Miyamoto|Inbar|Critcher|Kay|Alter|Hauser|Ross.Slate1|Graham,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,2,Global,all,TRUE +5451,-0.38861975230572,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,7,4,1,2,4,2,1,1,1,4,1,1,2,1,4,1,1,3,2,3,1,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Inbar|Huang|Hauser|Bauer|Ross.Slate1|Miyamoto|Alter|Kay|VanLange|Graham|Rottenstrich|Anderson,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,13,Global,all,TRUE +5453,-0.648277837687072,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,6,7,7,4,1,1,4,2,1,1,4,3,1,1,5,1,4,1,2,3,4,3,1,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|VanLange|Hauser|Rottenstrich|Anderson|Kay|Huang|Graham|Alter|Critcher|Bauer|Inbar|Ross.Slate1,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE,5,Global,all,TRUE +5458,0.919456067664678,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,3,2,2,3,1,1,1,1,4,3,1,2,1,4,1,2,2,1,1,1,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Graham|Inbar|Alter|Anderson|Kay|Critcher|Bauer|Huang|Rottenstrich|Miyamoto|Hauser|Ross.Slate1,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,5,Global,all,TRUE +5460,0.396040787094138,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,4,5,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Kay|Graham|Ross.Slate1|Inbar|Anderson|Miyamoto|Alter|Rottenstrich|Hauser|Critcher|Huang|Bauer,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,6,Global,all,TRUE +5463,1.13285339239485,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,4,5,2,3,1,4,2,1,3,2,3,1,1,2,1,4,1,1,2,4,3,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Anderson|Inbar|Bauer|Rottenstrich|VanLange|Critcher|Ross.Slate1|Huang|Miyamoto|Kay|Alter|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,2,Global,all,TRUE +5464,-0.257470339484111,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,7,6,4,1,2,4,3,1,2,3,3,2,1,4,1,4,1,3,3,4,4,2,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Graham|Rottenstrich|Huang|Ross.Slate1|Inbar|Critcher|Miyamoto|Bauer|Hauser|VanLange|Kay|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,1,Global,all,TRUE +5465,0.759310285047592,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,6,6,3,1,1,2,1,1,1,1,1,1,1,2,1,4,1,3,1,2,1,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Rottenstrich|Ross.Slate1|Miyamoto|Inbar|Hauser|Bauer|Kay|Critcher|Huang|VanLange|Alter|Graham,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,1,Global,all,TRUE +5466,-0.352632601048341,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,4,2,3,3,3,3,2,4,4,1,3,4,1,4,2,1,4,4,4,3,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Bauer|Rottenstrich|Graham|Miyamoto|Huang|Inbar|Anderson|Critcher|Kay|VanLange|Alter|Ross.Slate1,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,8,Global,all,TRUE +5468,0.556846754776691,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,3,4,1,2,3,3,2,2,3,3,3,1,3,3,4,1,3,3,3,3,3,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Ross.Slate1|Rottenstrich|Huang|Alter|Hauser|Inbar|Miyamoto|Bauer|VanLange|Kay|Critcher|Graham,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +5473,0.0725771004346305,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,6,4,4,1,1,2,3,1,2,4,3,1,1,4,1,4,3,3,3,3,3,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Alter|Huang|Anderson|Graham|Inbar|Critcher|Hauser|Rottenstrich|Kay|Ross.Slate1|Bauer|Miyamoto,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,4,Global,all,TRUE +5474,-0.0134894715104968,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,2,4,3,1,1,4,1,1,1,1,1,1,2,1,2,1,1,3,1,1,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Alter|Huang|Inbar|Bauer|Graham|VanLange|Rottenstrich|Kay|Miyamoto|Ross.Slate1|Critcher|Hauser,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,1,Global,all,TRUE +5475,0.631712728945515,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,5,3,2,3,1,2,1,3,3,2,2,1,3,1,2,1,1,2,2,2,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Kay|Graham|Bauer|Rottenstrich|Anderson|Miyamoto|Alter|Hauser|VanLange|Huang|Inbar|Critcher,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,6,Global,all,TRUE +5476,0.180398329321133,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,7,4,2,5,1,1,3,5,1,1,3,4,2,2,3,1,4,1,1,3,2,4,2,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Inbar|Anderson|Critcher|VanLange|Hauser|Ross.Slate1|Miyamoto|Bauer|Alter|Rottenstrich|Graham|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,3,Global,all,TRUE +5477,-0.306496193357959,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,6,2,4,1,1,4,3,2,1,5,3,2,1,5,1,5,1,2,4,5,3,2,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Alter|Miyamoto|Bauer|Ross.Slate1|Graham|Hauser|Rottenstrich|Kay|Anderson|Huang|VanLange|Critcher,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,10,Global,all,TRUE +5478,0.902585058557406,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,5,4,5,1,3,1,2,1,1,3,1,3,1,1,3,1,5,3,1,1,1,1,1,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Huang|Graham|VanLange|Rottenstrich|Critcher|Kay|Hauser|Alter|Bauer|Anderson|Inbar|Ross.Slate1,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,11,Global,all,TRUE +5480,0.151273155623659,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,3,2,2,2,4,4,2,2,3,4,1,3,4,3,1,3,3,4,4,2,3,1,4,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Critcher|Bauer|Ross.Slate1|Alter|Inbar|Miyamoto|VanLange|Hauser|Graham|Rottenstrich|Kay|Huang,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,1,Global,all,TRUE +5481,-0.299647862252291,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,6,4,2,2,4,2,1,2,3,3,2,1,3,1,3,1,2,3,2,3,1,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|VanLange|Anderson|Graham|Hauser|Miyamoto|Critcher|Ross.Slate1|Kay|Huang|Rottenstrich|Inbar|Bauer,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,3,Global,all,TRUE +5487,0.344500771389822,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,3,3,3,1,1,3,4,1,1,3,2,2,1,5,1,4,1,2,3,3,4,1,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Huang|Anderson|Bauer|Ross.Slate1|Hauser|VanLange|Alter|Miyamoto|Rottenstrich|Inbar|Graham|Critcher,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +5488,-0.382949340974751,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,6,5,5,2,1,1,2,1,1,1,1,1,1,1,1,1,4,1,1,1,1,1,1,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Anderson|VanLange|Rottenstrich|Ross.Slate1|Alter|Critcher|Huang|Hauser|Inbar|Bauer|Kay|Miyamoto,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,2,Global,all,TRUE +5492,-1.46009664204224,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,4,3,3,2,2,2,3,2,1,1,2,1,1,1,2,1,2,1,1,1,1,2,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Critcher|VanLange|Bauer|Graham|Rottenstrich|Hauser|Huang|Inbar|Alter|Miyamoto|Ross.Slate1|Anderson,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,13,Global,all,TRUE +5494,0.312345926623245,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,4,5,4,3,1,1,3,2,1,1,3,5,2,1,5,1,4,1,1,3,2,5,2,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Critcher|Ross.Slate1|Graham|Rottenstrich|Bauer|Kay|Anderson|VanLange|Huang|Hauser|Miyamoto|Inbar,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,8,Global,all,TRUE +5495,0.297048444509705,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,2,1,1,3,1,1,1,1,3,1,1,3,1,3,1,2,2,1,1,1,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Alter|Bauer|VanLange|Ross.Slate1|Graham|Inbar|Anderson|Hauser|Kay|Huang|Rottenstrich|Critcher,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +5496,0.25262578869869,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,7,6,4,2,2,3,4,1,1,3,3,2,1,3,1,3,1,3,3,4,3,1,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Hauser|Graham|Ross.Slate1|Alter|Rottenstrich|Bauer|Inbar|Critcher|Huang|Kay|VanLange|Anderson,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,13,Global,all,TRUE +5499,-0.256683575987245,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,6,6,5,3,2,1,3,2,1,1,1,1,1,3,3,1,4,1,1,2,2,1,1,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Hauser|Alter|Critcher|Ross.Slate1|Miyamoto|Huang|Anderson|Kay|VanLange|Bauer|Graham|Inbar,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +5500,0.728726741804148,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,5,4,3,4,1,1,5,4,1,1,4,5,2,1,4,1,4,1,2,4,3,4,1,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|VanLange|Anderson|Miyamoto|Ross.Slate1|Bauer|Graham|Kay|Inbar|Rottenstrich|Critcher|Huang|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,3,Global,all,TRUE +5505,-0.778640487011815,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,5,5,3,4,4,2,4,2,1,2,3,4,2,2,5,2,2,1,2,3,3,3,2,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Alter|Miyamoto|Kay|Bauer|Huang|Graham|Hauser|Rottenstrich|Ross.Slate1|Anderson|Critcher|Inbar,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,11,Global,all,TRUE +5507,0.631852953831151,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,2,3,1,2,2,1,1,1,3,1,1,2,1,4,1,3,2,2,4,1,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Kay|Inbar|Bauer|Huang|Miyamoto|Ross.Slate1|Hauser|Critcher|Rottenstrich|VanLange|Anderson|Alter,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,12,Global,all,TRUE +5508,0.743883999032053,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,5,4,5,4,3,4,3,4,3,4,3,4,4,4,5,3,4,2,4,3,5,4,2,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Anderson|Rottenstrich|VanLange|Huang|Graham|Bauer|Miyamoto|Alter|Kay|Critcher|Ross.Slate1|Hauser,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,2,Global,all,TRUE +5509,0.111455923346076,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,7,6,5,2,1,3,4,3,2,1,4,3,2,2,4,1,4,2,2,3,4,3,1,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Kay|Graham|Inbar|Bauer|VanLange|Rottenstrich|Huang|Critcher|Miyamoto|Alter|Ross.Slate1|Hauser,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +5511,0.346481326586222,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,5,3,2,4,2,3,2,2,2,3,3,3,2,3,2,2,1,2,2,2,4,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Miyamoto|Hauser|Inbar|Huang|Critcher|Rottenstrich|Ross.Slate1|Alter|Anderson|Bauer|VanLange|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood,10,Global,all,TRUE +5512,0.161155608739627,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,3,3,3,2,2,3,3,4,2,2,3,1,2,2,2,2,3,2,1,2,1,2,2,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Alter|Anderson|Graham|Inbar|Kay|Hauser|Bauer|Critcher|Huang|Ross.Slate1|VanLange|Rottenstrich,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +5515,0.327365184436115,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,5,5,4,4,2,3,4,4,1,3,4,4,2,2,5,4,4,1,1,5,4,5,4,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Anderson|Bauer|Huang|Ross.Slate1|Hauser|VanLange|Inbar|Kay|Miyamoto|Graham|Critcher|Alter,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +5517,0.104478788338409,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,3,1,1,3,3,1,1,3,3,2,2,3,2,3,1,1,4,3,2,2,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Kay|Bauer|Huang|Alter|Inbar|VanLange|Ross.Slate1|Critcher|Hauser|Anderson|Miyamoto|Rottenstrich,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,11,Global,all,TRUE +5518,0.205704842982041,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,5,1,1,5,5,1,1,4,5,1,1,5,1,5,1,1,4,5,4,1,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Rottenstrich|Miyamoto|Kay|Huang|Inbar|Ross.Slate1|Bauer|Graham|Anderson|Critcher|Hauser|VanLange,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,10,Global,all,TRUE +5522,-0.111290247865995,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,6,5,2,4,1,1,3,4,1,1,3,1,2,1,1,1,3,2,1,4,2,1,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Huang|Graham|Ross.Slate1|Rottenstrich|Kay|Bauer|VanLange|Inbar|Miyamoto|Alter|Hauser|Critcher,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,1,Global,all,TRUE +5525,0.0508338644768921,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,1,3,3,1,1,3,3,4,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Ross.Slate1|Graham|Hauser|VanLange|Huang|Rottenstrich|Alter|Bauer|Anderson|Miyamoto|Kay|Critcher,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +5528,-1.0243351068648,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,7,5,4,2,4,2,4,1,1,2,5,2,3,5,1,4,1,1,3,3,5,2,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Anderson|Critcher|Miyamoto|Hauser|Rottenstrich|Inbar|Bauer|Graham|Kay|Alter|VanLange|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,2,Global,all,TRUE +5532,-0.173508675696184,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,3,5,2,3,1,2,1,1,2,1,1,1,1,2,3,1,4,1,1,1,1,1,1,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|VanLange|Graham|Anderson|Critcher|Bauer|Rottenstrich|Miyamoto|Ross.Slate1|Huang|Hauser|Inbar|Alter,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,4,Global,all,TRUE +5534,0.125168457482248,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,6,6,2,1,1,4,1,2,1,2,1,3,3,1,3,1,3,2,1,3,3,4,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Hauser|Ross.Slate1|Bauer|Kay|Anderson|Alter|Inbar|Critcher|VanLange|Graham|Miyamoto|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing,6,Global,all,TRUE +5535,-1.0414729192891,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,7,7,5,1,2,3,3,2,1,3,2,2,2,3,1,2,1,1,5,3,2,1,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Inbar|Hauser|Huang|VanLange|Ross.Slate1|Rottenstrich|Graham|Miyamoto|Alter|Critcher|Kay|Anderson,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +5537,0.537604034195185,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,1,3,1,1,1,3,1,1,4,3,4,2,3,3,4,4,4,1,5,1,3,2,2,1,3,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Inbar|Ross.Slate1|VanLange|Huang|Bauer|Anderson|Hauser|Kay|Rottenstrich|Miyamoto|Critcher|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,7,Global,all,TRUE +5539,0.551443146762756,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,5,2,1,2,2,1,1,1,1,2,2,1,2,1,2,1,1,2,2,2,1,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Alter|Hauser|Kay|VanLange|Ross.Slate1|Inbar|Huang|Graham|Bauer|Rottenstrich|Critcher|Anderson,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,13,Global,all,TRUE +5540,0.990503381796936,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,7,6,4,2,2,4,4,1,2,4,5,2,1,5,2,3,1,3,4,4,4,2,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Hauser|Alter|Rottenstrich|Ross.Slate1|Bauer|Inbar|Anderson|Huang|VanLange|Miyamoto|Graham|Critcher,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,8,Global,all,TRUE +5541,-0.146490635626508,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,6,6,3,2,2,2,3,2,2,2,3,2,2,3,2,2,1,1,4,3,3,1,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Critcher|VanLange|Miyamoto|Rottenstrich|Hauser|Ross.Slate1|Inbar|Graham|Bauer|Alter|Huang|Anderson,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,13,Global,all,TRUE +5542,0.57648285710663,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,4,3,3,4,3,3,3,1,2,2,2,3,1,4,3,3,2,3,1,3,4,1,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Bauer|Huang|Graham|VanLange|Miyamoto|Ross.Slate1|Kay|Inbar|Rottenstrich|Critcher|Hauser|Anderson,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection,13,Global,all,TRUE +5548,0.0249959696525159,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,6,7,5,2,1,1,3,1,1,2,1,3,1,1,3,1,3,1,1,2,1,1,1,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Ross.Slate1|VanLange|Critcher|Hauser|Graham|Bauer|Kay|Miyamoto|Inbar|Huang|Anderson|Alter,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +5551,-0.021798397632734,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,5,4,1,1,4,5,1,1,4,5,2,1,5,1,4,1,1,5,4,5,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|VanLange|Huang|Anderson|Inbar|Rottenstrich|Bauer|Critcher|Miyamoto|Alter|Hauser|Kay|Ross.Slate1,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,4,Global,all,TRUE +5553,-0.0299670988693358,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,4,2,1,4,3,4,3,3,3,1,2,3,4,4,4,3,3,1,3,4,3,3,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|VanLange|Anderson|Kay|Miyamoto|Hauser|Rottenstrich|Alter|Huang|Bauer|Inbar|Critcher|Ross.Slate1,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +5554,-0.329838023747302,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,5,4,3,4,1,3,3,4,1,1,4,3,3,1,4,1,4,1,1,3,3,3,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Anderson|Rottenstrich|Inbar|Critcher|Huang|Miyamoto|Graham|VanLange|Ross.Slate1|Alter|Hauser|Bauer,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,2,Global,all,TRUE +5558,0.93632707677195,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,2,1,2,2,1,5,1,4,4,1,2,2,1,1,1,2,3,1,1,1,1,1,2,1,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Alter|Huang|Kay|Inbar|Graham|Critcher|Hauser|VanLange|Bauer|Ross.Slate1|Anderson|Miyamoto,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,12,Global,all,TRUE +5559,-0.57275167845278,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,6,5,3,1,1,2,1,1,1,1,1,1,1,2,1,3,1,1,3,1,4,1,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Anderson|Kay|Alter|Rottenstrich|Inbar|VanLange|Bauer|Hauser|Critcher|Ross.Slate1|Miyamoto|Graham,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing,2,Global,all,TRUE +5562,0.625522357434715,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,5,3,3,1,3,1,1,1,1,3,1,1,3,1,4,1,1,1,3,2,1,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|VanLange|Huang|Miyamoto|Graham|Kay|Anderson|Critcher|Hauser|Bauer|Rottenstrich|Inbar|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,7,Global,all,TRUE +5566,-0.21541939514733,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,6,3,1,1,3,3,1,1,2,1,1,1,1,1,1,3,1,3,1,1,1,1,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Graham|Inbar|Huang|VanLange|Alter|Anderson|Critcher|Ross.Slate1|Rottenstrich|Hauser|Bauer|Kay,ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,7,Global,all,TRUE +5567,-0.253778257878943,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,4,2,1,4,4,1,1,4,5,2,1,4,2,4,1,1,3,4,4,2,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Miyamoto|VanLange|Alter|Hauser|Graham|Ross.Slate1|Inbar|Huang|Bauer|Rottenstrich|Critcher|Kay,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,1,Global,all,TRUE +5576,-0.296096005532758,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,2,4,2,2,3,3,1,2,3,1,2,2,2,4,2,2,2,2,1,2,3,1,2,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|VanLange|Anderson|Huang|Hauser|Alter|Miyamoto|Critcher|Inbar|Ross.Slate1|Rottenstrich|Graham|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,3,Global,all,TRUE +5577,0.0728439037516647,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,4,3,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Rottenstrich|Anderson|Miyamoto|Critcher|Hauser|Graham|Alter|VanLange|Ross.Slate1|Kay|Inbar|Huang,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +5578,0.620245327852179,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,5,5,3,1,1,4,3,1,1,3,3,3,1,2,1,4,1,2,2,3,1,1,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Inbar|Huang|Ross.Slate1|Anderson|Hauser|Critcher|Bauer|Miyamoto|Rottenstrich|Alter|Kay|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,5,Global,all,TRUE +5579,0.745330947594386,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,6,5,4,5,2,1,1,4,1,1,4,5,1,1,4,1,3,1,2,3,3,5,1,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Kay|Critcher|Miyamoto|Hauser|VanLange|Huang|Alter|Anderson|Rottenstrich|Bauer|Inbar|Graham,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,9,Global,all,TRUE +5582,-0.311115263345628,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,5,5,5,5,1,5,4,5,4,1,5,4,5,1,5,5,3,1,4,3,5,4,4,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Graham|Miyamoto|Inbar|Ross.Slate1|Anderson|Hauser|Critcher|Alter|Rottenstrich|Huang|Bauer|Kay,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE,6,Global,all,TRUE +5583,-0.264852277223847,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,6,2,2,1,3,1,1,1,3,3,1,1,4,1,3,1,1,3,1,3,1,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Kay|Rottenstrich|VanLange|Miyamoto|Graham|Anderson|Hauser|Bauer|Huang|Critcher|Inbar|Alter,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing,7,Global,all,TRUE +5584,0.189100637191803,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,plu,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,2,2,1,1,2,4,4,5,1,1,3,5,1,1,5,1,5,3,1,3,5,5,1,plu,plu,plu,USA,"Pacific Lutheran University, Tacoma, WA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Hauser|Graham|Anderson|Bauer|Miyamoto|Rottenstrich|Huang|VanLange|Critcher|Kay|Alter|Ross.Slate1,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +5586,-0.278817968222817,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,5,3,1,4,1,1,3,1,1,1,3,1,1,1,3,1,2,1,1,1,3,1,1,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Kay|Bauer|Ross.Slate1|Hauser|Anderson|Inbar|Miyamoto|Critcher|Rottenstrich|Huang|VanLange|Alter,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +5587,0.207289790959409,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,6,6,5,4,1,1,3,2,1,1,3,3,1,1,4,1,3,1,1,3,3,3,1,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Kay|Critcher|VanLange|Anderson|Alter|Graham|Hauser|Rottenstrich|Bauer|Miyamoto|Huang|Ross.Slate1,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,5,Global,all,TRUE +5588,0.0481953496856243,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,5,6,5,3,1,1,3,1,1,1,1,2,1,1,1,1,3,1,1,1,1,1,1,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|VanLange|Hauser|Anderson|Miyamoto|Ross.Slate1|Kay|Inbar|Critcher|Bauer|Huang|Graham|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,4,Global,all,TRUE +5589,0.230617974894517,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,3,3,2,1,2,2,1,3,3,2,1,2,2,1,2,1,1,1,1,1,2,2,1,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Miyamoto|Anderson|Inbar|VanLange|Hauser|Ross.Slate1|Bauer|Critcher|Graham|Rottenstrich|Alter|Huang,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,3,Global,all,TRUE +5592,-0.0435416335904724,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,5,4,3,2,1,3,2,1,1,1,2,3,2,1,3,1,3,1,1,2,2,1,1,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Hauser|VanLange|Alter|Huang|Kay|Bauer|Anderson|Miyamoto|Rottenstrich|Ross.Slate1|Critcher|Inbar,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,8,Global,all,TRUE +5595,0.573844342315362,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,7,6,3,1,1,4,2,1,1,3,4,1,1,5,1,4,1,1,1,3,4,1,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Huang|Inbar|Kay|Anderson|Ross.Slate1|Bauer|Alter|Critcher|VanLange|Graham|Miyamoto|Hauser,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,5,Global,all,TRUE +5599,-0.0793999809458531,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,5,5,2,3,3,2,2,4,1,2,3,3,1,1,1,1,3,1,4,3,3,1,1,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Alter|Ross.Slate1|Rottenstrich|Inbar|Graham|Bauer|VanLange|Critcher|Huang|Anderson|Kay|Miyamoto,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,11,Global,all,TRUE +5601,0.191739151983072,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,5,5,4,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Hauser|Huang|Alter|Ross.Slate1|Bauer|Anderson|Rottenstrich|Critcher|Miyamoto|Graham|VanLange|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,7,Global,all,TRUE +5610,-0.440424345856472,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,2,3,1,1,3,1,1,1,1,3,1,1,1,1,3,1,1,2,3,1,1,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Rottenstrich|Graham|Critcher|Inbar|Huang|Anderson|Kay|Ross.Slate1|Hauser|Bauer|VanLange|Miyamoto,ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,7,Global,all,TRUE +5611,-0.87406732642248,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,,,,,,,,,,,,,,,,,,,,,,,,,,3,7,7,6,6,1,2,1,2,1,1,1,2,3,1,1,3,1,1,1,1,1,1,3,1,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Alter|Anderson|VanLange|Inbar|Graham|Ross.Slate1|Bauer|Hauser|Huang|Kay|Miyamoto|Critcher,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,3,Global,all,TRUE +5612,-0.110236681052095,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,6,2,2,3,2,2,2,2,3,1,2,1,2,2,2,1,2,2,2,2,1,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Kay|Rottenstrich|Ross.Slate1|Miyamoto|Huang|Bauer|VanLange|Alter|Hauser|Critcher|Graham|Inbar,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,1,Global,all,TRUE +5614,1.19651876878737,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,7,6,3,2,1,2,4,1,1,2,3,1,2,3,1,3,1,1,3,3,4,1,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Alter|Graham|Anderson|Kay|Inbar|Ross.Slate1|Bauer|Miyamoto|VanLange|Critcher|Hauser|Rottenstrich,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +5615,0.205578264550642,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,4,4,2,2,3,2,1,2,4,4,1,1,4,2,3,2,1,3,3,3,2,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Bauer|Critcher|Hauser|Alter|Ross.Slate1|Anderson|Huang|VanLange|Inbar|Rottenstrich|Miyamoto|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE,7,Global,all,TRUE +5619,0.622883842643447,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,7,5,2,2,4,2,1,1,1,1,1,2,1,2,1,2,1,1,2,2,1,1,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Bauer|Inbar|Huang|VanLange|Anderson|Hauser|Rottenstrich|Miyamoto|Ross.Slate1|Critcher|Kay|Alter,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +5622,-0.403383627785192,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,5,6,2,3,2,4,4,3,3,2,3,3,4,3,4,2,3,1,5,3,4,3,1,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|VanLange|Bauer|Rottenstrich|Graham|Kay|Anderson|Inbar|Alter|Hauser|Miyamoto|Huang|Ross.Slate1,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,7,Global,all,TRUE +5623,-0.134756431216137,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,1,2,2,2,2,2,3,1,2,3,2,1,1,1,2,2,2,1,2,2,2,2,2,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Inbar|Huang|Alter|Hauser|Anderson|Miyamoto|Kay|Graham|Critcher|Ross.Slate1|VanLange|Bauer,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,6,Global,all,TRUE +5625,-0.132384719741903,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,3,6,3,4,1,1,1,3,4,1,4,3,4,5,1,1,1,2,2,3,2,5,4,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Critcher|Bauer|VanLange|Hauser|Anderson|Rottenstrich|Huang|Graham|Kay|Inbar|Alter|Miyamoto,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,6,Global,all,TRUE +5626,-1.81307888414766,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,4,5,2,1,2,1,3,1,2,2,3,1,3,2,2,2,4,1,2,1,2,1,2,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Anderson|Hauser|Inbar|Huang|Bauer|Rottenstrich|Alter|Miyamoto|VanLange|Graham|Kay|Ross.Slate1,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE,2,Global,all,TRUE +5627,1.00842795771811,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,5,5,3,1,1,3,3,1,1,3,3,1,1,3,1,3,1,1,2,3,3,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Anderson|Bauer|VanLange|Hauser|Inbar|Rottenstrich|Miyamoto|Critcher|Ross.Slate1|Graham|Alter|Kay,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +5632,-0.060017035478712,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,2,2,1,2,2,2,2,1,1,2,2,3,1,3,1,2,1,3,1,2,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Huang|Alter|Rottenstrich|VanLange|Ross.Slate1|Anderson|Inbar|Hauser|Kay|Graham|Critcher|Bauer,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +5636,0.337779018715552,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,6,4,1,1,3,4,1,1,4,3,2,1,3,1,2,1,1,4,3,4,1,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Inbar|Hauser|Critcher|Kay|Ross.Slate1|Huang|Rottenstrich|Anderson|Miyamoto|Alter|Graham|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,9,Global,all,TRUE +5637,0.468661628220128,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,3,5,2,2,5,4,2,1,4,5,2,2,4,1,4,2,1,5,5,5,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Rottenstrich|Inbar|Critcher|Alter|Kay|Graham|VanLange|Miyamoto|Huang|Hauser|Bauer|Ross.Slate1,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,1,Global,all,TRUE +5638,-0.2250486914005,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,5,5,5,2,2,4,4,2,1,3,4,2,1,4,1,4,1,2,3,4,4,1,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Alter|Ross.Slate1|Kay|VanLange|Bauer|Inbar|Rottenstrich|Huang|Miyamoto|Hauser|Anderson|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,12,Global,all,TRUE +5639,0.372712603159032,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,3,4,3,2,2,4,3,2,2,4,2,2,3,2,2,4,2,2,2,2,2,2,3,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|VanLange|Huang|Critcher|Rottenstrich|Anderson|Bauer|Miyamoto|Graham|Hauser|Kay|Inbar|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood,6,Global,all,TRUE +5640,0.0119436205818103,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,1,3,3,5,3,2,1,3,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Bauer|Graham|Anderson|Alter|Critcher|Huang|VanLange|Rottenstrich|Miyamoto|Ross.Slate1|Kay|Hauser,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,4,Global,all,TRUE +5641,-1.07284100055881,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,6,6,6,3,1,2,3,3,1,1,2,2,1,1,4,1,4,1,1,1,3,2,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Kay|Critcher|Ross.Slate1|Miyamoto|VanLange|Graham|Alter|Rottenstrich|Bauer|Huang|Inbar|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,13,Global,all,TRUE +5643,-0.298467717006992,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,1,5,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Inbar|Miyamoto|Ross.Slate1|Rottenstrich|Huang|Bauer|VanLange|Graham|Hauser|Alter|Critcher|Anderson,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,13,Global,all,TRUE +5644,-0.218057909938598,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,5,3,2,4,1,1,4,3,1,1,1,1,1,1,2,1,4,1,1,1,2,1,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Anderson|Miyamoto|Kay|Alter|Huang|Rottenstrich|Graham|Bauer|Inbar|Ross.Slate1|VanLange|Hauser,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +5646,0.12609322039415,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,5,5,3,2,4,2,4,2,1,1,3,3,2,1,4,1,3,3,1,2,3,3,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Hauser|Huang|Graham|Rottenstrich|Alter|Ross.Slate1|Inbar|Anderson|Critcher|Kay|Miyamoto|VanLange,ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,9,Global,all,TRUE +5647,-0.139502079635205,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,3,2,4,3,4,1,4,1,1,4,1,4,1,1,4,2,4,4,4,1,1,2,1,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Bauer|Alter|Rottenstrich|Anderson|Inbar|Critcher|Kay|Hauser|Huang|Graham|Ross.Slate1|VanLange,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection,5,Global,all,TRUE +5648,-0.127247915045002,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,5,4,1,3,1,3,2,1,1,1,2,2,1,3,3,1,3,2,1,1,3,1,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Huang|Critcher|VanLange|Inbar|Bauer|Alter|Hauser|Kay|Graham|Rottenstrich|Ross.Slate1|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection,13,Global,all,TRUE +5650,0.185281977155237,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,6,4,3,5,2,2,5,5,4,4,5,5,3,1,5,4,5,1,2,5,5,5,3,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Rottenstrich|Graham|Huang|Inbar|Anderson|Bauer|Alter|Kay|VanLange|Hauser|Ross.Slate1|Miyamoto,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,6,Global,all,TRUE +5651,-0.0667410136235809,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,5,5,3,3,2,3,3,3,1,1,1,1,4,1,4,2,2,1,2,3,2,2,3,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Rottenstrich|Inbar|Critcher|VanLange|Miyamoto|Ross.Slate1|Huang|Hauser|Anderson|Kay|Bauer|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,10,Global,all,TRUE +5656,1.20495427334101,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,7,7,3,4,4,2,1,1,2,2,5,2,1,4,1,4,3,1,2,3,3,1,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Alter|Rottenstrich|VanLange|Ross.Slate1|Graham|Critcher|Miyamoto|Huang|Inbar|Kay|Bauer|Anderson,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five,13,Global,all,TRUE +5660,-0.104439691289727,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,7,7,3,2,2,2,4,1,3,2,1,1,1,2,1,1,4,1,1,1,1,3,1,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Graham|Alter|Anderson|Hauser|Ross.Slate1|Miyamoto|Bauer|VanLange|Inbar|Critcher|Rottenstrich|Huang,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing,4,Global,all,TRUE +5661,-0.139108697886772,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,2,3,4,3,3,4,2,3,2,4,3,2,4,1,4,3,2,2,1,3,3,2,1,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Critcher|Alter|VanLange|Bauer|Hauser|Kay|Miyamoto|Anderson|Rottenstrich|Ross.Slate1|Inbar|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,9,Global,all,TRUE +5662,0.199641049902639,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,6,6,4,4,4,2,2,1,1,2,2,2,2,3,3,4,1,2,3,2,4,1,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Ross.Slate1|Anderson|Miyamoto|Huang|Rottenstrich|Critcher|Hauser|Inbar|VanLange|Graham|Bauer|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE,3,Global,all,TRUE +5667,0.0119436205818103,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,4,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,1,3,1,1,1,1,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Critcher|Rottenstrich|Bauer|Hauser|Alter|VanLange|Huang|Miyamoto|Anderson|Graham|Kay|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,10,Global,all,TRUE +5668,0.842344960453019,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,3,2,1,2,3,2,1,1,2,2,3,1,1,1,3,1,2,2,2,2,1,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Inbar|Kay|Miyamoto|Hauser|Alter|Ross.Slate1|Anderson|Rottenstrich|Huang|VanLange|Critcher|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,8,Global,all,TRUE +5669,-0.0775482296514511,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,5,5,4,2,4,2,3,2,2,3,3,3,2,3,2,3,2,4,2,2,3,3,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Huang|Bauer|Hauser|Anderson|Miyamoto|Alter|VanLange|Kay|Inbar|Ross.Slate1|Critcher|Rottenstrich,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +5675,-0.0924409090329216,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,4,1,1,3,3,1,1,2,2,1,1,4,1,4,1,1,3,3,3,1,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Anderson|Bauer|Huang|Rottenstrich|Ross.Slate1|Critcher|Inbar|Kay|Miyamoto|VanLange|Alter|Hauser,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing,2,Global,all,TRUE +5680,-0.171923727718816,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,5,6,1,3,2,2,3,3,2,2,2,3,2,2,4,1,4,1,2,3,1,3,1,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Hauser|Huang|Inbar|Rottenstrich|Bauer|Critcher|Miyamoto|Anderson|Kay|Ross.Slate1|Alter|VanLange,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,9,Global,all,TRUE +5681,0.441908165996887,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,4,1,1,4,4,1,1,4,4,1,1,3,1,4,1,1,4,3,5,1,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Critcher|Alter|Graham|Miyamoto|Huang|Rottenstrich|Hauser|Bauer|Inbar|Kay|Ross.Slate1|Anderson,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,13,Global,all,TRUE +5685,-0.861815387302876,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,2,3,1,2,1,1,1,1,2,4,1,1,3,1,4,1,1,4,4,4,1,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Ross.Slate1|Critcher|VanLange|Alter|Rottenstrich|Miyamoto|Kay|Graham|Anderson|Bauer|Hauser|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,10,Global,all,TRUE +5688,-0.731326159546734,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,4,5,2,5,1,1,5,3,2,1,5,5,2,1,5,1,5,3,3,5,1,3,1,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Ross.Slate1|Critcher|Graham|Kay|VanLange|Hauser|Inbar|Rottenstrich|Miyamoto|Anderson|Huang|Bauer,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE,11,Global,all,TRUE +5689,-0.0382760249915727,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,6,4,2,1,4,1,1,1,1,1,2,1,1,1,4,1,2,1,1,1,1,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|VanLange|Bauer|Ross.Slate1|Hauser|Huang|Graham|Alter|Anderson|Critcher|Inbar|Miyamoto|Kay,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,9,Global,all,TRUE +5691,0.263306426295161,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,6,4,3,1,1,2,1,1,1,1,1,1,1,1,1,3,1,2,1,1,1,1,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Kay|Rottenstrich|Graham|Alter|Miyamoto|Inbar|Critcher|VanLange|Ross.Slate1|Bauer|Hauser|Huang,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,1,Global,all,TRUE +5693,1.27402325774746,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,3,4,2,4,3,3,2,4,4,4,4,2,3,2,4,1,3,4,4,4,4,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Huang|VanLange|Anderson|Critcher|Ross.Slate1|Bauer|Hauser|Inbar|Miyamoto|Rottenstrich|Graham|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,4,Global,all,TRUE +5696,-1.040543705436,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Critcher|Alter|Inbar|Kay|Ross.Slate1|Miyamoto|Huang|Rottenstrich|VanLange|Graham|Anderson|Hauser,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,12,Global,all,TRUE +5698,0.301932092343808,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,7,5,3,1,3,3,3,1,2,3,3,1,1,3,2,2,1,1,3,3,3,1,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Inbar|Hauser|VanLange|Huang|Bauer|Alter|Ross.Slate1|Anderson|Rottenstrich|Miyamoto|Graham|Kay,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,9,Global,all,TRUE +5699,0.000616444374108238,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,7,6,6,4,1,2,2,3,2,1,5,3,2,3,4,1,2,1,1,4,2,3,1,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Alter|Huang|Kay|Anderson|VanLange|Rottenstrich|Critcher|Bauer|Inbar|Ross.Slate1|Miyamoto|Hauser|Graham,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,4,Global,all,TRUE +5701,0.0617698844067606,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,6,5,4,1,1,3,3,1,1,3,3,1,2,5,1,4,1,1,4,3,3,1,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|VanLange|Inbar|Bauer|Critcher|Huang|Alter|Graham|Ross.Slate1|Kay|Anderson|Miyamoto|Rottenstrich,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,11,Global,all,TRUE +5702,-1.05372485840871,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,6,5,4,3,1,2,2,4,1,1,1,5,4,1,5,4,3,1,3,1,1,3,4,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|VanLange|Bauer|Critcher|Graham|Huang|Alter|Rottenstrich|Anderson|Miyamoto|Ross.Slate1|Inbar|Hauser,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,9,Global,all,TRUE +5704,0.567920774121595,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,5,3,3,1,3,3,1,1,3,3,2,1,3,1,3,1,3,3,3,3,1,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Miyamoto|Hauser|Inbar|Alter|Huang|VanLange|Critcher|Graham|Kay|Anderson|Bauer|Rottenstrich,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,11,Global,all,TRUE +5705,0.457067648695392,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,4,1,1,1,3,1,1,1,1,1,1,1,1,1,3,1,1,1,3,1,1,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Ross.Slate1|Anderson|Bauer|VanLange|Graham|Kay|Critcher|Huang|Inbar|Rottenstrich|Alter|Miyamoto,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood,3,Global,all,TRUE +5706,0.216512059009911,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,5,5,3,2,2,2,2,1,1,2,3,1,2,1,2,1,2,1,1,1,2,1,1,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Critcher|Ross.Slate1|Alter|VanLange|Kay|Huang|Graham|Hauser|Miyamoto|Bauer|Inbar|Rottenstrich|Anderson,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,13,Global,all,TRUE +5707,-0.0373512620796714,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,6,5,2,1,2,5,1,1,4,4,2,1,5,1,5,2,2,5,5,3,1,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Kay|Critcher|Huang|Anderson|Graham|VanLange|Inbar|Rottenstrich|Bauer|Hauser|Miyamoto|Alter,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing,5,Global,all,TRUE +5708,-0.609005633027194,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,7,1,4,2,2,3,4,1,1,2,3,2,3,5,1,4,2,3,2,3,4,2,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Anderson|Ross.Slate1|Bauer|Rottenstrich|Hauser|Inbar|Miyamoto|Alter|Critcher|Graham|Kay|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing,2,Global,all,TRUE +5709,0.246435417187889,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,5,6,2,2,1,2,1,1,1,1,2,2,1,2,4,2,2,1,1,1,2,3,2,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Kay|Miyamoto|Critcher|Bauer|Inbar|Huang|Alter|VanLange|Rottenstrich|Hauser|Ross.Slate1|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,1,Global,all,TRUE +5710,0.09986194382134,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,7,6,3,1,1,4,2,1,1,2,3,1,1,3,1,4,1,1,3,3,2,1,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Kay|Alter|Hauser|Rottenstrich|Miyamoto|Critcher|VanLange|Anderson|Graham|Bauer|Huang|Inbar,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing,9,Global,all,TRUE +5711,0.210588490816144,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,6,5,2,2,2,3,3,1,3,3,5,5,1,5,4,3,2,3,2,2,3,5,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Inbar|Huang|Graham|Critcher|Miyamoto|Kay|Rottenstrich|VanLange|Bauer|Ross.Slate1|Anderson|Alter,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,12,Global,all,TRUE +5712,-0.0634423137668458,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,5,5,2,4,1,4,3,5,1,3,4,3,3,1,5,1,3,1,2,4,3,3,1,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Critcher|Rottenstrich|Kay|Miyamoto|Alter|Huang|Hauser|Graham|Anderson|Bauer|VanLange|Inbar,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,10,Global,all,TRUE +5718,0.211108450995977,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,7,2,2,2,2,3,2,1,1,1,3,1,1,5,1,3,1,3,1,3,4,1,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Hauser|Critcher|Alter|Huang|Ross.Slate1|Graham|Miyamoto|VanLange|Anderson|Kay|Inbar|Rottenstrich,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,10,Global,all,TRUE +5722,0.0559728946443925,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,5,6,2,1,3,2,1,3,2,3,1,1,3,1,4,4,1,1,1,1,1,1,4,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Critcher|Miyamoto|Anderson|Ross.Slate1|Alter|Hauser|Rottenstrich|VanLange|Graham|Huang|Inbar|Bauer,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,4,Global,all,TRUE +5723,0.849993701509789,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,4,3,2,2,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,2,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Anderson|Kay|VanLange|Ross.Slate1|Rottenstrich|Miyamoto|Inbar|Alter|Bauer|Hauser|Graham|Critcher,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,2,Global,all,TRUE +5727,-0.645512744464405,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,7,6,3,2,1,2,3,2,1,1,3,2,1,1,2,1,4,1,1,2,3,2,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Anderson|Graham|Kay|Inbar|Ross.Slate1|Hauser|Alter|Miyamoto|Critcher|VanLange|Huang|Rottenstrich,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,2,Global,all,TRUE +5732,0.20267294644234,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,4,3,4,2,2,2,2,2,1,4,3,2,2,2,2,2,2,1,2,2,2,2,2,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Inbar|Miyamoto|Anderson|Huang|Rottenstrich|Graham|VanLange|Alter|Critcher|Kay|Ross.Slate1|Bauer,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood,4,Global,all,TRUE +5735,-0.331676128587468,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,7,7,1,3,1,2,1,2,1,3,4,3,3,1,5,1,5,1,1,4,4,4,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|Kay|Inbar|Bauer|Hauser|VanLange|Miyamoto|Alter|Critcher|Rottenstrich|Huang|Graham|Anderson,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,13,Global,all,TRUE +5736,0.534572137655484,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,4,5,5,1,1,4,4,2,1,3,3,3,1,4,1,4,1,1,4,4,4,1,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Inbar|Critcher|Miyamoto|Rottenstrich|Alter|Ross.Slate1|Huang|Bauer|Graham|Anderson|VanLange|Hauser,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,11,Global,all,TRUE +5737,0.136509280144186,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uva,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,5,5,3,4,1,3,4,3,2,1,4,4,3,3,4,1,4,1,1,4,4,3,1,uva,uva,uva,USA,"University of Virginia, VA",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Critcher|Graham|VanLange|Kay|Anderson|Ross.Slate1|Hauser|Huang|Alter|Bauer|Inbar|Miyamoto,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,6,Global,all,TRUE +5740,-0.0960041867360913,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,4,5,2,2,4,3,2,2,2,1,2,2,3,2,1,1,3,2,2,1,3,1,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Inbar|Alter|VanLange|Huang|Miyamoto|Rottenstrich|Anderson|Graham|Hauser|Ross.Slate1|Bauer|Critcher,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,8,Global,all,TRUE +5743,0.640021655067753,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,uiuc,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,1,3,2,1,2,1,3,2,2,2,1,2,1,2,1,1,1,1,2,1,uiuc,uiuc,uiuc,USA,"University of Illinois at Urbana-Champaign, Champaign, IL",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Anderson|Huang|Graham|Critcher|Bauer|Ross.Slate1|VanLange|Kay|Hauser|Rottenstrich|Miyamoto|Alter|Inbar,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,1,Global,all,TRUE +5744,0.709217217905608,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,7,1,4,1,3,2,4,1,1,4,4,4,1,4,1,4,1,2,2,3,1,3,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Inbar|Bauer|Ross.Slate1|VanLange|Kay|Alter|Huang|Anderson|Miyamoto|Rottenstrich|Critcher|Graham|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,8,Global,all,TRUE +5748,0.449292329207223,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,7,6,4,3,2,1,4,3,1,1,3,3,1,3,4,1,3,1,1,3,3,3,1,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Huang|Bauer|Kay|Alter|Critcher|Ross.Slate1|Rottenstrich|Hauser|VanLange|Graham|Miyamoto|Inbar|Anderson,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,13,Global,all,TRUE +5750,0.130052105316351,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,2,5,3,2,3,3,2,2,1,2,3,3,1,1,4,1,3,2,2,2,3,2,1,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Graham|Huang|Inbar|Anderson|Hauser|Critcher|Miyamoto|VanLange|Bauer|Kay|Alter|Rottenstrich|Ross.Slate1,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,4,Global,all,TRUE +5753,0.315897783342778,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,5,5,3,3,2,2,2,2,1,3,4,3,1,3,1,3,1,1,2,2,3,1,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Miyamoto|Anderson|Kay|Critcher|Ross.Slate1|Bauer|Graham|Alter|VanLange|Hauser|Huang|Inbar,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,3,Global,all,TRUE +5754,-0.744240509202404,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,5,3,2,4,1,4,4,2,2,3,5,2,1,4,2,4,1,4,4,4,5,2,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Ross.Slate1|Graham|Huang|Hauser|VanLange|Critcher|Kay|Anderson|Alter|Bauer|Inbar|Rottenstrich,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +5755,-1.08298803152122,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,6,5,3,2,2,4,4,3,2,4,4,2,4,2,2,2,2,2,4,5,3,4,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Graham|Critcher|Miyamoto|Rottenstrich|VanLange|Bauer|Inbar|Ross.Slate1|Hauser|Anderson|Alter|Huang,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood,11,Global,all,TRUE +5758,0.177366432781432,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,5,4,4,1,1,3,3,1,2,3,3,1,2,3,2,3,1,2,3,3,3,2,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Anderson|Kay|Critcher|Hauser|VanLange|Alter|Huang|Ross.Slate1|Graham|Rottenstrich|Inbar|Bauer,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,2,Global,all,TRUE +5759,1.35389945818179,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,3,5,3,1,4,4,2,2,2,3,2,4,1,2,2,2,1,3,4,2,3,3,3,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Hauser|Bauer|Anderson|Miyamoto|Critcher|Alter|Graham|Huang|Ross.Slate1|Rottenstrich|Kay|Inbar,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing,4,Global,all,TRUE +5762,0.224160800066681,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,tufts,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,7,7,4,2,5,2,3,4,1,4,2,4,4,4,2,4,1,4,3,1,2,3,tufts,tufts,tufts,USA,Tufts,English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Alter|VanLange|Graham|Ross.Slate1|Miyamoto|Kay|Inbar|Rottenstrich|Huang|Anderson|Bauer|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing,11,Global,all,TRUE +5764,-0.0643693021493466,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,3,1,1,2,2,1,1,1,1,1,1,3,1,4,1,2,2,3,1,1,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Rottenstrich|Anderson|Miyamoto|Alter|Graham|Bauer|Critcher|Huang|VanLange|Kay|Inbar|Hauser|Ross.Slate1,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +5765,-0.134225050052669,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,5,3,3,3,5,4,1,2,2,4,2,1,5,4,3,4,3,2,3,1,1,2,4,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Critcher|Miyamoto|Rottenstrich|Anderson|Huang|Inbar|VanLange|Hauser|Graham|Alter|Ross.Slate1|Bauer,ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +5766,0.403549303265274,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,4,1,1,4,4,1,1,4,5,1,1,5,1,5,1,2,5,5,5,1,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",VanLange|Inbar|Huang|Bauer|Kay|Rottenstrich|Alter|Hauser|Ross.Slate1|Miyamoto|Graham|Critcher|Anderson,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing,13,Global,all,TRUE +5768,-1.42476967585033,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,7,5,5,3,1,1,2,2,1,1,4,3,1,1,3,1,3,1,1,2,2,2,1,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Ross.Slate1|Graham|Inbar|Rottenstrich|Hauser|Critcher|Kay|Miyamoto|Anderson|VanLange|Alter|Huang,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,10,Global,all,TRUE +5771,-0.426447233873865,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,5,5,3,1,3,3,3,1,2,2,3,3,2,4,3,3,1,2,3,4,2,1,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Hauser|Inbar|Ross.Slate1|VanLange|Anderson|Alter|Rottenstrich|Critcher|Graham|Huang|Miyamoto|Bauer|Kay,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,5,Global,all,TRUE +5772,0.627627265591915,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,5,3,5,2,1,4,3,1,1,4,4,2,1,4,1,5,1,2,3,3,4,1,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Ross.Slate1|VanLange|Kay|Miyamoto|Huang|Anderson|Graham|Alter|Hauser|Inbar|Rottenstrich|Critcher|Bauer,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +5775,0.539975745669419,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,ufl,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,4,1,1,2,4,2,1,3,4,1,2,4,5,2,4,1,1,2,1,1,1,4,ufl,ufl,ufl,USA,"University of Florida, Florida",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Kay|Rottenstrich|Graham|Miyamoto|VanLange|Bauer|Critcher|Hauser|Anderson|Ross.Slate1|Huang|Inbar|Alter,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +5780,1.2874689885666,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,4,5,3,2,2,2,3,1,1,1,2,1,2,1,3,2,3,1,2,2,2,1,1,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Miyamoto|Inbar|Graham|Rottenstrich|Alter|Ross.Slate1|Kay|Bauer|Huang|VanLange|Hauser|Anderson|Critcher,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,12,Global,all,TRUE +5787,0.393008890554438,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,6,6,5,1,2,1,1,1,1,1,1,1,1,1,2,1,3,1,1,1,1,1,1,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Huang|Inbar|Alter|Rottenstrich|Critcher|Ross.Slate1|Hauser|Kay|Miyamoto|VanLange|Graham|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,13,Global,all,TRUE +5789,-0.468495952740047,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY__pencilpaper_r.csv,bc,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,5,2,4,2,4,3,3,3,2,4,3,4,4,4,5,3,2,3,3,4,3,5,bc,bc,bc,USA,"American University of Sharjah, United Arab Emirates",English,1,legal,Yes,In a lab,Computers,"Yes, participants completed the Critcher task on pencil and paper",Bauer|Hauser|Anderson|VanLange|Rottenstrich|Ross.Slate1|Critcher|Alter|Inbar|Miyamoto|Graham|Huang|Kay,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE,3,Global,all,TRUE +5791,-0.262213762432579,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,7,7,6,1,2,2,2,1,1,2,1,2,2,1,2,2,1,1,2,1,2,1,1,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Graham|Alter|Huang|VanLange|Anderson|Rottenstrich|Kay|Ross.Slate1|Bauer|Inbar|Critcher|Hauser,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,6,Global,all,TRUE +5792,0.37178784024713,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,7,6,2,1,1,1,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Critcher|Graham|Anderson|Ross.Slate1|Huang|VanLange|Miyamoto|Hauser|Kay|Alter|Rottenstrich|Inbar,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +5794,0.263306426295161,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,2,3,1,3,2,2,1,1,1,2,1,1,1,1,3,1,3,3,2,1,2,2,1,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Miyamoto|Kay|Graham|Ross.Slate1|Anderson|Rottenstrich|Huang|VanLange|Hauser|Inbar|Alter|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,6,Global,all,TRUE +5795,0.810581271964276,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,7,7,4,1,1,4,4,1,1,5,4,1,1,5,1,5,1,1,5,5,5,1,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|VanLange|Inbar|Rottenstrich|Alter|Huang|Critcher|Kay|Bauer|Graham|Miyamoto|Anderson|Ross.Slate1,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,12,Global,all,TRUE +5796,0.277538920611165,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,3,2,1,3,1,1,3,2,1,1,2,3,2,1,2,1,3,1,1,2,1,2,1,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Hauser|Huang|Ross.Slate1|Miyamoto|Graham|Critcher|Inbar|Kay|Rottenstrich|Bauer|Anderson|Alter,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,12,Global,all,TRUE +5797,0.362565572196628,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,4,7,3,1,1,2,2,1,1,3,3,1,1,4,1,4,1,1,3,3,4,1,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|VanLange|Miyamoto|Huang|Rottenstrich|Kay|Inbar|Bauer|Ross.Slate1|Hauser|Anderson|Alter|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,11,Global,all,TRUE +5799,-0.106546824917527,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,4,2,5,5,4,5,5,5,3,5,5,4,5,5,5,5,5,5,3,5,5,5,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Rottenstrich|Bauer|VanLange|Inbar|Critcher|Alter|Graham|Anderson|Ross.Slate1|Huang|Hauser|Miyamoto,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +5801,1.03268090456512,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,3,2,1,2,3,1,1,2,4,1,1,3,1,3,1,1,2,3,3,1,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Hauser|Rottenstrich|Bauer|Graham|VanLange|Miyamoto|Kay|Anderson|Inbar|Huang|Ross.Slate1|Alter,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,9,Global,all,TRUE +5802,1.08026203534723,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,6,7,4,1,4,4,1,1,1,1,1,3,1,5,1,5,1,1,1,1,5,1,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|VanLange|Critcher|Anderson|Inbar|Kay|Alter|Miyamoto|Huang|Rottenstrich|Hauser|Bauer|Graham,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,4,Global,all,TRUE +5803,0.275305208551966,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,2,3,3,4,2,1,1,3,3,1,1,3,2,3,1,2,3,4,3,2,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Ross.Slate1|Hauser|VanLange|Inbar|Alter|Rottenstrich|Graham|Huang|Critcher|Anderson|Kay|Bauer,ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,11,Global,all,TRUE +5804,0.130838868813217,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,4,4,3,4,2,3,3,4,2,2,4,3,5,2,4,5,4,1,3,3,2,3,3,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Rottenstrich|Ross.Slate1|Hauser|Bauer|Kay|Huang|Graham|Anderson|Miyamoto|Critcher|Inbar|VanLange,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,9,Global,all,TRUE +5808,-1.1321541102807,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,3,2,2,1,2,1,1,1,1,3,1,1,3,1,2,1,1,1,1,3,1,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|VanLange|Alter|Kay|Graham|Rottenstrich|Critcher|Bauer|Huang|Hauser|Anderson|Inbar|Miyamoto,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,11,Global,all,TRUE +5810,-1.04107953754067,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,2,3,1,2,3,2,1,2,3,3,2,1,4,2,3,1,1,3,3,3,2,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Alter|Inbar|Hauser|Graham|Anderson|Ross.Slate1|Critcher|Bauer|Huang|Rottenstrich|VanLange|Miyamoto,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood,6,Global,all,TRUE +5815,-0.072284846523151,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,2,3,2,1,5,4,3,1,1,5,3,1,5,1,1,4,2,2,1,1,1,1,3,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Bauer|Alter|VanLange|Anderson|Critcher|Ross.Slate1|Rottenstrich|Kay|Huang|Graham|Miyamoto|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,5,Global,all,TRUE +5816,0.0766739847718683,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,6,7,1,1,1,3,2,1,1,1,1,3,1,2,1,1,1,1,1,1,1,1,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Alter|Bauer|Graham|Ross.Slate1|Kay|Anderson|Huang|Hauser|Critcher|Miyamoto|Rottenstrich|Inbar,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,7,Global,all,TRUE +5817,1.10253665246844,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,3,5,7,1,4,5,4,1,5,5,1,1,5,5,2,4,3,4,5,1,1,1,4,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Critcher|Miyamoto|Anderson|Kay|Rottenstrich|Alter|Graham|Bauer|Inbar|Ross.Slate1|VanLange|Hauser,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,4,Global,all,TRUE +5818,0.379956541483732,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,5,3,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Anderson|Miyamoto|VanLange|Critcher|Alter|Inbar|Bauer|Ross.Slate1|Kay|Huang|Rottenstrich|Hauser,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +5823,-0.85443344956314,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,5,5,2,2,4,3,5,3,3,4,4,5,2,4,4,3,2,4,4,4,5,4,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Ross.Slate1|Bauer|Rottenstrich|Critcher|Anderson|Inbar|Graham|Kay|Alter|VanLange|Huang|Hauser,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +5826,-0.577764130188882,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,7,6,3,2,1,3,3,1,1,2,2,1,1,3,1,3,1,2,2,2,1,1,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Kay|VanLange|Ross.Slate1|Hauser|Huang|Inbar|Alter|Graham|Critcher|Rottenstrich|Anderson|Bauer,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,12,Global,all,TRUE +5828,-0.620992994300362,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,5,6,6,4,4,1,3,1,1,1,4,3,1,1,5,2,3,3,3,1,1,4,1,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Ross.Slate1|Bauer|VanLange|Inbar|Hauser|Kay|Anderson|Critcher|Graham|Huang|Rottenstrich|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,8,Global,all,TRUE +5830,1.35996325126119,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,5,6,4,3,1,1,1,4,1,1,3,3,2,1,4,3,4,1,1,4,4,1,5,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Graham|Kay|VanLange|Huang|Anderson|Inbar|Miyamoto|Alter|Ross.Slate1|Hauser|Bauer|Rottenstrich,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +5832,-0.453336470041542,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,5,6,4,4,3,2,3,5,3,5,1,2,5,3,4,4,3,2,1,1,1,4,4,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Ross.Slate1|Rottenstrich|Hauser|Huang|Graham|Critcher|Anderson|Alter|Inbar|Miyamoto|VanLange|Kay,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,8,Global,all,TRUE +5833,-0.0894090124932207,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,,,,,,,,,,,,,,,,,,,,,,,,,,2,7,2,5,2,2,4,4,4,1,3,4,1,2,3,2,3,4,3,1,3,2,4,1,4,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Huang|Miyamoto|VanLange|Kay|Graham|Anderson|Hauser|Rottenstrich|Ross.Slate1|Bauer|Critcher|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,7,Global,all,TRUE +5842,0.335407307241318,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,7,6,7,4,2,3,3,4,1,3,4,3,3,1,5,1,3,1,3,3,5,5,2,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Miyamoto|Kay|Anderson|Graham|Rottenstrich|Ross.Slate1|Alter|Critcher|Inbar|Huang|Bauer|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,4,Global,all,TRUE +5843,0.597310525665505,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,6,6,6,4,3,4,3,4,2,2,2,4,2,2,4,3,3,2,2,3,4,5,1,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Graham|Ross.Slate1|Miyamoto|Hauser|VanLange|Huang|Rottenstrich|Inbar|Kay|Alter|Bauer|Critcher,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,1,Global,all,TRUE +5844,-0.69098896708932,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,7,5,4,2,3,4,3,2,1,1,1,4,2,1,4,1,3,1,2,2,2,3,1,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Huang|Critcher|Ross.Slate1|Bauer|Inbar|Rottenstrich|Graham|Alter|Anderson|Miyamoto|Hauser|VanLange,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,10,Global,all,TRUE +5847,-0.315465304545663,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,3,1,1,1,2,1,1,1,2,1,1,1,1,1,4,1,1,1,2,3,2,1,1,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Kay|Bauer|Alter|Hauser|Critcher|Rottenstrich|Anderson|Ross.Slate1|VanLange|Huang|Miyamoto|Inbar,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,8,Global,all,TRUE +5848,0.540509352303487,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,2,1,3,3,1,1,1,1,2,1,1,1,1,3,1,1,2,3,2,1,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Hauser|Alter|VanLange|Graham|Huang|Inbar|Critcher|Kay|Ross.Slate1|Anderson|Miyamoto|Rottenstrich,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,11,Global,all,TRUE +5851,0.44335511455922,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,6,5,5,1,4,4,3,1,1,3,4,2,1,5,3,4,2,2,3,3,4,3,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Inbar|VanLange|Anderson|Alter|Graham|Kay|Rottenstrich|Ross.Slate1|Critcher|Huang|Bauer|Miyamoto,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +5856,-1.09036996926095,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,2,3,1,2,5,4,2,1,5,4,1,2,4,1,3,4,2,3,2,2,3,1,4,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Ross.Slate1|Bauer|Huang|VanLange|Rottenstrich|Alter|Critcher|Inbar|Kay|Anderson|Hauser|Graham,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +5857,0.540242548986453,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,3,5,2,2,1,4,3,1,1,4,1,2,1,1,1,1,3,1,1,2,1,1,1,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|VanLange|Alter|Kay|Rottenstrich|Hauser|Ross.Slate1|Huang|Graham|Inbar|Critcher|Anderson|Miyamoto,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,12,Global,all,TRUE +5858,-0.805138566901659,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,3,5,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Inbar|Bauer|Graham|Alter|Anderson|VanLange|Kay|Hauser|Critcher|Ross.Slate1|Huang|Rottenstrich,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,6,Global,all,TRUE +5860,0.338439203781019,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,5,3,3,3,3,2,3,3,3,1,3,3,3,3,1,3,1,3,3,2,3,1,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Hauser|Alter|Miyamoto|Ross.Slate1|Anderson|Kay|VanLange|Graham|Critcher|Bauer|Huang|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,6,Global,all,TRUE +5861,0.778679584060497,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,7,6,4,2,1,4,1,1,1,1,1,2,1,2,1,4,1,2,1,1,1,1,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Graham|Alter|Huang|Bauer|Miyamoto|Kay|VanLange|Anderson|Critcher|Inbar|Hauser|Ross.Slate1,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,9,Global,all,TRUE +5862,0.0633548323841288,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,3,1,2,4,4,3,3,3,3,3,4,4,1,4,3,5,4,5,3,1,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Huang|Alter|Critcher|Ross.Slate1|Bauer|Rottenstrich|Miyamoto|VanLange|Graham|Hauser|Anderson|Inbar,ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,12,Global,all,TRUE +5863,-0.400745112993925,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,6,3,3,1,2,4,3,1,1,4,5,2,1,4,1,4,1,3,3,4,3,2,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Ross.Slate1|VanLange|Alter|Hauser|Bauer|Rottenstrich|Kay|Huang|Miyamoto|Inbar|Graham|Anderson,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,13,Global,all,TRUE +5865,0.216385480578513,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,5,4,1,2,3,3,1,1,2,4,1,1,3,1,4,1,1,3,3,3,1,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Rottenstrich|Critcher|Kay|Huang|Bauer|Alter|VanLange|Ross.Slate1|Anderson|Inbar|Graham|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,10,Global,all,TRUE +5869,-0.303604521703893,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,,,,,,,,,,,,,,,,,,,,,,,,,,1,3,2,2,1,1,1,1,2,1,2,1,1,2,2,1,4,1,3,1,1,1,1,1,1,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Ross.Slate1|Anderson|Alter|Inbar|Miyamoto|VanLange|Huang|Bauer|Hauser|Critcher|Graham|Rottenstrich,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,3,Global,all,TRUE +5870,-0.326539323890567,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,3,5,2,2,3,3,3,1,3,1,3,3,1,5,4,1,3,1,1,3,4,3,1,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Critcher|Alter|Huang|VanLange|Ross.Slate1|Rottenstrich|Kay|Bauer|Graham|Inbar|Hauser|Miyamoto,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,1,Global,all,TRUE +5872,-0.854698027409575,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,5,7,5,5,4,4,3,2,2,2,5,4,4,2,4,1,5,1,2,3,4,4,2,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Graham|Inbar|Alter|Rottenstrich|Ross.Slate1|Huang|Bauer|Hauser|Critcher|Miyamoto|Kay|Anderson,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,13,Global,all,TRUE +5873,0.401317816676674,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,4,3,3,2,1,1,2,1,1,1,1,1,1,1,3,1,2,1,1,1,1,1,1,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Miyamoto|Hauser|Bauer|Inbar|Huang|Rottenstrich|Critcher|Anderson|Alter|VanLange|Graham|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,9,Global,all,TRUE +5874,-0.298861098755425,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,4,4,2,3,5,1,1,3,4,4,1,5,4,3,1,5,4,4,1,3,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Critcher|VanLange|Alter|Ross.Slate1|Inbar|Huang|Rottenstrich|Graham|Miyamoto|Anderson|Kay|Bauer,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,11,Global,all,TRUE +5877,0.399339486950873,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,6,5,2,3,1,1,2,1,2,1,1,1,1,2,2,1,3,1,1,1,3,1,1,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Bauer|Alter|Inbar|VanLange|Kay|Rottenstrich|Anderson|Huang|Miyamoto|Hauser|Graham|Ross.Slate1,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,8,Global,all,TRUE +5878,0.111202766483278,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,6,1,1,1,1,1,1,2,3,3,1,2,1,1,1,2,1,3,3,1,2,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Ross.Slate1|Huang|Alter|Miyamoto|Graham|Anderson|Bauer|Critcher|Rottenstrich|VanLange|Inbar|Kay,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,7,Global,all,TRUE +5879,0.00575324907100954,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,5,5,3,2,1,3,2,1,1,4,4,2,1,3,1,2,1,1,4,2,4,1,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Anderson|Miyamoto|Hauser|Huang|Inbar|Ross.Slate1|Rottenstrich|Alter|VanLange|Graham|Bauer|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,2,Global,all,TRUE +5880,0.260808136389528,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,5,3,3,4,4,5,2,3,5,5,2,2,5,5,4,5,4,3,4,3,2,3,5,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Inbar|Ross.Slate1|Anderson|Huang|Hauser|Critcher|Alter|Bauer|Miyamoto|Kay|Graham|VanLange,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,4,Global,all,TRUE +5886,0.0590047911840934,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,6,6,4,4,4,3,4,2,1,4,4,4,4,1,4,1,4,4,2,2,1,2,1,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Bauer|Kay|Graham|Critcher|Ross.Slate1|Inbar|Alter|Huang|Anderson|Rottenstrich|Hauser|Miyamoto,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,10,Global,all,TRUE +5887,0.0253893514009485,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,6,4,1,1,2,4,1,2,1,5,1,1,3,1,4,1,2,4,5,3,1,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Anderson|Miyamoto|Critcher|VanLange|Graham|Rottenstrich|Huang|Inbar|Bauer|Alter|Ross.Slate1|Kay,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,2,Global,all,TRUE +5888,-0.37583198108145,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,,,,,,,,,,,,,,,,,,,,,,,,,,2,1,3,1,1,1,4,3,5,1,4,5,5,4,5,1,4,3,3,3,1,1,4,1,5,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Anderson|Critcher|Alter|Graham|Miyamoto|Ross.Slate1|Bauer|Hauser|Huang|Kay|Inbar|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,2,Global,all,TRUE +5889,0.205704842982041,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,,,,,,,,,,,,,,,,,,,,,,,,,,6,4,5,5,3,3,2,2,4,3,3,1,3,3,1,1,4,3,4,3,3,4,4,1,3,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Graham|Miyamoto|Critcher|Rottenstrich|Hauser|Inbar|Ross.Slate1|Kay|Huang|Anderson|Alter|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,11,Global,all,TRUE +5894,-0.526224114484565,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,6,7,3,2,4,1,3,3,1,3,3,3,1,3,1,1,3,1,2,2,2,1,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Rottenstrich|Inbar|Kay|Huang|Graham|Critcher|Hauser|Miyamoto|Bauer|Anderson|VanLange,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,12,Global,all,TRUE +5896,-0.25759691791551,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,7,6,5,4,1,1,1,1,1,1,1,1,1,1,1,1,3,1,1,1,1,3,1,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Graham|Inbar|Ross.Slate1|Huang|Critcher|Anderson|VanLange|Kay|Miyamoto|Bauer|Hauser|Alter,ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection,7,Global,all,TRUE +5899,0.753639873716623,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,7,6,1,3,1,1,1,3,1,1,1,1,1,1,4,1,4,1,1,1,4,4,2,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Critcher|Bauer|Miyamoto|Alter|VanLange|Graham|Kay|Huang|Hauser|Ross.Slate1|Anderson|Rottenstrich,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood,12,Global,all,TRUE +5903,-0.650776127592705,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,7,5,4,3,4,4,4,2,3,4,3,4,1,4,4,4,1,3,4,3,3,2,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|VanLange|Ross.Slate1|Critcher|Inbar|Hauser|Miyamoto|Graham|Rottenstrich|Huang|Kay|Alter|Bauer,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,1,Global,all,TRUE +5907,-0.759004384681876,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,3,6,3,4,2,2,3,2,1,3,3,2,3,1,3,3,3,1,2,3,3,2,4,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Miyamoto|Inbar|Anderson|Huang|Rottenstrich|Kay|Ross.Slate1|Alter|Hauser|VanLange|Critcher|Graham,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,4,Global,all,TRUE +5908,0.0890547277934701,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,6,7,7,3,1,2,2,4,1,1,4,2,2,4,4,3,2,1,4,2,2,4,1,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Hauser|Inbar|VanLange|Bauer|Alter|Rottenstrich|Graham|Miyamoto|Ross.Slate1|Critcher|Huang|Anderson,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,13,Global,all,TRUE +5913,-1.27792939916675,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,4,1,4,4,3,1,1,3,5,2,1,5,2,4,1,1,3,4,4,1,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Kay|Miyamoto|Huang|Ross.Slate1|Anderson|Rottenstrich|Inbar|Hauser|Bauer|Critcher|Alter|Graham,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,6,Global,all,TRUE +5914,-0.924022394149428,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,5,4,2,3,4,3,2,1,3,3,4,3,4,2,3,1,2,3,3,4,1,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Alter|Kay|Anderson|Bauer|Rottenstrich|Inbar|Critcher|Graham|Miyamoto|Ross.Slate1|Huang|VanLange,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,4,Global,all,TRUE +5915,0.0690252437150979,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,7,6,5,1,1,5,5,1,1,4,4,1,1,4,1,5,1,1,5,4,5,2,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Kay|Miyamoto|Huang|Critcher|VanLange|Bauer|Alter|Inbar|Hauser|Anderson|Ross.Slate1|Graham,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood,11,Global,all,TRUE +5917,-0.683998185627417,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,3,4,1,4,3,3,4,3,2,2,4,3,3,3,4,1,4,2,1,3,4,3,1,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Hauser|Graham|Kay|Ross.Slate1|Critcher|Anderson|Alter|VanLange|Miyamoto|Huang|Bauer|Rottenstrich,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,7,Global,all,TRUE +5918,0.517574550116813,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,4,4,1,1,3,3,1,1,2,3,4,1,3,1,4,1,2,3,4,4,1,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Huang|Bauer|Anderson|Critcher|Graham|Kay|Hauser|Rottenstrich|Inbar|VanLange|Miyamoto|Alter,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,4,Global,all,TRUE +5919,0.302325474092241,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,5,3,1,2,2,2,1,1,2,3,1,1,3,1,4,1,1,3,2,2,1,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Huang|Alter|Rottenstrich|Kay|Graham|Miyamoto|Ross.Slate1|Anderson|VanLange|Hauser|Critcher|Inbar,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +5921,0.75535140012539,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,7,7,2,4,1,1,4,1,1,1,1,1,2,1,1,1,4,1,1,1,1,1,1,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Rottenstrich|Graham|Miyamoto|Hauser|Anderson|Critcher|Alter|Kay|Bauer|Huang|Inbar|Ross.Slate1,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,6,Global,all,TRUE +5922,-0.478516405271051,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,5,3,4,1,1,3,4,1,1,3,3,1,1,3,1,4,1,1,2,1,2,1,occid,occid,occidtab,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|VanLange|Bauer|Hauser|Rottenstrich|Ross.Slate1|Anderson|Graham|Miyamoto|Inbar|Kay|Huang|Alter,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,7,Global,all,TRUE +5924,0.224947563563548,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,3,3,2,2,2,3,1,2,3,2,1,1,3,1,3,1,1,2,3,2,1,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Ross.Slate1|Bauer|Anderson|VanLange|Hauser|Huang|Kay|Rottenstrich|Inbar|Alter|Critcher|Graham,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,4,Global,all,TRUE +5926,-0.0381358001059378,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,5,6,6,3,1,2,3,1,1,1,1,1,1,1,3,1,4,2,1,2,2,1,1,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Inbar|Alter|Anderson|Hauser|Rottenstrich|Huang|VanLange|Critcher|Kay|Bauer|Graham|Miyamoto,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,4,Global,all,TRUE +5927,-0.2262266111752,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,5,6,6,4,1,2,3,2,1,1,3,2,3,1,4,1,4,1,1,2,3,2,1,occid,occid,occidtab,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Ross.Slate1|Miyamoto|Bauer|Kay|Anderson|Graham|Critcher|Alter|Hauser|Huang|Inbar|VanLange,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,6,Global,all,TRUE +5931,0.32196157642218,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,5,4,2,3,3,4,3,2,4,3,3,2,4,2,3,3,3,3,4,3,3,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Bauer|Miyamoto|Alter|Ross.Slate1|Huang|Rottenstrich|Anderson|Graham|Inbar|VanLange|Kay|Critcher,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,8,Global,all,TRUE +5932,0.625522357434715,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,5,5,3,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Critcher|Alter|Kay|Hauser|Miyamoto|Rottenstrich|Graham|Bauer|VanLange|Anderson|Huang|Ross.Slate1,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,11,Global,all,TRUE +5934,-0.0225851611295994,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,4,3,1,1,2,1,1,4,1,3,2,1,5,2,3,1,1,2,3,2,2,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Hauser|Ross.Slate1|Critcher|Graham|Bauer|Huang|Alter|Rottenstrich|Inbar|Miyamoto|VanLange|Kay,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,1,Global,all,TRUE +5935,0.445993629350488,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,3,5,3,3,5,4,4,3,1,2,3,5,4,1,3,1,4,3,4,3,3,4,1,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Kay|Bauer|Miyamoto|Hauser|Rottenstrich|Anderson|Ross.Slate1|Graham|Alter|Huang|VanLange|Inbar,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,7,Global,all,TRUE +5936,0.00589347395664443,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,5,5,3,3,2,2,3,2,1,1,2,3,2,1,3,1,4,1,2,3,4,3,1,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Alter|Anderson|Critcher|Hauser|Graham|Ross.Slate1|Bauer|Inbar|Miyamoto|Huang|VanLange|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,3,Global,all,TRUE +5938,0.4823741623563,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,7,3,3,2,3,2,2,1,1,3,3,3,1,3,1,4,1,2,2,2,3,1,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Ross.Slate1|Rottenstrich|Inbar|Miyamoto|Kay|Graham|Anderson|Hauser|Bauer|VanLange|Huang|Critcher,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,8,Global,all,TRUE +5939,0.310760978645877,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,5,5,2,4,3,1,5,2,1,1,4,4,1,1,5,1,5,1,1,2,2,2,1,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Hauser|Graham|Alter|Ross.Slate1|VanLange|Anderson|Rottenstrich|Kay|Inbar|Miyamoto|Huang|Bauer,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +5940,-0.248768031613441,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,1,1,5,1,1,3,3,1,2,4,1,1,1,5,1,5,1,3,3,3,1,1,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Bauer|Anderson|Critcher|Graham|Huang|Ross.Slate1|VanLange|Kay|Inbar|Miyamoto|Hauser|Rottenstrich,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,3,Global,all,TRUE +5942,-0.845211181512638,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,6,5,2,1,1,1,5,1,1,3,4,2,1,4,2,2,1,2,2,5,1,1,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Anderson|Hauser|Miyamoto|Kay|VanLange|Critcher|Rottenstrich|Graham|Bauer|Inbar|Alter|Huang,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,2,Global,all,TRUE +5946,1.3792059718427,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,6,6,2,3,2,1,1,2,1,1,1,4,1,1,3,1,3,1,1,2,1,2,1,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Rottenstrich|Kay|Anderson|Graham|Critcher|Bauer|Hauser|VanLange|Miyamoto|Inbar|Ross.Slate1|Alter,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,4,Global,all,TRUE +5947,0.888352564241402,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,3,5,1,4,4,4,3,2,3,2,2,5,4,2,3,3,3,3,4,2,3,3,2,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Graham|Huang|Bauer|Rottenstrich|Anderson|Critcher|Alter|Inbar|Hauser|Ross.Slate1|Kay|Miyamoto,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,6,Global,all,TRUE +5948,-0.0766348877231861,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,4,5,4,3,2,2,3,3,3,1,1,4,1,1,5,1,3,3,3,3,3,4,3,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Bauer|Critcher|Anderson|Ross.Slate1|Huang|Miyamoto|VanLange|Rottenstrich|Alter|Inbar|Hauser|Kay,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,4,Global,all,TRUE +5951,-0.766779704170045,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,5,3,1,1,2,3,1,1,2,3,3,1,3,1,2,3,1,2,3,3,2,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|VanLange|Kay|Huang|Anderson|Rottenstrich|Alter|Critcher|Bauer|Inbar|Hauser|Graham|Ross.Slate1,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,5,Global,all,TRUE +5952,0.324206709465015,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,3,3,1,3,1,2,2,1,1,1,2,3,1,4,1,2,1,1,1,2,2,2,2,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Inbar|VanLange|Huang|Rottenstrich|Alter|Graham|Miyamoto|Kay|Ross.Slate1|Anderson|Critcher|Bauer,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +5955,0.330003699227383,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,4,2,3,4,2,1,2,2,1,2,2,2,3,1,4,1,3,1,3,2,2,1,1,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Bauer|Graham|VanLange|Huang|Inbar|Anderson|Ross.Slate1|Kay|Hauser|Miyamoto|Critcher|Alter,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood,7,Global,all,TRUE +5961,-0.375565177764416,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,6,7,4,1,1,1,4,1,1,3,2,1,1,1,1,3,1,1,3,3,2,1,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|VanLange|Anderson|Huang|Critcher|Alter|Kay|Bauer|Ross.Slate1|Miyamoto|Hauser|Graham|Inbar,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing,3,Global,all,TRUE +5963,-0.695732390037788,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,2,1,2,3,1,4,1,1,5,1,1,1,1,3,1,2,4,1,1,1,1,1,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Bauer|Kay|Ross.Slate1|Rottenstrich|Hauser|Anderson|Alter|Inbar|Miyamoto|Huang|Critcher|VanLange,ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +5964,-0.267085989283046,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,5,4,2,1,3,3,1,1,4,3,2,1,4,1,4,1,1,3,4,2,2,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Graham|Rottenstrich|VanLange|Inbar|Hauser|Alter|Bauer|Miyamoto|Critcher|Huang|Kay|Anderson,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,13,Global,all,TRUE +5966,-0.302681984262591,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,,,,,,,,,,,,,,,,,,,,,,,,,,4,7,7,5,6,4,2,5,1,4,1,3,2,1,1,2,3,1,4,1,1,3,3,1,1,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Inbar|VanLange|Huang|Ross.Slate1|Anderson|Graham|Critcher|Kay|Miyamoto|Rottenstrich|Alter|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,6,Global,all,TRUE +5973,0.469993419334698,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,5,3,4,1,1,5,1,1,2,4,4,4,1,5,1,4,1,1,2,4,3,1,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|VanLange|Rottenstrich|Critcher|Hauser|Kay|Huang|Bauer|Miyamoto|Alter|Anderson|Graham|Inbar,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE,11,Global,all,TRUE +5974,1.34810246841942,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,,,,,,,,,,,,,,,,,,,,,,,,,,3,7,7,7,3,3,1,1,3,3,1,1,2,2,1,1,5,1,3,1,1,2,3,3,1,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Critcher|Alter|Anderson|Graham|Inbar|Ross.Slate1|Huang|Kay|Miyamoto|Bauer|VanLange|Hauser,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing,4,Global,all,TRUE +5976,-1.04107731207007,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,6,7,3,2,5,2,5,1,4,3,2,4,4,4,3,4,3,5,4,1,3,2,4,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Rottenstrich|Miyamoto|VanLange|Inbar|Critcher|Graham|Bauer|Ross.Slate1|Huang|Kay|Anderson|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood,12,Global,all,TRUE +5979,-0.482335065307618,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,3,3,2,3,2,3,3,1,3,2,3,2,1,2,3,1,3,1,1,1,1,2,2,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Hauser|Graham|Inbar|Kay|Critcher|VanLange|Anderson|Rottenstrich|Alter|Ross.Slate1|Miyamoto|Huang,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +5981,1.00275754638714,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,5,6,2,2,5,3,1,1,3,2,1,4,2,3,5,3,3,4,4,1,2,5,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Bauer|Critcher|Miyamoto|Alter|Hauser|Inbar|Rottenstrich|Graham|Ross.Slate1|Huang|Kay|Anderson,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,13,Global,all,TRUE +5984,-0.401265073173756,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,5,6,2,3,1,1,3,2,1,1,3,3,1,1,5,1,5,1,1,4,3,3,1,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Alter|Bauer|Anderson|VanLange|Graham|Kay|Ross.Slate1|Rottenstrich|Critcher|Inbar|Hauser|Miyamoto,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,4,Global,all,TRUE +5985,-0.060283838795746,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,5,5,4,4,3,3,3,3,1,2,4,4,1,1,4,1,4,2,4,4,3,4,1,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Bauer|Anderson|Critcher|Kay|Ross.Slate1|Inbar|Huang|Miyamoto|Hauser|VanLange|Graham|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection,3,Global,all,TRUE +5986,-0.0257436361006993,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,5,5,1,1,2,5,1,1,1,4,1,1,4,1,4,1,3,5,4,4,1,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Alter|Anderson|Critcher|Kay|Miyamoto|Bauer|Ross.Slate1|Inbar|VanLange|Rottenstrich|Huang|Hauser,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,3,Global,all,TRUE +5990,0.309047226766511,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,6,3,3,4,1,1,3,1,2,3,1,1,1,4,1,1,4,1,1,1,1,1,1,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Hauser|Alter|Bauer|Critcher|Kay|Ross.Slate1|VanLange|Inbar|Anderson|Graham|Miyamoto|Rottenstrich,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +5991,0.584918361660266,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,3,1,1,3,2,1,1,2,2,1,1,3,1,3,1,1,2,2,3,1,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Critcher|Graham|Inbar|Ross.Slate1|Miyamoto|Huang|Kay|VanLange|Alter|Bauer|Rottenstrich|Anderson,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +5995,0.205438039665007,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,4,2,2,3,1,1,3,2,1,1,3,3,1,1,3,1,3,1,1,2,3,3,1,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Hauser|Inbar|Huang|Miyamoto|Ross.Slate1|Graham|Alter|Kay|Anderson|Critcher|Bauer|VanLange,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,10,Global,all,TRUE +5996,-0.778247105263382,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,4,3,2,3,4,2,1,1,4,2,1,3,1,1,2,3,1,1,1,1,1,2,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Alter|Anderson|VanLange|Graham|Hauser|Miyamoto|Ross.Slate1|Rottenstrich|Critcher|Bauer|Huang|Kay,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood,3,Global,all,TRUE +5997,0.930923468758015,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,ithaca,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,5,4,2,3,3,4,1,2,4,4,3,1,5,1,4,2,1,5,4,5,3,ithaca,ithaca,ithaca,USA,"Department of Psychology, Ithaca College, Ithaca, NY 14850",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Graham|Anderson|Hauser|Kay|VanLange|Bauer|Huang|Critcher|Rottenstrich|Inbar|Miyamoto|Ross.Slate1,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +5999,-0.652501300455708,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,,,,,,,,,,,,,,,,,,,,,,,,,,4,2,6,4,3,3,1,1,4,1,1,1,2,1,1,1,1,1,4,1,1,1,1,1,1,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Huang|Miyamoto|Graham|Hauser|Inbar|Alter|Critcher|Anderson|VanLange|Kay|Ross.Slate1|Rottenstrich,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +6001,-0.176540572235885,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,4,5,5,1,1,1,3,4,1,1,4,4,1,4,3,1,4,1,1,4,3,5,1,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Critcher|Hauser|Bauer|Graham|Inbar|VanLange|Ross.Slate1|Anderson|Kay|Miyamoto|Alter|Huang,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +6005,-0.348420559263341,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,2,4,1,1,5,5,1,1,4,5,1,1,5,3,3,1,1,3,4,1,1,1,5,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Alter|Bauer|VanLange|Huang|Anderson|Ross.Slate1|Rottenstrich|Graham|Critcher|Hauser|Miyamoto|Inbar,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five,6,Global,all,TRUE +6008,0.930530087009582,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,5,6,3,2,1,1,4,1,1,1,1,3,1,1,3,1,4,1,1,1,1,4,1,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Rottenstrich|Bauer|Hauser|VanLange|Inbar|Miyamoto|Alter|Kay|Huang|Ross.Slate1|Critcher|Graham,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,1,Global,all,TRUE +6009,0.493448181701204,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,5,7,1,1,1,3,2,1,1,1,5,1,1,2,1,3,1,1,3,4,1,1,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Huang|Rottenstrich|Miyamoto|VanLange|Graham|Alter|Kay|Critcher|Ross.Slate1|Hauser|Bauer|Inbar,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,1,Global,all,TRUE +6011,-0.0721446216375158,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,2,2,1,3,2,1,1,3,2,1,3,2,1,1,1,3,1,1,1,1,1,1,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Miyamoto|Hauser|Rottenstrich|Inbar|Anderson|Huang|Bauer|Critcher|Kay|Graham|Alter|Ross.Slate1,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +6013,0.783689810325999,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,4,5,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Miyamoto|Critcher|Bauer|Huang|Graham|Alter|Ross.Slate1|Hauser|Rottenstrich|Inbar|Kay|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood,13,Global,all,TRUE +6014,0.271868509280196,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,6,3,1,1,1,1,5,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Rottenstrich|Graham|Kay|Ross.Slate1|Miyamoto|Hauser|Inbar|Anderson|Bauer|VanLange|Huang|Critcher,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood,9,Global,all,TRUE +6015,0.487904348801634,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,4,2,2,5,4,1,1,5,5,4,1,5,1,4,2,4,5,4,5,1,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Hauser|Kay|Bauer|Alter|VanLange|Rottenstrich|Inbar|Critcher|Ross.Slate1|Graham|Anderson|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,12,Global,all,TRUE +6017,0.636722955211018,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,7,5,2,2,1,3,3,2,1,2,3,2,1,3,1,3,1,2,3,2,3,1,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Hauser|Bauer|Alter|Rottenstrich|Critcher|Graham|Huang|VanLange|Inbar|Anderson|Kay|Ross.Slate1,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,11,Global,all,TRUE +6021,0.878332111710398,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,4,1,1,4,1,1,1,3,3,1,1,3,1,4,1,1,5,3,3,1,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Alter|Hauser|Critcher|Inbar|Miyamoto|Graham|Kay|Bauer|VanLange|Anderson|Ross.Slate1|Rottenstrich,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,11,Global,all,TRUE +6023,-0.406022142576461,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,6,6,5,1,3,2,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Hauser|Rottenstrich|VanLange|Graham|Anderson|Alter|Huang|Miyamoto|Inbar|Bauer|Ross.Slate1|Kay,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,6,Global,all,TRUE +6027,1.0859324466782,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,5,6,2,1,4,1,1,1,1,2,2,2,1,1,2,1,1,3,1,1,1,1,1,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Hauser|Inbar|Alter|Miyamoto|VanLange|Bauer|Rottenstrich|Huang|Critcher|Anderson|Kay|Ross.Slate1,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE,11,Global,all,TRUE +6028,0.762075378270259,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,2,5,1,1,4,4,2,1,5,5,1,1,1,4,2,4,2,3,1,1,2,1,4,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Critcher|Hauser|Inbar|Ross.Slate1|Miyamoto|Alter|Kay|Huang|Anderson|Rottenstrich|VanLange|Bauer,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,10,Global,all,TRUE +6032,0.0169538468473123,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,6,2,1,1,3,3,1,1,5,5,1,1,5,1,5,1,1,2,2,5,1,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Inbar|Graham|Bauer|Rottenstrich|Anderson|Alter|Hauser|Ross.Slate1|Huang|VanLange|Miyamoto|Kay,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +6034,0.307855660537575,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,6,4,5,5,7,4,4,5,4,3,2,3,3,1,4,2,5,3,5,1,4,3,4,5,2,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Kay|Miyamoto|Alter|Ross.Slate1|Huang|Bauer|VanLange|Hauser|Rottenstrich|Inbar|Anderson|Critcher,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,12,Global,all,TRUE +6036,-0.291605739447088,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,7,5,1,1,1,1,1,1,1,1,1,3,1,1,1,1,1,1,2,1,1,1,1,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Kay|Graham|Ross.Slate1|Anderson|Inbar|Rottenstrich|Hauser|Huang|Alter|VanLange|Miyamoto|Critcher,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,5,Global,all,TRUE +6037,-0.571166730475412,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,4,2,2,2,1,1,1,1,1,1,2,1,1,1,2,1,2,1,1,1,1,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Ross.Slate1|Miyamoto|Kay|Hauser|Inbar|Critcher|Graham|Rottenstrich|Anderson|Alter|Bauer|VanLange,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood,10,Global,all,TRUE +6039,-0.979123462086315,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,5,5,3,2,2,1,1,2,1,1,2,1,1,1,1,1,2,1,1,2,1,1,1,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Kay|Miyamoto|Ross.Slate1|Bauer|Rottenstrich|Anderson|Alter|Inbar|Graham|Huang|Hauser|Critcher,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,7,Global,all,TRUE +6040,-0.121704082145432,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,5,3,3,2,4,3,3,1,1,2,1,1,1,1,2,1,3,1,3,1,2,2,1,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Critcher|Inbar|Anderson|Alter|Bauer|Graham|Rottenstrich|Miyamoto|Huang|VanLange|Kay|Ross.Slate1,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,4,Global,all,TRUE +6041,-0.112875195843363,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,5,4,1,1,3,1,1,1,4,4,1,1,4,1,4,1,1,3,4,1,1,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Graham|Ross.Slate1|Miyamoto|VanLange|Hauser|Bauer|Inbar|Rottenstrich|Critcher|Kay|Anderson|Alter,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,12,Global,all,TRUE +6042,0.847621990035555,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,1,5,2,4,2,4,4,4,3,2,3,5,5,3,3,3,5,4,4,3,5,3,2,5,3,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Kay|Inbar|Hauser|Bauer|Critcher|Anderson|Huang|Ross.Slate1|Graham|Miyamoto|VanLange|Rottenstrich,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,7,Global,all,TRUE +6044,-1.13702633713117,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,4,4,5,1,1,3,4,2,1,5,4,3,1,5,1,3,2,3,4,3,4,1,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Kay|Bauer|Hauser|Inbar|Ross.Slate1|Anderson|Alter|Huang|VanLange|Graham|Miyamoto|Critcher,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +6046,0.465503153249028,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,3,5,2,2,1,1,3,1,1,1,3,1,1,1,3,1,4,1,1,3,3,1,1,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Ross.Slate1|Rottenstrich|Miyamoto|Graham|Anderson|Huang|Alter|VanLange|Kay|Critcher|Inbar|Hauser,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,6,Global,all,TRUE +6047,1.12165279461855,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,6,6,7,4,2,2,2,4,1,2,5,4,2,3,5,3,3,1,1,2,4,4,2,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Bauer|Inbar|Ross.Slate1|VanLange|Hauser|Rottenstrich|Kay|Critcher|Graham|Huang|Anderson|Alter,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +6048,0.19186573041447,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,5,6,7,1,3,3,1,1,1,1,1,1,2,1,1,1,2,1,5,1,1,1,1,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Ross.Slate1|Graham|Hauser|Miyamoto|Anderson|Rottenstrich|Bauer|Huang|VanLange|Kay|Inbar|Critcher,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE,6,Global,all,TRUE +6049,0.0670469139892968,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,6,5,2,5,1,2,2,4,5,2,3,5,1,4,2,2,3,1,4,3,2,1,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Kay|Anderson|Graham|Bauer|Huang|Rottenstrich|Inbar|Miyamoto|Critcher|VanLange|Ross.Slate1|Alter,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,3,Global,all,TRUE +6051,1.20719940638384,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,7,5,4,2,1,3,2,1,1,2,3,2,1,3,1,4,1,3,1,3,4,1,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Huang|Hauser|Alter|VanLange|Kay|Inbar|Bauer|Ross.Slate1|Miyamoto|Anderson|Rottenstrich|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,11,Global,all,TRUE +6054,0.545379353683355,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,5,3,2,1,2,2,1,1,3,3,2,1,3,1,4,1,2,3,4,3,2,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Graham|Miyamoto|Huang|Inbar|VanLange|Rottenstrich|Anderson|Kay|Hauser|Bauer|Critcher|Alter,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,8,Global,all,TRUE +6057,-0.899373840083388,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,3,4,2,5,1,1,3,1,1,1,1,1,3,1,1,1,3,1,1,1,1,3,1,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Bauer|Kay|Hauser|VanLange|Ross.Slate1|Miyamoto|Graham|Rottenstrich|Alter|Inbar|Anderson|Critcher,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +6058,0.346214523269188,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,2,1,1,2,3,4,3,2,3,2,2,2,3,4,2,3,2,1,2,1,3,4,3,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Critcher|Huang|Hauser|Miyamoto|Anderson|Inbar|Kay|Graham|Ross.Slate1|Alter|VanLange|Rottenstrich,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,6,Global,all,TRUE +6059,0.927764993786915,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,5,7,5,1,1,1,1,1,1,1,1,3,1,1,1,1,3,1,1,1,1,1,1,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Bauer|VanLange|Miyamoto|Huang|Inbar|Hauser|Rottenstrich|Kay|Anderson|Alter|Ross.Slate1|Critcher,ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +6060,0.163794123530895,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,2,4,3,4,4,3,4,2,3,2,3,3,3,4,3,2,4,4,4,2,1,4,2,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Critcher|Graham|Anderson|VanLange|Hauser|Miyamoto|Alter|Inbar|Kay|Huang|Rottenstrich|Ross.Slate1,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,4,Global,all,TRUE +6062,0.277412342179766,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,6,4,1,3,4,3,3,1,4,2,3,3,5,4,4,3,1,3,1,4,3,3,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Miyamoto|Ross.Slate1|Kay|Critcher|Graham|Anderson|Inbar|Huang|Alter|Rottenstrich|Bauer|Hauser,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +6066,0.307462278789142,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,7,5,5,6,6,2,3,3,5,5,1,2,3,3,1,1,4,1,4,1,2,4,5,3,1,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Inbar|Graham|Alter|Critcher|Huang|Bauer|Hauser|Miyamoto|Ross.Slate1|Anderson|Rottenstrich|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,11,Global,all,TRUE +6068,-0.15465933686311,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,3,5,5,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Inbar|Critcher|Miyamoto|Alter|Rottenstrich|Ross.Slate1|VanLange|Anderson|Bauer|Kay|Graham|Hauser,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,9,Global,all,TRUE +6070,0.449292329207223,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Graham|Hauser|Inbar|Huang|Critcher|VanLange|Ross.Slate1|Bauer|Alter|Anderson|Kay|Rottenstrich,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +6075,0.86172790592016,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,4,3,2,4,4,2,2,3,3,3,2,4,1,3,2,2,3,3,4,1,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|VanLange|Rottenstrich|Bauer|Anderson|Miyamoto|Inbar|Alter|Kay|Huang|Ross.Slate1|Graham|Critcher,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing,5,Global,all,TRUE +6078,-0.473112797257116,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,5,6,1,1,3,4,1,1,2,1,3,2,1,4,1,3,1,1,1,2,1,1,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Hauser|Kay|Miyamoto|Anderson|VanLange|Alter|Graham|Inbar|Rottenstrich|Bauer|Huang|Critcher,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,5,Global,all,TRUE +6080,-0.378597074304117,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,3,5,4,3,4,4,3,3,3,2,4,3,2,3,2,4,4,4,4,2,4,2,2,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|VanLange|Bauer|Graham|Alter|Ross.Slate1|Anderson|Inbar|Hauser|Huang|Critcher|Rottenstrich|Miyamoto,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +6081,-0.269724504074314,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,7,4,3,4,2,2,2,4,4,3,4,4,5,4,5,4,4,3,3,4,4,5,3,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Rottenstrich|Ross.Slate1|Bauer|Inbar|Graham|Hauser|Miyamoto|Kay|Anderson|Critcher|Alter|VanLange,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,10,Global,all,TRUE +6083,0.864492999142827,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,5,3,3,1,3,3,1,2,2,1,2,3,2,3,2,2,1,2,2,3,2,1,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Anderson|Inbar|Graham|Miyamoto|Critcher|Hauser|Kay|Alter|Rottenstrich|Huang|Ross.Slate1|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE,2,Global,all,TRUE +6084,-0.44370939925897,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,mariantab,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,1,3,5,3,5,4,4,2,3,4,1,2,2,1,3,2,2,4,3,2,1,2,1,marian,marian,mariantab,USA,"Marian University, Indianapolis, IN",English,1,legal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Inbar|Alter|Critcher|Ross.Slate1|Kay|Graham|Miyamoto|Hauser|Rottenstrich|VanLange|Anderson|Bauer,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,12,Global,all,TRUE +6085,-0.862868954116776,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,5,2,2,5,5,2,1,3,4,3,2,4,2,4,3,3,3,3,2,3,3,5,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Inbar|Alter|Miyamoto|Hauser|Critcher|Kay|Huang|Rottenstrich|Anderson|Graham|Ross.Slate1|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,10,Global,all,TRUE +6087,-0.000437122439791197,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,7,6,5,3,1,1,2,2,1,1,2,3,1,1,4,1,3,1,1,3,3,3,1,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Kay|Anderson|Ross.Slate1|Miyamoto|Graham|VanLange|Alter|Hauser|Bauer|Huang|Inbar|Critcher,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,3,Global,all,TRUE +6090,0.833782877467984,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marianipad,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,2,5,2,1,4,3,1,1,4,3,2,1,3,1,5,1,1,3,4,2,1,marian,marian,marianipad,USA,"Marian University, Indianapolis, IN",English,1,legal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Inbar|Rottenstrich|VanLange|Miyamoto|Hauser|Ross.Slate1|Anderson|Critcher|Graham|Alter|Kay|Bauer,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,8,Global,all,TRUE +6091,-0.669105506245946,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marianipad,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,3,6,6,2,5,4,2,1,2,4,4,2,3,5,5,2,4,4,1,2,1,2,2,marian,marian,marianipad,USA,"Marian University, Indianapolis, IN",English,1,legal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Bauer|Rottenstrich|Miyamoto|Anderson|Critcher|Graham|VanLange|Alter|Hauser|Ross.Slate1|Inbar|Huang,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +6092,-0.0192864612728643,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marianipad,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,3,1,6,3,2,4,4,3,2,3,3,4,3,1,4,2,3,3,1,3,2,3,2,marian,marian,marianipad,USA,"Marian University, Indianapolis, IN",English,1,legal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Anderson|Huang|Inbar|Critcher|VanLange|Miyamoto|Alter|Bauer|Hauser|Kay|Ross.Slate1|Graham,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,2,Global,all,TRUE +6094,-0.26208718400118,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,5,1,1,5,4,1,1,5,4,4,1,5,1,4,1,1,4,4,3,1,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|VanLange|Hauser|Rottenstrich|Ross.Slate1|Huang|Miyamoto|Kay|Alter|Bauer|Graham|Anderson|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,12,Global,all,TRUE +6096,-0.378737299189752,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,3,5,1,3,1,3,3,1,2,4,4,2,1,2,4,2,3,1,1,2,4,2,4,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|VanLange|Inbar|Alter|Anderson|Hauser|Miyamoto|Ross.Slate1|Huang|Bauer|Graham|Rottenstrich|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,5,Global,all,TRUE +6100,-0.8297848954971,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,3,5,2,2,1,1,3,1,1,1,2,2,1,1,2,1,2,1,1,1,1,2,1,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Miyamoto|Kay|Inbar|Graham|Bauer|Ross.Slate1|Anderson|VanLange|Hauser|Rottenstrich|Alter|Critcher,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,8,Global,all,TRUE +6101,-0.440157542539438,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,7,7,4,1,1,3,4,1,1,3,1,3,2,4,1,5,1,1,2,3,5,1,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|VanLange|Bauer|Anderson|Alter|Huang|Ross.Slate1|Rottenstrich|Inbar|Critcher|Graham|Kay|Hauser,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +6102,0.875300215170697,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,4,2,2,3,1,1,1,3,3,1,1,4,1,4,1,2,2,3,2,1,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Graham|Miyamoto|Bauer|Ross.Slate1|Rottenstrich|Critcher|Alter|VanLange|Kay|Anderson|Inbar|Huang,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +6105,-0.00189549198576056,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,6,6,4,1,2,3,3,2,1,3,5,1,2,4,2,4,1,1,4,3,4,1,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Kay|Alter|Huang|Critcher|Graham|Anderson|Inbar|VanLange|Miyamoto|Rottenstrich|Hauser|Bauer,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +6107,-0.900961013531356,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,2,2,2,1,2,3,1,1,1,1,1,1,1,2,1,4,1,1,1,1,1,1,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Alter|Kay|Rottenstrich|Anderson|Critcher|Hauser|VanLange|Ross.Slate1|Inbar|Miyamoto|Huang|Graham,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing,5,Global,all,TRUE +6109,-0.603208643264826,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,3,1,1,2,3,1,1,2,2,1,1,2,1,3,1,2,3,3,2,1,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Anderson|Miyamoto|Ross.Slate1|Alter|Kay|VanLange|Graham|Huang|Critcher|Rottenstrich|Hauser|Inbar,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,2,Global,all,TRUE +6111,0.154965237228826,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,7,6,5,1,3,4,4,2,1,5,5,3,1,5,4,4,3,4,5,5,5,3,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Bauer|Rottenstrich|VanLange|Inbar|Huang|Critcher|Graham|Miyamoto|Kay|Alter|Ross.Slate1|Hauser,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,1,Global,all,TRUE +6112,1.27138474295619,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,6,6,5,3,2,1,3,1,1,1,1,2,1,1,3,1,3,1,1,2,2,3,1,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Alter|Graham|Bauer|Huang|Rottenstrich|Inbar|Ross.Slate1|Hauser|Kay|Miyamoto|Anderson|Critcher,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,12,Global,all,TRUE +6114,0.396700972159605,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marianipad,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,5,3,3,4,1,4,3,1,1,3,3,1,1,4,1,4,1,4,3,3,3,1,marian,marian,marianipad,USA,"Marian University, Indianapolis, IN",English,1,legal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|VanLange|Alter|Anderson|Huang|Rottenstrich|Hauser|Critcher|Bauer|Inbar|Graham|Miyamoto|Ross.Slate1,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,4,Global,all,TRUE +6115,-0.850081182892506,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,3,6,3,1,1,3,2,1,1,3,2,2,1,3,1,3,1,3,2,2,2,1,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Hauser|Miyamoto|Bauer|Graham|Anderson|Critcher|Rottenstrich|Huang|VanLange|Kay|Alter|Ross.Slate1,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,6,Global,all,TRUE +6117,0.770117501075462,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,2,3,1,1,1,2,1,1,1,2,1,1,3,1,2,1,1,2,3,2,1,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Bauer|Anderson|Miyamoto|Hauser|Kay|Critcher|Ross.Slate1|VanLange|Graham|Inbar|Alter|Rottenstrich,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,3,Global,all,TRUE +6120,-0.29199912119552,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,7,6,4,4,3,3,3,2,2,3,1,2,1,4,2,4,2,2,3,3,3,2,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|VanLange|Hauser|Inbar|Anderson|Kay|Graham|Critcher|Alter|Huang|Miyamoto|Rottenstrich|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,5,Global,all,TRUE +6121,-0.950520474039272,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,7,7,3,4,2,3,4,4,4,3,5,4,5,3,5,1,5,1,1,4,5,4,1,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|VanLange|Kay|Huang|Alter|Graham|Bauer|Inbar|Miyamoto|Rottenstrich|Critcher|Hauser|Ross.Slate1,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,1,Global,all,TRUE +6123,-0.617834519329263,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,2,1,1,3,4,1,1,4,3,2,1,3,1,4,4,1,2,3,4,1,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Bauer|Hauser|Miyamoto|Anderson|VanLange|Huang|Ross.Slate1|Rottenstrich|Kay|Inbar|Alter|Graham,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,5,Global,all,TRUE +6124,0.3785095929214,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,4,1,1,1,5,4,1,1,1,2,1,3,1,1,3,1,2,4,1,2,1,1,5,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Alter|Huang|Anderson|Rottenstrich|Critcher|Ross.Slate1|VanLange|Hauser|Bauer|Graham|Inbar|Kay,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,4,Global,all,TRUE +6126,0.0472705867737227,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,5,5,6,2,1,3,1,2,1,2,2,3,1,1,3,3,3,1,1,4,1,4,2,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Anderson|Bauer|Critcher|Rottenstrich|Inbar|Graham|Hauser|Ross.Slate1|Miyamoto|Alter|VanLange|Huang,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +6127,-0.582367328251715,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,7,3,2,1,4,1,1,1,2,3,1,1,3,1,2,1,1,2,2,2,1,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Anderson|Inbar|Kay|Graham|Rottenstrich|Ross.Slate1|Hauser|Bauer|Alter|Miyamoto|VanLange|Huang,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE,2,Global,all,TRUE +6128,-0.0793999809458531,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,4,3,4,3,4,4,1,1,1,1,3,3,1,4,1,1,1,3,3,1,1,1,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Graham|Huang|VanLange|Ross.Slate1|Kay|Bauer|Inbar|Miyamoto|Rottenstrich|Alter|Anderson|Hauser,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +6129,0.548144446906021,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,4,2,4,2,2,1,1,3,3,3,1,2,2,3,1,1,3,2,3,3,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Alter|Anderson|Inbar|Huang|Miyamoto|Bauer|Ross.Slate1|VanLange|Rottenstrich|Kay|Graham|Hauser,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,3,Global,all,TRUE +6130,0.171569443019064,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,4,7,4,4,3,3,4,4,1,1,4,2,3,1,4,1,3,1,1,3,3,4,1,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Huang|Critcher|Inbar|VanLange|Miyamoto|Anderson|Ross.Slate1|Alter|Kay|Rottenstrich|Graham|Bauer,ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,7,Global,all,TRUE +6132,-0.416031174123828,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,6,6,3,4,1,2,1,1,2,1,2,3,1,4,1,3,1,1,2,1,1,1,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Graham|Critcher|Bauer|Huang|Alter|Miyamoto|Anderson|Inbar|VanLange|Kay|Ross.Slate1|Rottenstrich,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,8,Global,all,TRUE +6133,0.400784210042607,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,6,4,2,3,4,4,1,2,4,3,4,1,4,3,4,1,2,4,4,3,3,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Alter|VanLange|Hauser|Critcher|Anderson|Rottenstrich|Inbar|Miyamoto|Ross.Slate1|Graham|Huang|Kay,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +6134,-0.135809998030037,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,7,4,5,2,3,3,4,1,3,5,4,2,3,5,3,4,2,4,4,5,5,3,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Kay|Bauer|Anderson|Alter|Inbar|Hauser|Miyamoto|Graham|VanLange|Rottenstrich|Ross.Slate1|Huang,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,4,Global,all,TRUE +6139,-0.167964842796614,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,3,5,2,3,2,3,3,2,1,2,4,3,1,1,4,1,3,1,2,1,2,4,1,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Hauser|Rottenstrich|Kay|Huang|Graham|Bauer|Miyamoto|Critcher|VanLange|Inbar,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +6140,-0.637737424976235,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,4,3,3,1,2,1,1,2,1,1,2,2,2,1,3,1,1,1,1,2,3,2,1,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|VanLange|Bauer|Inbar|Kay|Hauser|Ross.Slate1|Critcher|Huang|Graham|Rottenstrich|Alter|Anderson,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +6143,0.385233571066269,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,5,6,3,1,2,3,2,1,1,3,1,1,1,1,1,2,1,1,4,1,1,1,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Kay|Inbar|VanLange|Anderson|Alter|Hauser|Ross.Slate1|Graham|Bauer|Huang|Critcher|Miyamoto,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,5,Global,all,TRUE +6144,0.642660169859021,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,7,6,2,1,3,4,1,1,1,2,1,2,1,5,1,4,1,1,2,3,1,1,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Ross.Slate1|Kay|Anderson|VanLange|Graham|Huang|Hauser|Critcher|Alter|Inbar|Bauer|Rottenstrich,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,4,Global,all,TRUE +6146,0.714494247488144,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,6,3,5,2,2,5,4,2,1,4,5,3,2,4,1,5,2,1,4,5,5,1,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Hauser|Graham|Huang|VanLange|Bauer|Critcher|Alter|Kay|Inbar|Rottenstrich|Miyamoto|Anderson,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,13,Global,all,TRUE +6150,0.32961031747895,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,3,3,1,2,2,4,1,1,1,4,2,2,1,3,2,1,2,1,1,1,2,2,1,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Ross.Slate1|Alter|Graham|VanLange|Miyamoto|Critcher|Inbar|Bauer|Huang|Anderson|Hauser|Kay,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,11,Global,all,TRUE +6152,-0.153467770634175,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,7,6,3,5,1,1,5,5,1,2,4,5,2,1,5,1,4,1,2,5,5,4,1,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Graham|VanLange|Huang|Inbar|Rottenstrich|Anderson|Bauer|Kay|Hauser|Alter|Ross.Slate1|Miyamoto,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,7,Global,all,TRUE +6153,0.524689684539516,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,4,6,6,3,1,1,3,2,1,1,1,3,1,1,5,1,3,1,1,4,5,5,1,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Graham|Inbar|Ross.Slate1|Rottenstrich|Kay|Bauer|Alter|Anderson|Hauser|Miyamoto|Huang|Critcher,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,9,Global,all,TRUE +6155,-0.309274933034862,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,7,3,1,1,4,1,1,1,1,1,1,1,3,1,3,1,2,1,3,1,1,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Anderson|Huang|Rottenstrich|Kay|Inbar|VanLange|Critcher|Hauser|Ross.Slate1|Bauer|Alter|Miyamoto,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,2,Global,all,TRUE +6156,-0.249695019995942,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marianipad,,,,,,,,,,,,,,,,,,,,,,,,,,4,2,5,6,7,4,1,1,4,2,1,1,1,4,1,1,2,1,3,1,2,3,3,1,1,marian,marian,marianipad,USA,"Marian University, Indianapolis, IN",English,1,legal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Bauer|Miyamoto|Anderson|Hauser|VanLange|Rottenstrich|Kay|Ross.Slate1|Critcher|Alter|Graham|Inbar,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,4,Global,all,TRUE +6163,-1.60060854779999,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,4,2,4,4,3,1,2,3,3,1,1,4,1,3,1,1,3,3,4,1,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Miyamoto|Anderson|Huang|Rottenstrich|Graham|VanLange|Critcher|Inbar|Kay|Hauser|Alter|Ross.Slate1,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,3,Global,all,TRUE +6164,0.471440367897031,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,7,5,3,1,2,1,3,1,1,3,5,1,1,4,1,5,1,1,3,3,4,1,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Inbar|Kay|Bauer|Alter|Anderson|VanLange|Huang|Ross.Slate1|Graham|Hauser|Rottenstrich|Miyamoto,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,6,Global,all,TRUE +6166,0.40672142469061,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,3,4,2,1,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Graham|Critcher|Inbar|Bauer|VanLange|Anderson|Huang|Ross.Slate1|Miyamoto|Hauser|Alter|Rottenstrich,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,7,Global,all,TRUE +6167,-0.513969949894362,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,3,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Hauser|Miyamoto|Alter|VanLange|Rottenstrich|Bauer|Huang|Critcher|Anderson|Graham|Inbar|Kay,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,10,Global,all,TRUE +6168,-0.175742387755382,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,7,3,4,2,2,4,4,1,2,4,3,2,1,4,1,4,2,2,2,2,3,1,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Ross.Slate1|Rottenstrich|Anderson|Graham|Hauser|Critcher|Inbar|Alter|Bauer|Miyamoto|Kay|Huang,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five,4,Global,all,TRUE +6170,0.742565854371719,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,4,3,3,2,3,3,1,2,3,3,1,1,3,1,3,1,1,3,3,3,3,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|VanLange|Huang|Critcher|Anderson|Ross.Slate1|Hauser|Rottenstrich|Alter|Bauer|Inbar|Miyamoto|Kay,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +6173,0.14033936116439,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,3,5,3,4,4,4,2,3,2,3,3,3,4,2,2,2,4,4,3,2,3,3,4,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Alter|Ross.Slate1|Critcher|Hauser|Anderson|Huang|Miyamoto|VanLange|Bauer|Inbar|Rottenstrich|Graham,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +6176,1.29326597832897,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,6,5,4,2,3,3,3,1,1,4,3,2,1,4,2,4,2,2,3,3,3,2,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Critcher|Alter|Kay|Ross.Slate1|Bauer|VanLange|Inbar|Graham|Huang|Anderson|Rottenstrich|Hauser,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood,11,Global,all,TRUE +6177,-0.297262504323821,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,5,5,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Huang|Ross.Slate1|VanLange|Hauser|Rottenstrich|Alter|Kay|Anderson|Critcher|Graham|Inbar|Bauer,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood,9,Global,all,TRUE +6179,0.891777842529536,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,4,5,3,1,1,4,3,1,1,3,4,1,1,4,1,4,1,1,3,3,3,1,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Graham|Critcher|Anderson|Inbar|Huang|Bauer|Rottenstrich|Hauser|Kay|Ross.Slate1|Miyamoto|Alter,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,4,Global,all,TRUE +6180,0.515455995505377,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marianipad,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,5,6,4,1,1,4,4,2,1,3,3,1,1,4,1,5,2,2,3,3,5,1,marian,marian,marianipad,USA,"Marian University, Indianapolis, IN",English,1,legal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Miyamoto|Critcher|Alter|Ross.Slate1|Anderson|Kay|Rottenstrich|Bauer|Graham|VanLange|Hauser|Inbar,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,6,Global,all,TRUE +6184,1.47318808816163,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,5,7,2,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Huang|Inbar|Bauer|VanLange|Graham|Ross.Slate1|Kay|Hauser|Rottenstrich|Anderson|Miyamoto|Alter,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing,11,Global,all,TRUE +6185,-0.471654427711147,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,4,1,1,4,4,2,1,3,4,1,2,5,2,4,1,1,3,4,3,1,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Anderson|VanLange|Rottenstrich|Critcher|Miyamoto|Graham|Alter|Inbar|Bauer|Huang|Hauser|Kay,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection,2,Global,all,TRUE +6186,0.0385819253572889,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,3,3,2,3,3,2,1,2,3,4,3,1,4,1,3,1,1,3,3,2,1,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Huang|Rottenstrich|VanLange|Ross.Slate1|Alter|Critcher|Hauser|Miyamoto|Bauer|Graham|Inbar|Kay,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +6187,-0.802362052695355,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,tamu,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,5,5,3,2,1,3,1,1,1,2,1,1,2,1,1,1,2,1,3,1,1,1,1,tamu,tamu,tamu,USA,"Department of Psychology, Texas A&M University, College Station, TX 77843",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Anderson|VanLange|Kay|Critcher|Huang|Alter|Miyamoto|Graham|Hauser|Inbar|Ross.Slate1|Rottenstrich,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,2,Global,all,TRUE +6189,-0.158997957079509,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,3,3,3,3,3,3,1,1,2,4,2,3,4,2,4,1,1,2,3,3,2,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Anderson|Kay|Alter|Rottenstrich|Huang|Ross.Slate1|Bauer|VanLange|Miyamoto|Graham|Hauser|Critcher,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five,2,Global,all,TRUE +6190,-0.204612179119459,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,5,6,3,3,1,2,3,2,1,1,2,2,3,1,3,4,3,3,2,3,1,3,4,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Miyamoto|Huang|Inbar|Anderson|Rottenstrich|Ross.Slate1|Bauer|Graham|VanLange|Kay|Hauser|Critcher,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,5,Global,all,TRUE +6194,-0.33563501350967,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,5,3,2,2,4,1,4,1,1,1,3,2,2,1,3,1,4,1,1,1,1,4,1,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Ross.Slate1|Hauser|Huang|Anderson|Critcher|Miyamoto|Bauer|Kay|Rottenstrich|Graham|VanLange|Inbar,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,5,Global,all,TRUE +6196,-0.273681163525916,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,3,3,4,2,2,4,4,1,1,4,4,2,2,5,2,3,2,2,3,3,4,2,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Bauer|Hauser|Rottenstrich|Inbar|Graham|Kay|Anderson|Ross.Slate1|Critcher|Miyamoto|Alter|VanLange,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,8,Global,all,TRUE +6198,-0.0279887691435347,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,mariantab,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,6,4,2,3,1,2,3,2,1,1,4,3,3,1,4,1,3,1,3,3,2,3,1,marian,marian,mariantab,USA,"Marian University, Indianapolis, IN",English,1,legal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Graham|Anderson|Inbar|Critcher|Kay|VanLange|Miyamoto|Huang|Bauer|Ross.Slate1|Hauser|Rottenstrich,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +6199,-0.0701662919117145,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marianipad,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,7,2,1,1,1,3,1,1,3,1,1,1,2,1,1,1,1,2,1,1,1,marian,marian,marianipad,USA,"Marian University, Indianapolis, IN",English,1,legal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Huang|Bauer|Kay|Critcher|Rottenstrich|Alter|Anderson|Ross.Slate1|VanLange|Hauser|Graham|Miyamoto,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,8,Global,all,TRUE +6200,0.927498190469881,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,6,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Graham|Bauer|Ross.Slate1|Rottenstrich|Alter|VanLange|Inbar|Miyamoto|Hauser|Huang|Kay|Critcher,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +6201,1.05179704671522,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,4,6,3,2,1,3,1,1,1,1,1,1,1,3,1,4,1,1,3,1,1,1,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Alter|Hauser|Ross.Slate1|Miyamoto|Rottenstrich|Huang|Anderson|Inbar|Graham|Critcher|VanLange|Bauer,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +6204,-0.090600578722156,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,5,3,2,1,4,3,1,1,3,3,1,1,5,1,4,1,1,3,3,4,1,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Bauer|Inbar|Rottenstrich|Graham|Miyamoto|Alter|Anderson|Hauser|VanLange|Critcher|Ross.Slate1|Huang,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,8,Global,all,TRUE +6205,-0.54138359718307,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,3,3,2,2,4,4,1,1,1,4,1,1,4,5,1,2,1,2,4,5,1,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Kay|Anderson|Ross.Slate1|Miyamoto|Alter|Hauser|Critcher|Huang|Rottenstrich|VanLange|Inbar|Bauer,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood,3,Global,all,TRUE +6208,-0.0075659033167295,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,7,5,3,2,2,3,2,2,1,2,3,2,2,2,1,3,2,2,2,2,3,1,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Graham|Huang|Critcher|Kay|Inbar|Miyamoto|VanLange|Anderson|Alter|Rottenstrich|Bauer|Ross.Slate1,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection,9,Global,all,TRUE +6210,-0.59793161368229,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,4,4,4,2,1,2,2,1,2,5,1,2,4,2,3,3,2,2,2,1,1,1,1,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Inbar|Rottenstrich|Huang|VanLange|Miyamoto|Graham|Anderson|Ross.Slate1|Hauser|Critcher|Kay|Alter,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,8,Global,all,TRUE +6212,-0.269331122325881,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,4,4,3,3,1,1,3,1,3,1,2,1,1,1,3,1,3,1,1,2,2,2,1,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|VanLange|Ross.Slate1|Bauer|Huang|Rottenstrich|Critcher|Hauser|Graham|Alter|Miyamoto|Kay|Inbar,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,1,Global,all,TRUE +6213,0.0960432837847732,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,5,5,2,2,1,1,5,1,1,1,1,4,1,1,5,1,3,1,1,3,3,3,1,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Graham|Alter|Anderson|Inbar|Rottenstrich|Bauer|Critcher|Ross.Slate1|Miyamoto|Hauser|VanLange|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood,4,Global,all,TRUE +6225,-0.241652897190738,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,6,5,2,2,2,1,4,3,1,2,1,1,1,1,3,1,4,1,3,2,3,2,1,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Alter|Kay|Graham|Anderson|Miyamoto|Inbar|Hauser|VanLange|Bauer|Huang|Ross.Slate1|Rottenstrich,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,5,Global,all,TRUE +6230,1.06089273633433,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,6,6,6,4,4,2,3,4,3,2,4,4,4,1,4,4,3,1,4,4,4,3,2,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Bauer|Inbar|Alter|Rottenstrich|Ross.Slate1|Hauser|Graham|Miyamoto|Kay|Huang|VanLange|Critcher,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,1,Global,all,TRUE +6231,-0.627981550291666,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,7,7,5,1,1,3,3,1,1,4,4,3,1,5,1,4,1,2,5,2,4,1,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Critcher|Inbar|Alter|Kay|Graham|Bauer|Miyamoto|Huang|Hauser|Rottenstrich|Anderson|VanLange,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,12,Global,all,TRUE +6233,0.0761403781378001,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,4,1,1,4,5,1,1,4,4,1,1,4,1,4,1,1,4,2,5,1,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Inbar|Miyamoto|Critcher|Ross.Slate1|Graham|Hauser|Anderson|Kay|Huang|Rottenstrich|Alter|VanLange,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,8,Global,all,TRUE +6234,-0.700869194734689,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,2,4,1,2,2,3,1,1,3,5,1,1,4,1,3,1,3,3,4,4,1,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Hauser|Anderson|Miyamoto|Rottenstrich|Bauer|Graham|Inbar|Critcher|Huang|Ross.Slate1|Kay|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,3,Global,all,TRUE +6237,-0.200528941236458,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,7,4,1,5,2,2,4,3,1,4,5,5,1,2,5,1,4,1,2,4,3,4,1,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Alter|Miyamoto|Critcher|Graham|Bauer|Huang|Ross.Slate1|Rottenstrich|VanLange|Anderson|Hauser|Kay,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +6244,-1.64884763817697,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,5,4,2,4,2,5,1,1,4,3,4,2,4,2,4,1,4,2,3,2,4,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Anderson|Inbar|Critcher|Huang|Ross.Slate1|VanLange|Rottenstrich|Graham|Alter|Miyamoto|Hauser|Bauer,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,2,Global,all,TRUE +6246,-0.428549916560466,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,7,7,4,4,2,4,5,1,3,3,4,3,1,4,1,3,1,3,3,4,4,1,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Hauser|Huang|Bauer|Graham|Ross.Slate1|VanLange|Rottenstrich|Alter|Critcher|Anderson|Inbar|Kay,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,11,Global,all,TRUE +6248,0.659264375649259,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marianipad,,,,,,,,,,,,,,,,,,,,,,,,,,6,3,6,6,5,3,1,4,2,2,2,1,2,2,3,5,3,3,3,1,1,3,4,5,3,marian,marian,marianipad,USA,"Marian University, Indianapolis, IN",English,1,legal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Ross.Slate1|Kay|Critcher|Anderson|Alter|Bauer|Hauser|Huang|VanLange|Miyamoto|Inbar|Rottenstrich,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +6250,0.550263001517457,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,4,4,3,3,4,4,3,1,2,4,3,2,2,4,2,3,2,2,4,3,3,3,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Kay|Critcher|Alter|Inbar|Graham|Hauser|Huang|Rottenstrich|Anderson|Ross.Slate1|Miyamoto|Bauer,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,10,Global,all,TRUE +6258,-0.564316173899145,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,5,6,1,4,2,1,5,3,1,2,5,4,1,1,4,1,3,4,1,2,5,3,1,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Graham|Rottenstrich|Ross.Slate1|Inbar|Huang|VanLange|Bauer|Hauser|Anderson|Alter|Critcher|Kay,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,10,Global,all,TRUE +6262,-0.0157346045533318,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,5,1,1,1,1,2,1,1,1,3,1,1,1,1,1,1,1,1,3,2,1,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Miyamoto|Alter|Ross.Slate1|Bauer|Anderson|Inbar|Critcher|VanLange|Graham|Hauser|Huang|Rottenstrich,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +6263,1.21602829268591,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,7,4,4,3,1,1,1,4,1,1,2,1,1,1,1,1,2,1,1,2,3,4,1,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Kay|Huang|Graham|Critcher|Miyamoto|Inbar|VanLange|Rottenstrich|Anderson|Bauer|Alter|Ross.Slate1,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,10,Global,all,TRUE +6264,0.81190164209521,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,5,5,4,3,2,1,3,3,1,1,1,2,1,2,3,3,3,1,1,3,3,3,4,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Anderson|Graham|Miyamoto|Kay|Hauser|Ross.Slate1|VanLange|Inbar|Bauer|Critcher|Rottenstrich|Huang,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,2,Global,all,TRUE +6267,0.756011585190857,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,4,3,5,2,1,1,2,2,1,1,2,1,2,1,3,1,2,1,3,2,1,1,1,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Inbar|Kay|Ross.Slate1|Hauser|Alter|Miyamoto|Rottenstrich|Anderson|Huang|Bauer|VanLange|Critcher,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,9,Global,all,TRUE +6269,0.368095758641962,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,5,6,4,4,2,2,4,3,2,2,4,3,2,2,4,2,3,1,2,4,2,4,2,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Alter|Bauer|Kay|Huang|Miyamoto|Rottenstrich|VanLange|Inbar|Hauser|Graham|Ross.Slate1|Critcher,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,1,Global,all,TRUE +6270,0.681272189453432,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,4,3,2,1,2,2,2,1,2,2,2,1,2,3,2,3,1,2,2,3,2,2,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Huang|Ross.Slate1|Miyamoto|Anderson|Graham|Rottenstrich|Alter|Inbar|Kay|Bauer|Hauser|VanLange,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,5,Global,all,TRUE +6272,-0.809350608686658,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,5,6,4,2,3,3,1,1,1,3,4,1,1,4,1,4,1,1,3,3,4,1,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Anderson|Hauser|Kay|Bauer|VanLange|Critcher|Alter|Miyamoto|Graham|Inbar|Huang|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,2,Global,all,TRUE +6273,0.194630823637137,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,3,5,3,1,4,4,3,4,2,4,3,3,4,2,3,4,2,2,1,1,1,3,4,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Bauer|Huang|VanLange|Graham|Miyamoto|Rottenstrich|Alter|Inbar|Kay|Ross.Slate1|Critcher|Hauser,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,1,Global,all,TRUE +6274,-0.163094841416746,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,2,3,4,1,1,5,1,1,1,1,3,1,1,4,1,5,1,1,3,2,2,1,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Miyamoto|VanLange|Anderson|Graham|Huang|Bauer|Inbar|Ross.Slate1|Hauser|Critcher|Kay|Rottenstrich,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,4,Global,all,TRUE +6278,-0.207517497227761,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,6,1,2,1,1,1,1,2,1,1,1,1,2,1,2,1,1,1,1,1,1,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Bauer|VanLange|Anderson|Miyamoto|Critcher|Inbar|Graham|Rottenstrich|Kay|Ross.Slate1|Alter|Hauser,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,4,Global,all,TRUE +6280,0.0230176399267145,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,5,6,3,1,1,1,1,3,1,1,2,1,1,1,1,1,3,1,1,3,1,3,1,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Kay|Graham|Critcher|Miyamoto|Anderson|Inbar|Alter|Hauser|Bauer|Huang|Ross.Slate1|Rottenstrich,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,6,Global,all,TRUE +6283,1.01079966919234,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,1,4,1,1,2,1,1,5,5,1,1,5,1,2,1,1,2,5,5,1,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Critcher|Rottenstrich|Alter|Ross.Slate1|Miyamoto|Inbar|Anderson|Hauser|Bauer|Kay|Graham|Huang,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing,8,Global,all,TRUE +6284,0.343842811794954,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,5,6,3,3,3,3,3,2,1,2,2,3,3,1,2,1,3,1,3,1,2,3,1,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Bauer|VanLange|Hauser|Inbar|Alter|Graham|Ross.Slate1|Rottenstrich|Miyamoto|Kay|Critcher|Anderson,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,13,Global,all,TRUE +6285,-0.240205948628406,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,6,2,2,1,1,3,2,1,1,4,5,1,1,5,1,3,1,1,2,4,2,1,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Hauser|Anderson|Kay|Ross.Slate1|Bauer|Miyamoto|Inbar|Huang|Critcher|VanLange|Graham|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood,3,Global,all,TRUE +6286,-0.332069510335901,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,4,2,3,3,4,3,4,3,4,3,4,3,4,3,3,4,2,3,4,2,5,2,4,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Miyamoto|Rottenstrich|Critcher|Kay|Ross.Slate1|Anderson|Hauser|Alter|Bauer|VanLange|Graham|Inbar,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,7,Global,all,TRUE +6288,0.397232353323074,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,3,5,6,2,4,4,2,2,3,4,2,2,4,4,2,4,2,2,2,2,2,2,4,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Huang|Rottenstrich|Ross.Slate1|Miyamoto|Kay|Hauser|Bauer|VanLange|Graham|Anderson|Inbar|Alter,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +6290,0.584398401480434,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,5,3,4,3,1,4,1,1,1,5,2,1,1,3,1,4,1,3,2,2,2,1,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Rottenstrich|Hauser|Critcher|Alter|Bauer|Ross.Slate1|VanLange|Kay|Anderson|Inbar|Huang|Graham,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,10,Global,all,TRUE +6294,-1.37758192681665,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,5,6,4,2,1,4,3,1,1,3,4,2,1,4,1,3,3,2,3,2,3,1,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Alter|Hauser|Inbar|Ross.Slate1|Miyamoto|Anderson|Kay|Rottenstrich|Critcher|VanLange|Bauer|Graham,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE,7,Global,all,TRUE +6295,-0.489185621883885,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,4,4,1,5,1,3,5,2,1,1,3,5,1,1,2,3,5,1,3,3,3,3,3,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Kay|Huang|Anderson|Alter|Bauer|Hauser|Graham|VanLange|Rottenstrich|Critcher|Ross.Slate1|Inbar,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,4,Global,all,TRUE +6298,1.31475383195331,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,1,5,1,1,1,1,1,1,1,1,1,5,1,5,1,1,1,1,1,1,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Critcher|Bauer|Graham|VanLange|Miyamoto|Hauser|Ross.Slate1|Huang|Inbar|Alter|Anderson|Kay,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,12,Global,all,TRUE +6299,0.633957861988351,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,7,7,2,4,1,1,3,3,1,2,3,3,1,1,4,1,5,1,2,3,4,3,1,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Anderson|VanLange|Inbar|Hauser|Ross.Slate1|Rottenstrich|Graham|Miyamoto|Critcher|Huang|Bauer|Alter,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five,2,Global,all,TRUE +6300,-0.702987749346125,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabington,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,6,6,5,4,2,2,3,4,1,1,5,5,1,1,5,1,3,2,1,4,3,4,1,psuabington,psuabington,psuabington,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Miyamoto|Rottenstrich|Kay|Huang|VanLange|Ross.Slate1|Critcher|Anderson|Inbar|Bauer|Alter|Hauser,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,9,Global,all,TRUE +6303,0.241425190922387,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,1,1,1,5,4,1,1,5,4,1,3,1,5,3,1,5,4,1,1,1,1,1,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Bauer|Ross.Slate1|Rottenstrich|VanLange|Anderson|Critcher|Huang|Kay|Graham|Miyamoto|Alter|Hauser,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +6306,0.338172400463985,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,mariantab,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,5,6,5,1,4,4,1,1,4,3,1,1,1,4,2,1,2,3,1,1,1,2,2,marian,marian,mariantab,USA,"Marian University, Indianapolis, IN",English,1,legal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Graham|Rottenstrich|Alter|Hauser|Huang|Bauer|Miyamoto|Inbar|Critcher|Ross.Slate1|Anderson|Kay,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing,12,Global,all,TRUE +6310,0.839579867230352,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,4,2,2,4,2,2,3,4,3,2,2,4,4,1,3,1,3,4,4,4,1,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Critcher|Hauser|Rottenstrich|Inbar|Ross.Slate1|Bauer|Anderson|VanLange|Alter|Miyamoto|Kay|Huang,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,8,Global,all,TRUE +6312,-0.442135872265239,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,,,,,,,,,,,,,,,,,,,,,,,,,,2,7,5,7,2,3,2,1,3,3,2,1,4,5,1,2,5,1,5,1,1,3,4,4,1,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Huang|Hauser|Kay|Critcher|Graham|Bauer|Miyamoto|Alter|Rottenstrich|Ross.Slate1|Anderson|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,12,Global,all,TRUE +6315,1.07762352055596,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,5,4,5,2,2,4,3,1,2,5,4,3,1,4,2,3,3,3,4,5,3,2,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Kay|Graham|Critcher|Rottenstrich|Inbar|Ross.Slate1|Miyamoto|Bauer|VanLange|Anderson|Huang|Alter,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,11,Global,all,TRUE +6316,-0.753460551782306,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,3,2,1,4,1,2,4,2,3,3,1,3,2,2,2,5,3,4,1,4,2,4,3,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Graham|Anderson|Kay|Ross.Slate1|Hauser|Miyamoto|Bauer|VanLange|Huang|Inbar|Critcher|Alter,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +6317,-0.532554710881001,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,4,1,2,4,2,2,1,5,4,1,1,3,1,3,1,1,3,4,4,1,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|VanLange|Anderson|Ross.Slate1|Huang|Graham|Alter|Bauer|Miyamoto|Rottenstrich|Critcher|Hauser|Inbar,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,3,Global,all,TRUE +6322,-0.148595543783708,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,7,6,6,4,1,1,2,3,1,1,5,5,1,1,4,1,3,1,3,4,5,2,1,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Bauer|Kay|Huang|Hauser|Graham|Critcher|Ross.Slate1|Rottenstrich|Inbar|Anderson|VanLange|Alter,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +6323,0.731491835026815,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,6,3,4,1,4,3,3,1,1,1,3,3,1,3,1,4,1,4,3,4,3,1,occid,occid,occidtab,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Anderson|Hauser|Miyamoto|Bauer|Kay|Rottenstrich|Ross.Slate1|Huang|Graham|Alter|VanLange|Critcher,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +6324,-0.0941524354416891,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,4,4,3,4,2,2,4,2,1,3,4,3,1,2,4,1,3,2,2,3,4,3,1,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Ross.Slate1|Anderson|Graham|Huang|VanLange|Hauser|Inbar|Critcher|Alter|Rottenstrich|Kay|Bauer,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +6326,0.542881063777721,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,5,6,5,4,1,3,4,2,1,2,4,3,3,2,5,3,4,1,1,4,4,3,2,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Hauser|Miyamoto|Anderson|Bauer|Inbar|VanLange|Critcher|Alter|Kay|Ross.Slate1|Graham|Huang,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,4,Global,all,TRUE +6331,-2.10938430585185,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,2,6,6,1,3,1,1,1,1,1,1,5,1,1,5,1,4,1,5,2,1,1,1,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Hauser|Rottenstrich|Graham|Ross.Slate1|Miyamoto|Anderson|Critcher|VanLange|Inbar|Huang|Kay|Alter,ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,7,Global,all,TRUE +6332,0.415943692741112,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,4,3,4,3,4,1,2,4,4,3,3,4,1,3,2,3,4,4,4,3,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Anderson|Alter|Graham|Kay|VanLange|Ross.Slate1|Bauer|Miyamoto|Inbar|Hauser|Huang|Rottenstrich,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,2,Global,all,TRUE +6334,-0.316252068042529,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,6,5,1,1,1,3,1,1,1,1,1,1,1,3,1,3,1,3,1,1,1,1,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Graham|Critcher|Bauer|Miyamoto|Rottenstrich|Inbar|Anderson|Alter|Kay|Ross.Slate1|VanLange|Hauser,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,8,Global,all,TRUE +6335,0.0471440083423239,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,6,5,3,2,3,3,2,1,1,3,4,2,1,3,1,4,1,1,3,4,4,1,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Inbar|Critcher|Hauser|Ross.Slate1|Miyamoto|VanLange|Bauer|Rottenstrich|Kay|Alter|Anderson|Graham,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,12,Global,all,TRUE +6336,0.537210652446752,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,7,7,7,2,4,5,1,3,4,3,3,3,4,2,4,2,1,3,2,2,3,2,3,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Huang|Bauer|Anderson|Kay|Inbar|Graham|Ross.Slate1|VanLange|Rottenstrich|Critcher|Hauser|Miyamoto,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,4,Global,all,TRUE +6337,-0.40720228782176,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,4,4,2,1,3,4,1,1,3,3,1,2,4,1,4,1,3,4,3,3,1,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Rottenstrich|Anderson|Alter|Ross.Slate1|VanLange|Bauer|Miyamoto|Hauser|Inbar|Critcher|Graham|Huang,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,3,Global,all,TRUE +6340,0.260667911503893,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,,,,,,,,,,,,,,,,,,,,,,,,,,7,5,7,6,6,2,2,1,2,2,1,1,3,3,2,1,4,1,3,1,4,3,3,4,1,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Bauer|Inbar|Rottenstrich|Miyamoto|Anderson|VanLange|Hauser|Huang|Ross.Slate1|Graham|Kay|Alter,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,6,Global,all,TRUE +6344,-0.0797933626942859,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,3,3,3,2,1,2,2,3,1,1,1,1,2,1,1,1,3,2,2,2,3,1,2,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Anderson|Inbar|VanLange|Miyamoto|Hauser|Alter|Huang|Ross.Slate1|Graham|Rottenstrich|Kay|Critcher,ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood,2,Global,all,TRUE +6348,-0.581327407892052,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marianipad,,,,,,,,,,,,,,,,,,,,,,,,,,2,1,1,5,7,4,2,1,3,1,1,1,2,3,3,1,1,1,5,1,2,3,2,4,1,marian,marian,marianipad,USA,"Marian University, Indianapolis, IN",English,1,legal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Graham|Huang|Miyamoto|Hauser|VanLange|Bauer|Critcher|Inbar|Anderson|Rottenstrich|Kay|Alter,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,10,Global,all,TRUE +6349,-0.492875478018454,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marianipad,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,5,6,5,2,5,4,1,5,4,2,3,3,4,3,4,3,2,4,5,2,5,5,3,marian,marian,marianipad,USA,"Marian University, Indianapolis, IN",English,1,legal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Critcher|Inbar|Graham|Bauer|Kay|Miyamoto|Rottenstrich|Anderson|VanLange|Alter|Ross.Slate1|Hauser,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing,9,Global,all,TRUE +6352,0.180791711069566,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,,,,,,,,,,,,,,,,,,,,,,,,,,2,1,6,2,6,4,5,5,5,4,4,2,4,5,4,1,4,1,3,5,5,4,4,5,1,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Anderson|Rottenstrich|Bauer|Kay|VanLange|Critcher|Miyamoto|Inbar|Alter|Huang|Ross.Slate1|Graham,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing,2,Global,all,TRUE +6353,-0.346835611285973,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,3,4,2,4,4,4,4,4,5,4,2,4,4,2,4,1,2,5,4,3,3,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Bauer|Graham|Rottenstrich|VanLange|Miyamoto|Hauser|Anderson|Critcher|Alter|Huang|Inbar|Ross.Slate1,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,8,Global,all,TRUE +6354,0.603641122061941,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,3,2,2,4,3,2,1,1,1,2,2,4,2,3,1,2,1,4,2,2,1,1,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Ross.Slate1|Miyamoto|Graham|Critcher|Bauer|Huang|VanLange|Alter|Anderson|Rottenstrich|Inbar|Hauser,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,10,Global,all,TRUE +6356,0.132817198539018,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,7,6,3,2,3,1,2,1,2,2,3,2,1,5,1,3,1,1,3,3,3,1,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Graham|Huang|Anderson|Hauser|Alter|Inbar|Bauer|Rottenstrich|Kay|Miyamoto|VanLange|Critcher,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing,4,Global,all,TRUE +6357,-0.15162744032341,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,3,5,2,1,4,3,5,3,2,3,3,2,4,3,5,4,3,3,1,1,2,2,4,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Miyamoto|Rottenstrich|Huang|Hauser|Bauer|VanLange|Critcher|Graham|Kay|Anderson|Alter|Ross.Slate1,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,11,Global,all,TRUE +6358,-0.399033586585157,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,7,1,4,1,1,4,2,1,1,2,1,2,1,3,1,5,1,1,1,2,2,1,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|VanLange|Rottenstrich|Inbar|Bauer|Kay|Miyamoto|Huang|Ross.Slate1|Anderson|Hauser|Critcher|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection,10,Global,all,TRUE +6360,0.370607695001831,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,,,,,,,,,,,,,,,,,,,,,,,,,,4,7,6,4,1,3,1,1,2,1,1,1,1,1,1,1,3,1,2,1,1,1,2,1,1,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Rottenstrich|Bauer|Critcher|Kay|VanLange|Graham|Anderson|Miyamoto|Alter|Hauser|Ross.Slate1|Inbar,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,8,Global,all,TRUE +6363,-0.176273768918851,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,,,,,,,,,,,,,,,,,,,,,,,,,,6,4,6,6,6,3,1,1,4,1,1,1,3,3,1,1,4,1,5,1,1,3,4,3,1,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Miyamoto|Inbar|Ross.Slate1|Alter|VanLange|Graham|Bauer|Huang|Hauser|Critcher|Anderson|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,12,Global,all,TRUE +6364,1.2763949692217,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,,,,,,,,,,,,,,,,,,,,,,,,,,4,7,5,6,3,4,2,2,3,4,2,2,4,3,2,2,5,1,3,1,2,3,4,2,1,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Inbar|Ross.Slate1|Anderson|Graham|Critcher|Alter|VanLange|Miyamoto|Hauser|Rottenstrich|Kay|Bauer,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,4,Global,all,TRUE +6366,0.192397111577939,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,4,1,1,4,1,1,1,1,1,1,1,1,1,4,1,1,2,1,1,1,occid,occid,occidtab,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Rottenstrich|Hauser|Ross.Slate1|Miyamoto|Inbar|Critcher|Anderson|Huang|Alter|VanLange|Graham|Kay,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing,8,Global,all,TRUE +6368,-0.589102727380221,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,6,3,4,1,2,4,4,2,2,4,3,2,2,4,2,3,2,1,4,1,4,2,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Hauser|Huang|Ross.Slate1|Critcher|Graham|Anderson|VanLange|Bauer|Miyamoto|Rottenstrich|Kay|Inbar,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,7,Global,all,TRUE +6369,0.961240208684425,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,3,3,3,2,4,4,2,2,4,3,2,1,4,1,3,2,2,4,3,4,2,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Hauser|Huang|Anderson|Ross.Slate1|Kay|Rottenstrich|Graham|VanLange|Miyamoto|Inbar|Alter|Critcher,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,4,Global,all,TRUE +6371,0.051227246225325,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,5,3,1,3,3,3,3,3,4,4,3,2,4,3,3,4,3,2,2,2,3,2,4,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Huang|Ross.Slate1|Inbar|VanLange|Hauser|Bauer|Rottenstrich|Critcher|Graham|Alter|Miyamoto|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,1,Global,all,TRUE +6372,-0.196316899451458,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,6,6,4,3,2,4,2,1,2,2,2,4,1,3,3,2,2,2,3,3,1,1,occid,occid,occidtab,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|VanLange|Hauser|Critcher|Rottenstrich|Alter|Graham|Anderson|Ross.Slate1|Kay|Inbar|Huang|Miyamoto,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,8,Global,all,TRUE +6373,-0.251673349721743,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,6,6,3,2,1,1,3,2,1,1,2,1,1,1,3,1,3,1,1,2,1,1,1,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Miyamoto|Graham|Critcher|Huang|Ross.Slate1|Hauser|Alter|VanLange|Inbar|Anderson|Kay|Bauer,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,11,Global,all,TRUE +6376,0.05768442105316,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,5,4,1,2,1,3,1,1,1,1,3,2,1,3,1,1,3,1,2,3,1,1,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Rottenstrich|Ross.Slate1|Bauer|Miyamoto|Hauser|Huang|Alter|Anderson|VanLange|Inbar|Kay|Critcher,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,9,Global,all,TRUE +6378,0.532073847749851,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,,,,,,,,,,,,,,,,,,,,,,,,,,7,5,7,7,7,5,1,5,4,3,1,1,4,4,1,1,5,5,4,1,1,4,5,4,1,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Rottenstrich|Critcher|Bauer|Hauser|Graham|Miyamoto|Alter|Inbar|Kay|Ross.Slate1|Huang|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,13,Global,all,TRUE +6381,0.0248693912211168,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,7,3,4,2,2,5,2,1,1,4,4,2,1,4,1,4,1,3,4,3,4,1,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Kay|Miyamoto|Ross.Slate1|Huang|VanLange|Rottenstrich|Inbar|Graham|Bauer|Alter|Hauser|Anderson,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +6382,0.684570889310167,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,6,5,3,2,4,3,4,3,1,2,3,4,1,2,3,1,4,3,3,3,4,3,1,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Graham|Inbar|Anderson|Miyamoto|VanLange|Ross.Slate1|Bauer|Kay|Critcher|Rottenstrich|Hauser|Huang,ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +6387,1.03043577152228,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,5,5,7,4,1,1,3,3,1,1,2,3,1,1,3,1,4,1,1,3,4,3,1,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Huang|VanLange|Anderson|Alter|Critcher|Kay|Inbar|Rottenstrich|Ross.Slate1|Bauer|Miyamoto|Graham,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +6391,0.0723102971175968,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,5,7,6,3,3,1,3,4,1,1,4,3,1,2,5,1,3,1,1,3,3,3,1,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Alter|Miyamoto|Inbar|Graham|VanLange|Bauer|Critcher|Anderson|Ross.Slate1|Rottenstrich|Huang|Kay,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,9,Global,all,TRUE +6395,0.561856981042193,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Critcher|Hauser|Graham|Miyamoto|Anderson|Ross.Slate1|Kay|Huang|Inbar|Rottenstrich|Bauer|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,6,Global,all,TRUE +6396,-0.378330270987083,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,6,6,5,5,1,1,4,3,1,1,5,5,1,1,5,1,4,1,1,3,1,1,1,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Huang|Ross.Slate1|Anderson|Inbar|Rottenstrich|Graham|Hauser|Alter|Critcher|Bauer|VanLange|Miyamoto,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,4,Global,all,TRUE +6397,-0.470207479148814,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,,,,,,,,,,,,,,,,,,,,,,,,,,1,7,7,1,7,4,1,2,4,3,1,1,4,4,5,1,4,2,4,1,4,3,3,3,2,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Inbar|Anderson|Ross.Slate1|Alter|Huang|Hauser|Miyamoto|Rottenstrich|Critcher|VanLange|Graham|Bauer,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +6399,-0.317710437588498,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,7,7,7,2,3,1,1,1,1,1,2,2,1,1,1,1,3,1,1,1,1,1,2,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Alter|Ross.Slate1|Miyamoto|VanLange|Hauser|Inbar|Kay|Huang|Graham|Critcher|Rottenstrich|Anderson,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,13,Global,all,TRUE +6400,0.243010138899755,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,,,,,,,,,,,,,,,,,,,,,,,,,,7,4,6,5,4,5,1,3,5,1,1,1,5,4,1,1,5,1,4,1,1,2,2,4,1,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Anderson|Graham|Ross.Slate1|Inbar|Critcher|Huang|VanLange|Rottenstrich|Bauer|Hauser|Kay|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,2,Global,all,TRUE +6401,-0.691382348837752,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,mariantab,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,5,5,3,4,1,1,3,3,1,1,2,3,1,1,4,1,3,1,1,4,3,2,2,marian,marian,mariantab,USA,"Marian University, Indianapolis, IN",English,1,legal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Graham|Kay|Inbar|Alter|Hauser|Anderson|VanLange|Ross.Slate1|Miyamoto|Rottenstrich|Bauer|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,7,Global,all,TRUE +6405,-0.718667192224462,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,5,4,3,3,2,2,2,3,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Huang|Miyamoto|Anderson|Graham|Hauser|Alter|VanLange|Bauer|Ross.Slate1|Rottenstrich|Kay|Inbar,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing,4,Global,all,TRUE +6408,0.445206865853622,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,,,,,,,,,,,,,,,,,,,,,,,,,,4,2,4,3,3,1,3,2,2,2,1,2,1,1,1,1,2,1,1,2,4,1,1,1,1,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Kay|Inbar|Bauer|Huang|VanLange|Anderson|Hauser|Graham|Alter|Critcher|Ross.Slate1|Rottenstrich,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five,7,Global,all,TRUE +6413,0.592567102717037,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,5,3,2,4,2,1,3,2,2,1,4,2,2,1,4,1,3,1,1,3,3,2,1,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Anderson|Graham|Miyamoto|Kay|VanLange|Bauer|Alter|Inbar|Ross.Slate1|Huang|Rottenstrich|Hauser,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +6414,-0.264461120946013,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,3,6,1,5,5,4,2,5,1,4,5,4,4,5,4,4,3,3,3,4,3,4,4,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Hauser|Huang|Inbar|Kay|Anderson|Rottenstrich|Critcher|VanLange|Alter|Graham|Ross.Slate1|Bauer,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +6416,0.35122474953469,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,5,6,6,2,1,2,3,1,1,1,1,3,1,1,4,1,1,1,1,3,3,1,1,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Huang|Miyamoto|Ross.Slate1|Graham|Anderson|Alter|Kay|Bauer|VanLange|Hauser|Critcher|Rottenstrich,ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,6,Global,all,TRUE +6419,1.22683550871378,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,mariantab,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,5,4,1,1,3,4,1,1,4,4,1,1,4,1,3,1,1,4,3,5,1,marian,marian,mariantab,USA,"Marian University, Indianapolis, IN",English,1,legal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Ross.Slate1|VanLange|Critcher|Rottenstrich|Inbar|Anderson|Graham|Bauer|Hauser|Miyamoto|Huang|Alter,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +6421,0.214013769104278,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,4,6,4,1,1,2,1,1,1,1,1,1,1,2,1,4,1,1,3,4,2,1,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Hauser|Rottenstrich|Miyamoto|Ross.Slate1|Kay|Graham|Critcher|Bauer|VanLange|Anderson|Inbar|Huang,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,11,Global,all,TRUE +6423,-0.115513710634631,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,,,,,,,,,,,,,,,,,,,,,,,,,,4,7,4,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3,1,2,1,1,1,1,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Inbar|Alter|Rottenstrich|Huang|Hauser|Bauer|Critcher|Miyamoto|Ross.Slate1|Kay|VanLange|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,13,Global,all,TRUE +6425,0.0227508366096804,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,7,5,5,1,3,5,5,1,2,5,3,4,1,5,3,3,1,4,5,3,5,3,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|VanLange|Kay|Bauer|Alter|Rottenstrich|Huang|Graham|Inbar|Miyamoto|Hauser|Critcher|Ross.Slate1,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,1,Global,all,TRUE +6429,1.01857498868051,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,5,6,3,3,1,1,3,3,2,3,3,3,3,1,4,1,3,1,1,3,5,2,1,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Alter|Kay|Rottenstrich|Critcher|VanLange|Graham|Huang|Ross.Slate1|Miyamoto|Inbar|Hauser|Anderson,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood,13,Global,all,TRUE +6435,0.0670469139892968,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,6,6,3,2,1,1,4,1,1,3,4,1,2,3,1,1,3,1,2,4,4,1,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|VanLange|Bauer|Ross.Slate1|Kay|Alter|Inbar|Huang|Graham|Critcher|Miyamoto|Hauser|Anderson,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,13,Global,all,TRUE +6436,-0.348954165897409,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,3,5,4,1,3,4,1,1,1,2,1,3,3,2,1,1,2,3,3,1,2,2,2,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Huang|Critcher|Inbar|Hauser|Anderson|Graham|Rottenstrich|Ross.Slate1|Bauer|Miyamoto|Kay|Alter,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five,6,Global,all,TRUE +6444,0.487524613507437,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,5,6,1,2,2,2,3,2,1,2,3,3,1,3,1,1,1,3,2,2,1,2,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Ross.Slate1|Anderson|Bauer|Critcher|VanLange|Huang|Hauser|Inbar|Kay|Rottenstrich|Graham|Miyamoto,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE,3,Global,all,TRUE +6445,-0.16125673657658,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,5,3,3,1,1,4,4,1,2,3,4,1,2,5,1,3,1,2,4,4,3,1,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Alter|Kay|Miyamoto|Anderson|Huang|Bauer|Ross.Slate1|Hauser|Graham|Inbar|VanLange|Rottenstrich,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +6449,0.758383296665091,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,3,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Graham|Huang|Alter|Kay|VanLange|Hauser|Anderson|Inbar|Critcher|Miyamoto|Ross.Slate1|Bauer,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,8,Global,all,TRUE +6450,0.559752072884993,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,umich,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,5,2,2,2,1,1,1,3,3,2,2,2,2,4,1,2,2,1,3,4,1,1,umich,umich,umich,USA,University of Michigan,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Alter|Huang|Anderson|Miyamoto|Bauer|VanLange|Kay|Rottenstrich|Graham|Inbar|Critcher|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,4,Global,all,TRUE +6452,0.161686989903096,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,6,6,3,5,1,4,5,5,1,2,3,4,1,1,4,1,4,1,1,5,5,4,2,occid,occid,occidtab,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Alter|Huang|Bauer|Rottenstrich|Graham|Miyamoto|Critcher|Kay|VanLange|Hauser|Ross.Slate1|Anderson,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,13,Global,all,TRUE +6456,-0.608612251278761,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,7,6,6,4,4,3,4,4,1,3,5,4,4,3,5,4,4,1,2,1,4,5,1,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Graham|Miyamoto|Huang|Kay|Hauser|Critcher|Alter|Rottenstrich|Inbar|Bauer|Ross.Slate1|Anderson,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five,13,Global,all,TRUE +6457,-1.16352441702101,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,2,6,5,2,2,4,5,1,1,5,4,2,1,5,1,4,2,3,4,4,5,1,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Miyamoto|Critcher|Inbar|Alter|Bauer|Rottenstrich|Kay|VanLange|Ross.Slate1|Anderson|Hauser|Graham,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +6459,0.533518570841584,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,mariantab,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,5,4,3,3,4,3,2,2,1,2,3,1,1,1,1,2,2,2,3,2,1,1,1,marian,marian,mariantab,USA,"Marian University, Indianapolis, IN",English,1,legal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Rottenstrich|Ross.Slate1|Anderson|Huang|Kay|VanLange|Miyamoto|Bauer|Alter|Graham|Hauser|Inbar,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing,4,Global,all,TRUE +6463,-0.100356453406726,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,6,6,3,3,1,2,3,1,1,2,4,2,2,3,1,2,1,2,4,2,3,1,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Kay|Ross.Slate1|Rottenstrich|VanLange|Huang|Graham|Critcher|Inbar|Hauser|Anderson|Miyamoto|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood,11,Global,all,TRUE +6464,-0.536904752081036,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,7,7,4,3,1,2,1,1,3,1,1,1,3,1,2,1,4,1,1,2,1,2,1,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Bauer|Graham|VanLange|Hauser|Ross.Slate1|Inbar|Miyamoto|Alter|Anderson|Critcher|Kay|Huang,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing,10,Global,all,TRUE +6467,0.651348831275455,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,4,5,5,3,2,4,2,2,1,2,2,4,3,1,3,3,4,1,2,2,3,3,2,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Kay|VanLange|Rottenstrich|Hauser|Huang|Graham|Critcher|Bauer|Miyamoto|Ross.Slate1|Alter|Inbar,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE,1,Global,all,TRUE +6469,-1.02552667309373,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,6,3,1,1,3,2,1,2,3,2,2,1,2,1,3,1,1,3,2,1,1,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Miyamoto|VanLange|Inbar|Rottenstrich|Hauser|Alter|Kay|Graham|Bauer|Ross.Slate1|Huang|Critcher,ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +6470,-0.438839397879103,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,3,3,2,1,2,1,2,3,3,3,1,2,2,2,3,2,3,1,3,2,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|VanLange|Graham|Kay|Ross.Slate1|Inbar|Bauer|Miyamoto|Hauser|Critcher|Anderson|Rottenstrich|Huang,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,11,Global,all,TRUE +6474,-0.312433408005962,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,6,3,2,1,2,1,1,1,3,2,2,1,1,1,4,1,1,1,1,1,1,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|Inbar|Ross.Slate1|Bauer|Rottenstrich|Graham|Anderson|Critcher|Kay|Huang|VanLange|Alter,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,8,Global,all,TRUE +6477,0.0199857433870134,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,6,1,5,1,1,3,5,1,1,5,4,1,1,5,1,4,1,4,5,4,5,1,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Miyamoto|Anderson|Graham|Critcher|Ross.Slate1|VanLange|Hauser|Bauer|Rottenstrich|Huang|Kay|Inbar,ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,3,Global,all,TRUE +6479,-0.228991704397867,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,5,2,1,1,2,1,1,1,2,3,1,1,3,2,3,1,1,2,1,3,1,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Graham|Miyamoto|Hauser|Rottenstrich|Ross.Slate1|Anderson|Bauer|VanLange|Critcher|Kay|Alter|Huang,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,7,Global,all,TRUE +6481,0.490416285161503,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,,,,,,,,,,,,,,,,,,,,,,,,,,6,4,5,6,5,1,1,3,2,2,1,1,2,2,2,1,3,1,3,3,1,2,3,2,1,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Ross.Slate1|Anderson|Rottenstrich|VanLange|Miyamoto|Huang|Alter|Inbar|Kay|Critcher|Hauser|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,3,Global,all,TRUE +6482,0.965983631632893,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,,,,,,,,,,,,,,,,,,,,,,,,,,1,6,1,1,1,2,3,2,4,1,3,3,1,3,1,2,3,1,1,1,2,1,1,1,1,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|VanLange|Miyamoto|Ross.Slate1|Bauer|Kay|Huang|Graham|Critcher|Hauser|Rottenstrich|Inbar|Anderson,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +6483,-0.619152663989597,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,7,5,4,2,3,4,2,1,2,2,4,1,1,4,1,4,2,1,3,4,5,1,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|VanLange|Miyamoto|Rottenstrich|Ross.Slate1|Anderson|Kay|Huang|Graham|Bauer|Alter|Inbar|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,6,Global,all,TRUE +6485,-0.86985751010808,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,,,,,,,,,,,,,,,,,,,,,,,,,,2,1,4,5,3,1,5,5,3,5,2,4,1,2,5,3,3,3,3,4,5,2,2,2,3,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|VanLange|Rottenstrich|Hauser|Graham|Critcher|Miyamoto|Bauer|Inbar|Alter|Anderson|Huang|Ross.Slate1,ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE,11,Global,all,TRUE +6486,0.670731776742596,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,3,1,1,2,3,1,1,3,3,1,1,3,1,3,1,1,3,2,4,1,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Alter|Anderson|Rottenstrich|Miyamoto|Kay|Critcher|Huang|Hauser|VanLange|Ross.Slate1|Bauer|Graham,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +6489,0.683784125813301,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,3,4,1,3,2,4,1,1,3,3,3,1,4,1,2,1,1,4,3,4,2,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Kay|Anderson|Miyamoto|Hauser|Bauer|Huang|Critcher|Rottenstrich|Ross.Slate1|Inbar|Alter|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,3,Global,all,TRUE +6490,-0.116300474131497,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,5,5,2,2,2,3,1,1,2,3,2,3,1,3,1,1,1,2,2,3,2,1,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Hauser|Graham|Rottenstrich|Critcher|Bauer|VanLange|Ross.Slate1|Huang|Inbar|Anderson|Alter|Kay,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,11,Global,all,TRUE +6491,0.00733819704837798,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,4,2,2,4,1,1,3,4,2,2,3,3,3,1,5,3,3,1,1,3,3,5,3,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|Graham|Rottenstrich|Ross.Slate1|Huang|Kay|VanLange|Alter|Anderson|Inbar|Bauer|Critcher,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,10,Global,all,TRUE +6494,-0.44370939925897,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,3,6,1,4,2,4,2,4,4,4,2,1,4,2,2,3,3,1,3,3,3,3,1,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Miyamoto|Huang|Kay|Rottenstrich|Inbar|Alter|Hauser|Bauer|Graham|VanLange|Anderson|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood,12,Global,all,TRUE +6495,0.0671734924206959,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,6,4,5,1,4,3,3,1,1,2,1,4,2,1,2,1,4,1,2,1,3,1,1,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Rottenstrich|VanLange|Bauer|Miyamoto|Ross.Slate1|Graham|Inbar|Anderson|Huang|Critcher|Kay|Hauser,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,9,Global,all,TRUE +6496,0.122136560942547,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,3,2,1,2,3,1,1,3,4,1,1,4,1,2,1,1,4,4,3,1,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Huang|Critcher|Graham|Inbar|Rottenstrich|Ross.Slate1|VanLange|Kay|Alter|Bauer|Anderson|Miyamoto,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,12,Global,all,TRUE +6497,1.52604624852628,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,6,5,2,1,2,3,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Anderson|Miyamoto|Ross.Slate1|Rottenstrich|Graham|Huang|VanLange|Critcher|Kay|Inbar|Alter|Bauer,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,2,Global,all,TRUE +6498,-0.350120664688472,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,6,4,3,4,3,2,1,1,2,4,2,1,5,2,4,2,1,2,3,2,1,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Bauer|Critcher|Huang|Hauser|Miyamoto|Graham|VanLange|Ross.Slate1|Alter|Anderson|Rottenstrich|Inbar,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +6499,0.196089193183107,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,4,3,2,3,3,2,1,1,1,3,1,1,4,1,3,3,1,2,2,1,1,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Alter|Anderson|Inbar|Miyamoto|Bauer|Rottenstrich|VanLange|Graham|Hauser|Critcher|Huang|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five,3,Global,all,TRUE +6501,0.533911952590017,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,7,6,4,1,1,1,3,1,1,4,1,2,1,4,2,1,1,1,3,1,2,1,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Anderson|Hauser|Kay|Alter|Bauer|Inbar|VanLange|Miyamoto|Rottenstrich|Critcher|Ross.Slate1|Huang,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,2,Global,all,TRUE +6502,-0.34644222953754,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,4,3,3,3,5,4,4,1,4,5,4,3,5,2,4,5,2,2,5,3,4,3,5,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Anderson|VanLange|Graham|Huang|Miyamoto|Ross.Slate1|Rottenstrich|Critcher|Hauser|Bauer|Alter|Inbar,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +6503,-0.450571376818875,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,5,5,3,1,2,4,1,1,1,1,2,1,1,2,1,4,1,1,1,4,2,1,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Alter|Graham|VanLange|Rottenstrich|Ross.Slate1|Miyamoto|Hauser|Critcher|Huang|Bauer|Inbar|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,1,Global,all,TRUE +6509,0.11066915984921,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,,,,,,,,,,,,,,,,,,,,,,,,,,2,7,4,6,2,2,4,1,1,1,1,4,3,2,1,1,3,1,3,1,1,2,2,1,1,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Hauser|Inbar|Kay|Ross.Slate1|Anderson|Huang|Rottenstrich|Graham|Miyamoto|Critcher|VanLange|Bauer,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,6,Global,all,TRUE +6510,0.0749488119088649,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,5,7,2,1,1,3,1,1,1,1,3,2,1,2,1,3,1,2,3,2,1,1,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Kay|Inbar|Ross.Slate1|Huang|Hauser|Rottenstrich|Anderson|Graham|Bauer|VanLange|Miyamoto|Critcher,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,8,Global,all,TRUE +6511,-0.548512378060008,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marianipad,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,2,5,3,4,1,2,3,5,2,1,3,4,3,1,3,3,3,1,2,4,4,3,3,marian,marian,marianipad,USA,"Marian University, Indianapolis, IN",English,1,legal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Inbar|Hauser|Anderson|Huang|Bauer|Alter|Ross.Slate1|Critcher|Rottenstrich|VanLange|Graham|Kay,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,4,Global,all,TRUE +6513,0.634618047053818,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,2,3,3,3,1,2,3,1,1,1,3,3,1,1,4,1,4,1,1,4,4,3,1,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Ross.Slate1|VanLange|Graham|Critcher|Inbar|Rottenstrich|Bauer|Hauser|Anderson|Kay|Alter|Huang,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +6519,0.919849449413111,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,5,3,3,2,2,4,3,1,1,2,1,3,4,1,3,3,3,1,3,1,2,2,3,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Bauer|Huang|Ross.Slate1|Kay|Inbar|Miyamoto|Anderson|Graham|Alter|VanLange|Rottenstrich|Hauser,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +6520,0.752459728471325,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,,,,,,,,,,,,,,,,,,,,,,,,,,6,4,6,3,2,4,5,3,4,4,1,2,4,5,3,4,4,3,5,3,3,4,4,5,3,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Inbar|Alter|Miyamoto|Kay|Hauser|Huang|Bauer|Anderson|Critcher|Ross.Slate1|VanLange|Graham,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,9,Global,all,TRUE +6521,-0.289765409136322,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,3,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Miyamoto|Alter|Kay|Graham|Rottenstrich|Critcher|Hauser|VanLange|Bauer|Inbar|Anderson|Huang,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,12,Global,all,TRUE +6523,0.589141824428903,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,5,3,2,2,4,2,1,1,1,3,2,1,3,1,2,1,2,1,3,3,1,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Inbar|Ross.Slate1|VanLange|Bauer|Huang|Critcher|Rottenstrich|Alter|Hauser|Anderson|Graham|Kay,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +6525,0.553548054919956,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,6,2,2,3,2,3,1,2,3,1,1,1,4,1,3,1,4,4,3,3,1,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Huang|Miyamoto|Critcher|Hauser|Ross.Slate1|Inbar|Graham|Bauer|Kay|Anderson|Rottenstrich|Alter,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,11,Global,all,TRUE +6527,0.0364633707458528,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,3,6,1,3,5,5,3,1,1,5,4,3,3,2,5,3,2,5,3,3,3,1,2,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Inbar|VanLange|Ross.Slate1|Critcher|Rottenstrich|Bauer|Kay|Graham|Hauser|Anderson|Miyamoto|Huang,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,11,Global,all,TRUE +6528,-0.118938988922765,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,5,6,3,3,1,1,2,1,1,1,1,1,1,1,2,1,3,1,1,1,1,1,1,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Bauer|Anderson|Miyamoto|VanLange|Critcher|Ross.Slate1|Graham|Huang|Alter|Kay|Hauser|Inbar,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,3,Global,all,TRUE +6530,0.612076626615576,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,7,6,3,1,1,1,2,1,1,3,5,1,1,4,1,1,3,1,4,4,3,1,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|VanLange|Rottenstrich|Bauer|Inbar|Critcher|Graham|Miyamoto|Hauser|Alter|Anderson|Ross.Slate1|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,11,Global,all,TRUE +6531,1.19006159395953,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,3,5,2,1,2,3,1,1,1,2,1,1,4,1,1,2,1,1,4,1,1,1,3,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Ross.Slate1|Critcher|Inbar|Miyamoto|VanLange|Anderson|Graham|Rottenstrich|Hauser|Kay|Alter|Huang,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,7,Global,all,TRUE +6532,0.327098381119081,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,6,3,1,1,1,3,3,1,2,1,2,3,1,2,1,2,1,1,4,2,2,1,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Bauer|Anderson|Inbar|Ross.Slate1|Critcher|VanLange|Miyamoto|Kay|Alter|Huang|Graham|Hauser,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,3,Global,all,TRUE +6533,0.584665204797468,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,6,3,1,1,2,3,1,1,1,3,2,1,3,2,3,1,1,2,1,1,1,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|VanLange|Inbar|Kay|Bauer|Ross.Slate1|Huang|Graham|Anderson|Miyamoto|Critcher|Hauser|Alter,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +6534,-0.0828252592339868,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,6,7,4,1,2,3,4,1,1,3,3,1,1,3,1,4,1,3,4,3,4,1,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Anderson|Miyamoto|Graham|Ross.Slate1|Kay|Huang|Alter|Hauser|Inbar|Rottenstrich|Bauer|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,2,Global,all,TRUE +6535,0.49633985335527,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,5,5,5,3,2,2,4,3,1,1,3,4,2,1,4,1,4,1,1,3,4,4,1,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Kay|Bauer|Miyamoto|Hauser|Ross.Slate1|Anderson|Rottenstrich|Inbar|Huang|Critcher|Graham|Alter,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,7,Global,all,TRUE +6536,-0.502895930549458,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,6,2,2,1,1,2,1,1,1,1,1,2,3,4,1,2,1,2,3,1,2,2,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Kay|VanLange|Huang|Bauer|Inbar|Miyamoto|Rottenstrich|Alter|Ross.Slate1|Critcher|Graham|Anderson,ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood,13,Global,all,TRUE +6539,0.0899794907053713,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,5,3,1,1,2,4,1,1,3,4,2,1,4,1,4,1,1,4,4,3,1,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Inbar|Bauer|Graham|Alter|Rottenstrich|Miyamoto|Huang|Kay|VanLange|Anderson|Ross.Slate1|Critcher,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,11,Global,all,TRUE +6541,0.750607977176922,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,5,5,2,1,2,4,1,2,3,4,1,1,1,3,1,2,1,2,2,1,1,1,2,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Miyamoto|Rottenstrich|Bauer|Hauser|VanLange|Ross.Slate1|Graham|Kay|Huang|Alter|Inbar|Critcher,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +6543,0.592173720968604,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,1,4,1,4,3,1,1,5,5,1,1,5,1,4,2,1,3,4,5,1,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Graham|Critcher|Alter|Huang|Hauser|Miyamoto|Ross.Slate1|Bauer|VanLange|Anderson|Kay|Rottenstrich,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +6546,0.797795726210604,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,6,6,3,1,1,1,4,1,1,1,3,1,1,5,1,3,1,1,1,4,1,1,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Miyamoto|Inbar|Anderson|Bauer|Kay|Critcher|Alter|Hauser|Huang|VanLange|Graham|Ross.Slate1,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,4,Global,all,TRUE +6547,-0.0380092216745387,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,3,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Kay|Ross.Slate1|Huang|Hauser|Alter|VanLange|Graham|Miyamoto|Critcher|Anderson|Inbar|Bauer,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +6550,-0.606100314918891,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,5,5,3,3,4,3,5,1,2,1,3,2,2,4,1,3,1,4,3,5,3,1,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Bauer|Kay|Huang|Ross.Slate1|Anderson|Alter|VanLange|Miyamoto|Graham|Hauser|Critcher|Rottenstrich,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,6,Global,all,TRUE +6552,-0.492217518423586,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,4,3,1,4,5,1,1,3,3,1,1,4,1,2,1,5,4,3,3,1,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Ross.Slate1|Hauser|Huang|Graham|Miyamoto|Rottenstrich|Bauer|Alter|Critcher|Kay|Inbar|VanLange,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing,1,Global,all,TRUE +6554,-1.22824113475683,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,3,3,2,1,3,5,1,1,1,2,1,1,2,1,4,1,2,3,1,2,1,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Inbar|Kay|Bauer|Hauser|VanLange|Rottenstrich|Alter|Ross.Slate1|Anderson|Huang|Critcher|Graham,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +6559,-0.168371870999283,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,6,3,2,2,3,2,2,2,2,2,2,1,2,1,3,1,3,3,2,2,1,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|Bauer|Ross.Slate1|Graham|Critcher|VanLange|Anderson|Rottenstrich|Inbar|Huang|Alter|Kay,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,8,Global,all,TRUE +6560,1.37340898208033,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,3,1,1,2,2,2,2,1,2,2,1,1,1,2,1,3,1,3,1,4,1,1,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Alter|Huang|Kay|Ross.Slate1|Bauer|Anderson|Miyamoto|Inbar|Rottenstrich|Graham|Hauser|Critcher,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,7,Global,all,TRUE +6565,0.245381850373989,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psumain,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,7,7,3,1,4,3,4,1,3,3,4,4,2,3,1,3,1,2,3,3,2,1,psumain,psumain,psumain,USA,The Pennsylvania State University,English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Anderson|Kay|Rottenstrich|Graham|Huang|Bauer|Hauser|Critcher|Ross.Slate1|VanLange|Inbar|Alter,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood,2,Global,all,TRUE +6568,0.227459499923417,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,6,6,5,2,2,4,5,2,1,4,5,2,1,5,3,4,2,2,5,3,5,3,occid,occid,occidtab,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Critcher|Anderson|Kay|Alter|Inbar|Rottenstrich|Bauer|Miyamoto|Ross.Slate1|Huang|Hauser|Graham,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,3,Global,all,TRUE +6570,0.0137953718762125,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,7,6,3,1,2,3,3,1,2,4,3,2,1,3,4,3,1,5,4,3,4,3,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Anderson|Miyamoto|Hauser|Huang|Inbar|Critcher|Alter|VanLange|Ross.Slate1|Graham|Bauer|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,2,Global,all,TRUE +6571,-0.113408802477431,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,mariantab,,,,,,,,,,,,,,,,,,,,,,,,,,1,3,3,3,1,3,1,1,4,1,1,1,1,1,1,1,3,1,3,3,4,1,1,1,1,marian,marian,mariantab,USA,"Marian University, Indianapolis, IN",English,1,legal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Graham|Critcher|Miyamoto|VanLange|Bauer|Inbar|Hauser|Anderson|Ross.Slate1|Rottenstrich|Alter|Huang,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,9,Global,all,TRUE +6573,0.229171026332184,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,5,1,2,4,5,2,1,5,5,1,4,5,1,4,1,2,5,5,3,1,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Anderson|Ross.Slate1|Hauser|Graham|Inbar|Alter|Huang|Kay|Miyamoto|Bauer|Rottenstrich|VanLange,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing,2,Global,all,TRUE +6574,0.219543955549612,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,4,4,5,4,4,5,3,2,4,3,5,5,3,5,2,5,3,4,4,4,4,3,occid,occid,occidtab,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Rottenstrich|Hauser|Inbar|Kay|Alter|Huang|Graham|Critcher|Bauer|Anderson|Ross.Slate1|VanLange,ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,11,Global,all,TRUE +6578,0.875173636739298,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,5,4,1,3,3,4,1,2,4,3,3,1,4,3,4,1,2,3,4,2,1,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Anderson|Bauer|Critcher|Rottenstrich|Graham|Kay|VanLange|Miyamoto|Hauser|Huang|Alter|Ross.Slate1,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +6579,-0.110489837914893,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,5,7,4,4,2,1,4,4,2,1,2,5,4,1,4,1,4,1,3,5,4,4,1,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Kay|Alter|Inbar|Huang|Rottenstrich|VanLange|Miyamoto|Hauser|Critcher|Bauer|Anderson|Graham,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,12,Global,all,TRUE +6580,-0.331676128587468,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,5,4,5,4,3,2,3,2,2,3,4,4,2,3,3,2,4,1,2,3,4,3,2,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Rottenstrich|Critcher|Alter|Hauser|Miyamoto|Ross.Slate1|VanLange|Anderson|Bauer|Huang|Graham|Inbar,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,9,Global,all,TRUE +6582,0.930923468758015,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,4,5,3,4,4,3,2,4,1,4,3,4,3,1,4,4,2,1,4,2,2,4,3,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|VanLange|Critcher|Alter|Hauser|Inbar|Anderson|Graham|Miyamoto|Bauer|Huang|Ross.Slate1|Kay,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,7,Global,all,TRUE +6586,-0.372800084541749,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,5,5,3,1,1,2,4,1,2,3,3,2,1,4,4,3,1,2,4,2,4,3,occid,occid,occidtab,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|VanLange|Bauer|Miyamoto|Graham|Alter|Rottenstrich|Critcher|Inbar|Kay|Anderson|Ross.Slate1|Huang,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood,11,Global,all,TRUE +6587,-0.285415367936287,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,5,6,3,1,2,3,3,1,1,2,3,2,1,4,1,4,1,1,4,1,3,1,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Inbar|Alter|Critcher|Anderson|Ross.Slate1|VanLange|Bauer|Huang|Graham|Rottenstrich|Kay|Hauser,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,5,Global,all,TRUE +6588,0.0729819031667004,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,7,6,3,2,1,2,2,2,1,3,2,1,1,3,1,3,1,3,2,2,3,1,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Critcher|Kay|VanLange|Alter|Anderson|Huang|Hauser|Inbar|Ross.Slate1|Bauer|Graham|Rottenstrich,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +6591,0.28848636152467,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,7,7,4,2,3,3,3,2,2,5,5,3,2,5,1,5,2,4,3,5,5,1,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Alter|Miyamoto|Critcher|Rottenstrich|Ross.Slate1|Bauer|Inbar|Huang|Graham|Kay|VanLange|Hauser,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,1,Global,all,TRUE +6592,-0.204612179119459,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,4,5,2,2,3,4,2,2,1,4,1,1,4,2,1,1,2,1,3,1,2,2,3,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Miyamoto|Hauser|Bauer|Ross.Slate1|Critcher|Anderson|Graham|Inbar|Huang|Rottenstrich|Kay|VanLange,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,7,Global,all,TRUE +6593,0.737162246357784,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,4,4,3,2,2,2,3,1,1,1,3,3,1,1,2,1,3,1,1,2,2,2,1,occid,occid,occidtab,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|VanLange|Inbar|Critcher|Huang|Rottenstrich|Anderson|Ross.Slate1|Kay|Bauer|Alter|Graham|Hauser,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,7,Global,all,TRUE +6594,-0.874069551893079,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,6,6,7,3,3,2,2,3,1,1,2,4,1,1,3,1,2,1,2,3,3,3,1,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Critcher|Anderson|Graham|Kay|Miyamoto|Inbar|Hauser|Ross.Slate1|Bauer|Rottenstrich|Huang|VanLange,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five,3,Global,all,TRUE +6595,-1.22560484543616,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,6,6,6,4,3,4,3,1,1,4,3,4,1,1,5,1,4,5,1,2,3,4,1,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Huang|Graham|Anderson|Hauser|Inbar|Ross.Slate1|Critcher|Bauer|Alter|VanLange|Kay|Rottenstrich,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection,4,Global,all,TRUE +6597,-0.429870286691399,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,5,4,2,2,2,3,3,1,1,5,2,2,2,1,3,1,2,1,2,2,2,2,1,occid,occid,occidtab,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Graham|Ross.Slate1|Huang|VanLange|Bauer|Kay|Hauser|Rottenstrich|Alter|Anderson|Critcher|Inbar,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +6598,0.211122097450213,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,5,3,3,3,1,1,4,3,1,2,2,3,2,1,4,1,5,1,2,3,3,3,1,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Alter|Critcher|Ross.Slate1|Hauser|Inbar|Bauer|Anderson|VanLange|Kay|Huang|Miyamoto|Graham,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,8,Global,all,TRUE +6600,0.597183947234106,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,2,5,1,2,1,1,2,1,1,1,4,2,2,3,2,1,2,1,1,2,2,1,1,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Ross.Slate1|Rottenstrich|Huang|Anderson|Critcher|Miyamoto|Alter|Graham|Inbar|Bauer|VanLange|Kay,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood,5,Global,all,TRUE +6601,0.468141668040296,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,7,5,1,1,1,2,2,1,1,1,4,1,1,3,1,2,1,1,1,5,4,1,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Critcher|Huang|Ross.Slate1|Alter|Graham|Inbar|Kay|Hauser|Anderson|Bauer|Miyamoto|Rottenstrich,ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,10,Global,all,TRUE +6605,-0.0634423137668458,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,7,4,1,3,1,1,4,3,1,1,5,3,1,1,5,1,5,1,1,4,4,4,1,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Hauser|Alter|Miyamoto|Rottenstrich|VanLange|Bauer|Inbar|Graham|Kay|Anderson|Huang|Critcher,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,11,Global,all,TRUE +6607,0.46286463845776,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,6,4,1,4,3,5,1,1,3,3,1,2,4,1,3,1,1,3,3,3,1,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Miyamoto|VanLange|Ross.Slate1|Kay|Anderson|Rottenstrich|Critcher|Huang|Bauer|Hauser|Inbar|Alter,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,6,Global,all,TRUE +6611,-1.04541593228647,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,mariantab,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,3,5,4,2,4,3,3,3,3,3,3,2,4,2,4,2,3,3,4,2,2,3,2,marian,marian,mariantab,USA,"Marian University, Indianapolis, IN",English,1,legal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Miyamoto|Ross.Slate1|Hauser|Alter|VanLange|Graham|Critcher|Bauer|Anderson|Kay|Rottenstrich|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,10,Global,all,TRUE +6617,0.0939383756275733,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,mariantab,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,4,2,3,3,2,2,4,2,4,3,1,3,1,4,4,3,4,1,1,3,1,2,1,marian,marian,mariantab,USA,"Marian University, Indianapolis, IN",English,1,legal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Alter|Bauer|Rottenstrich|Miyamoto|VanLange|Ross.Slate1|Huang|Critcher|Graham|Inbar|Kay|Anderson,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +6619,0.360851820317262,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,6,6,5,2,2,4,5,2,2,5,5,2,1,4,1,4,3,3,5,5,5,1,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Inbar|Rottenstrich|Bauer|Anderson|Huang|Ross.Slate1|Graham|VanLange|Critcher|Kay|Miyamoto|Hauser,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,5,Global,all,TRUE +6620,-0.603602025013258,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,3,3,3,3,1,2,1,2,1,1,1,1,1,2,1,2,1,2,1,1,1,1,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|VanLange|Critcher|Alter|Graham|Bauer|Inbar|Huang|Anderson|Hauser|Miyamoto|Kay|Ross.Slate1,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +6621,-0.288573842907387,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,6,4,3,1,4,4,3,1,4,4,4,2,4,1,4,1,1,4,3,4,1,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|VanLange|Inbar|Alter|Graham|Critcher|Hauser|Huang|Bauer|Miyamoto|Rottenstrich|Ross.Slate1|Anderson,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing,13,Global,all,TRUE +6622,-0.442135872265239,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,3,5,2,3,4,1,4,3,2,2,2,3,3,2,4,3,2,4,3,1,3,3,2,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Rottenstrich|Critcher|Kay|Miyamoto|Graham|Anderson|Hauser|VanLange|Ross.Slate1|Inbar|Huang|Bauer,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +6624,-0.875387696553414,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,,,,,,,,,,,,,,,,,,,,,,,,,,3,7,7,7,2,4,2,3,3,5,1,1,5,4,5,1,5,4,4,1,3,5,4,4,3,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Critcher|Rottenstrich|Alter|Inbar|Kay|Miyamoto|Huang|Graham|VanLange|Ross.Slate1|Hauser|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing,1,Global,all,TRUE +6625,0.118837861085812,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,6,6,6,5,3,3,4,4,3,2,4,4,3,3,5,3,4,1,3,4,4,5,2,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Rottenstrich|Kay|Ross.Slate1|Anderson|Huang|Hauser|Bauer|Miyamoto|Alter|Critcher|VanLange|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,5,Global,all,TRUE +6628,-0.82424106259753,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,,,,,,,,,,,,,,,,,,,,,,,,,,6,2,5,6,5,2,2,1,1,1,1,2,1,1,1,1,4,1,2,1,2,2,2,1,1,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|VanLange|Critcher|Alter|Ross.Slate1|Inbar|Huang|Kay|Anderson|Bauer|Graham|Miyamoto|Rottenstrich,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing,9,Global,all,TRUE +6629,-0.249554795110307,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marian,,,,,,,,,,,,,,,,,,,,,,,,,,1,4,1,2,1,3,2,2,1,1,3,3,3,1,3,3,3,2,1,2,4,1,1,2,2,marian,marian,marian,USA,"Marian University, Indianapolis, IN",English,1,legal,No,In a classroom,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|VanLange|Hauser|Rottenstrich|Critcher|Ross.Slate1|Kay|Anderson|Alter|Miyamoto|Graham|Huang|Inbar,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,8,Global,all,TRUE +6630,0.697356435063838,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,mariantab,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,3,5,7,5,1,1,3,5,1,1,3,4,1,1,2,1,5,2,5,3,4,2,1,marian,marian,mariantab,USA,"Marian University, Indianapolis, IN",English,1,legal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Bauer|Kay|Inbar|Anderson|Huang|Miyamoto|Alter|Ross.Slate1|Rottenstrich|VanLange|Critcher|Hauser,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +6631,-0.975700409268781,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,mariantab,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,7,6,3,2,1,3,2,1,1,3,3,1,1,4,1,3,2,1,2,1,4,1,marian,marian,mariantab,USA,"Marian University, Indianapolis, IN",English,1,legal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Inbar|Anderson|Kay|Critcher|Rottenstrich|Bauer|Graham|VanLange|Miyamoto|Alter|Hauser|Huang,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,3,Global,all,TRUE +6637,-0.966998101398111,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,,,,,,,,,,,,,,,,,,,,,,,,,,5,2,6,7,2,4,1,1,4,4,1,1,3,4,3,1,4,1,4,1,1,4,4,3,1,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Miyamoto|Rottenstrich|Alter|Inbar|Graham|Anderson|VanLange|Bauer|Critcher|Kay|Huang|Hauser,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood,7,Global,all,TRUE +6638,0.490416285161503,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,6,4,1,1,3,3,2,2,4,4,2,3,4,3,3,3,5,1,4,4,2,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|VanLange|Graham|Alter|Critcher|Bauer|Ross.Slate1|Anderson|Kay|Hauser|Inbar|Rottenstrich|Huang,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +6639,0.204524697736743,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,3,4,1,1,4,3,1,1,2,3,1,1,3,1,3,1,1,3,3,1,1,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Huang|Inbar|Alter|Bauer|Graham|VanLange|Miyamoto|Critcher|Rottenstrich|Kay|Anderson|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,12,Global,all,TRUE +6640,0.149955010963324,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,6,5,4,1,1,2,2,1,1,1,3,1,1,3,1,2,1,1,3,2,4,1,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Anderson|Bauer|Kay|Graham|Huang|Ross.Slate1|Hauser|VanLange|Miyamoto|Critcher|Inbar|Rottenstrich,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,2,Global,all,TRUE +6641,-0.171656924401781,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,6,6,2,2,1,3,4,1,1,1,2,3,1,1,4,1,3,1,1,2,3,3,1,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Alter|Rottenstrich|Ross.Slate1|Anderson|Miyamoto|VanLange|Graham|Critcher|Bauer|Hauser|Huang|Inbar,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE,5,Global,all,TRUE +6643,-0.330357983927134,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,4,4,4,3,1,1,2,3,4,1,4,3,4,1,5,4,2,1,1,3,2,4,3,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Kay|Alter|Bauer|Critcher|Anderson|Inbar|Rottenstrich|Huang|Miyamoto|Graham|VanLange|Hauser,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,6,Global,all,TRUE +6644,0.410540084727176,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,,,,,,,,,,,,,,,,,,,,,,,,,,2,1,3,6,3,3,1,1,3,1,1,1,1,1,1,1,3,1,3,1,1,3,1,3,1,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Huang|Inbar|Graham|Bauer|Anderson|Hauser|Ross.Slate1|VanLange|Kay|Alter|Rottenstrich|Miyamoto,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +6646,-0.589355884243019,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,mariantab,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,5,7,6,5,3,4,5,3,1,1,1,4,4,3,4,1,4,1,5,2,2,3,1,marian,marian,mariantab,USA,"Marian University, Indianapolis, IN",English,1,legal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Rottenstrich|Anderson|Critcher|Bauer|Inbar|Alter|Ross.Slate1|Hauser|Miyamoto|Graham|VanLange|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood,3,Global,all,TRUE +6648,0.302325474092241,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,6,6,2,1,1,2,3,1,1,2,3,2,1,3,1,3,1,1,3,4,3,2,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Huang|Anderson|Inbar|VanLange|Miyamoto|Graham|Ross.Slate1|Alter|Hauser|Bauer|Kay|Critcher,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,3,Global,all,TRUE +6651,-0.249428216678908,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marianipad,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,6,5,1,2,1,1,4,1,1,1,2,2,1,1,4,1,3,1,1,3,2,1,1,marian,marian,marianipad,USA,"Marian University, Indianapolis, IN",English,1,legal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Graham|Hauser|Ross.Slate1|Inbar|Kay|Alter|Critcher|Anderson|VanLange|Bauer|Miyamoto|Huang,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +6653,0.0724505220032319,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marianipad,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,6,5,7,1,2,5,4,1,4,1,1,3,5,3,4,4,3,1,2,2,4,3,3,marian,marian,marianipad,USA,"Marian University, Indianapolis, IN",English,1,legal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Anderson|Kay|Alter|Rottenstrich|Bauer|Hauser|Graham|VanLange|Critcher|Inbar|Huang|Ross.Slate1,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,2,Global,all,TRUE +6654,-0.536246792486169,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,5,5,3,1,3,3,2,1,1,1,1,1,1,4,1,3,1,1,3,1,3,2,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Rottenstrich|Critcher|Kay|Anderson|VanLange|Huang|Graham|Alter|Bauer|Miyamoto|Inbar|Hauser,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +6655,0.737693627521253,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,5,2,1,2,1,1,2,1,1,1,1,1,1,2,1,1,2,1,1,1,1,1,2,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Rottenstrich|VanLange|Ross.Slate1|Inbar|Huang|Graham|Bauer|Kay|Miyamoto|Alter|Critcher|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,1,Global,all,TRUE +6660,0.274647248957099,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,4,3,2,2,1,3,1,4,2,3,5,3,1,1,5,1,3,1,1,5,3,4,1,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Ross.Slate1|Rottenstrich|Hauser|Graham|Anderson|Critcher|Inbar|Alter|VanLange|Kay|Huang|Miyamoto,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,6,Global,all,TRUE +6665,0.396574393728207,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,,,,,,,,,,,,,,,,,,,,,,,,,,2,7,5,5,1,5,4,4,2,1,3,2,2,2,4,3,3,1,3,1,1,1,3,1,1,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Rottenstrich|Ross.Slate1|Bauer|Anderson|Graham|Huang|Hauser|VanLange|Critcher|Alter|Kay|Inbar,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,5,Global,all,TRUE +6669,0.575962896926799,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,4,5,2,3,2,4,3,2,1,1,2,3,2,2,4,1,3,1,4,1,1,1,2,occid,occid,occidtab,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Kay|Bauer|Ross.Slate1|Graham|Miyamoto|Anderson|Hauser|Inbar|Rottenstrich|Alter|Critcher|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,7,Global,all,TRUE +6671,-0.287000315913655,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,2,4,2,3,2,3,3,2,3,2,1,1,2,4,1,1,3,1,2,3,2,1,1,occid,occid,occidtab,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Ross.Slate1|Kay|Critcher|Rottenstrich|VanLange|Graham|Anderson|Hauser|Miyamoto|Huang|Inbar|Bauer,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,8,Global,all,TRUE +6672,0.229171026332184,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,mariantab,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,5,5,5,2,1,1,4,1,1,1,1,4,1,1,2,1,4,1,1,1,2,3,1,marian,marian,mariantab,USA,"Marian University, Indianapolis, IN",English,1,legal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Graham|Miyamoto|Huang|Anderson|Kay|Inbar|Ross.Slate1|Rottenstrich|Alter|Hauser|Critcher|Bauer,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +6673,0.969675713238061,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,6,3,4,1,2,4,3,1,1,4,3,1,1,5,2,4,1,1,3,4,3,1,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Ross.Slate1|Anderson|Critcher|Inbar|Miyamoto|Hauser|VanLange|Huang|Kay|Graham|Alter|Bauer,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,3,Global,all,TRUE +6675,-0.325614560978665,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,5,5,2,4,1,1,1,2,4,1,1,3,1,1,4,1,4,1,2,2,3,3,1,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Huang|Kay|Inbar|Graham|Anderson|Critcher|Hauser|Rottenstrich|Bauer|VanLange|Miyamoto|Ross.Slate1,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,6,Global,all,TRUE +6681,-0.0751765181772167,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,marianipad,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,6,3,1,3,4,1,1,3,2,4,3,1,4,1,4,1,2,4,3,4,3,marian,marian,marianipad,USA,"Marian University, Indianapolis, IN",English,1,legal,No,Other (please indicate),Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Bauer|Anderson|Hauser|Huang|Ross.Slate1|Critcher|Kay|Miyamoto|Alter|Graham|Rottenstrich|VanLange,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,3,Global,all,TRUE +6682,0.263306426295161,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,psuabingtontab,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,4,1,1,5,3,1,2,3,3,1,1,4,1,5,1,1,4,3,3,1,psuabington,psuabington,psuabingtontab,USA,"Department of Psychology, Pennsylvania State University Abington, Abington, PA 19001",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Ross.Slate1|Critcher|Alter|VanLange|Miyamoto|Kay|Anderson|Graham|Rottenstrich|Huang|Inbar|Bauer,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection,8,Global,all,TRUE +6684,-0.45808211846061,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,williampat,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,7,5,2,3,2,3,1,1,1,1,1,2,1,3,1,3,1,4,1,1,1,1,williampat,williampat,williampat,USA,"William Paterson University, Wayne, NJ",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Miyamoto|VanLange|Ross.Slate1|Kay|Inbar|Graham|Hauser|Huang|Bauer|Anderson|Critcher|Rottenstrich,ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,11,Global,all,TRUE +6687,0.19186573041447,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,6,4,4,1,1,2,3,1,1,3,3,1,1,2,1,3,1,2,1,3,3,1,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Inbar|Bauer|Kay|Ross.Slate1|Huang|Alter|Critcher|Rottenstrich|Anderson|Graham|Hauser|VanLange,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,10,Global,all,TRUE +6688,-0.203951994053993,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,6,5,6,3,3,2,3,3,1,1,3,4,2,1,3,1,3,1,1,3,2,2,1,occid,occid,occidtab,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Huang|Kay|Inbar|Alter|Critcher|VanLange|Rottenstrich|Graham|Anderson|Miyamoto|Bauer|Ross.Slate1,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,10,Global,all,TRUE +6690,0.333035595767084,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,7,6,2,2,3,2,5,1,1,1,5,1,1,1,1,3,1,1,5,2,5,1,occid,occid,occidtab,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Huang|Critcher|Hauser|Miyamoto|Anderson|Kay|VanLange|Rottenstrich|Alter|Inbar|Ross.Slate1|Bauer,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing,6,Global,all,TRUE +6696,-1.09880547381459,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,2,1,1,1,1,1,1,2,2,2,2,2,1,2,1,3,1,1,1,1,occid,occid,occidtab,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Hauser|Bauer|Rottenstrich|Alter|Miyamoto|Huang|Anderson|Critcher|VanLange|Kay|Ross.Slate1|Graham,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +6698,0.352418541234225,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,5,5,4,1,1,3,3,1,1,4,3,1,1,2,1,3,1,3,2,1,3,1,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Bauer|Ross.Slate1|Graham|Kay|Hauser|Inbar|Rottenstrich|Miyamoto|Alter|Anderson|Huang|Critcher,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,11,Global,all,TRUE +6701,1.43746774022128,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,,,,,,,,,,,,,,,,,,,,,,,,,,2,7,5,5,5,5,1,2,5,3,1,1,3,3,2,1,4,1,4,1,2,3,4,1,1,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Inbar|Critcher|Ross.Slate1|Alter|Rottenstrich|Kay|Hauser|Anderson|Bauer|VanLange|Huang|Graham,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,9,Global,all,TRUE +6703,0.263826386474993,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,3,1,1,2,1,1,1,1,2,4,2,3,2,4,1,3,3,2,3,2,occid,occid,occidtab,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Tablets,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Alter|Critcher|Inbar|Graham|Anderson|Miyamoto|Kay|Huang|Bauer|Hauser|Ross.Slate1|VanLange,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,6,Global,all,TRUE +6704,1.42639372087638,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,5,5,2,4,2,2,3,3,2,1,4,3,2,1,5,2,4,1,4,5,2,3,4,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Hauser|Kay|VanLange|Alter|Rottenstrich|Miyamoto|Ross.Slate1|Anderson|Inbar|Bauer|Graham|Critcher,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing,9,Global,all,TRUE +6705,0.211248675881611,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,5,6,3,1,1,2,3,1,1,1,3,1,1,3,1,4,1,1,1,1,1,1,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Hauser|Rottenstrich|Miyamoto|Ross.Slate1|Anderson|Inbar|Bauer|Critcher|Graham|Huang|Kay|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,6,Global,all,TRUE +6706,0.77591449083783,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,,,,,,,,,,,,,,,,,,,,,,,,,,1,7,4,5,1,3,1,2,3,1,2,4,2,1,4,1,5,1,4,1,1,3,1,3,3,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Rottenstrich|Alter|Hauser|Miyamoto|VanLange|Anderson|Critcher|Huang|Kay|Graham|Ross.Slate1|Inbar,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +6707,-0.706146224317225,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,7,6,3,1,1,3,3,1,1,3,4,2,1,4,1,2,1,2,3,3,3,1,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Kay|Anderson|Alter|Critcher|Hauser|Graham|Inbar|Ross.Slate1|Huang|Rottenstrich|VanLange|Miyamoto,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,3,Global,all,TRUE +6708,0.451537462250057,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,,,,,,,,,,,,,,,,,,,,,,,,,,4,7,6,5,4,2,3,3,3,1,1,1,2,2,1,1,2,1,2,1,3,1,2,2,1,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Inbar|Graham|VanLange|Ross.Slate1|Rottenstrich|Kay|Bauer|Hauser|Miyamoto|Huang|Anderson|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,12,Global,all,TRUE +6712,0.391170785714271,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,7,6,6,3,2,2,3,1,2,2,4,4,2,3,3,1,4,1,1,3,1,3,1,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Hauser|Huang|Miyamoto|Rottenstrich|Kay|Critcher|Ross.Slate1|Alter|VanLange|Bauer|Anderson|Inbar,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,12,Global,all,TRUE +6714,-0.1253961637506,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occidtab,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,7,3,3,1,1,4,3,1,5,2,3,3,4,4,1,4,1,2,3,3,3,1,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|VanLange|Ross.Slate1|Hauser|Miyamoto|Bauer|Rottenstrich|Anderson|Alter|Critcher|Huang|Kay|Inbar,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,8,Global,all,TRUE +6716,0.640021655067753,Low,ML2_Slate1_USEng_Inlab_execution_legal_DEPLOY_r.csv,occid,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,5,3,1,3,2,3,2,1,4,3,3,2,3,1,3,1,2,3,3,2,1,occid,occid,occid,USA,"Department of Cognitive Science, Occidental College, Los Angeles, CA",English,1,legal,Yes,In a lab,Computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Anderson|Kay|Graham|Critcher|Miyamoto|Rottenstrich|Alter|Inbar|Ross.Slate1|Bauer|VanLange|Huang,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +6719,0.778679584060497,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,6,6,5,1,1,5,1,1,1,2,4,1,1,3,1,5,1,1,2,2,2,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|VanLange|Hauser|Ross.Slate1|Rottenstrich|Miyamoto|Inbar|Critcher|Alter|Kay|Huang|Graham|Bauer,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +6722,0.590462194559836,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,1,4,1,1,4,1,1,1,3,2,1,1,4,1,4,1,1,4,2,1,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Huang|Critcher|Rottenstrich|Anderson|Kay|Hauser|Bauer|Ross.Slate1|Graham|VanLange|Inbar|Alter,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +6726,0.864492999142827,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,1,1,4,1,2,4,1,3,1,1,1,2,1,4,2,4,1,2,1,1,1,2,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Anderson|Ross.Slate1|Inbar|Critcher|VanLange|Alter|Hauser|Kay|Huang|Rottenstrich|Graham|Bauer,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,2,Global,all,TRUE +6727,0.61247000836401,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,2,1,1,4,1,2,5,1,2,1,1,2,1,1,4,1,5,1,1,3,4,1,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Anderson|Ross.Slate1|VanLange|Rottenstrich|Huang|Graham|Hauser|Bauer|Alter|Miyamoto|Inbar|Kay,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,2,Global,all,TRUE +6730,0.189100637191803,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,6,2,4,2,1,4,5,2,1,5,4,1,2,5,1,4,3,3,4,4,2,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Anderson|Miyamoto|Hauser|Rottenstrich|Alter|Kay|Critcher|Huang|Ross.Slate1|VanLange|Graham|Bauer,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing,2,Global,all,TRUE +6731,0.695644908655071,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,3,3,1,3,2,3,4,3,2,1,1,2,3,3,4,2,3,2,3,3,3,1,2,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Huang|Alter|Bauer|Rottenstrich|VanLange|Miyamoto|Inbar|Ross.Slate1|Hauser|Critcher|Kay|Anderson,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing,13,Global,all,TRUE +6732,0.820070343331812,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,5,5,3,3,1,1,2,1,1,1,4,4,1,1,5,1,3,1,1,1,2,4,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Critcher|Ross.Slate1|Miyamoto|Rottenstrich|Alter|Bauer|VanLange|Huang|Inbar|Anderson|Graham|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,11,Global,all,TRUE +6733,-0.621917757212264,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,4,2,4,1,1,4,1,1,1,3,3,1,1,4,1,4,1,3,4,4,2,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Miyamoto|Inbar|VanLange|Bauer|Rottenstrich|Huang|Anderson|Kay|Graham|Hauser|Alter|Critcher,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,8,Global,all,TRUE +6737,0.853418979797923,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,3,3,1,4,3,2,4,2,1,2,2,2,2,1,2,2,4,2,2,1,2,3,2,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Hauser|Rottenstrich|Alter|Huang|Inbar|VanLange|Anderson|Miyamoto|Bauer|Kay|Critcher|Ross.Slate1,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,8,Global,all,TRUE +6741,1.14959782307072,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,6,5,2,4,1,1,4,1,1,1,1,1,1,1,4,1,5,1,1,3,4,1,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Graham|Alter|Rottenstrich|Bauer|Critcher|Inbar|VanLange|Hauser|Ross.Slate1|Anderson|Kay|Miyamoto,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,11,Global,all,TRUE +6742,-0.602548458199359,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,1,2,2,2,2,1,1,1,2,1,2,1,1,3,1,3,1,1,1,1,1,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Critcher|Inbar|Rottenstrich|Bauer|Huang|Alter|Anderson|VanLange|Graham|Ross.Slate1|Hauser|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,8,Global,all,TRUE +6743,0.648583738052788,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,3,3,1,1,3,2,1,1,3,4,1,1,4,1,3,1,1,2,3,3,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|VanLange|Kay|Anderson|Hauser|Critcher|Bauer|Graham|Ross.Slate1|Miyamoto|Alter|Inbar|Huang,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,4,Global,all,TRUE +6744,-0.389404290331987,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,1,1,5,2,1,4,3,1,1,3,2,1,1,4,1,5,2,1,2,4,2,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Rottenstrich|Alter|Graham|Inbar|VanLange|Kay|Miyamoto|Bauer|Huang|Anderson|Ross.Slate1|Hauser,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +6749,0.961240208684425,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,2,1,1,1,4,1,1,1,1,1,1,1,1,1,4,1,1,1,2,1,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Inbar|Graham|Hauser|Alter|Rottenstrich|Anderson|Huang|VanLange|Kay|Critcher|Bauer|Ross.Slate1,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing,7,Global,all,TRUE +6752,-0.815678979612495,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,5,2,3,1,1,4,2,1,1,2,2,1,1,4,1,4,1,1,2,2,2,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Inbar|Anderson|Kay|Hauser|Critcher|Ross.Slate1|Huang|VanLange|Graham|Alter|Bauer|Rottenstrich,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,3,Global,all,TRUE +6754,0.0698256536661997,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,2,3,1,1,4,1,1,1,1,1,1,1,3,1,4,1,1,1,3,1,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Inbar|Bauer|Ross.Slate1|Huang|Anderson|Kay|Graham|Rottenstrich|Alter|Critcher|Hauser|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,6,Global,all,TRUE +6755,-0.951571815382573,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,4,1,1,4,3,1,1,4,3,1,1,5,1,5,1,1,4,4,3,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Rottenstrich|Alter|Huang|Inbar|Critcher|VanLange|Bauer|Anderson|Ross.Slate1|Hauser|Kay|Miyamoto,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,9,Global,all,TRUE +6758,0.562783969424694,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,4,5,2,3,2,2,3,1,1,2,1,4,1,1,4,1,1,1,1,1,1,1,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Rottenstrich|Graham|Critcher|Alter|VanLange|Hauser|Inbar|Anderson|Kay|Ross.Slate1|Huang|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,9,Global,all,TRUE +6761,0.597577328982538,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,7,7,4,1,1,1,3,1,1,3,1,1,1,4,1,5,1,1,4,1,3,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Critcher|Huang|Anderson|Bauer|Rottenstrich|Alter|Miyamoto|VanLange|Hauser|Inbar|Graham|Kay,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing,4,Global,all,TRUE +6764,0.795157211419337,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,4,3,2,3,1,1,4,1,1,1,1,4,1,1,3,1,4,1,1,1,3,1,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Hauser|Bauer|Alter|Inbar|Huang|Ross.Slate1|VanLange|Miyamoto|Kay|Graham|Critcher|Anderson,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,13,Global,all,TRUE +6767,0.202939749759374,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,2,3,4,1,1,5,3,1,1,4,2,2,1,3,1,5,1,1,5,4,2,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Kay|Alter|Huang|Anderson|Miyamoto|Bauer|Inbar|Ross.Slate1|Hauser|VanLange|Rottenstrich|Critcher,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,5,Global,all,TRUE +6768,-0.1264475050939,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,5,3,4,1,1,5,4,1,1,3,3,1,1,4,1,4,1,1,4,4,3,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Inbar|Huang|Hauser|Graham|Miyamoto|Rottenstrich|Bauer|Kay|Alter|Ross.Slate1|Critcher|VanLange,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,1,Global,all,TRUE +6769,-0.00466058520842775,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,2,2,5,1,1,5,1,1,1,5,5,1,1,5,1,5,1,1,1,2,5,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Alter|Huang|Hauser|VanLange|Miyamoto|Ross.Slate1|Critcher|Graham|Anderson|Rottenstrich|Kay|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,10,Global,all,TRUE +6771,-1.36268924743517,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,5,5,2,5,1,1,5,5,1,1,5,5,1,1,5,1,5,1,1,5,5,5,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Huang|Rottenstrich|Alter|Inbar|Miyamoto|Anderson|Bauer|Kay|Graham|Critcher|VanLange|Hauser,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,7,Global,all,TRUE +6773,0.737162246357784,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,3,3,2,3,1,1,4,4,1,1,3,3,1,1,3,1,4,1,1,3,3,3,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|VanLange|Alter|Anderson|Kay|Huang|Hauser|Bauer|Graham|Rottenstrich|Critcher|Miyamoto|Inbar,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +6774,0.881097204933065,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,5,5,1,5,1,1,5,1,1,1,1,5,1,1,5,1,5,1,1,1,1,5,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Graham|Critcher|Bauer|Miyamoto|Huang|Kay|Anderson|Ross.Slate1|VanLange|Hauser|Inbar|Alter,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,8,Global,all,TRUE +6776,0.587697101337169,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,5,4,1,1,5,1,1,1,1,2,1,1,4,1,5,1,1,3,3,2,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Anderson|Critcher|Ross.Slate1|Kay|Inbar|VanLange|Huang|Alter|Rottenstrich|Miyamoto|Graham|Bauer,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection,2,Global,all,TRUE +6778,1.08316735345553,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,3,3,3,5,1,1,5,2,1,1,4,3,1,1,5,1,5,1,1,4,4,3,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Miyamoto|Huang|VanLange|Graham|Kay|Anderson|Ross.Slate1|Inbar|Critcher|Rottenstrich|Bauer|Hauser,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,7,Global,all,TRUE +6779,0.316431389976846,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,4,5,1,1,4,1,1,1,3,4,1,1,3,1,4,1,1,4,3,3,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Rottenstrich|VanLange|Graham|Anderson|Alter|Miyamoto|Critcher|Bauer|Inbar|Kay|Hauser|Ross.Slate1,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,5,Global,all,TRUE +6780,1.31568082033581,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,6,5,5,1,1,4,2,1,2,4,4,3,2,3,2,5,2,3,2,5,4,2,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Miyamoto|Kay|Inbar|Ross.Slate1|Rottenstrich|Bauer|Critcher|Anderson|Huang|Alter|VanLange|Hauser,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,9,Global,all,TRUE +6782,0.100522128886807,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,4,1,1,4,3,1,1,2,3,1,1,3,1,4,1,1,3,3,3,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Alter|Inbar|Miyamoto|Bauer|Kay|VanLange|Ross.Slate1|Hauser|Critcher|Anderson|Rottenstrich|Graham,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,11,Global,all,TRUE +6783,1.12744978438091,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,5,5,5,2,1,1,3,1,1,1,2,2,1,1,2,1,3,1,1,2,1,1,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Bauer|Critcher|Inbar|Rottenstrich|Hauser|Alter|VanLange|Miyamoto|Ross.Slate1|Huang|Graham|Anderson,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,13,Global,all,TRUE +6784,-0.86431367720851,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,6,7,7,5,1,1,5,2,1,1,4,4,1,1,4,1,5,1,1,2,4,5,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Hauser|Kay|Miyamoto|Ross.Slate1|Critcher|VanLange|Inbar|Huang|Anderson|Alter|Rottenstrich|Bauer,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +6786,0.238266715951287,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,5,4,1,1,4,4,1,1,4,4,1,1,4,1,4,1,1,4,4,4,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Hauser|Anderson|VanLange|Graham|Bauer|Rottenstrich|Miyamoto|Huang|Ross.Slate1|Alter|Critcher|Inbar,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +6789,1.13813042197738,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,4,1,1,2,1,1,1,2,3,1,1,3,1,4,1,1,2,2,1,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Bauer|Huang|Critcher|Alter|VanLange|Hauser|Inbar|Ross.Slate1|Miyamoto|Rottenstrich|Kay|Graham,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,1,Global,all,TRUE +6790,-0.79169283608252,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,5,2,3,1,1,4,2,1,1,1,3,1,1,4,1,4,1,1,2,4,1,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Alter|Rottenstrich|Huang|Miyamoto|Kay|Ross.Slate1|VanLange|Anderson|Bauer|Critcher|Graham|Hauser,ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,9,Global,all,TRUE +6791,-0.693878413272786,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,2,2,3,1,1,3,3,1,1,3,1,1,3,4,1,3,1,1,3,3,2,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|VanLange|Huang|Anderson|Inbar|Critcher|Alter|Graham|Ross.Slate1|Miyamoto|Kay|Rottenstrich|Hauser,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,4,Global,all,TRUE +6795,-0.0354972853146696,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,6,5,2,3,1,1,4,2,1,1,3,2,2,1,4,1,5,1,1,3,2,4,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Inbar|Critcher|Hauser|Bauer|Graham|Miyamoto|Anderson|Huang|Kay|Alter|VanLange|Rottenstrich,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +6803,0.359927057405361,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,3,3,2,4,2,2,4,4,2,2,4,3,2,2,4,2,4,1,2,4,4,3,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|VanLange|Alter|Hauser|Huang|Miyamoto|Kay|Critcher|Rottenstrich|Bauer|Ross.Slate1|Anderson|Inbar,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,12,Global,all,TRUE +6807,0.941997488102919,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,6,3,1,1,3,3,1,1,3,2,1,1,4,1,5,1,1,4,3,4,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Bauer|Miyamoto|VanLange|Huang|Ross.Slate1|Graham|Rottenstrich|Alter|Inbar|Hauser|Anderson|Critcher,ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +6810,0.548944856857123,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,4,1,4,2,3,1,1,4,5,1,1,5,1,4,1,1,4,4,5,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Anderson|Kay|Hauser|Alter|Graham|Inbar|Miyamoto|Bauer|Huang|VanLange|Ross.Slate1|Critcher,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +6812,0.0611096993412938,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,3,7,5,4,1,1,4,2,1,1,3,3,1,1,3,1,5,1,1,3,2,3,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Rottenstrich|Anderson|Critcher|Inbar|Bauer|Kay|Graham|Hauser|Miyamoto|Huang|Ross.Slate1|VanLange,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing,3,Global,all,TRUE +6813,0.764713893061528,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,1,4,3,3,2,2,1,1,2,2,1,1,3,3,1,1,3,1,3,1,1,1,2,1,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Critcher|Inbar|Rottenstrich|Hauser|Kay|Anderson|Miyamoto|Alter|Ross.Slate1|Graham|VanLange|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five,7,Global,all,TRUE +6815,0.241691994239421,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,2,4,2,2,3,2,3,1,2,2,1,1,2,2,3,1,3,1,1,1,1,2,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Kay|Bauer|Alter|Anderson|Inbar|Critcher|Huang|Rottenstrich|Miyamoto|Ross.Slate1|Graham|VanLange,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,5,Global,all,TRUE +6816,-0.236249289176803,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,6,5,1,5,5,4,1,1,5,5,1,1,5,1,5,1,1,5,5,5,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Bauer|VanLange|Graham|Miyamoto|Huang|Anderson|Rottenstrich|Inbar|Ross.Slate1|Hauser|Critcher|Kay,ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,7,Global,all,TRUE +6817,-0.871035429882779,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,5,4,4,5,4,4,5,4,5,4,4,4,4,4,4,4,4,4,4,4,4,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Kay|Inbar|Rottenstrich|Miyamoto|Anderson|Ross.Slate1|Critcher|Alter|Hauser|Bauer|Graham|VanLange,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,6,Global,all,TRUE +6819,0.750607977176922,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,4,4,1,1,4,2,1,1,1,3,1,1,2,1,4,1,1,2,1,3,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|VanLange|Alter|Graham|Anderson|Rottenstrich|Miyamoto|Critcher|Bauer|Kay|Huang|Inbar|Hauser,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,5,Global,all,TRUE +6821,0.590462194559836,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,3,4,2,2,4,4,1,2,4,4,1,1,5,2,4,2,2,4,4,3,2,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Ross.Slate1|Inbar|Critcher|Rottenstrich|Alter|Graham|Miyamoto|Kay|Huang|Bauer|VanLange|Hauser,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,1,Global,all,TRUE +6822,0.90601033684554,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,4,5,1,4,1,1,4,1,1,1,2,4,1,1,5,1,5,1,1,3,4,3,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Kay|Anderson|Inbar|Graham|VanLange|Ross.Slate1|Critcher|Huang|Bauer|Hauser|Alter|Rottenstrich,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing,3,Global,all,TRUE +6823,0.573857988769598,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,1,2,1,3,1,1,3,1,1,1,4,1,1,1,4,1,1,1,1,4,1,3,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Kay|Critcher|Hauser|Alter|Anderson|Graham|Inbar|Huang|Rottenstrich|VanLange|Miyamoto|Bauer,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five,6,Global,all,TRUE +6825,1.16607545042956,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,3,3,3,2,1,3,1,1,1,2,3,1,2,2,1,3,1,1,3,3,3,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Bauer|Anderson|Alter|VanLange|Huang|Ross.Slate1|Hauser|Inbar|Graham|Kay|Critcher|Miyamoto,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,3,Global,all,TRUE +6827,0.670731776742596,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,2,4,2,2,2,3,2,2,1,1,1,1,1,1,4,1,2,1,1,3,2,1,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Inbar|Bauer|VanLange|Ross.Slate1|Kay|Huang|Miyamoto|Hauser|Anderson|Alter|Critcher|Rottenstrich,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +6828,-0.887639635673017,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,4,3,2,1,1,3,1,1,1,1,1,1,1,3,1,3,1,1,2,3,2,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Hauser|Miyamoto|Inbar|Alter|Kay|Anderson|Huang|Ross.Slate1|VanLange|Bauer|Rottenstrich|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,7,Global,all,TRUE +6829,-0.4309216280347,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,4,3,4,2,1,1,2,2,1,1,2,2,1,1,3,1,3,1,2,2,2,1,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Rottenstrich|Alter|Hauser|Inbar|Huang|Critcher|Bauer|VanLange|Anderson|Miyamoto|Graham|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,10,Global,all,TRUE +6832,1.00842795771811,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,5,2,5,2,1,1,4,3,2,1,2,2,2,2,2,1,4,1,3,3,1,1,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|VanLange|Alter|Rottenstrich|Hauser|Bauer|Huang|Miyamoto|Graham|Kay|Critcher|Inbar|Ross.Slate1,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,1,Global,all,TRUE +6834,-0.401405298059391,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,5,4,5,2,1,1,3,1,1,1,1,3,2,1,3,1,1,1,1,1,3,2,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Graham|Rottenstrich|Bauer|Huang|Alter|Hauser|Ross.Slate1|VanLange|Critcher|Kay|Inbar|Anderson,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood,13,Global,all,TRUE +6836,0.310887557077276,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,5,1,3,3,1,5,2,2,2,3,3,2,2,5,1,5,2,2,4,3,3,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Anderson|VanLange|Hauser|Critcher|Inbar|Kay|Graham|Ross.Slate1|Bauer|Huang|Rottenstrich|Alter,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +6837,-0.0158611829847305,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,4,6,4,4,1,1,4,3,1,1,3,2,2,1,5,1,4,1,1,2,3,2,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Bauer|Critcher|Graham|Anderson|Inbar|Huang|Hauser|VanLange|Alter|Miyamoto|Ross.Slate1|Kay,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +6839,-0.473239375688515,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,1,2,3,4,1,2,4,3,1,1,4,4,1,1,4,1,4,1,1,4,3,5,2,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Hauser|Anderson|Rottenstrich|Kay|Huang|Miyamoto|Inbar|Alter|Ross.Slate1|Bauer|Graham|VanLange,ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,3,Global,all,TRUE +6840,1.73641167671675,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,2,4,1,1,4,3,1,1,3,3,1,1,5,1,4,1,1,4,4,4,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Miyamoto|Rottenstrich|Anderson|Kay|Graham|Ross.Slate1|Alter|Bauer|Inbar|Hauser|VanLange|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,4,Global,all,TRUE +6841,0.593227287782503,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,5,3,1,1,3,2,1,1,3,3,2,1,3,1,3,1,2,3,3,3,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Bauer|Miyamoto|Critcher|Anderson|Alter|Rottenstrich|Huang|Kay|Hauser|Graham|Inbar|VanLange,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +6842,-0.771258549272079,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,4,2,1,4,2,2,3,3,1,1,2,2,1,1,4,1,5,1,3,4,4,2,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Rottenstrich|Hauser|Inbar|VanLange|Anderson|Bauer|Graham|Miyamoto|Critcher|Alter|Kay|Ross.Slate1,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,6,Global,all,TRUE +6843,-0.885141345767384,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,5,1,1,5,5,1,1,5,5,1,1,5,1,5,1,1,5,5,5,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Huang|Rottenstrich|VanLange|Hauser|Alter|Miyamoto|Critcher|Graham|Anderson|Bauer|Inbar|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five,10,Global,all,TRUE +6845,0.398679301885407,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,5,5,3,2,1,4,3,2,1,3,4,1,1,3,1,4,1,1,3,3,1,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Ross.Slate1|Graham|Hauser|Huang|Alter|Inbar|Rottenstrich|Kay|Critcher|Anderson|VanLange|Bauer,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE,11,Global,all,TRUE +6846,-0.351579034234441,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,3,4,4,1,5,4,3,1,2,4,3,2,1,4,2,4,1,1,3,2,2,2,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Rottenstrich|Hauser|Inbar|Ross.Slate1|VanLange|Miyamoto|Huang|Critcher|Kay|Bauer|Alter|Graham,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood,1,Global,all,TRUE +6847,0.407774991504509,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,7,6,4,1,1,1,3,1,1,3,2,1,1,5,1,4,1,1,4,2,3,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Kay|Inbar|Hauser|Critcher|Alter|Rottenstrich|VanLange|Huang|Bauer|Graham|Miyamoto|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,13,Global,all,TRUE +6848,0.573857988769598,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,3,1,1,3,3,1,1,4,3,1,1,2,1,3,1,1,3,3,4,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Bauer|Kay|Rottenstrich|Inbar|Miyamoto|VanLange|Graham|Huang|Hauser|Anderson|Critcher,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood,12,Global,all,TRUE +6849,0.50188368625484,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,1,4,4,2,2,4,1,2,4,1,1,1,2,2,1,1,3,1,4,1,1,1,4,2,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Rottenstrich|Alter|VanLange|Graham|Kay|Huang|Anderson|Bauer|Inbar|Miyamoto|Ross.Slate1|Hauser,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood,8,Global,all,TRUE +6850,0.402231158604939,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,4,1,1,4,3,1,1,4,4,1,1,4,1,4,1,1,4,4,4,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Kay|Huang|Graham|Miyamoto|VanLange|Alter|Hauser|Rottenstrich|Anderson|Inbar|Ross.Slate1|Critcher,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,10,Global,all,TRUE +6854,-0.35948093215401,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,5,3,1,4,1,2,4,3,2,2,3,3,1,2,4,1,4,1,1,2,2,3,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Bauer|Anderson|Rottenstrich|Inbar|Graham|Alter|Critcher|Ross.Slate1|Hauser|Huang|VanLange|Miyamoto,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,3,Global,all,TRUE +6855,0.410540084727176,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,6,3,5,3,2,3,4,4,2,2,4,3,2,4,2,3,4,3,2,2,3,3,4,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Hauser|VanLange|Graham|Critcher|Alter|Bauer|Miyamoto|Inbar|Anderson|Rottenstrich|Huang|Kay,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,10,Global,all,TRUE +6860,0.321834997990781,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,3,4,1,2,3,1,1,1,1,2,1,2,2,2,3,1,1,1,1,1,2,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Graham|Anderson|Inbar|Ross.Slate1|Bauer|Huang|Alter|VanLange|Critcher|Hauser|Kay|Rottenstrich,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,3,Global,all,TRUE +6863,1.293532781646,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,5,4,1,1,4,3,1,1,4,3,2,1,4,1,4,1,1,3,4,4,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Inbar|Anderson|Miyamoto|Kay|Bauer|Rottenstrich|Ross.Slate1|Critcher|Graham|Huang|Hauser|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,3,Global,all,TRUE +6865,1.73641167671675,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,5,7,3,4,2,1,5,3,1,1,4,3,2,1,4,1,5,1,2,3,4,3,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Graham|Kay|Huang|Miyamoto|Inbar|Critcher|Rottenstrich|Hauser|Anderson|Bauer|Alter|VanLange,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,10,Global,all,TRUE +6866,0.963878723475693,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,4,5,3,3,1,1,4,1,1,1,1,3,1,1,3,1,4,1,1,2,3,2,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Alter|Ross.Slate1|Inbar|Huang|Graham|Bauer|VanLange|Rottenstrich|Hauser|Anderson|Critcher|Kay,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,11,Global,all,TRUE +6867,-0.756099066573574,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,6,4,2,1,4,4,1,1,4,5,1,2,4,2,4,1,2,4,4,4,2,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Huang|Inbar|Kay|Graham|Ross.Slate1|Anderson|Critcher|Alter|Miyamoto|Rottenstrich|VanLange|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,7,Global,all,TRUE +6868,-0.258917288046443,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,5,1,1,3,5,1,1,5,5,1,1,5,1,5,1,1,5,5,5,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Critcher|Huang|VanLange|Miyamoto|Hauser|Alter|Anderson|Bauer|Graham|Kay|Ross.Slate1|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,8,Global,all,TRUE +6871,-0.962379031410443,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,2,2,2,4,1,1,5,1,1,1,1,3,1,1,3,1,5,1,1,1,2,2,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|VanLange|Hauser|Critcher|Bauer|Huang|Kay|Ross.Slate1|Anderson|Inbar|Alter|Graham|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,9,Global,all,TRUE +6876,-0.874460708170913,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,5,1,1,5,5,1,1,4,5,1,1,5,1,5,1,1,4,5,5,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Anderson|Critcher|Ross.Slate1|Miyamoto|VanLange|Graham|Rottenstrich|Hauser|Alter|Kay|Huang|Bauer,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,2,Global,all,TRUE +6885,-0.403510206216592,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,7,3,4,1,1,4,2,1,1,2,2,2,1,4,1,4,1,4,2,1,2,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Ross.Slate1|Huang|Kay|Critcher|VanLange|Inbar|Anderson|Hauser|Graham|Alter|Miyamoto|Rottenstrich,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,8,Global,all,TRUE +6887,0.403689528150909,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,4,4,4,4,2,2,5,2,2,2,2,4,2,2,2,2,3,2,2,4,2,3,2,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Bauer|Huang|VanLange|Hauser|Graham|Ross.Slate1|Alter|Anderson|Miyamoto|Inbar|Critcher|Rottenstrich,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five,9,Global,all,TRUE +6889,1.00842795771811,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,6,6,5,4,1,1,4,3,1,1,4,3,1,1,4,1,4,1,1,4,4,3,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Huang|Rottenstrich|Bauer|Alter|Graham|Hauser|Anderson|Critcher|Inbar|Miyamoto|Kay|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five,8,Global,all,TRUE +6890,0.23550162272862,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,5,3,2,1,4,2,1,1,2,4,1,1,4,1,4,1,1,2,3,4,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Alter|Anderson|Kay|Huang|Miyamoto|Ross.Slate1|Bauer|VanLange|Rottenstrich|Hauser|Graham|Critcher,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection,3,Global,all,TRUE +6893,-0.993749338150752,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,3,2,1,4,2,3,4,3,2,2,2,2,2,2,3,2,4,1,1,2,2,3,2,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Miyamoto|Hauser|Huang|Kay|Anderson|Critcher|Graham|Rottenstrich|Bauer|VanLange|Alter|Inbar,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,6,Global,all,TRUE +6898,0.00628685570507755,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,3,4,1,1,3,3,1,1,3,4,1,1,4,1,4,1,1,4,3,3,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Anderson|Alter|VanLange|Ross.Slate1|Kay|Critcher|Inbar|Bauer|Rottenstrich|Hauser|Miyamoto|Huang,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,2,Global,all,TRUE +6900,0.4823741623563,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,6,3,1,1,4,1,1,1,1,3,1,1,4,1,3,1,1,1,1,3,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|VanLange|Alter|Hauser|Graham|Anderson|Huang|Critcher|Ross.Slate1|Inbar|Miyamoto|Rottenstrich|Bauer,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,6,Global,all,TRUE +6901,0.111596148231711,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,6,2,1,1,2,1,1,1,1,1,1,1,3,1,2,1,1,1,1,1,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Miyamoto|Anderson|VanLange|Graham|Huang|Inbar|Bauer|Hauser|Ross.Slate1|Critcher|Alter|Kay,ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +6909,0.72608822701288,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,4,3,3,1,2,5,1,1,1,3,1,1,2,3,1,5,1,1,1,1,1,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Miyamoto|Ross.Slate1|Alter|Huang|VanLange|Anderson|Critcher|Hauser|Graham|Rottenstrich|Bauer|Inbar,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,7,Global,all,TRUE +6915,-0.593974954230687,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,7,4,5,1,1,5,4,1,1,5,5,1,1,5,1,5,1,1,5,5,5,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Graham|Hauser|Miyamoto|VanLange|Inbar|Anderson|Bauer|Alter|Ross.Slate1|Kay|Rottenstrich|Critcher,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,7,Global,all,TRUE +6922,-0.900160603580254,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,5,3,3,5,2,2,5,3,1,1,5,5,1,1,5,1,5,1,1,5,5,4,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|VanLange|Alter|Huang|Rottenstrich|Miyamoto|Inbar|Bauer|Critcher|Ross.Slate1|Anderson|Graham|Hauser,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,11,Global,all,TRUE +6926,0.614054956341378,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,5,1,1,5,2,1,1,4,5,1,1,5,1,5,1,1,5,5,5,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Alter|VanLange|Hauser|Rottenstrich|Miyamoto|Inbar|Graham|Ross.Slate1|Anderson|Critcher|Huang|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing,10,Global,all,TRUE +6929,-2.83578307687313,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,5,2,1,4,1,1,4,1,1,1,1,2,1,1,4,1,4,1,1,1,2,2,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Kay|Inbar|Critcher|Huang|Rottenstrich|Ross.Slate1|Miyamoto|Anderson|Hauser|Bauer|Alter|Graham,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,9,Global,all,TRUE +6930,-0.297276150778057,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,7,3,1,2,3,2,1,1,3,5,1,1,4,1,4,1,1,2,2,3,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Anderson|Inbar|VanLange|Bauer|Critcher|Alter|Miyamoto|Kay|Ross.Slate1|Graham|Rottenstrich|Huang,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,2,Global,all,TRUE +6933,-0.306496193357959,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,7,5,7,4,1,1,4,1,1,1,1,4,1,1,5,1,4,1,1,1,3,4,2,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Huang|VanLange|Critcher|Bauer|Graham|Alter|Inbar|Anderson|Rottenstrich|Ross.Slate1|Miyamoto|Hauser,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,9,Global,all,TRUE +6935,0.140859321344221,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,6,5,3,1,1,4,3,1,1,1,3,1,1,3,1,4,1,1,2,3,1,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Alter|Inbar|Bauer|Anderson|Critcher|Huang|Rottenstrich|Kay|Miyamoto|Hauser|Ross.Slate1|VanLange,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,5,Global,all,TRUE +6936,-0.873409366827612,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,1,2,2,2,1,3,3,1,4,1,2,1,2,3,2,2,4,1,5,1,1,1,2,2,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Rottenstrich|Anderson|Kay|Inbar|Miyamoto|Huang|Critcher|Bauer|Hauser|Alter|VanLange|Graham,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,3,Global,all,TRUE +6939,-0.351438809348806,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,5,5,7,5,1,1,5,3,1,1,4,5,1,1,5,1,5,1,1,4,5,4,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Miyamoto|Rottenstrich|Ross.Slate1|Graham|Critcher|Bauer|Alter|Huang|VanLange|Hauser|Anderson|Kay,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +6943,0.0505692866304577,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,7,7,5,4,1,1,1,3,1,1,4,4,1,1,4,1,4,1,1,4,4,4,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Hauser|Alter|Bauer|Kay|Graham|Rottenstrich|Ross.Slate1|Miyamoto|Huang|Inbar|Critcher|Anderson,ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE,13,Global,all,TRUE +6947,-0.433953524574401,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,5,4,2,2,3,2,1,1,2,3,2,1,4,1,4,1,1,4,3,3,3,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Miyamoto|VanLange|Bauer|Rottenstrich|Critcher|Huang|Inbar|Ross.Slate1|Hauser|Graham|Alter|Kay,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection,1,Global,all,TRUE +6948,-0.392436186871688,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,4,4,1,1,5,3,1,1,5,4,1,1,5,1,4,1,1,3,3,4,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Miyamoto|VanLange|Critcher|Ross.Slate1|Inbar|Anderson|Rottenstrich|Bauer|Graham|Huang|Hauser|Kay,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,7,Global,all,TRUE +6952,0.0445054935510558,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,4,3,1,3,1,1,3,2,1,1,2,3,1,1,3,1,3,1,1,2,3,3,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Miyamoto|VanLange|Graham|Bauer|Ross.Slate1|Critcher|Anderson|Rottenstrich|Kay|Alter|Hauser|Inbar,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,8,Global,all,TRUE +6953,-0.882109449227683,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,4,1,1,4,4,1,1,4,4,1,1,4,1,4,1,1,4,4,4,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Hauser|Graham|Alter|Kay|Critcher|Anderson|VanLange|Rottenstrich|Miyamoto|Bauer|Inbar|Ross.Slate1,ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +6954,-1.34528463169384,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,5,4,1,1,2,1,1,1,2,2,1,1,4,1,4,1,1,2,2,2,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Anderson|Critcher|Rottenstrich|Kay|Graham|Alter|Miyamoto|VanLange|Hauser|Inbar|Bauer|Huang,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +6955,-1.03514009742207,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,5,5,6,3,1,1,3,1,1,1,1,1,1,1,3,1,3,1,1,1,2,1,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Critcher|Miyamoto|Kay|Huang|Hauser|Inbar|Rottenstrich|Bauer|Graham|Anderson|Alter|VanLange,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,11,Global,all,TRUE +6956,0.0257827331493813,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,2,2,2,1,3,1,1,1,1,2,1,1,2,1,3,1,1,2,1,2,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Alter|Bauer|Critcher|VanLange|Rottenstrich|Inbar|Kay|Graham|Huang|Ross.Slate1|Hauser|Anderson,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,13,Global,all,TRUE +6957,0.679040702864833,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,7,5,7,4,1,1,4,2,1,1,3,1,1,1,3,1,5,1,1,2,4,1,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Bauer|VanLange|Graham|Kay|Huang|Anderson|Inbar|Alter|Rottenstrich|Ross.Slate1|Hauser|Miyamoto,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,7,Global,all,TRUE +6960,-0.264852277223847,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,3,3,1,4,2,1,4,2,1,1,2,3,1,1,4,1,4,1,1,2,3,2,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Miyamoto|Rottenstrich|Kay|Ross.Slate1|Graham|Inbar|Hauser|Bauer|Alter|VanLange|Critcher|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,1,Global,all,TRUE +6964,0.291391679632972,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,4,2,2,4,1,1,3,2,1,1,2,3,1,1,4,1,3,1,2,3,3,3,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Bauer|Alter|Inbar|Miyamoto|Huang|Rottenstrich|VanLange|Hauser|Anderson|Kay|Graham|Critcher,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,10,Global,all,TRUE +6965,-1.20134967311855,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,3,1,1,4,1,1,1,3,3,1,1,2,1,3,1,1,2,4,3,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Kay|Graham|Bauer|Miyamoto|Anderson|Huang|Inbar|Ross.Slate1|Rottenstrich|VanLange|Alter|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection,6,Global,all,TRUE +6966,-0.492215292952987,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,6,4,1,1,5,4,1,1,4,5,1,1,5,1,5,1,1,4,3,5,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Ross.Slate1|VanLange|Rottenstrich|Hauser|Inbar|Anderson|Alter|Huang|Kay|Graham|Bauer|Critcher,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +6977,0.712249114445309,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,3,5,1,2,1,1,2,1,1,1,1,3,1,1,1,1,3,1,1,2,3,1,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Rottenstrich|Huang|Ross.Slate1|Critcher|Hauser|Anderson|VanLange|Inbar|Bauer|Graham|Miyamoto|Kay,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,7,Global,all,TRUE +6983,-0.154392533546076,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,2,1,1,2,6,5,3,3,5,5,3,3,5,3,3,2,5,3,5,2,3,5,5,3,5,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Kay|Bauer|Miyamoto|Rottenstrich|VanLange|Hauser|Inbar|Ross.Slate1|Alter|Graham|Critcher|Huang,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five,1,Global,all,TRUE +6985,0.991823751927869,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,5,1,1,4,4,1,1,4,4,1,1,4,1,4,1,1,4,4,4,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Rottenstrich|Huang|Ross.Slate1|Anderson|Graham|VanLange|Hauser|Alter|Kay|Critcher|Inbar|Miyamoto,ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,5,Global,all,TRUE +6988,0.363492560579129,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,1,1,1,1,3,1,1,1,1,1,1,1,1,1,4,1,1,1,1,1,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Graham|Inbar|Bauer|Rottenstrich|Miyamoto|Ross.Slate1|Critcher|VanLange|Alter|Kay|Anderson|Hauser,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,12,Global,all,TRUE +6995,1.30460680099091,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,3,1,1,1,3,1,1,1,1,3,1,1,1,1,3,1,1,1,3,4,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Hauser|Bauer|Inbar|Miyamoto|Critcher|Anderson|Rottenstrich|Ross.Slate1|VanLange|Graham|Alter|Kay,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,7,Global,all,TRUE +6997,-0.148722122215107,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,6,6,4,1,1,3,1,1,1,1,1,2,1,4,1,4,1,1,1,2,4,2,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Alter|Anderson|Huang|Critcher|Bauer|Ross.Slate1|Miyamoto|Graham|Kay|Rottenstrich|Hauser|Inbar,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood,3,Global,all,TRUE +6998,0.571079249092695,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,3,2,2,2,3,3,3,1,3,2,1,3,2,3,3,2,3,3,2,1,1,2,2,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Hauser|Kay|Miyamoto|Rottenstrich|Graham|Anderson|VanLange|Huang|Ross.Slate1|Bauer|Alter|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE,7,Global,all,TRUE +6999,-0.3290376137962,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,5,6,5,1,1,5,3,1,1,4,5,1,1,5,1,5,1,1,4,4,4,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Anderson|Inbar|Hauser|Bauer|Ross.Slate1|Miyamoto|Rottenstrich|VanLange|Kay|Graham|Huang|Critcher,ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,2,Global,all,TRUE +7001,-0.703507709525957,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,1,1,3,1,1,2,1,1,1,1,1,1,1,1,1,3,1,1,1,2,1,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|VanLange|Inbar|Hauser|Anderson|Bauer|Miyamoto|Ross.Slate1|Huang|Graham|Kay|Rottenstrich|Critcher,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,5,Global,all,TRUE +7002,-0.519500136339696,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,7,5,2,5,1,1,5,5,1,1,5,4,1,1,4,1,5,1,1,5,5,3,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Hauser|Anderson|Inbar|Huang|VanLange|Ross.Slate1|Graham|Kay|Critcher|Bauer|Rottenstrich|Miyamoto,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,3,Global,all,TRUE +7004,-0.392169383554654,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,5,5,5,5,1,1,5,3,1,1,3,3,1,1,4,1,4,1,1,3,4,3,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Kay|Bauer|Anderson|Alter|Huang|Hauser|Ross.Slate1|Graham|Critcher|VanLange|Rottenstrich|Miyamoto,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +7007,0.302198895660842,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,2,2,5,2,2,2,3,1,2,2,1,1,2,2,2,1,3,2,2,1,3,1,2,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Critcher|VanLange|Anderson|Bauer|Alter|Inbar|Hauser|Kay|Rottenstrich|Graham|Ross.Slate1|Huang,ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE,4,Global,all,TRUE +7011,0.270955167351931,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,5,1,1,4,3,1,1,1,4,1,1,3,1,4,1,2,2,4,1,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|VanLange|Hauser|Inbar|Ross.Slate1|Anderson|Rottenstrich|Kay|Huang|Graham|Bauer|Critcher|Alter,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,6,Global,all,TRUE +7013,-1.40327959675539,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,7,7,5,1,1,2,5,1,1,5,5,2,1,5,1,5,1,1,5,5,5,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Alter|Kay|Rottenstrich|VanLange|Graham|Hauser|Inbar|Anderson|Bauer|Huang|Miyamoto|Ross.Slate1,ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,9,Global,all,TRUE +7014,-0.576050378309516,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,5,2,1,5,1,1,5,3,1,1,5,5,1,1,5,1,5,1,1,5,5,5,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Alter|Hauser|Kay|VanLange|Rottenstrich|Inbar|Graham|Huang|Bauer|Critcher|Anderson|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,12,Global,all,TRUE +7015,0.100522128886807,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,5,5,2,3,1,2,3,1,1,2,1,2,2,1,2,1,3,1,1,1,1,1,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Graham|Kay|Bauer|VanLange|Huang|Inbar|Hauser|Alter|Critcher|Miyamoto|Rottenstrich|Ross.Slate1,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,1,Global,all,TRUE +7019,0.155878579157091,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,3,1,1,3,2,1,1,3,3,1,1,1,1,3,1,1,3,2,2,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Critcher|Huang|Inbar|Bauer|Rottenstrich|Miyamoto|Graham|Kay|Ross.Slate1|Hauser|Anderson|Alter,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,12,Global,all,TRUE +7020,0.0451656786165227,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,1,1,1,1,1,1,1,1,3,1,1,1,1,1,1,1,5,1,2,1,1,1,1,1,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Kay|Huang|Bauer|Ross.Slate1|Miyamoto|Graham|Rottenstrich|VanLange|Inbar|Critcher|Alter|Anderson,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood,13,Global,all,TRUE +7022,-1.56672407922921,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,4,4,4,2,1,3,3,1,1,4,3,1,1,4,1,4,1,1,3,3,3,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Alter|Anderson|Critcher|VanLange|Rottenstrich|Inbar|Miyamoto|Graham|Kay|Bauer|Hauser|Huang,ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,3,Global,all,TRUE +7024,-0.597273654087422,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,5,3,1,3,4,3,1,2,3,3,1,1,3,1,4,1,1,3,4,3,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Hauser|Inbar|Critcher|Rottenstrich|Kay|Anderson|Ross.Slate1|Huang|Alter|Miyamoto|Graham|Bauer,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing,7,Global,all,TRUE +7025,-0.517130650336061,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,4,1,1,4,4,1,2,4,5,1,1,4,1,5,2,2,4,4,4,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Anderson|Critcher|Alter|Bauer|Hauser|Graham|Kay|Huang|Inbar|Rottenstrich|VanLange|Ross.Slate1,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,2,Global,all,TRUE +7027,-0.313486974819862,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,2,2,2,1,1,4,1,1,1,1,1,1,1,2,1,4,1,1,1,1,1,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|VanLange|Ross.Slate1|Inbar|Graham|Miyamoto|Bauer|Kay|Critcher|Huang|Alter|Anderson|Rottenstrich,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE,12,Global,all,TRUE +7030,-0.753853933530739,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,5,7,4,4,3,4,3,1,2,3,5,2,1,5,2,4,2,2,5,4,5,3,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|VanLange|Graham|Kay|Huang|Miyamoto|Critcher|Inbar|Ross.Slate1|Bauer|Anderson|Alter|Rottenstrich,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,11,Global,all,TRUE +7034,-0.135543194713003,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,7,4,1,1,4,3,1,1,4,5,1,1,5,1,4,1,1,3,4,4,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Critcher|Ross.Slate1|Bauer|Huang|Graham|Rottenstrich|Anderson|Alter|Miyamoto|Hauser|VanLange|Kay,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +7037,-0.990324059862619,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,6,3,4,2,1,4,1,1,1,1,2,1,1,2,1,5,1,1,3,4,2,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Huang|Ross.Slate1|Bauer|Rottenstrich|VanLange|Critcher|Anderson|Kay|Alter|Graham|Miyamoto|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,8,Global,all,TRUE +7039,0.236161807794086,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,5,5,5,3,2,1,3,1,1,1,1,2,1,1,1,1,3,1,1,1,1,2,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Rottenstrich|Ross.Slate1|Alter|Hauser|Huang|Graham|Critcher|Inbar|Miyamoto|Bauer|VanLange|Anderson,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,13,Global,all,TRUE +7040,1.0859324466782,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,5,5,2,1,1,5,3,1,1,3,4,1,1,3,1,5,1,1,1,3,3,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Kay|Miyamoto|VanLange|Inbar|Hauser|Alter|Rottenstrich|Graham|Huang|Anderson|Critcher|Ross.Slate1,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,11,Global,all,TRUE +7042,0.449165750775824,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,5,2,2,4,1,1,3,1,1,1,1,1,1,1,3,1,3,1,1,1,2,1,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Huang|Miyamoto|Bauer|Inbar|VanLange|Ross.Slate1|Hauser|Alter|Rottenstrich|Kay|Critcher|Anderson,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +7043,-1.30112877919985,Low,ML2_Slate1_USEng_mTurk_JC_r.csv,mturk,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,2,1,1,3,2,1,1,1,2,2,1,4,1,4,1,2,2,3,2,1,mturk,mturk,mturk,USA,MTurk US Workers,English,1,legal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Anderson|Bauer|Kay|Alter|Huang|Rottenstrich|Ross.Slate1|Inbar|Miyamoto|Graham|Hauser|VanLange,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,2,Global,all,TRUE +7049,-0.15109828463054,Low,Slate_1_Deutsch__Austria_Revised_Version_2__Kopieren_teamb_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,4,3,3,3,6,3,4,4,3,1,2,2,3,2,2,1,5,3,1,1,2,1,1,1,2,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Bauer|Rottenstrich|Alter|Graham|Critcher|Inbar|Huang|Ross.Slate1|Hauser|Anderson|VanLange|Kay,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +7052,0.363352335693494,Low,Slate_1_Deutsch__Austria_Revised_Version_2__Kopieren_teamb_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,6,7,5,1,1,5,3,1,1,1,1,1,1,4,1,5,1,1,3,4,1,1,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Inbar|VanLange|Miyamoto|Hauser|Rottenstrich|Anderson|Kay|Critcher|Alter|Graham|Ross.Slate1|Bauer,ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection,7,Global,all,TRUE +7053,0.745471172480021,Low,Slate_1_Deutsch__Austria_Revised_Version_2__Kopieren_teamb_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,5,6,4,2,1,5,3,1,2,2,3,1,1,4,1,4,2,1,2,5,3,1,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Rottenstrich|Hauser|Critcher|Anderson|Inbar|Bauer|Alter|Kay|Miyamoto|VanLange|Huang|Ross.Slate1,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,5,Global,all,TRUE +7054,0.274914052274133,Low,Slate_1_Deutsch__Austria_Revised_Version_2__Kopieren_teamb_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,6,6,6,3,1,1,4,1,1,1,3,1,1,1,4,1,1,1,5,1,1,1,1,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|VanLange|Graham|Miyamoto|Ross.Slate1|Critcher|Hauser|Bauer|Inbar|Rottenstrich|Anderson|Alter|Kay,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,11,Global,all,TRUE +7056,-1.1454596162142,Low,Slate_1_Deutsch__Austria_Revised_Version_2__Kopieren_teamb_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,3,2,5,3,4,4,1,4,4,3,3,3,3,1,3,2,3,4,4,4,3,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Kay|Bauer|Alter|Miyamoto|Hauser|Inbar|Anderson|Rottenstrich|Graham|Huang|Critcher|Ross.Slate1,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.),8,Global,all,TRUE +7058,0.396700972159605,Low,Slate_1_Deutsch__Austria_Revised_Version_2__Kopieren_teamb_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,7,7,5,2,2,4,5,1,1,3,5,1,1,4,1,4,1,3,4,5,4,1,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Critcher|Alter|VanLange|Kay|Huang|Anderson|Ross.Slate1|Inbar|Bauer|Hauser|Miyamoto|Graham,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,7,Global,all,TRUE +7059,-0.234395312411802,Low,Slate_1_Deutsch__Austria_Revised_Version_2__Kopieren_teamb_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,7,6,1,1,1,4,4,1,1,4,4,2,3,1,1,4,1,1,3,5,4,1,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Anderson|Huang|Inbar|Critcher|VanLange|Rottenstrich|Kay|Miyamoto|Graham|Bauer|Hauser|Alter,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five,2,Global,all,TRUE +7062,1.73641167671675,Low,Slate_1_Deutsch__Austria_Revised_Version_2__Kopieren_teamb_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,7,6,1,2,4,2,1,2,1,1,1,2,4,1,1,1,1,4,1,1,1,3,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Anderson|Miyamoto|Inbar|Huang|Rottenstrich|Alter|Graham|VanLange|Ross.Slate1|Bauer|Kay|Hauser,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection,2,Global,all,TRUE +7063,0.318409719702647,Low,Slate_1_Deutsch__Austria_Revised_Version_2__Kopieren_teamc_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,2,3,3,2,1,3,1,1,1,1,3,1,1,3,1,2,1,1,1,1,2,1,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Rottenstrich|Anderson|Alter|VanLange|Hauser|Miyamoto|Bauer|Ross.Slate1|Kay|Inbar|Huang|Critcher,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,3,Global,all,TRUE +7067,0.391030560828636,Low,Slate_1_Deutsch__Austria_Revised_Version_2__Kopieren_teamc_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,7,6,5,1,2,4,3,1,1,2,2,1,1,3,1,3,1,2,4,4,4,1,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|VanLange|Huang|Inbar|Ross.Slate1|Hauser|Bauer|Critcher|Graham|Anderson|Kay|Miyamoto|Rottenstrich,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,10,Global,all,TRUE +7068,0.529561911389982,Low,Slate_1_Deutsch__Austria_Revised_Version_2__Kopieren_teamc_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,1,6,3,4,1,3,1,1,4,3,1,1,1,2,1,3,2,1,3,1,5,2,3,1,3,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Kay|Huang|Alter|Inbar|Miyamoto|Critcher|Hauser|Anderson|Graham|Bauer|VanLange|Rottenstrich,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing,9,Global,all,TRUE +7069,-0.287253472776453,Low,Slate_1_Deutsch__Austria_Revised_Version_2__Kopieren_teamc_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,7,6,5,4,1,1,3,2,1,1,4,3,1,1,4,1,3,1,1,3,4,3,1,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|VanLange|Huang|Critcher|Rottenstrich|Alter|Kay|Hauser|Bauer|Graham|Ross.Slate1|Inbar|Miyamoto,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +7070,-0.973453050755347,Low,Slate_1_Deutsch__Austria_Revised_Version_2__Kopieren_teamc_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,2,6,3,5,3,3,1,2,2,1,3,1,1,1,1,3,2,1,1,1,3,1,1,1,1,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Anderson|Rottenstrich|VanLange|Kay|Huang|Hauser|Graham|Critcher|Alter|Inbar|Ross.Slate1|Miyamoto,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,2,Global,all,TRUE +7074,0.628947635722848,Low,Slate_1_Deutsch__Austria_Revised_Version_2__Kopieren_teamc_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,7,6,3,3,1,3,1,1,2,1,1,1,1,3,1,2,2,1,1,1,1,1,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Rottenstrich|Ross.Slate1|Critcher|VanLange|Bauer|Graham|Huang|Alter|Inbar|Anderson|Hauser|Miyamoto,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +7075,0.274914052274133,Low,Slate_1_Deutsch__Austria_Revised_Version_2__Kopieren_teamc_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,4,2,3,2,1,2,3,2,3,1,1,2,2,3,2,2,5,1,2,3,3,2,4,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Rottenstrich|Anderson|Miyamoto|Ross.Slate1|Kay|Huang|Graham|Hauser|Critcher|VanLange|Bauer|Inbar,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing,3,Global,all,TRUE +7077,-1.15917215035037,Low,Slate_1_Deutsch__Austria_Revised_Version_2_fady_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,5,4,2,3,1,1,3,3,1,1,2,2,1,1,3,1,2,1,1,2,2,3,1,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Kay|VanLange|Hauser|Bauer|Critcher|Inbar|Anderson|Miyamoto|Graham|Ross.Slate1|Alter|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,8,Global,all,TRUE +7078,0.327365184436115,Low,Slate_1_Deutsch__Austria_Revised_Version_2_fady_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,6,7,4,2,1,2,2,1,2,2,3,1,1,2,1,1,1,3,1,2,2,1,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Inbar|Kay|Hauser|VanLange|Anderson|Critcher|Rottenstrich|Miyamoto|Bauer|Graham|Alter|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,6,Global,all,TRUE +7081,0.737162246357784,Low,Slate_1_Deutsch__Austria_Revised_Version_2_fady_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,7,6,2,2,1,2,1,1,2,2,3,1,1,2,1,3,3,2,1,2,1,1,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Bauer|Miyamoto|Hauser|Alter|Rottenstrich|Critcher|Anderson|VanLange|Huang|Kay|Graham|Inbar,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five,8,Global,all,TRUE +7083,-0.0464447262281749,Low,Slate_1_Deutsch__Austria_Revised_Version_2_fady_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,5,3,3,5,3,4,4,5,1,2,4,4,2,2,5,1,4,3,2,4,5,3,2,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Kay|Miyamoto|Rottenstrich|Alter|Hauser|Graham|VanLange|Inbar|Bauer|Anderson|Ross.Slate1|Huang,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,11,Global,all,TRUE +7084,0.520466221770879,Low,Slate_1_Deutsch__Austria_Revised_Version_2_fady_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,3,4,3,4,3,1,4,2,1,1,2,2,1,1,4,2,1,3,1,2,1,1,1,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Kay|Bauer|Rottenstrich|Hauser|Graham|Huang|Miyamoto|VanLange|Inbar|Ross.Slate1|Alter|Anderson,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,13,Global,all,TRUE +7085,0.241425190922387,Low,Slate_1_Deutsch__Austria_Revised_Version_2_fady_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,5,4,3,1,2,2,3,1,1,2,1,1,1,2,2,1,3,1,2,1,1,1,2,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Anderson|Rottenstrich|Graham|Critcher|Ross.Slate1|Inbar|Huang|Kay|Bauer|VanLange|Miyamoto|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,2,Global,all,TRUE +7088,-0.508301764033993,Low,Slate_1_Deutsch__Austria_Revised_Version_2_fady_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,2,1,1,2,2,3,1,1,3,2,3,1,1,2,1,3,1,2,1,1,1,1,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|VanLange|Inbar|Graham|Alter|Bauer|Anderson|Kay|Critcher|Hauser|Rottenstrich|Miyamoto|Huang,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,7,Global,all,TRUE +7089,0.413305177949843,Low,Slate_1_Deutsch__Austria_Revised_Version_2_fady_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,6,6,6,3,1,2,3,1,1,1,1,2,1,1,4,1,2,1,2,1,3,3,1,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Ross.Slate1|Huang|Hauser|Kay|Anderson|Rottenstrich|Inbar|Miyamoto|Bauer|Critcher|Graham|Alter,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood,6,Global,all,TRUE +7090,-0.380057669320685,Low,Slate_1_Deutsch__Austria_Revised_Version_2_fady_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,6,7,7,3,1,1,4,4,1,1,3,4,2,1,4,1,3,1,4,2,5,4,2,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Ross.Slate1|Kay|Hauser|Critcher|Huang|Anderson|Graham|VanLange|Inbar|Rottenstrich|Alter|Bauer,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood,7,Global,all,TRUE +7091,-0.470080900717415,Low,Slate_1_Deutsch__Austria_Revised_Version_2_fady_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,6,6,5,1,1,1,3,1,1,1,1,4,1,1,3,1,3,1,1,3,2,3,1,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Inbar|Anderson|Hauser|Critcher|Graham|Ross.Slate1|Rottenstrich|VanLange|Alter|Miyamoto|Kay|Huang,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: TIPI for Big-Five,3,Global,all,TRUE +7095,-0.533872855541335,Low,Slate_1_Deutsch__Austria_Revised_Version_2_fady_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,4,3,4,2,4,2,1,2,2,2,2,1,2,1,3,1,3,3,3,3,3,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Rottenstrich|VanLange|Inbar|Alter|Ross.Slate1|Graham|Bauer|Huang|Miyamoto|Anderson|Kay|Hauser,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Mood,11,Global,all,TRUE +7097,0.0169538468473123,Low,Slate_1_Deutsch__Austria_Revised_Version_2_fady_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,6,5,5,1,1,5,3,1,1,3,4,1,1,4,1,4,1,1,4,5,3,1,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Inbar|Bauer|VanLange|Miyamoto|Rottenstrich|Graham|Alter|Hauser|Huang|Kay|Critcher|Anderson,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE +7098,-0.753207394919508,Low,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,6,3,1,4,1,1,4,3,1,1,3,1,1,1,2,1,3,1,2,1,4,1,1,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Critcher|Huang|Bauer|Alter|Ross.Slate1|Rottenstrich|Graham|Inbar|VanLange|Hauser|Anderson|Kay,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),12,Global,all,TRUE +7099,-0.923235630652563,Low,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,6,6,3,3,1,1,4,1,1,1,1,1,1,1,1,1,4,1,1,1,1,1,1,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Hauser|Inbar|Miyamoto|Ross.Slate1|Kay|Critcher|Huang|VanLange|Graham|Anderson|Rottenstrich|Alter,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),11,Global,all,TRUE +7100,0.57648285710663,Low,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,7,6,6,6,7,3,4,2,2,3,1,2,1,2,2,3,3,3,2,2,3,1,2,3,2,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|VanLange|Inbar|Critcher|Graham|Miyamoto|Alter|Kay|Bauer|Hauser|Anderson|Huang|Rottenstrich,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection,11,Global,all,TRUE +7101,-1.29467382984262,Low,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,4,4,6,5,6,2,1,2,3,2,2,1,3,3,1,1,2,1,3,1,3,1,2,4,1,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|VanLange|Miyamoto|Critcher|Ross.Slate1|Alter|Inbar|Rottenstrich|Huang|Kay|Anderson|Graham|Hauser,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,11,Global,all,TRUE +7105,0.302185249206606,Low,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,4,2,2,1,2,1,2,2,1,1,3,2,1,1,2,1,3,1,1,1,2,2,1,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Kay|Rottenstrich|Miyamoto|Bauer|Huang|Critcher|Alter|Inbar|Anderson|Hauser|VanLange|Ross.Slate1,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing,10,Global,all,TRUE +7109,0.778286202312065,Low,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,7,6,6,3,1,1,4,1,1,1,1,1,1,1,1,1,2,1,1,2,1,1,1,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Inbar|Hauser|Miyamoto|VanLange|Alter|Ross.Slate1|Anderson|Critcher|Bauer|Kay|Huang|Graham,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood,8,Global,all,TRUE +7110,0.227712656786215,Low,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,6,6,2,2,2,3,4,1,1,2,1,3,2,1,2,1,1,2,3,2,2,3,1,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|VanLange|Huang|Alter|Critcher|Hauser|Kay|Miyamoto|Inbar|Ross.Slate1|Graham|Rottenstrich|Anderson,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,13,Global,all,TRUE +7111,0.0808860265568677,Low,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,5,1,5,1,2,1,1,5,1,3,1,1,5,1,2,4,1,1,1,1,1,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Rottenstrich|Alter|Bauer|VanLange|Graham|Kay|Anderson|Hauser|Miyamoto|Ross.Slate1|Critcher|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five,8,Global,all,TRUE +7112,0.0670469139892968,Low,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,7,6,5,2,5,2,3,1,1,4,3,3,1,1,2,1,2,3,3,1,2,3,1,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Graham|Kay|VanLange|Alter|Rottenstrich|Critcher|Huang|Miyamoto|Bauer|Inbar|Anderson|Hauser,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE,12,Global,all,TRUE +7113,-0.0272020056466686,Low,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,6,3,4,5,3,3,4,3,1,3,4,2,1,1,4,1,1,1,2,3,1,5,1,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Rottenstrich|Huang|Graham|Critcher|Hauser|Miyamoto|Inbar|VanLange|Bauer|Ross.Slate1|Anderson|Kay,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing,12,Global,all,TRUE +7114,-0.725922551532799,Low,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,7,6,3,2,1,3,3,1,1,4,4,1,1,4,1,3,1,1,2,4,4,1,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Ross.Slate1|Miyamoto|Bauer|VanLange|Huang|Graham|Alter|Critcher|Rottenstrich|Kay|Hauser|Anderson,ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five,13,Global,all,TRUE +7117,-0.168765252747715,Low,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,2,3,1,3,1,2,3,2,2,1,1,2,2,2,3,1,3,1,2,1,1,1,1,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Ross.Slate1|VanLange|Hauser|Inbar|Alter|Graham|Anderson|Miyamoto|Kay|Bauer|Huang|Critcher,ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection,8,Global,all,TRUE +7120,-0.370428373067514,Low,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,5,3,1,1,3,2,1,1,2,2,1,1,4,1,3,1,1,4,4,2,1,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Rottenstrich|Critcher|Bauer|VanLange|Graham|Kay|Ross.Slate1|Hauser|Anderson|Inbar|Alter|Miyamoto,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE,10,Global,all,TRUE +7121,0.282155765128234,Low,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,2,5,4,5,3,3,3,2,3,1,1,2,1,2,1,1,2,1,4,1,2,1,3,1,1,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Huang|Inbar|Graham|Bauer|Ross.Slate1|Anderson|Critcher|Alter|VanLange|Hauser|Kay|Miyamoto,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,7,Global,all,TRUE +7122,0.784083192074432,Low,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,5,6,3,4,1,3,4,2,2,1,2,3,3,4,2,1,4,1,1,1,3,2,4,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Hauser|Huang|Inbar|Miyamoto|VanLange|Rottenstrich|Kay|Critcher|Anderson|Ross.Slate1|Bauer|Alter,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +7123,0.534838940972518,Low,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,6,5,1,2,5,4,1,1,2,4,2,2,5,1,4,2,2,4,5,4,1,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Ross.Slate1|Alter|Inbar|Hauser|VanLange|Graham|Bauer|Kay|Rottenstrich|Anderson|Miyamoto|Critcher,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Mood,11,Global,all,TRUE +7124,-1.09511561768002,Low,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,4,6,6,5,7,4,1,1,4,3,1,1,2,3,1,1,3,1,3,1,1,1,3,1,1,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Alter|Huang|Rottenstrich|Critcher|VanLange|Bauer|Ross.Slate1|Hauser|Graham|Anderson|Miyamoto|Inbar,ID: Mood|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,11,Global,all,TRUE +7126,0.294016547970004,Low,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,4,3,6,3,3,3,3,1,2,1,1,1,1,1,1,1,2,1,3,1,1,1,1,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|VanLange|Kay|Huang|Miyamoto|Hauser|Inbar|Bauer|Anderson|Rottenstrich|Graham|Critcher|Ross.Slate1,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),9,Global,all,TRUE +7127,0.46286463845776,Low,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,2,2,2,2,3,1,2,1,2,2,1,3,1,3,2,3,1,3,1,1,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Rottenstrich|Miyamoto|Graham|Critcher|Hauser|Inbar|Anderson|VanLange|Huang|Kay|Alter|Ross.Slate1,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,8,Global,all,TRUE +7128,-0.675829484390815,Low,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,7,5,1,1,1,1,1,1,1,1,3,1,1,3,1,1,1,1,1,1,1,1,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Inbar|VanLange|Bauer|Kay|Anderson|Graham|Rottenstrich|Ross.Slate1|Miyamoto|Critcher|Huang|Hauser,ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +7129,-1.19291416856492,Low,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,7,3,5,4,1,1,5,3,1,1,3,3,1,1,4,1,4,1,1,3,4,3,1,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Miyamoto|Alter|Critcher|Anderson|Ross.Slate1|Rottenstrich|Kay|Hauser|Graham|VanLange|Huang|Bauer,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,5,Global,all,TRUE +7133,1.06642292277966,Low,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,7,6,5,5,1,1,4,4,1,1,4,5,1,1,5,1,4,1,1,4,5,4,1,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Miyamoto|Ross.Slate1|Graham|Hauser|Rottenstrich|VanLange|Kay|Bauer|Alter|Critcher|Inbar|Anderson,ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,13,Global,all,TRUE +7136,0.4823741623563,Low,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,6,3,2,1,1,3,1,1,1,2,4,1,1,4,1,2,1,2,4,3,3,1,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Alter|Anderson|Miyamoto|Ross.Slate1|Bauer|Kay|Critcher|Graham|Hauser|VanLange|Rottenstrich|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood,3,Global,all,TRUE +7139,-0.913746559285027,Low,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,6,6,6,2,1,1,3,1,1,1,1,3,1,1,3,1,3,1,1,1,3,1,1,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Bauer|Miyamoto|Inbar|Critcher|Rottenstrich|Graham|Huang|Kay|Anderson|Hauser|VanLange|Ross.Slate1,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,10,Global,all,TRUE +7144,0.537337230878151,Low,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,3,3,1,2,3,3,1,1,1,3,1,2,1,1,2,1,2,3,2,1,1,1,3,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Huang|Ross.Slate1|Anderson|Inbar|Kay|Bauer|Hauser|VanLange|Rottenstrich|Critcher|Graham|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE,4,Global,all,TRUE +7146,0.742565854371719,Low,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,7,7,1,2,3,2,1,2,3,3,3,1,2,3,2,3,3,2,3,2,3,2,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Bauer|Alter|Kay|Rottenstrich|Miyamoto|Huang|Ross.Slate1|Anderson|VanLange|Critcher|Graham|Inbar,ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,9,Global,all,TRUE +7150,-0.376885547895349,Low,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,6,6,5,4,2,3,5,3,1,2,2,4,1,1,3,1,4,2,2,3,4,4,1,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Ross.Slate1|Rottenstrich|Kay|Bauer|VanLange|Hauser|Graham|Inbar|Anderson|Huang|Miyamoto|Alter,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection,10,Global,all,TRUE +7152,0.0255295762865834,Low,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,3,2,2,1,3,2,1,1,2,2,2,2,3,1,2,1,1,1,2,1,1,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Huang|Anderson|Graham|Bauer|Alter|Inbar|Ross.Slate1|Rottenstrich|Kay|VanLange|Critcher|Miyamoto,ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),3,Global,all,TRUE +7153,-0.785631268473718,Low,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,4,4,1,1,3,3,1,1,4,4,1,1,4,1,3,1,2,4,5,3,2,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|VanLange|Bauer|Graham|Alter|Kay|Huang|Hauser|Anderson|Inbar|Ross.Slate1|Critcher|Rottenstrich,ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Cognitive reflection,9,Global,all,TRUE +7154,0.474205461119698,Low,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,5,3,3,1,2,4,4,2,1,3,3,2,1,4,1,4,2,1,3,3,3,2,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Alter|Huang|Kay|Ross.Slate1|Miyamoto|Bauer|Critcher|Rottenstrich|Hauser|Graham|Anderson|VanLange,ID: Cognitive reflection|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Global self-esteem SISE,12,Global,all,TRUE +7156,-0.738567872400835,Low,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,6,3,1,1,4,2,1,1,3,2,1,1,3,1,4,1,2,1,3,1,1,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Graham|Inbar|Rottenstrich|Bauer|Huang|VanLange|Anderson|Kay|Hauser|Ross.Slate1|Miyamoto|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five,8,Global,all,TRUE +7158,0.0280278661922164,Low,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,7,6,3,2,2,3,3,1,2,3,3,1,1,4,1,3,1,1,3,3,4,1,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Critcher|Huang|VanLange|Anderson|Graham|Hauser|Rottenstrich|Kay|Inbar|Miyamoto|Bauer|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood,5,Global,all,TRUE +7161,0.424379197294748,Low,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,4,7,5,2,1,5,3,1,1,3,4,2,1,5,1,5,1,1,3,5,1,1,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Miyamoto|Rottenstrich|Ross.Slate1|Bauer|Critcher|VanLange|Graham|Alter|Kay|Anderson|Inbar|Huang,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE,11,Global,all,TRUE +7164,0.639361470002286,Low,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,6,5,5,2,2,1,4,3,1,3,1,2,2,1,3,1,3,1,2,2,3,3,1,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Huang|Alter|Graham|Rottenstrich|Hauser|VanLange|Kay|Critcher|Ross.Slate1|Bauer|Anderson|Miyamoto,ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,12,Global,all,TRUE +7165,-0.629301920422599,Low,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,3,6,3,2,1,1,2,1,1,1,1,1,1,1,1,1,1,2,2,1,2,1,1,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Anderson|Hauser|Rottenstrich|Alter|Ross.Slate1|Kay|Graham|Critcher|Miyamoto|Bauer|Inbar|Huang,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,2,Global,all,TRUE +7166,0.404869673396208,Low,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,2,4,4,4,2,3,1,1,3,1,1,2,3,2,1,1,2,1,2,1,1,2,2,1,1,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Inbar|Miyamoto|Anderson|VanLange|Hauser|Huang|Rottenstrich|Critcher|Bauer|Kay|Graham|Ross.Slate1,ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE,4,Global,all,TRUE +7167,0.182910265681002,Low,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,6,4,1,1,4,3,1,1,3,4,1,1,4,1,5,1,1,3,4,3,1,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|VanLange|Bauer|Critcher|Graham|Hauser|Miyamoto|Ross.Slate1|Rottenstrich|Kay|Alter|Inbar|Huang,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.),1,Global,all,TRUE +7168,1.20732598481524,Low,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,5,7,4,2,2,4,3,1,2,4,5,1,1,5,1,3,1,1,1,4,4,1,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Critcher|Kay|Ross.Slate1|Hauser|VanLange|Rottenstrich|Graham|Alter|Bauer|Miyamoto|Anderson|Inbar,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five,12,Global,all,TRUE +7169,-0.0190333044100668,Low,Slate_1_Deutsch__Austria_Revised_Version_2_r_manuallyrecode_vanp21_text.csv,grazvienna,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,6,6,4,1,3,4,4,1,1,2,2,1,1,2,1,3,1,1,4,2,4,1,grazvienna,grazvienna,grazvienna,Austria,University of Graz AND the Universty of Vienna,German,1,illegal,No,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Graham|Anderson|Inbar|Critcher|Alter|Hauser|VanLange|Rottenstrich|Kay|Ross.Slate1|Miyamoto|Huang,ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,3,Global,all,TRUE +7172,0.77591449083783,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,,,,,,,,,,,,,,,,,,,,,,,,,,5,7,2,7,5,5,2,2,4,4,1,1,5,4,4,2,4,1,5,1,2,4,5,2,2,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Critcher|Graham|Ross.Slate1|Miyamoto|Huang|Inbar|Rottenstrich|Alter|Anderson|Hauser|Kay|VanLange,ID: Mood|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing,10,Global,all,TRUE +7173,0.454429133904124,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,7,7,6,4,2,2,4,3,1,2,3,3,3,1,4,1,4,2,1,3,4,3,1,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Inbar|Huang|Bauer|Alter|VanLange|Hauser|Graham|Critcher|Anderson|Ross.Slate1|Kay|Rottenstrich,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),10,Global,all,TRUE +7174,0.211108450995977,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,7,6,5,2,2,4,5,1,1,3,4,2,1,5,1,4,1,2,4,5,4,1,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Miyamoto|VanLange|Bauer|Graham|Anderson|Hauser|Kay|Inbar|Huang|Critcher|Ross.Slate1|Alter,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE,6,Global,all,TRUE +7177,0.291251454747337,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,6,3,4,1,2,3,1,1,1,2,2,1,1,5,1,3,1,1,4,3,3,2,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Huang|Critcher|Miyamoto|Bauer|Anderson|Kay|Rottenstrich|Alter|VanLange|Ross.Slate1|Graham|Inbar,ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,6,Global,all,TRUE +7182,-0.766779704170045,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,,,,,,,,,,,,,,,,,,,,,,,,,,6,3,5,6,5,2,1,3,2,1,1,2,1,2,1,3,2,1,2,1,2,1,3,2,1,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Inbar|Hauser|Huang|Rottenstrich|Kay|Critcher|Anderson|Miyamoto|VanLange|Bauer|Ross.Slate1|Alter,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five,8,Global,all,TRUE +7185,0.0866830163192358,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,3,1,1,3,3,2,1,2,3,1,1,3,1,2,1,4,3,1,4,1,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Alter|Ross.Slate1|Rottenstrich|Anderson|Miyamoto|Bauer|Critcher|Hauser|Kay|VanLange|Inbar|Graham,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection,5,Global,all,TRUE +7186,-0.645779547781438,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,3,3,2,3,4,1,1,1,2,3,2,1,4,1,2,1,2,2,3,2,2,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Huang|Inbar|Miyamoto|VanLange|Anderson|Graham|Bauer|Hauser|Ross.Slate1|Alter|Critcher|Rottenstrich,ID: Global self-esteem SISE|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),6,Global,all,TRUE +7187,0.814666735317876,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,3,4,1,1,4,3,1,1,2,3,1,1,3,1,3,1,1,3,3,4,1,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Huang|Miyamoto|Kay|Bauer|Ross.Slate1|Rottenstrich|VanLange|Inbar|Graham|Hauser|Alter|Critcher|Anderson,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,13,Global,all,TRUE +7188,0.512957705599744,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,5,6,5,4,1,4,4,3,1,1,3,3,1,1,4,1,3,1,1,3,3,4,2,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Inbar|VanLange|Alter|Miyamoto|Kay|Bauer|Anderson|Rottenstrich|Ross.Slate1|Hauser|Huang|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five,8,Global,all,TRUE +7190,-0.435273894705335,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,,,,,,,,,,,,,,,,,,,,,,,,,,3,5,5,5,3,4,1,2,4,1,1,1,3,2,1,1,2,1,3,1,3,2,3,3,2,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Inbar|Kay|Bauer|Huang|Anderson|Rottenstrich|Critcher|Graham|Hauser|Alter|VanLange|Miyamoto|Ross.Slate1,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Mood|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),5,Global,all,TRUE +7191,0.449025525890189,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,6,6,4,1,1,3,4,1,1,3,3,2,1,4,1,4,1,1,3,1,4,1,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Anderson|Hauser|Miyamoto|Huang|Alter|Rottenstrich|Critcher|Inbar|Ross.Slate1|Kay|Graham|VanLange,ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing,2,Global,all,TRUE +7192,0.853418979797923,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,5,3,4,4,2,2,4,3,2,3,2,3,2,2,3,2,2,2,2,3,3,2,2,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Bauer|Ross.Slate1|Critcher|Inbar|Alter|VanLange|Miyamoto|Rottenstrich|Hauser|Kay|Graham|Huang,ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection,1,Global,all,TRUE +7196,-0.0357640886317036,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,7,6,3,1,1,4,1,1,1,1,2,1,1,2,1,3,1,2,1,2,1,1,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Bauer|Rottenstrich|Alter|Miyamoto|Inbar|Hauser|VanLange|Ross.Slate1|Huang|Graham|Critcher|Anderson|Kay,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,12,Global,all,TRUE +7201,-0.203951994053993,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,5,2,4,2,1,3,2,1,1,3,3,1,1,4,1,3,1,2,3,4,1,1,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Kay|Miyamoto|Graham|Bauer|Inbar|Critcher|Hauser|VanLange|Huang|Ross.Slate1|Anderson|Rottenstrich,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Subjective wellbeing,12,Global,all,TRUE +7205,0.280177435402433,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,6,4,1,2,4,3,2,1,3,3,2,2,5,2,4,1,3,1,4,2,1,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Hauser|Bauer|Anderson|Miyamoto|Graham|Rottenstrich|Ross.Slate1|Alter|Inbar|VanLange|Huang|Kay,ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.),4,Global,all,TRUE +7206,0.32961031747895,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,7,6,3,1,1,3,2,1,1,3,4,1,1,4,1,3,1,1,2,2,1,1,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Huang|Anderson|Alter|VanLange|Inbar|Kay|Critcher|Miyamoto|Graham|Hauser|Rottenstrich|Bauer,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection,3,Global,all,TRUE +7209,-0.514630134959829,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,6,6,7,2,3,1,4,1,1,2,1,3,1,1,4,1,2,1,2,1,1,1,1,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Alter|Critcher|Kay|Huang|Miyamoto|VanLange|Bauer|Ross.Slate1|Anderson|Graham|Rottenstrich|Inbar,ID: Global self-esteem SISE|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection,10,Global,all,TRUE +7212,0.399466065382272,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,,,,,,,,,,,,,,,,,,,,,,,,,,4,5,6,5,3,3,1,2,3,1,1,1,1,1,1,1,3,2,2,1,2,1,2,2,1,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|VanLange|Ross.Slate1|Anderson|Alter|Huang|Graham|Rottenstrich|Inbar|Critcher|Hauser|Miyamoto|Bauer,ID: Global self-esteem SISE|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: TIPI for Big-Five,4,Global,all,TRUE +7214,-0.315732107862697,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,6,2,1,1,3,1,1,1,2,3,1,1,2,1,3,1,1,2,2,3,1,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Kay|Miyamoto|Inbar|Rottenstrich|VanLange|Huang|Ross.Slate1|Critcher|Bauer|Graham|Alter|Hauser,ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing,1,Global,all,TRUE +7219,-0.207250693910728,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,5,4,2,2,3,3,1,2,3,3,3,1,2,1,3,1,1,4,3,3,2,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Anderson|Miyamoto|Huang|Ross.Slate1|Graham|Critcher|Alter|Kay|Inbar|Bauer|VanLange|Hauser,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Mood,2,Global,all,TRUE +7220,0.246702220504923,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,,,,,,,,,,,,,,,,,,,,,,,,,,2,1,2,6,2,3,2,1,3,1,1,1,2,3,1,1,2,1,4,1,1,1,2,1,1,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Hauser|Anderson|Ross.Slate1|VanLange|Alter|Graham|Huang|Inbar|Bauer|Rottenstrich|Kay|Miyamoto|Critcher,ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Mood|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),2,Global,all,TRUE +7221,0.825473951345746,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,7,6,4,1,2,3,4,3,1,3,3,2,3,4,1,3,2,2,4,3,3,2,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Graham|Ross.Slate1|Huang|Inbar|Hauser|Anderson|Miyamoto|Critcher|Kay|Bauer|VanLange|Alter,ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing,7,Global,all,TRUE +7222,0.313399493437145,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,7,6,5,1,5,3,3,1,2,4,2,1,1,5,1,4,1,1,4,5,4,1,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Alter|Huang|Kay|Ross.Slate1|Miyamoto|Anderson|VanLange|Graham|Inbar|Critcher|Bauer|Rottenstrich|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood,6,Global,all,TRUE +7224,0.244457087462087,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,5,6,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Graham|Kay|Critcher|Inbar|Alter|Bauer|Huang|Hauser|Rottenstrich|Miyamoto|Anderson|VanLange,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Global self-esteem SISE,12,Global,all,TRUE +7225,-0.370821754815947,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,6,4,6,2,1,1,4,1,1,1,1,1,1,1,1,1,3,1,3,1,2,1,1,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Graham|Bauer|Hauser|Critcher|Alter|Inbar|Ross.Slate1|VanLange|Rottenstrich|Anderson|Kay|Huang,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: TIPI for Big-Five,11,Global,all,TRUE +7226,-0.209889208701996,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,6,4,5,5,1,1,4,3,1,1,3,4,2,2,4,1,4,1,2,4,4,3,1,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Inbar|Alter|Graham|Bauer|Miyamoto|Anderson|Critcher|Kay|Hauser|Huang|VanLange|Ross.Slate1,ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: Subjective wellbeing,7,Global,all,TRUE +7227,0.14968820764629,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,,,,,,,,,,,,,,,,,,,,,,,,,,7,7,7,5,7,4,1,2,5,5,1,1,3,4,1,2,4,1,4,1,5,3,2,3,1,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Huang|Critcher|Graham|Ross.Slate1|Kay|Hauser|Inbar|VanLange|Anderson|Bauer|Alter|Rottenstrich,ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,10,Global,all,TRUE +7228,0.338172400463985,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,6,6,5,2,1,1,2,2,1,1,4,2,1,1,2,1,2,1,1,2,1,3,1,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|VanLange|Critcher|Kay|Miyamoto|Inbar|Ross.Slate1|Huang|Alter|Rottenstrich|Graham|Hauser|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Subjective wellbeing|ID: Global self-esteem SISE,1,Global,all,TRUE +7231,-0.387832988808855,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,5,5,4,5,2,3,5,3,3,4,1,4,3,1,5,2,2,1,4,4,4,3,2,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Bauer|Critcher|Ross.Slate1|Inbar|Kay|Hauser|VanLange|Anderson|Huang|Alter|Miyamoto|Rottenstrich,ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,9,Global,all,TRUE +7232,-0.997048038007487,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,,,,,,,,,,,,,,,,,,,,,,,,,,5,3,6,5,6,3,2,1,3,1,1,1,1,2,1,1,2,1,3,1,1,1,3,1,1,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Kay|Graham|Rottenstrich|Hauser|Alter|Huang|Ross.Slate1|Inbar|Miyamoto|Critcher|Bauer|Anderson,ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood,13,Global,all,TRUE +7233,-0.23282401088867,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,,,,,,,,,,,,,,,,,,,,,,,,,,3,6,5,5,3,3,3,4,2,1,4,3,2,2,4,4,4,3,2,1,4,1,2,1,4,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Critcher|Alter|Ross.Slate1|Graham|Inbar|VanLange|Huang|Rottenstrich|Miyamoto|Bauer|Kay|Hauser,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Global self-esteem SISE,1,Global,all,TRUE +7235,-0.24678970188764,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,5,3,2,3,4,1,1,2,3,4,2,1,4,1,3,1,2,1,2,4,2,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Hauser|Critcher|Miyamoto|Kay|Anderson|Alter|Ross.Slate1|Rottenstrich|Bauer|Inbar|Graham|Huang,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood,6,Global,all,TRUE +7236,-0.0390627884884386,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,6,3,2,1,2,2,1,1,3,4,2,1,3,1,3,1,2,1,4,1,1,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Bauer|Rottenstrich|Huang|Inbar|Kay|Ross.Slate1|Alter|Hauser|Miyamoto|Graham|VanLange|Critcher,ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,1,Global,all,TRUE +7239,-0.43436055277707,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,5,5,4,1,3,4,2,1,1,1,1,2,1,3,1,3,1,2,1,3,1,1,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Critcher|Kay|Bauer|Rottenstrich|VanLange|Huang|Inbar|Hauser|Graham|Anderson|Ross.Slate1|Miyamoto|Alter,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Mood|ID: TIPI for Big-Five,10,Global,all,TRUE +7240,1.00842795771811,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,,,,,,,,,,,,,,,,,,,,,,,,,,5,4,6,6,6,3,1,2,3,1,1,1,2,2,1,1,1,1,1,1,2,1,3,1,1,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Graham|Anderson|Inbar|VanLange|Huang|Critcher|Bauer|Rottenstrich|Kay|Alter|Ross.Slate1|Miyamoto|Hauser,ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE|ID: Mood,2,Global,all,TRUE +7243,0.128200354021949,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,,,,,,,,,,,,,,,,,,,,,,,,,,4,2,4,5,5,4,3,4,3,2,4,5,3,2,3,1,4,2,3,4,4,1,3,3,2,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",VanLange|Inbar|Kay|Ross.Slate1|Critcher|Bauer|Huang|Rottenstrich|Anderson|Hauser|Alter|Graham|Miyamoto,ID: Subjective wellbeing|ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Mood|ID: TIPI for Big-Five,9,Global,all,TRUE +7244,0.122403364259581,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,7,6,3,2,1,3,1,1,1,2,1,1,1,3,1,3,1,2,1,3,1,1,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Graham|VanLange|Ross.Slate1|Alter|Hauser|Huang|Kay|Critcher|Bauer|Inbar|Miyamoto|Rottenstrich,ID: Mood|ID: Subjective wellbeing|ID: Cognitive reflection|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Global self-esteem SISE,1,Global,all,TRUE +7245,-0.659225278600577,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,7,1,1,3,1,3,1,1,1,1,1,1,1,1,1,4,1,1,1,1,1,1,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|VanLange|Kay|Critcher|Alter|Ross.Slate1|Inbar|Hauser|Graham|Bauer|Huang|Anderson|Miyamoto,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood,12,Global,all,TRUE +7247,-0.417616122101197,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,6,6,7,4,1,1,4,2,1,1,2,3,1,1,3,1,3,1,2,2,2,3,1,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|VanLange|Ross.Slate1|Hauser|Critcher|Kay|Rottenstrich|Bauer|Huang|Inbar|Graham|Alter|Anderson,ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,13,Global,all,TRUE +7248,0.258296200029659,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,7,6,5,1,1,4,4,1,1,4,4,1,1,4,1,4,1,2,5,4,3,2,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Inbar|VanLange|Kay|Miyamoto|Huang|Anderson|Graham|Critcher|Bauer|Hauser|Alter|Ross.Slate1,ID: Mood|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Global self-esteem SISE,7,Global,all,TRUE +7251,-0.6323338169623,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,,,,,,,,,,,,,,,,,,,,,,,,,,6,5,5,6,5,3,1,2,2,1,1,1,1,2,1,1,2,1,2,1,1,1,2,1,1,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Ross.Slate1|Huang|Bauer|Hauser|Kay|Graham|Anderson|Miyamoto|Alter|Inbar|VanLange|Rottenstrich|Critcher,ID: Mood|ID: Global self-esteem SISE|ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Cognitive reflection|ID: Disgust scale (slate 1 only -- for Inbar et al.),7,Global,all,TRUE +7253,-0.583165512732218,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,7,4,3,1,1,3,3,1,1,2,2,1,1,1,1,2,1,1,4,3,4,1,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Alter|Inbar|Graham|Critcher|Hauser|VanLange|Ross.Slate1|Rottenstrich|Huang|Miyamoto|Kay|Bauer,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Mood|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,1,Global,all,TRUE +7254,0.590195391242802,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,,,,,,,,,,,,,,,,,,,,,,,,,,6,7,7,6,6,5,1,2,4,4,1,1,4,4,2,1,3,1,4,1,1,2,3,3,1,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Kay|Bauer|Miyamoto|Ross.Slate1|Inbar|Anderson|Graham|Huang|Hauser|Rottenstrich|VanLange|Alter|Critcher,ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Cognitive reflection|ID: Global self-esteem SISE|ID: Mood,6,Global,all,TRUE +7257,0.703813609891673,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,4,5,3,2,2,1,3,1,1,1,3,2,1,1,1,1,1,2,1,1,2,1,1,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Kay|Rottenstrich|Miyamoto|Graham|VanLange|Inbar|Ross.Slate1|Hauser|Huang|Alter|Critcher|Bauer,ID: Global self-esteem SISE|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Mood|ID: Cognitive reflection,1,Global,all,TRUE +7258,0.340810915255253,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,7,7,7,4,1,1,3,2,1,1,2,3,1,1,5,1,3,1,1,3,3,4,1,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Anderson|Graham|Alter|Bauer|Inbar|Hauser|Kay|Rottenstrich|VanLange|Miyamoto|Critcher|Huang|Ross.Slate1,ID: Mood|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: TIPI for Big-Five|ID: Global self-esteem SISE|ID: Subjective wellbeing|ID: Cognitive reflection,1,Global,all,TRUE +7259,-0.119065567354164,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,,,,,,,,,,,,,,,,,,,,,,,,,,6,6,6,6,5,4,1,1,4,1,2,1,4,4,1,2,1,2,4,1,1,4,3,4,1,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Rottenstrich|Huang|Critcher|Alter|Graham|Inbar|Hauser|Ross.Slate1|Kay|Anderson|Miyamoto|VanLange|Bauer,ID: TIPI for Big-Five|ID: Subjective wellbeing|ID: Disgust scale (slate 1 only -- for Inbar et al.)|ID: Cognitive reflection|ID: Mood|ID: Global self-esteem SISE,10,Global,all,TRUE +7261,0.607066400350074,Low,Slate_1_Deutsch_germany_Revised_Version_2__potsdam_r_manuallyrecode_vanp21_text.csv,potsdam,,,,,,,,,,,,,,,,,,,,,,,,,,5,6,6,6,6,2,2,1,3,3,1,1,4,4,2,1,4,1,2,1,1,2,3,2,1,potsdam,potsdam,potsdam,Germany,"University of Potsdam, Germany",German,1,illegal,Yes,Online (at home),Unable to verify (completed online) but likely mostly computers,"No, the whole study was on the computer (except maybe consent/debriefing)",Miyamoto|Critcher|Kay|VanLange|Inbar|Huang|Alter|Graham|Ross.Slate1|Rottenstrich|Bauer|Hauser|Anderson,ID: Global self-esteem SISE|ID: Cognitive reflection|ID: Mood|ID: Subjective wellbeing|ID: TIPI for Big-Five|ID: Disgust scale (slate 1 only -- for Inbar et al.),13,Global,all,TRUE diff --git a/pan/simple_difficulty.csv b/pan/simple_difficulty.csv new file mode 100644 index 0000000000000000000000000000000000000000..4d30130bd5e636ab4d3ef2288104172f67869d49 --- /dev/null +++ b/pan/simple_difficulty.csv @@ -0,0 +1,1001 @@ +response,rt,difficulty +1.0,1.06,hard +1.0,1.052,hard +1.0,1.398,hard +0.0,0.481,hard +1.0,1.798,hard +1.0,0.947,hard +1.0,2.093,hard +1.0,0.999,hard +0.0,1.019,hard +0.0,0.852,hard +1.0,0.907,hard +1.0,1.622,hard +1.0,4.679,hard +0.0,1.448,hard +0.0,1.371,hard +1.0,2.045,hard +0.0,0.847,hard +1.0,0.598,hard +0.0,1.437,hard +1.0,3.056,hard +1.0,1.881,hard +1.0,1.597,hard +1.0,3.643,hard +0.0,1.975,hard +1.0,1.442,hard +0.0,0.821999999998,hard +1.0,2.269,hard +1.0,3.653,hard +1.0,1.01,hard +1.0,2.426,hard +1.0,0.698000000002,hard +1.0,1.37,hard +1.0,1.174,hard +0.0,1.325,hard +1.0,1.127,hard +0.0,0.933999999998,hard +1.0,1.771,hard +1.0,1.422,hard +1.0,1.745,hard +1.0,1.429,hard +1.0,0.476000000002,hard +0.0,1.283,hard +1.0,2.447,hard +1.0,0.476000000002,hard +0.0,0.826999999998,hard +1.0,2.807,hard +0.0,0.479999999998,hard +0.0,1.421,hard +1.0,0.584000000002,hard +0.0,0.700999999998,hard +1.0,0.530000000002,hard +1.0,0.559000000002,hard +0.0,0.797999999998,hard +1.0,0.465000000002,hard +1.0,1.155,hard +1.0,0.548000000002,hard +0.0,3.775,hard +0.0,0.721999999998,hard +0.0,0.760999999998,hard +1.0,1.979,hard +0.0,1.333,hard +1.0,0.541000000002,hard +0.0,2.272,hard +0.0,0.607999999998,hard +1.0,1.266,hard +1.0,3.439,hard +1.0,0.600000000002,hard +0.0,0.568999999998,hard +1.0,2.165,hard +1.0,1.311,hard +0.0,0.675999999998,hard +0.0,0.699999999998,hard +1.0,0.582000000002,hard +1.0,3.141,hard +1.0,3.125,hard +1.0,0.806000000002,hard +1.0,2.37,hard +1.0,1.459,hard +0.0,1.304,hard +0.0,1.47,hard +1.0,2.782,hard +0.0,0.717999999998,hard +1.0,0.698000000002,hard +1.0,1.371,hard +1.0,0.707000000002,hard +1.0,0.887000000002,hard +1.0,1.123,hard +0.0,0.950999999998,hard +1.0,0.672000000002,hard +1.0,0.456000000002,hard +1.0,0.981000000002,hard +0.0,1.021,hard +1.0,0.482000000002,hard +0.0,1.288,hard +1.0,0.497000000002,hard +0.0,1.462,hard +1.0,0.853000000002,hard +0.0,0.925999999998,hard +1.0,0.550000000002,hard +0.0,1.317,hard +1.0,1.214,hard +1.0,1.746,hard +0.0,4.786,hard +1.0,1.008,hard +1.0,0.996000000002,hard +1.0,0.507000000002,hard +1.0,0.793000000002,hard +1.0,0.467000000002,hard +1.0,0.510000000002,hard +1.0,0.892000000002,hard +1.0,0.866000000002,hard +0.0,0.410999999998,hard +0.0,0.864999999998,hard +1.0,1.688,hard +0.0,1.309,hard +0.0,1.507,hard +1.0,0.561000000002,hard +0.0,1.155,hard +1.0,1.023,hard +1.0,0.885000000002,hard +0.0,1.654,hard +1.0,0.774000000002,hard +1.0,0.565000000002,hard +1.0,1.861,hard +1.0,0.671000000002,hard +1.0,0.548000000002,hard +1.0,0.533000000002,hard +1.0,2.673,hard +1.0,0.828000000002,hard +1.0,1.787,hard +1.0,0.467000000002,hard +1.0,0.930000000002,hard +1.0,3.733,hard +0.0,1.379,hard +1.0,0.801000000002,hard +1.0,0.884000000002,hard +0.0,1.117,hard +1.0,1.204,hard +1.0,0.988000000002,hard +0.0,0.575999999998,hard +1.0,2.346,hard +1.0,0.519000000002,hard +1.0,0.845000000002,hard +0.0,0.484999999998,hard +1.0,1.22,hard +0.0,0.486999999998,hard +0.0,1.89,hard +1.0,0.811000000002,hard +1.0,0.575000000002,hard +1.0,2.661,hard +1.0,0.528000000002,hard +1.0,1.491,hard +0.0,1.053,hard +1.0,0.752000000002,hard +1.0,0.557000000002,hard +1.0,0.529000000002,hard +0.0,0.542999999998,hard +0.0,0.745999999998,hard +0.0,1.392,hard +1.0,0.719000000002,hard +1.0,1.562,hard +1.0,0.472000000002,hard +1.0,0.713000000002,hard +1.0,1.73,hard +1.0,1.521,hard +0.0,1.943,hard +1.0,1.803,hard +1.0,0.912000000002,hard +1.0,1.891,hard +1.0,0.689000000002,hard +1.0,0.612000000002,hard +0.0,1.343,hard +1.0,0.687000000002,hard +1.0,1.048,hard +1.0,0.696000000002,hard +1.0,1.237,hard +1.0,0.698000000002,hard +1.0,0.859000000002,hard +0.0,1.244,hard +1.0,0.551000000002,hard +1.0,0.980000000002,hard +1.0,0.365000000002,hard +1.0,0.460000000002,hard +1.0,2.219,hard +1.0,0.842000000002,hard +1.0,1.971,hard +1.0,3.271,hard +1.0,0.642000000002,hard +1.0,1.055,hard +0.0,0.619999999998,hard +1.0,0.515000000002,hard +1.0,0.568000000002,hard +0.0,4.488,hard +1.0,0.477000000002,hard +1.0,1.745,hard +1.0,2.966,hard +1.0,0.717000000002,hard +1.0,0.706000000002,hard +0.0,1.348,hard +1.0,1.715,hard +1.0,1.635,hard +1.0,0.958000000002,hard +1.0,0.866000000002,hard +1.0,0.584000000002,hard +0.0,1.199,hard +1.0,1.411,hard +1.0,2.166,hard +1.0,0.760000000002,hard +1.0,0.978000000002,hard +0.0,1.48,hard +1.0,2.421,hard +1.0,1.097,hard +1.0,0.524000000002,hard +1.0,1.124,hard +0.0,2.309,hard +1.0,0.471000000002,hard +1.0,0.616000000002,hard +1.0,1.702,hard +1.0,1.082,hard +1.0,0.772000000002,hard +1.0,0.722000000002,hard +1.0,0.822000000002,hard +1.0,0.949000000002,hard +1.0,1.613,hard +0.0,1.049,hard +0.0,2.033,hard +1.0,2.136,hard +0.0,1.212,hard +1.0,0.699000000002,hard +1.0,1.438,hard +0.0,0.723999999998,hard +1.0,2.472,hard +0.0,0.587999999998,hard +1.0,0.981000000002,hard +1.0,0.873000000002,hard +1.0,0.963000000002,hard +1.0,1.16,hard +1.0,0.551000000002,hard +1.0,1.043,hard +1.0,0.517000000002,hard +1.0,1.418,hard +0.0,2.072,hard +1.0,1.285,hard +1.0,2.674,hard +1.0,0.758000000002,hard +1.0,0.600000000002,hard +0.0,0.620999999998,hard +1.0,0.641000000002,hard +0.0,0.377999999998,hard +1.0,0.498000000002,hard +1.0,0.739000000002,hard +1.0,1.123,hard +1.0,0.896000000002,hard +0.0,1.927,hard +1.0,1.548,hard +0.0,0.668999999998,hard +1.0,1.597,hard +1.0,0.727000000002,hard +1.0,1.035,hard +1.0,1.806,hard +1.0,1.377,hard +1.0,0.696000000002,hard +1.0,0.543000000002,hard +1.0,0.877000000002,hard +0.0,1.369,hard +1.0,0.454000000002,hard +1.0,1.711,hard +1.0,1.383,hard +1.0,1.307,hard +1.0,0.712000000002,hard +1.0,3.216,hard +0.0,0.663999999998,hard +1.0,0.834000000002,hard +1.0,1.371,hard +1.0,1.257,hard +0.0,0.606999999998,hard +1.0,1.197,hard +1.0,0.722000000002,hard +1.0,0.600000000002,hard +1.0,1.102,hard +1.0,0.917000000002,hard +0.0,1.07,hard +1.0,1.409,hard +1.0,0.457000000002,hard +1.0,0.756000000002,hard +1.0,1.198,hard +0.0,0.497999999998,hard +1.0,0.887000000002,hard +1.0,0.731000000002,hard +1.0,0.970000000002,hard +1.0,0.834000000002,hard +1.0,0.518000000002,hard +1.0,0.976000000002,hard +1.0,0.888000000002,hard +1.0,0.722000000002,hard +1.0,1.096,hard +0.0,0.766999999998,hard +1.0,3.376,hard +1.0,0.576000000002,hard +1.0,1.848,hard +0.0,1.408,hard +1.0,0.793000000002,hard +1.0,0.508000000002,hard +1.0,0.922000000002,hard +1.0,1.646,hard +0.0,1.062,hard +1.0,1.313,hard +0.0,0.607999999998,hard +1.0,0.680000000002,hard +1.0,4.851,hard +0.0,1.235,hard +1.0,0.937000000002,hard +0.0,0.655999999998,hard +1.0,0.993000000002,hard +1.0,0.994000000002,hard +0.0,1.406,hard +1.0,0.690000000002,hard +0.0,1.884,hard +0.0,1.271,hard +1.0,1.713,hard +1.0,1.754,hard +0.0,1.527,hard +1.0,0.508000000002,hard +1.0,0.760000000002,hard +1.0,0.784000000002,hard +1.0,1.486,hard +1.0,1.104,hard +1.0,0.523000000002,hard +1.0,1.304,hard +1.0,1.26,hard +1.0,0.983000000002,hard +1.0,1.193,hard +1.0,1.012,hard +0.0,1.529,hard +1.0,0.759000000002,hard +1.0,1.005,hard +1.0,0.818000000002,hard +1.0,1.373,hard +1.0,0.916000000002,hard +0.0,1.087,hard +1.0,1.001,hard +1.0,1.812,hard +1.0,0.585000000002,hard +1.0,2.48,hard +1.0,1.316,hard +1.0,0.834000000002,hard +0.0,0.576999999998,hard +1.0,0.547000000002,hard +0.0,2.22,hard +1.0,1.756,hard +1.0,0.787000000002,hard +0.0,0.989999999998,hard +0.0,3.76,hard +0.0,1.424,hard +0.0,0.498999999998,hard +1.0,1.574,hard +1.0,0.582000000002,hard +1.0,1.249,hard +1.0,0.792000000002,hard +1.0,1.307,hard +1.0,1.094,hard +0.0,1.117,hard +0.0,1.315,hard +1.0,0.756000000002,hard +1.0,1.001,hard +1.0,0.641000000002,hard +1.0,0.593000000002,hard +0.0,1.875,hard +0.0,0.831999999998,hard +1.0,0.614000000002,hard +1.0,0.722000000002,hard +0.0,0.690999999998,hard +1.0,0.900000000002,hard +0.0,0.820999999998,hard +1.0,1.581,hard +0.0,0.564999999998,hard +1.0,0.516000000002,hard +0.0,1.131,hard +1.0,0.805000000002,hard +0.0,1.763,hard +0.0,1.349,hard +1.0,0.657000000002,hard +1.0,0.885000000002,hard +1.0,0.605000000002,hard +0.0,0.692999999998,hard +1.0,2.19,hard +1.0,1.674,hard +1.0,0.412000000002,hard +1.0,1.155,hard +1.0,0.813000000002,hard +0.0,0.548999999998,hard +1.0,0.579000000002,hard +1.0,1.925,hard +0.0,0.655999999998,hard +1.0,0.987000000002,hard +1.0,0.898000000002,hard +1.0,1.342,hard +1.0,1.039,hard +1.0,1.5,hard +1.0,0.444000000002,hard +1.0,4.689,hard +1.0,0.567000000002,hard +1.0,3.272,hard +1.0,0.681000000002,hard +1.0,0.927000000002,hard +1.0,4.558,hard +1.0,1.576,hard +0.0,1.347,hard +1.0,0.968000000002,hard +1.0,0.462000000002,hard +1.0,1.121,hard +1.0,0.479000000002,hard +1.0,0.523000000002,hard +1.0,1.294,hard +1.0,1.215,hard +1.0,3.069,hard +1.0,0.667000000002,hard +1.0,0.495000000002,hard +0.0,3.94,hard +0.0,1.097,hard +0.0,0.510999999998,hard +1.0,2.227,hard +1.0,2.065,hard +1.0,2.408,hard +0.0,1.31,hard +0.0,1.358,hard +1.0,2.116,hard +1.0,0.410000000002,hard +1.0,0.806000000002,hard +1.0,4.344,hard +1.0,0.694000000002,hard +1.0,0.548000000002,hard +0.0,1.817,hard +1.0,1.224,hard +0.0,0.618999999998,hard +1.0,0.922000000002,hard +1.0,3.974,hard +1.0,0.995000000002,hard +1.0,0.865000000002,hard +0.0,1.24,hard +0.0,0.931999999998,hard +1.0,0.554000000002,hard +1.0,1.135,hard +1.0,1.012,hard +1.0,0.660000000002,hard +1.0,1.904,hard +1.0,0.498000000002,hard +1.0,1.619,hard +1.0,1.114,hard +1.0,1.209,hard +0.0,0.911999999998,hard +0.0,0.746999999998,hard +1.0,1.596,hard +0.0,3.014,hard +1.0,0.980000000002,hard +1.0,1.073,hard +1.0,2.3,hard +1.0,0.730000000002,hard +1.0,1.25,hard +0.0,0.799999999998,hard +1.0,0.927000000002,hard +1.0,0.717000000002,hard +1.0,1.102,hard +1.0,3.09,hard +1.0,1.606,hard +1.0,2.095,hard +1.0,0.689000000002,hard +1.0,1.256,hard +1.0,0.981000000002,hard +1.0,1.842,hard +1.0,1.029,hard +1.0,1.542,hard +1.0,0.895000000002,hard +1.0,0.627000000002,hard +1.0,0.470000000002,hard +1.0,0.759000000002,hard +0.0,0.632999999998,hard +1.0,0.919000000002,hard +1.0,0.926000000002,hard +0.0,1.021,hard +1.0,0.626000000002,hard +0.0,1.52,hard +1.0,0.757000000002,hard +1.0,1.212,hard +1.0,1.347,hard +1.0,1.532,hard +1.0,1.025,hard +1.0,1.382,hard +1.0,3.399,hard +1.0,1.349,hard +1.0,0.624000000002,hard +0.0,0.624999999998,hard +1.0,0.565000000002,hard +0.0,1.9,hard +1.0,0.807000000002,hard +0.0,0.676999999998,hard +1.0,1.331,hard +1.0,0.668000000002,hard +1.0,2.838,hard +0.0,2.434,hard +1.0,0.638,easy +1.0,1.807,easy +1.0,2.934,easy +1.0,0.713,easy +1.0,1.566,easy +1.0,1.195,easy +1.0,1.003,easy +1.0,0.966,easy +1.0,0.788,easy +1.0,0.553,easy +1.0,1.833,easy +1.0,1.311,easy +1.0,0.489000000002,easy +1.0,0.794000000002,easy +1.0,0.619000000002,easy +1.0,0.545000000002,easy +1.0,0.753000000002,easy +1.0,0.530000000002,easy +1.0,1.05,easy +1.0,0.653000000002,easy +1.0,0.474000000002,easy +1.0,2.478,easy +1.0,0.816000000002,easy +1.0,1.83,easy +0.0,1.246,easy +1.0,0.675000000002,easy +1.0,1.181,easy +1.0,0.528000000002,easy +1.0,0.699000000002,easy +1.0,0.767000000002,easy +1.0,1.352,easy +1.0,1.149,easy +1.0,0.810000000002,easy +1.0,1.446,easy +1.0,1.502,easy +1.0,1.089,easy +0.0,2.175,easy +0.0,1.495,easy +1.0,0.863000000002,easy +1.0,0.706000000002,easy +1.0,0.854000000002,easy +1.0,0.736000000002,easy +1.0,0.515000000002,easy +1.0,1.961,easy +0.0,1.254,easy +1.0,0.720000000002,easy +1.0,3.384,easy +1.0,0.798000000002,easy +1.0,0.892000000002,easy +1.0,1.046,easy +1.0,1.606,easy +1.0,0.770000000002,easy +1.0,0.499000000002,easy +1.0,1.378,easy +1.0,1.723,easy +1.0,1.108,easy +1.0,0.428000000002,easy +1.0,0.909000000002,easy +1.0,0.601000000002,easy +1.0,1.654,easy +1.0,0.642000000002,easy +1.0,1.747,easy +1.0,1.395,easy +1.0,1.493,easy +1.0,0.617000000002,easy +1.0,0.716000000002,easy +1.0,0.761000000002,easy +1.0,0.626000000002,easy +1.0,1.02,easy +1.0,1.834,easy +1.0,0.896000000002,easy +1.0,0.629000000002,easy +1.0,1.256,easy +1.0,0.957000000002,easy +1.0,0.541000000002,easy +1.0,1.273,easy +1.0,0.730000000002,easy +1.0,1.766,easy +1.0,0.612,easy +1.0,0.648,easy +0.0,0.806,easy +1.0,0.725,easy +1.0,1.964,easy +1.0,0.664,easy +1.0,1.141,easy +1.0,0.637,easy +1.0,0.728,easy +1.0,0.566,easy +1.0,1.738,easy +1.0,0.528000000002,easy +1.0,1.036,easy +1.0,1.333,easy +1.0,0.921000000002,easy +1.0,0.433000000002,easy +1.0,1.183,easy +1.0,0.866000000002,easy +0.0,4.169,easy +1.0,0.995000000002,easy +1.0,1.615,easy +1.0,0.886000000002,easy +1.0,1.792,easy +1.0,0.932000000002,easy +1.0,0.441000000002,easy +1.0,0.593000000002,easy +1.0,0.617000000002,easy +1.0,0.886000000002,easy +1.0,1.422,easy +1.0,0.476000000002,easy +1.0,2.277,easy +1.0,1.0,easy +0.0,1.517,easy +1.0,0.447000000002,easy +1.0,0.937000000002,easy +1.0,0.491000000002,easy +1.0,1.323,easy +1.0,1.533,easy +1.0,0.895000000002,easy +1.0,1.658,easy +1.0,1.459,easy +1.0,0.666000000002,easy +1.0,0.721000000002,easy +1.0,0.972000000002,easy +1.0,1.685,easy +1.0,1.41,easy +1.0,0.479000000002,easy +1.0,0.622000000002,easy +1.0,0.437000000002,easy +1.0,0.956000000002,easy +1.0,0.603000000002,easy +1.0,2.223,easy +1.0,2.265,easy +1.0,0.988000000002,easy +1.0,0.989000000002,easy +1.0,0.606000000002,easy +1.0,0.836000000002,easy +1.0,1.225,easy +1.0,1.205,easy +1.0,0.637000000002,easy +1.0,1.271,easy +1.0,0.419000000002,easy +1.0,0.836000000002,easy +1.0,0.933000000002,easy +1.0,0.577000000002,easy +1.0,1.653,easy +1.0,0.973000000002,easy +0.0,2.444,easy +1.0,0.658000000002,easy +1.0,0.509000000002,easy +1.0,1.042,easy +1.0,0.733000000002,easy +0.0,0.730999999998,easy +1.0,2.442,easy +1.0,0.750000000002,easy +0.0,0.630999999998,easy +1.0,0.559000000002,easy +1.0,1.239,easy +1.0,1.071,easy +0.0,0.738999999998,easy +1.0,0.614000000002,easy +1.0,0.784000000002,easy +1.0,0.634000000002,easy +1.0,0.534000000002,easy +1.0,0.648000000002,easy +0.0,2.473,easy +1.0,0.515000000002,easy +1.0,0.670000000002,easy +0.0,1.001,easy +1.0,0.444000000002,easy +0.0,1.806,easy +1.0,0.507000000002,easy +1.0,1.135,easy +1.0,1.171,easy +1.0,0.930000000002,easy +1.0,0.654000000002,easy +1.0,0.457000000002,easy +1.0,1.28,easy +1.0,1.524,easy +1.0,2.367,easy +1.0,1.663,easy +1.0,1.02,easy +0.0,0.857999999998,easy +1.0,1.076,easy +1.0,0.669000000002,easy +1.0,1.171,easy +1.0,0.504000000002,easy +1.0,0.500000000002,easy +1.0,1.428,easy +1.0,1.462,easy +1.0,0.601000000002,easy +1.0,1.203,easy +1.0,0.937000000002,easy +1.0,0.649000000002,easy +1.0,0.526000000002,easy +1.0,1.125,easy +0.0,1.945,easy +1.0,1.298,easy +1.0,0.431000000002,easy +1.0,0.587000000002,easy +1.0,1.065,easy +1.0,1.737,easy +1.0,1.107,easy +1.0,2.024,easy +1.0,1.313,easy +1.0,0.827000000002,easy +1.0,1.004,easy +1.0,1.259,easy +0.0,0.667999999998,easy +1.0,0.832000000002,easy +1.0,0.894000000002,easy +1.0,0.824000000002,easy +1.0,0.731000000002,easy +1.0,1.032,easy +1.0,0.532000000002,easy +1.0,0.683000000002,easy +1.0,1.887,easy +1.0,0.798000000002,easy +1.0,2.051,easy +1.0,0.664000000002,easy +1.0,2.29,easy +1.0,0.883000000002,easy +0.0,1.592,easy +1.0,0.565000000002,easy +1.0,1.103,easy +1.0,1.529,easy +1.0,0.412000000002,easy +1.0,1.598,easy +1.0,1.301,easy +1.0,0.462000000002,easy +1.0,0.581000000002,easy +1.0,0.893000000002,easy +1.0,4.093,easy +1.0,0.845000000002,easy +1.0,0.603000000002,easy +1.0,1.01,easy +1.0,0.514000000002,easy +1.0,0.823000000002,easy +1.0,1.25,easy +1.0,0.540000000002,easy +1.0,0.543000000002,easy +0.0,1.057,easy +0.0,0.645999999998,easy +1.0,2.328,easy +1.0,0.605000000002,easy +1.0,0.518000000002,easy +1.0,1.22,easy +1.0,2.005,easy +1.0,1.732,easy +1.0,0.578000000002,easy +1.0,2.709,easy +1.0,1.893,easy +1.0,0.920000000002,easy +1.0,1.438,easy +1.0,1.792,easy +1.0,1.083,easy +0.0,2.943,easy +1.0,1.633,easy +0.0,0.543999999998,easy +1.0,0.454000000002,easy +1.0,0.667000000002,easy +1.0,1.091,easy +1.0,0.581000000002,easy +1.0,0.718000000002,easy +0.0,0.615999999998,easy +1.0,0.655000000002,easy +1.0,2.309,easy +1.0,0.857000000002,easy +1.0,1.608,easy +1.0,0.732000000002,easy +1.0,0.634000000002,easy +1.0,1.027,easy +1.0,0.747000000002,easy +1.0,1.473,easy +1.0,1.268,easy +1.0,0.809000000002,easy +1.0,0.544000000002,easy +1.0,0.944000000002,easy +1.0,1.324,easy +0.0,1.253,easy +0.0,2.239,easy +1.0,0.655000000002,easy +1.0,0.899000000002,easy +0.0,0.657999999998,easy +1.0,1.194,easy +1.0,2.735,easy +1.0,1.272,easy +1.0,1.354,easy +1.0,1.347,easy +1.0,0.785000000002,easy +1.0,1.312,easy +1.0,0.474000000002,easy +1.0,1.689,easy +1.0,0.544000000002,easy +0.0,0.504999999998,easy +0.0,0.924999999998,easy +1.0,0.512000000002,easy +0.0,0.611999999998,easy +1.0,1.957,easy +1.0,0.798000000002,easy +1.0,0.805000000002,easy +1.0,1.555,easy +1.0,1.015,easy +1.0,1.286,easy +1.0,1.338,easy +1.0,1.237,easy +1.0,0.586000000002,easy +0.0,0.403999999998,easy +1.0,0.824000000002,easy +1.0,1.572,easy +1.0,0.815000000002,easy +1.0,1.731,easy +1.0,0.727000000002,easy +1.0,1.076,easy +0.0,1.282,easy +1.0,0.864000000002,easy +1.0,2.27,easy +1.0,0.502000000002,easy +1.0,0.812000000002,easy +1.0,0.610000000002,easy +1.0,0.757000000002,easy +1.0,1.079,easy +1.0,0.853000000002,easy +1.0,1.147,easy +1.0,0.502000000002,easy +1.0,0.761000000002,easy +1.0,0.567000000002,easy +1.0,1.27,easy +1.0,0.638000000002,easy +1.0,1.357,easy +1.0,0.604000000002,easy +1.0,1.09,easy +1.0,1.111,easy +1.0,1.023,easy +1.0,0.655000000002,easy +0.0,0.995999999998,easy +0.0,1.052,easy +1.0,0.774000000002,easy +1.0,0.685000000002,easy +1.0,0.815000000002,easy +1.0,1.284,easy +0.0,3.264,easy +1.0,1.581,easy +1.0,0.613000000002,easy +1.0,1.118,easy +1.0,0.486000000002,easy +1.0,0.928000000002,easy +1.0,0.886000000002,easy +0.0,0.841999999998,easy +0.0,0.518999999998,easy +1.0,1.194,easy +1.0,0.640000000002,easy +1.0,1.608,easy +1.0,1.667,easy +1.0,0.639000000002,easy +1.0,1.728,easy +1.0,0.639000000002,easy +1.0,1.778,easy +1.0,0.810000000002,easy +1.0,1.583,easy +1.0,1.244,easy +1.0,1.044,easy +1.0,0.949000000002,easy +1.0,1.144,easy +1.0,0.820000000002,easy +1.0,0.698000000002,easy +1.0,0.896000000002,easy +1.0,0.488000000002,easy +1.0,1.03,easy +1.0,0.500000000002,easy +1.0,0.928000000002,easy +1.0,0.987000000002,easy +1.0,1.16,easy +1.0,2.037,easy +1.0,5.902,easy +1.0,1.174,easy +1.0,1.3,easy +1.0,0.567000000002,easy +1.0,2.687,easy +1.0,3.062,easy +1.0,0.974000000002,easy +1.0,1.035,easy +1.0,0.437000000002,easy +1.0,1.084,easy +0.0,1.263,easy +1.0,1.692,easy +1.0,1.141,easy +1.0,0.602000000002,easy +1.0,0.775000000002,easy +1.0,0.599000000002,easy +1.0,0.703000000002,easy +1.0,0.715000000002,easy +1.0,0.673000000002,easy +1.0,1.117,easy +0.0,0.883999999998,easy +1.0,0.617000000002,easy +1.0,0.543000000002,easy +1.0,1.095,easy +0.0,1.062,easy +1.0,1.201,easy +0.0,0.846999999998,easy +1.0,2.015,easy +1.0,1.001,easy +1.0,0.650000000002,easy +1.0,0.913000000002,easy +1.0,0.621000000002,easy +1.0,1.265,easy +1.0,1.623,easy +1.0,1.786,easy +1.0,1.095,easy +1.0,0.918000000002,easy +1.0,1.057,easy +1.0,0.453000000002,easy +1.0,1.859,easy +0.0,0.454999999998,easy +1.0,1.721,easy +0.0,0.669999999998,easy +1.0,1.915,easy +1.0,0.413000000002,easy +1.0,1.242,easy +1.0,0.783000000002,easy +1.0,0.765000000002,easy +1.0,0.533000000002,easy +0.0,0.499999999998,easy +1.0,1.112,easy +1.0,0.455000000002,easy +0.0,0.455999999998,easy +1.0,1.046,easy +1.0,0.769000000002,easy +1.0,0.660000000002,easy +1.0,0.556000000002,easy +1.0,2.323,easy +1.0,0.928000000002,easy +1.0,1.017,easy +0.0,0.702999999998,easy +1.0,0.591000000002,easy +1.0,1.767,easy +1.0,0.810000000002,easy +0.0,1.365,easy +1.0,3.395,easy +1.0,0.495000000002,easy +1.0,0.490000000002,easy +1.0,2.509,easy +1.0,2.991,easy +1.0,0.848000000002,easy +1.0,2.241,easy +0.0,1.681,easy +1.0,0.820000000002,easy +1.0,0.547000000002,easy +1.0,0.583000000002,easy +1.0,0.877000000002,easy +1.0,1.888,easy +1.0,0.675000000002,easy +1.0,1.58,easy +0.0,1.683,easy +1.0,1.562,easy +0.0,0.910999999998,easy +0.0,1.87,easy +1.0,3.281,easy +1.0,0.616000000002,easy +1.0,0.610000000002,easy +0.0,0.584999999998,easy +1.0,0.649000000002,easy +1.0,0.611000000002,easy +1.0,1.35,easy +1.0,1.152,easy +0.0,0.797999999998,easy +1.0,0.763000000002,easy +1.0,0.492000000002,easy +1.0,0.872000000002,easy +1.0,0.842000000002,easy +1.0,1.715,easy +1.0,1.171,easy +1.0,1.01,easy +1.0,0.958000000002,easy +0.0,0.440999999998,easy +1.0,0.763000000002,easy +1.0,0.788000000002,easy +1.0,0.593000000002,easy +1.0,0.646000000002,easy +1.0,0.725000000002,easy +1.0,0.525000000002,easy +1.0,0.528000000002,easy +1.0,1.531,easy +1.0,1.9,easy +0.0,0.945999999998,easy +1.0,1.63,easy +1.0,0.916000000002,easy +1.0,1.095,easy +1.0,1.021,easy +1.0,1.19,easy +1.0,0.651000000002,easy +0.0,1.975,easy +1.0,1.522,easy +1.0,0.809000000002,easy +1.0,2.191,easy +1.0,0.630000000002,easy +1.0,0.968000000002,easy +1.0,0.733000000002,easy +1.0,0.522000000002,easy +1.0,1.011,easy +1.0,0.760000000002,easy diff --git a/pan/test.md b/pan/test.md deleted file mode 100644 index 683ab1f2b9ac94a6dcba5a92fbad8713417c6075..0000000000000000000000000000000000000000 --- a/pan/test.md +++ /dev/null @@ -1,3 +0,0 @@ -# test - -... \ No newline at end of file diff --git a/pan/test2.md b/pan/test2.md deleted file mode 100644 index 45233ccee59423e0d5f4df9fc9c77ee0bbf21297..0000000000000000000000000000000000000000 --- a/pan/test2.md +++ /dev/null @@ -1,4 +0,0 @@ -## test2 - - -...