add lab 3 materials
Esse commit está contido em:
@@ -0,0 +1,11 @@
|
||||
from pylsl import StreamInfo, StreamOutlet
|
||||
import numpy as np
|
||||
info = StreamInfo('Ganglion_EEG', 'EEG', 4, 200, 'float32',
|
||||
'Ganglion_123456789')
|
||||
outlet = StreamOutlet(info)
|
||||
while True:
|
||||
strSample = raw_input().split(': ', 1)
|
||||
sample = 1e6*np.array(map(float, strSample[1].split(' ')))
|
||||
stamp = float(strSample[0])*1e-3
|
||||
outlet.push_sample(sample, stamp)
|
||||
# print('Pushed Sample At: ' + strSample[0])
|
||||
@@ -0,0 +1,27 @@
|
||||
const Ganglion = require('openbci-ganglion').Ganglion;
|
||||
const ganglion = new Ganglion();
|
||||
// Construct LSL Handoff Python Shell
|
||||
var PythonShell = require('python-shell');
|
||||
var lsloutlet = new PythonShell('LSLHandoff.py');
|
||||
|
||||
lsloutlet.on('message', function(message){
|
||||
console.log('LslOutlet: ' + message);
|
||||
});
|
||||
console.log('Python Shell Created for LSLHandoff');
|
||||
|
||||
ganglion.once('ganglionFound', (peripheral) => {
|
||||
// Stop searching for BLE devices once a ganglion is found.
|
||||
ganglion.searchStop();
|
||||
ganglion.on('sample', (sample) => {
|
||||
/** Work with sample */
|
||||
st = sample.channelData.join(' ');
|
||||
var s = ''+ sample.timeStamp + ': '+ st
|
||||
lsloutlet.send(s)
|
||||
});
|
||||
ganglion.once('ready', () => {
|
||||
ganglion.streamStart();
|
||||
});
|
||||
ganglion.connect(peripheral);
|
||||
});
|
||||
// Start scanning for BLE devices
|
||||
ganglion.searchStart();
|
||||
Arquivo executável
+100
@@ -0,0 +1,100 @@
|
||||
#!/usr/bin/env python
|
||||
import numpy as np
|
||||
import pandas as pd
|
||||
from time import time, strftime, gmtime
|
||||
from optparse import OptionParser
|
||||
from pylsl import StreamInlet, resolve_byprop
|
||||
from sklearn.linear_model import LinearRegression
|
||||
|
||||
default_fname = ("data/data_%s.csv" % strftime("%Y-%m-%d-%H.%M.%S", gmtime()))
|
||||
parser = OptionParser()
|
||||
parser.add_option("-d", "--duration",
|
||||
dest="duration", type='int', default=300,
|
||||
help="duration of the recording in seconds.")
|
||||
parser.add_option("-f", "--filename",
|
||||
dest="filename", type='str', default=default_fname,
|
||||
help="Name of the recording file.")
|
||||
|
||||
# dejitter timestamps
|
||||
dejitter = False
|
||||
|
||||
(options, args) = parser.parse_args()
|
||||
|
||||
|
||||
|
||||
print("looking for an EEG stream...")
|
||||
streams = resolve_byprop('type', 'EEG', timeout=2)
|
||||
|
||||
if len(streams) == 0:
|
||||
raise(RuntimeError, "Cant find EEG stream")
|
||||
|
||||
print("Start aquiring data")
|
||||
inlet = StreamInlet(streams[0], max_chunklen=12)
|
||||
eeg_time_correction = inlet.time_correction()
|
||||
|
||||
print("looking for a Markers stream...")
|
||||
marker_streams = resolve_byprop('type', 'Markers', timeout=2)
|
||||
|
||||
if marker_streams:
|
||||
inlet_marker = StreamInlet(marker_streams[0])
|
||||
marker_time_correction = inlet_marker.time_correction()
|
||||
else:
|
||||
inlet_marker = False
|
||||
print("Cant find Markers stream")
|
||||
|
||||
info = inlet.info()
|
||||
description = info.desc()
|
||||
|
||||
freq = info.nominal_srate()
|
||||
Nchan = info.channel_count()
|
||||
|
||||
ch = description.child('channels').first_child()
|
||||
ch_names = [ch.child_value('label')]
|
||||
for i in range(1, Nchan):
|
||||
ch = ch.next_sibling()
|
||||
ch_names.append(ch.child_value('label'))
|
||||
|
||||
res = []
|
||||
timestamps = []
|
||||
markers = []
|
||||
t_init = time()
|
||||
print('Start recording at time t=%.3f' % t_init)
|
||||
while (time() - t_init) < options.duration:
|
||||
try:
|
||||
data, timestamp = inlet.pull_chunk(timeout=1.0,
|
||||
max_samples=12)
|
||||
if timestamp:
|
||||
res.append(data)
|
||||
timestamps.extend(timestamp)
|
||||
if inlet_marker:
|
||||
marker, timestamp = inlet_marker.pull_sample(timeout=0.0)
|
||||
if timestamp:
|
||||
markers.append([marker, timestamp])
|
||||
except KeyboardInterrupt:
|
||||
break
|
||||
|
||||
res = np.concatenate(res, axis=0)
|
||||
timestamps = np.array(timestamps)
|
||||
|
||||
if dejitter:
|
||||
y = timestamps
|
||||
X = np.atleast_2d(np.arange(0, len(y))).T
|
||||
lr = LinearRegression()
|
||||
lr.fit(X, y)
|
||||
timestamps = lr.predict(X)
|
||||
|
||||
res = np.c_[timestamps, res]
|
||||
data = pd.DataFrame(data=res, columns=['timestamps'] + ch_names)
|
||||
|
||||
data['Marker'] = 0
|
||||
# process markers:
|
||||
for marker in markers:
|
||||
# find index of margers
|
||||
ix = np.argmin(np.abs(marker[1] - timestamps))
|
||||
val = timestamps[ix]
|
||||
data.loc[ix, 'Marker'] = marker[0][0]
|
||||
|
||||
|
||||
data.to_csv(options.filename, float_format='%.3f', index=False)
|
||||
|
||||
print('Done !')
|
||||
Arquivo executável
+190
@@ -0,0 +1,190 @@
|
||||
#!/usr/bin/env python
|
||||
import numpy as np
|
||||
import matplotlib.pyplot as plt
|
||||
from scipy.signal import butter, filtfilt
|
||||
from time import time, sleep
|
||||
from pylsl import StreamInlet, resolve_byprop
|
||||
import seaborn as sns
|
||||
from threading import Thread
|
||||
|
||||
sns.set(style="whitegrid")
|
||||
|
||||
from optparse import OptionParser
|
||||
|
||||
parser = OptionParser()
|
||||
|
||||
parser.add_option("-w", "--window",
|
||||
dest="window", type='float', default=5.,
|
||||
help="window lenght to display in seconds.")
|
||||
parser.add_option("-s", "--scale",
|
||||
dest="scale", type='float', default=100,
|
||||
help="scale in uV")
|
||||
parser.add_option("-r", "--refresh",
|
||||
dest="refresh", type='float', default=0.2,
|
||||
help="refresh rate in seconds.")
|
||||
parser.add_option("-f", "--figure",
|
||||
dest="figure", type='string', default="15x6",
|
||||
help="window size.")
|
||||
|
||||
filt = True
|
||||
subsample = 2
|
||||
buf = 12
|
||||
|
||||
(options, args) = parser.parse_args()
|
||||
|
||||
window = options.window
|
||||
scale = options.scale
|
||||
figsize = np.int16(options.figure.split('x'))
|
||||
|
||||
print("looking for an EEG stream...")
|
||||
streams = resolve_byprop('type', 'EEG', timeout=2)
|
||||
|
||||
if len(streams) == 0:
|
||||
raise(RuntimeError("Cant find EEG stream"))
|
||||
print("Start aquiring data")
|
||||
|
||||
|
||||
class LSLViewer():
|
||||
|
||||
def __init__(self, stream, fig, axes, window, scale, dejitter=True):
|
||||
"""Init"""
|
||||
self.stream = stream
|
||||
self.window = window
|
||||
self.scale = scale
|
||||
self.dejitter = dejitter
|
||||
self.inlet = StreamInlet(stream, max_chunklen=buf)
|
||||
self.filt = True
|
||||
info = self.inlet.info()
|
||||
description = info.desc()
|
||||
|
||||
self.sfreq = info.nominal_srate()
|
||||
self.n_samples = int(self.sfreq * self.window)
|
||||
self.n_chan = info.channel_count()
|
||||
|
||||
ch = description.child('channels').first_child()
|
||||
ch_names = [ch.child_value('label')]
|
||||
|
||||
for i in range(self.n_chan):
|
||||
ch = ch.next_sibling()
|
||||
ch_names.append(ch.child_value('label'))
|
||||
|
||||
self.ch_names = ch_names
|
||||
|
||||
fig.canvas.mpl_connect('key_press_event', self.OnKeypress)
|
||||
fig.canvas.mpl_connect('button_press_event', self.onclick)
|
||||
|
||||
self.fig = fig
|
||||
self.axes = axes
|
||||
|
||||
sns.despine(left=True)
|
||||
|
||||
self.data = np.zeros((self.n_samples, self.n_chan))
|
||||
self.times = np.arange(-self.window, 0, 1./self.sfreq)
|
||||
impedances = np.std(self.data, axis=0)
|
||||
lines = []
|
||||
|
||||
for ii in range(self.n_chan):
|
||||
line, = axes.plot(self.times[::subsample],
|
||||
self.data[::subsample, ii] - ii, lw=1)
|
||||
lines.append(line)
|
||||
self.lines = lines
|
||||
|
||||
axes.set_ylim(-self.n_chan + 0.5, 0.5)
|
||||
ticks = np.arange(0, -self.n_chan, -1)
|
||||
|
||||
axes.set_xlabel('Time (s)')
|
||||
axes.xaxis.grid(False)
|
||||
axes.set_yticks(ticks)
|
||||
|
||||
ticks_labels = ['%s - %.1f' % (ch_names[ii], impedances[ii])
|
||||
for ii in range(self.n_chan)]
|
||||
axes.set_yticklabels(ticks_labels)
|
||||
|
||||
self.display_every = int(0.2 / (12/self.sfreq))
|
||||
|
||||
self.bf, self.af = butter(4, np.array([1, 40])/(self.sfreq/2.),
|
||||
'bandpass')
|
||||
|
||||
def update_plot(self):
|
||||
k = 0
|
||||
while self.started:
|
||||
samples, timestamps = self.inlet.pull_chunk(timeout=1.0,
|
||||
max_samples=12)
|
||||
if timestamps:
|
||||
self.data = np.vstack([self.data, samples])
|
||||
if self.dejitter:
|
||||
timestamps = np.float64(np.arange(len(timestamps)))
|
||||
timestamps /= self.sfreq
|
||||
timestamps += self.times[-1] + 1./self.sfreq
|
||||
self.times = np.concatenate([self.times, timestamps])
|
||||
|
||||
self.n_samples = int(self.sfreq * self.window)
|
||||
self.data = self.data[-self.n_samples:]
|
||||
self.times = self.times[-self.n_samples:]
|
||||
k += 1
|
||||
if k == self.display_every:
|
||||
if self.filt:
|
||||
data_f = filtfilt(self.bf, self.af, self.data, axis=0)
|
||||
else:
|
||||
data_f = self.data
|
||||
data_f -= data_f.mean(axis=0)
|
||||
|
||||
for ii in range(self.n_chan):
|
||||
self.lines[ii].set_xdata(self.times[::subsample] -
|
||||
self.times[-1])
|
||||
self.lines[ii].set_ydata(data_f[::subsample, ii] /
|
||||
self.scale - ii)
|
||||
|
||||
impedances = np.std(data_f, axis=0)
|
||||
ticks_labels = ['%s - %.2f' %
|
||||
(self.ch_names[ii], impedances[ii])
|
||||
for ii in range(self.n_chan)]
|
||||
self.axes.set_yticklabels(ticks_labels)
|
||||
self.axes.set_xlim(-self.window, 0)
|
||||
self.fig.canvas.draw()
|
||||
k = 0
|
||||
else:
|
||||
sleep(0.2)
|
||||
|
||||
def onclick(self, event):
|
||||
print((event.button, event.x, event.y, event.xdata, event.ydata))
|
||||
|
||||
def OnKeypress(self, event):
|
||||
if event.key == '/':
|
||||
self.scale *= 1.2
|
||||
elif event.key == '*':
|
||||
self.scale /= 1.2
|
||||
elif event.key == '+':
|
||||
self.window += 1
|
||||
elif event.key == '-':
|
||||
if self.window > 1:
|
||||
self.window -= 1
|
||||
elif event.key == 'd':
|
||||
self.filt = not(self.filt)
|
||||
|
||||
def start(self):
|
||||
self.started = True
|
||||
self.thread = Thread(target=self.update_plot)
|
||||
self.thread.daemon = True
|
||||
self.thread.start()
|
||||
|
||||
def stop(self):
|
||||
self.started = False
|
||||
|
||||
|
||||
fig, axes = plt.subplots(1, 1, figsize=figsize, sharex=True)
|
||||
lslv = LSLViewer(streams[0], fig, axes, window, scale)
|
||||
|
||||
help_str = """
|
||||
toggle filter : d
|
||||
toogle full screen : f
|
||||
zoom out : /
|
||||
zoom in : *
|
||||
increase time scale : -
|
||||
decrease time scale : +
|
||||
"""
|
||||
print(help_str)
|
||||
lslv.start()
|
||||
|
||||
plt.show()
|
||||
lslv.stop()
|
||||
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"name": "lab3",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"main": "ganglion-lsl.js",
|
||||
"dependencies": {
|
||||
"openbci-ganglion": "^0.4.3",
|
||||
"python-shell": "^0.4.0"
|
||||
},
|
||||
"devDependencies": {},
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"author": "",
|
||||
"license": "GPL-3.0"
|
||||
}
|
||||
Arquivo executável
+35
@@ -0,0 +1,35 @@
|
||||
#!/usr/bin/env python2
|
||||
|
||||
import platform
|
||||
import time
|
||||
|
||||
fullscreen_on = False
|
||||
|
||||
size = 1280, 800
|
||||
SCREEN_WIDTH, SCREEN_HEIGHT = size
|
||||
|
||||
white = 255,255,255
|
||||
black = 0,0,0
|
||||
red = 255,0,0
|
||||
green = 0,255,0
|
||||
blue = 0,0,255
|
||||
chartreuse = 127,255,0
|
||||
light_green = 131,255,100
|
||||
nice_red = 207,45,64
|
||||
sky_blue = 100,244,255
|
||||
nice_blue = 0,194,255
|
||||
dark_gray = 20,20,20
|
||||
|
||||
anna_blue = 79,129,189
|
||||
anna_green = 0,128,0
|
||||
anna_gray = 146,146,146
|
||||
anna_grayblue = 45,74,108
|
||||
|
||||
background_color = black
|
||||
|
||||
|
||||
if platform.system() == 'Windows':
|
||||
wallclock = time.clock
|
||||
else:
|
||||
wallclock = time.time
|
||||
|
||||
@@ -0,0 +1,65 @@
|
||||
import pygame, sys
|
||||
from screen import screen
|
||||
from constants import *
|
||||
|
||||
# font_path = pygame.font.match_font('Arial')
|
||||
font_path = pygame.font.get_default_font()
|
||||
|
||||
def draw_text(text, center, color=white, size=30, bold=False, background=None,
|
||||
left=False):
|
||||
font = pygame.font.Font(font_path, size, bold=bold)
|
||||
if background:
|
||||
surface = font.render(text, True, color, background)
|
||||
else:
|
||||
surface = font.render(text, True, color)
|
||||
|
||||
rect = surface.get_rect()
|
||||
rect.center = tuple(center)
|
||||
if left:
|
||||
rect.left = center[0]
|
||||
|
||||
screen.blit(surface, rect)
|
||||
return rect
|
||||
|
||||
def draw_image(img, center):
|
||||
rect = img.get_rect()
|
||||
rect.center = tuple(center)
|
||||
screen.blit(img, rect)
|
||||
|
||||
def draw_focus_screen():
|
||||
p = screen.get_rect().center
|
||||
draw_text('+', p, size=100)
|
||||
|
||||
def focus_slide():
|
||||
screen.fill(background_color)
|
||||
draw_focus_screen()
|
||||
pygame.display.flip()
|
||||
|
||||
|
||||
def simple_slide(text, size=100):
|
||||
screen.fill(background_color)
|
||||
p = screen.get_rect().center
|
||||
draw_text(text, p, size=size)
|
||||
pygame.display.flip()
|
||||
|
||||
def text_slide(text, size=30):
|
||||
screen.fill(background_color)
|
||||
lines = text.split('\n')
|
||||
rect = draw_text('test', (SCREEN_WIDTH/2, SCREEN_HEIGHT/2),
|
||||
size=size, color=background_color)
|
||||
height = rect.height + 6
|
||||
y = SCREEN_HEIGHT/2 - (len(lines)-1)*(height/2)
|
||||
for line in lines:
|
||||
draw_text(line.strip(), (SCREEN_WIDTH/2, y), size=size)
|
||||
y += height
|
||||
pygame.display.flip()
|
||||
|
||||
def recognize_slide(word, size=100):
|
||||
screen.fill(background_color)
|
||||
p = screen.get_rect().center
|
||||
draw_text(word, p, size=size)
|
||||
|
||||
draw_text("1=unknown", (200, SCREEN_HEIGHT-100), size=50)
|
||||
draw_text("4=recognized", (SCREEN_WIDTH-250, SCREEN_HEIGHT-100), size=50)
|
||||
|
||||
pygame.display.flip()
|
||||
Arquivo executável
+75
@@ -0,0 +1,75 @@
|
||||
import pygame
|
||||
from pygame.locals import *
|
||||
from constants import *
|
||||
import time
|
||||
from extract_words import get_words
|
||||
import pandas as pd
|
||||
from pylsl import StreamInfo, StreamOutlet
|
||||
|
||||
pygame.init()
|
||||
#pygame.mouse.set_visible(False)
|
||||
|
||||
from screen import screen
|
||||
from drawstuff import *
|
||||
|
||||
study_time = int(time.time())
|
||||
print(study_time)
|
||||
|
||||
word_fname = '../data/words_{}.csv'.format(study_time)
|
||||
|
||||
words = get_words()
|
||||
words.to_csv(word_fname)
|
||||
|
||||
info = StreamInfo('Ganglion_EEG', 'Markers', 1, 0.0, 'int32',
|
||||
'marker')
|
||||
outlet = StreamOutlet(info)
|
||||
|
||||
|
||||
|
||||
def check_for_key(key=K_ESCAPE):
|
||||
while True:
|
||||
event = pygame.event.poll()
|
||||
if event.type == 0:
|
||||
return False
|
||||
elif event.dict.get('key', -1) == key:
|
||||
return True
|
||||
|
||||
def check_for_escape():
|
||||
return check_for_key(K_ESCAPE)
|
||||
|
||||
def finish_stuff(early=False):
|
||||
return
|
||||
|
||||
|
||||
text_slide("""Start recording and
|
||||
press space to continue""")
|
||||
while not check_for_key(K_SPACE):
|
||||
pass
|
||||
|
||||
focus_slide()
|
||||
outlet.push_sample([-1], time.time())
|
||||
time.sleep(0.5)
|
||||
|
||||
for i in xrange(words.shape[0]):
|
||||
d = dict(words.ix[i])
|
||||
|
||||
if d['is_shown'] != 1:
|
||||
continue
|
||||
|
||||
word = d['word']
|
||||
|
||||
simple_slide(word)
|
||||
outlet.push_sample([d['id']], time.time())
|
||||
time.sleep(2.0)
|
||||
|
||||
if check_for_escape():
|
||||
finish_stuff(early=True)
|
||||
exit()
|
||||
|
||||
focus_slide()
|
||||
outlet.push_sample([-1], time.time())
|
||||
time.sleep(0.5)
|
||||
|
||||
if check_for_escape():
|
||||
finish_stuff(early=True)
|
||||
exit()
|
||||
@@ -0,0 +1,29 @@
|
||||
import pandas as pd
|
||||
import numpy as np
|
||||
|
||||
def get_words():
|
||||
words = pd.read_csv("word_list.csv")
|
||||
n = len(words)
|
||||
|
||||
words_big = np.random.choice(words["id"],size=60, replace=False)
|
||||
words_small = np.random.choice(words_big,size=30, replace=False)
|
||||
|
||||
final = words[words["id"].isin(words_big)].copy()
|
||||
final["is_shown"] = 0
|
||||
|
||||
ids = list(final["id"])
|
||||
is_shown = list(final["is_shown"])
|
||||
|
||||
for x in range(0,len(ids)):
|
||||
if ids[x] in words_small:
|
||||
is_shown[x] = 1
|
||||
|
||||
final["is_shown"] = is_shown
|
||||
|
||||
|
||||
ix = np.arange(final.shape[0])
|
||||
np.random.shuffle(ix)
|
||||
final = final.reset_index().ix[ix]
|
||||
final = final.reset_index()
|
||||
|
||||
return final
|
||||
Arquivo executável
+89
@@ -0,0 +1,89 @@
|
||||
#!/usr/bin/env python2
|
||||
|
||||
import pygame
|
||||
from pygame.locals import *
|
||||
from constants import *
|
||||
import time
|
||||
from extract_words import get_words
|
||||
import pandas as pd
|
||||
import sys
|
||||
from pylsl import StreamInfo, StreamOutlet
|
||||
|
||||
|
||||
pygame.init()
|
||||
#pygame.mouse.set_visible(False)
|
||||
|
||||
from screen import screen
|
||||
from drawstuff import *
|
||||
|
||||
words_fname = sys.argv[1].replace('.csv', '_labeled.csv')
|
||||
|
||||
words = pd.read_csv(sys.argv[1])
|
||||
words['recognized'] = 'null'
|
||||
|
||||
def wait_for_keys(keys, escape=True):
|
||||
pygame.event.clear()
|
||||
while True:
|
||||
event=pygame.event.wait()
|
||||
if(event.type == KEYDOWN):
|
||||
if event.key in keys or \
|
||||
(escape and event.key == K_ESCAPE):
|
||||
return event.key
|
||||
|
||||
def check_for_escape():
|
||||
while True:
|
||||
event = pygame.event.poll()
|
||||
if event.type == 0:
|
||||
return False
|
||||
elif event.dict.get('key', -1) == K_ESCAPE:
|
||||
return True
|
||||
|
||||
def finish_stuff(early=False):
|
||||
return
|
||||
|
||||
info = StreamInfo('Ganglion_EEG', 'Markers', 1, 0.0, 'int32', 'marker')
|
||||
outlet = StreamOutlet(info)
|
||||
|
||||
|
||||
def check_for_key(key=K_ESCAPE):
|
||||
while True:
|
||||
event = pygame.event.poll()
|
||||
if event.type == 0:
|
||||
return False
|
||||
elif event.dict.get('key', -1) == key:
|
||||
return True
|
||||
|
||||
def check_for_escape():
|
||||
return check_for_key(K_ESCAPE)
|
||||
|
||||
def finish_stuff(early=False):
|
||||
return
|
||||
|
||||
text_slide("""Start recording and
|
||||
press space to continue""")
|
||||
wait_for_keys([K_SPACE])
|
||||
|
||||
for i in xrange(words.shape[0]):
|
||||
d = dict(words.ix[i])
|
||||
|
||||
word = d['word']
|
||||
|
||||
recognize_slide(word)
|
||||
outlet.push_sample([d['id']], time.time())
|
||||
|
||||
key = wait_for_keys([K_1, K_4])
|
||||
if key == K_ESCAPE:
|
||||
finish_stuff(early=True)
|
||||
exit()
|
||||
|
||||
labeled = key == K_4
|
||||
|
||||
words.ix[i, 'recognized'] = labeled
|
||||
words.to_csv(words_fname)
|
||||
|
||||
focus_slide()
|
||||
outlet.push_sample([-1], time.time())
|
||||
time.sleep(0.5)
|
||||
|
||||
simple_slide("END OF EXPERIMENT")
|
||||
exit()
|
||||
@@ -0,0 +1,8 @@
|
||||
import pygame
|
||||
from pygame.locals import *
|
||||
from constants import *
|
||||
|
||||
if fullscreen_on:
|
||||
screen = pygame.display.set_mode(size, FULLSCREEN)
|
||||
else:
|
||||
screen = pygame.display.set_mode(size)
|
||||
@@ -0,0 +1,15 @@
|
||||
from pylsl import StreamInfo, StreamOutlet
|
||||
import numpy as np
|
||||
import time
|
||||
info = StreamInfo('Ganglion_EEG', 'Markers', 1, 0.0, 'int32',
|
||||
'marker')
|
||||
outlet = StreamOutlet(info)
|
||||
count = 0
|
||||
while True:
|
||||
print(count)
|
||||
stamp = time.time()
|
||||
outlet.push_sample([count], stamp)
|
||||
outlet.push_sample([count], stamp)
|
||||
count += 1
|
||||
time.sleep(0.1)
|
||||
# print('Pushed Sample At: ' + strSample[0])
|
||||
@@ -0,0 +1,899 @@
|
||||
freq,syl,let,word,imag,conc,meaning,list,id
|
||||
100,1,3,lip,6.57,6.93,5.32,1,1
|
||||
19,3,7,nursery,6.1,6.45,7.4,1,2
|
||||
20,1,3,ink,6.37,6.87,6.96,1,3
|
||||
50,3,8,evidence,3.23,3.45,6.2,1,4
|
||||
1,2,9,limelight,4.83,3.06,4.72,1,5
|
||||
30,2,5,angle,5.5,5.19,6.24,1,6
|
||||
100,1,4,king,6.27,6.34,7.5,1,7
|
||||
2,3,9,vestibule,5.43,6.73,6,1,8
|
||||
27,2,5,maker,3.57,4.46,5,1,9
|
||||
2,4,10,theologian,4.47,5.88,6.36,1,10
|
||||
8,4,9,violation,3.57,2.92,5.92,1,11
|
||||
2,2,9,sheepskin,6.13,6.83,6.44,1,12
|
||||
50,2,7,disease,4.87,5.63,7.44,1,13
|
||||
21,1,6,cradle,6.23,6.94,6.96,1,14
|
||||
3,3,10,rendezvous,5.2,4,6.04,1,15
|
||||
26,2,8,conquest,4.03,3.11,5.81,1,16
|
||||
3,4,8,immunity,3.43,2.46,5.76,1,17
|
||||
15,2,6,hamlet,5.87,6.19,6.56,1,18
|
||||
2,3,9,obsession,3.87,1.65,4.16,1,19
|
||||
2,2,9,horsehair,5.67,6.8,6.2,1,20
|
||||
100,1,4,rock,6.37,6.96,5.96,1,21
|
||||
19,2,9,landscape,6.43,6.2,7.12,1,22
|
||||
42,1,6,priest,6.53,6.59,6.88,1,23
|
||||
44,1,3,rod,5.97,6.62,6.04,1,24
|
||||
100,2,6,heaven,4.13,2.75,6.52,1,25
|
||||
1,3,9,charlatan,3.43,5.28,3.19,1,26
|
||||
4,4,7,malaria,4.83,5.66,6.64,1,27
|
||||
27,1,3,inn,6.07,6.8,6.61,1,28
|
||||
1,4,10,exactitude,2.23,1.69,3,1,29
|
||||
19,2,6,vigour,4.43,2.6,5.72,1,30
|
||||
7,3,8,anecdote,3.77,4.87,5.84,1,31
|
||||
1,3,7,arbiter,2.33,4.63,3.71,1,32
|
||||
8,2,7,spinach,6.47,6.9,7.08,1,33
|
||||
28,3,10,profession,3.83,3.65,5.44,1,34
|
||||
1,2,7,cowhide,5.4,6.89,6.39,1,35
|
||||
19,4,9,emergency,5.03,3.25,6.28,1,36
|
||||
4,3,8,ensemble,4.63,5.45,4.8,1,37
|
||||
23,2,5,drama,4.9,3.66,7,1,38
|
||||
100,1,4,bird,6.67,6.96,7.88,1,39
|
||||
7,2,6,garret,4.13,6.14,4.12,1,40
|
||||
100,1,5,blood,6.7,6.82,6.56,1,41
|
||||
17,3,8,reminder,2.83,3.48,5.2,1,42
|
||||
16,2,5,cigar,6.8,6.96,6.22,1,43
|
||||
2,2,6,upkeep,3.07,2.5,4.76,1,44
|
||||
50,1,3,fun,5.23,2.45,5.5,1,45
|
||||
9,1,3,nun,6.67,6.76,6.6,1,46
|
||||
1,2,7,buffoon,4.33,4.63,4.5,1,47
|
||||
50,3,8,occasion,2.53,3.22,5,1,48
|
||||
6,2,7,blister,6.53,6.67,7.13,1,49
|
||||
40,1,4,tool,5.77,6.8,6.88,1,50
|
||||
100,1,5,truth,2.73,1.69,4.78,1,51
|
||||
21,2,8,moisture,5.2,6.24,6.72,1,52
|
||||
50,4,9,situation,2.53,2.76,4.84,1,53
|
||||
50,2,6,coffee,6.73,6.89,7.28,1,54
|
||||
19,1,4,tank,6.23,6.87,6.48,1,55
|
||||
9,3,7,robbery,5,4.75,6.16,1,56
|
||||
19,2,5,panic,5.33,2.18,6.72,1,57
|
||||
50,1,5,crime,4.43,3.81,6.84,1,58
|
||||
29,3,10,substitute,3.13,4.56,4.48,1,59
|
||||
22,2,8,research,4.13,3.22,6.92,1,60
|
||||
27,1,4,chin,6.43,6.96,5.28,1,61
|
||||
8,2,7,reptile,6,6.65,6.52,1,62
|
||||
4,4,11,ingratitude,2.93,1.77,4,1,63
|
||||
1,2,7,bagpipe,6.43,6.96,7,1,64
|
||||
27,2,6,kettle,6.23,7,7.44,1,65
|
||||
6,2,7,phantom,5.03,2.5,5,1,66
|
||||
36,2,6,victim,5.07,5.49,5.36,1,67
|
||||
13,2,7,hearing,3.77,3.57,6.64,1,68
|
||||
32,2,6,barrel,6.57,6.94,6.16,1,69
|
||||
8,2,7,essence,2.33,1.66,3.28,1,70
|
||||
11,1,4,dell,3.37,5.58,4.56,1,71
|
||||
35,1,5,bloom,5.63,5.82,5.12,1,72
|
||||
100,4,8,material,5.07,6.1,5.92,1,73
|
||||
50,2,5,apple,6.73,7,7.67,1,74
|
||||
4,1,5,wench,5.3,6.2,5.08,1,75
|
||||
19,4,10,decoration,5.37,5.67,5.84,1,76
|
||||
6,1,5,chasm,4.47,5.25,6.04,1,77
|
||||
20,1,5,toast,6.57,6.93,7.84,1,78
|
||||
50,1,5,flood,6.33,6.62,6.36,1,79
|
||||
35,3,8,elephant,6.83,7,6.88,1,80
|
||||
100,2,6,circle,6.23,6,4.88,1,81
|
||||
1,4,9,infirmary,5.63,6.43,6.65,1,82
|
||||
2,2,6,reflex,4.73,4.08,5.88,1,83
|
||||
1,2,6,mirage,4.97,3.5,5.63,1,84
|
||||
36,3,7,tobacco,6.27,6.87,7.84,1,85
|
||||
100,2,6,amount,2.73,3.62,5.84,1,86
|
||||
19,1,4,dove,6.53,6.9,6.36,1,87
|
||||
4,3,8,vocation,3.8,3.26,6.12,1,88
|
||||
28,3,7,gallery,5.97,6.49,5.88,1,89
|
||||
22,3,9,ignorance,3.57,1.75,4,1,90
|
||||
22,1,4,lark,6.2,6.83,5.84,1,91
|
||||
26,2,4,item,3.67,5.27,4.96,1,92
|
||||
9,2,8,daybreak,6.43,5.73,7.68,1,93
|
||||
45,2,6,vision,4.73,4,6.39,1,94
|
||||
20,1,4,monk,6.4,6.63,5.92,1,95
|
||||
29,1,6,breeze,5.87,5.94,7.33,1,96
|
||||
50,1,5,shame,4.1,1.7,5.16,1,97
|
||||
50,3,8,attitude,2.77,1.83,5.6,1,98
|
||||
9,3,10,discretion,2.27,1.34,4.2,1,99
|
||||
45,1,5,grief,4.7,1.86,6.32,1,100
|
||||
50,4,11,development,3.07,2.82,6.04,1,101
|
||||
1,4,8,allegory,2.13,2.56,4.48,1,102
|
||||
24,1,5,thorn,6.33,6.87,6.44,1,103
|
||||
26,1,4,mast,6.43,6.96,7.12,1,104
|
||||
46,2,7,cottage,6.5,6.9,7.76,1,105
|
||||
100,2,7,trouble,3.53,2.25,5.08,1,106
|
||||
50,3,9,furniture,6.17,6.83,6.6,1,107
|
||||
1,1,5,slush,6.27,6.65,6.8,1,108
|
||||
100,1,5,death,5,2.97,7.12,1,109
|
||||
3,3,7,algebra,5.17,4.85,6.72,1,110
|
||||
100,1,4,door,6.6,7,7.96,1,111
|
||||
50,2,7,freedom,3.83,1.98,6.36,1,112
|
||||
100,1,4,hope,3.83,1.18,5.52,1,113
|
||||
22,3,9,butterfly,6.63,6.93,7.8,1,114
|
||||
14,1,5,brute,5.17,5.44,6.08,1,115
|
||||
19,5,13,determination,3.57,1.66,4.64,1,116
|
||||
14,3,7,volcano,6.63,6.83,7.6,1,117
|
||||
50,2,5,moral,3.17,1.39,6.44,1,118
|
||||
19,1,5,plank,6.3,6.96,6.2,1,119
|
||||
8,4,8,velocity,3.97,3.32,5.72,1,120
|
||||
3,3,9,deduction,2.67,2.94,5.08,1,121
|
||||
26,1,5,geese,6.53,6.83,7.48,1,122
|
||||
26,1,4,hoof,6.37,6.9,6.32,1,123
|
||||
100,1,5,storm,6.43,6.45,7.21,1,124
|
||||
19,2,7,session,3.67,3.62,5.4,1,125
|
||||
37,4,8,capacity,3.4,2.41,5.44,1,126
|
||||
7,2,6,satire,3.37,2.33,5.64,1,127
|
||||
11,4,12,refrigerator,6.67,7,7.36,1,128
|
||||
8,2,8,basement,6.03,6.83,6.83,1,129
|
||||
100,3,9,direction,3.83,3.19,6.78,1,130
|
||||
8,3,8,mosquito,6.53,6.96,7.84,1,131
|
||||
1,5,10,originator,3.3,5.43,4.48,1,132
|
||||
1,2,8,offshoot,3.67,4.2,5.46,1,133
|
||||
1,3,11,comradeship,4.4,2.75,5.21,1,134
|
||||
1,2,5,proxy,2.7,3.72,4.84,1,135
|
||||
32,1,4,joke,4.27,3.8,5.92,1,136
|
||||
100,1,4,camp,6.57,6.56,7.17,1,137
|
||||
21,2,7,sulphur,6.03,6.72,6.25,1,138
|
||||
1,4,13,misconception,2.3,1.79,3.96,1,139
|
||||
14,2,6,sultan,5.57,6.52,7.24,1,140
|
||||
50,1,3,lad,6.33,6.58,5.76,1,141
|
||||
18,3,8,musician,6.13,6.53,6.52,1,142
|
||||
8,2,6,deceit,3.3,1.66,4.92,1,143
|
||||
29,2,7,harness,5.1,6.93,6.2,1,144
|
||||
37,2,5,arrow,6.57,7,6.8,1,145
|
||||
19,3,9,socialist,3.13,4.69,4.54,1,146
|
||||
50,1,4,nail,6.5,6.96,6.08,1,147
|
||||
21,4,11,recognition,3.6,2,5.04,1,148
|
||||
1,3,11,replacement,2.7,3.73,5.4,1,149
|
||||
1,2,5,rosin,4.2,5.88,4.56,1,150
|
||||
12,4,10,proprietor,5.1,6.45,5.72,1,151
|
||||
100,2,6,honour,3.5,1.75,5.08,1,152
|
||||
50,1,5,style,3.83,3.18,5.84,1,153
|
||||
4,1,4,serf,5.5,6.03,6.75,1,154
|
||||
30,2,6,genius,4.27,2.76,5.5,1,155
|
||||
27,3,10,procession,5.7,5.9,5.63,1,156
|
||||
19,2,6,mantle,6.27,6.76,5.92,1,157
|
||||
4,3,9,honeycomb,6.23,6.5,5.78,1,158
|
||||
100,2,7,college,6.2,6.38,7.28,1,159
|
||||
19,2,10,blacksmith,6.17,6.83,7.44,1,160
|
||||
100,2,7,meeting,5.2,4.8,5,1,161
|
||||
3,1,3,pep,4.6,2.73,6.04,1,162
|
||||
100,1,6,square,6.37,5.7,5.44,1,163
|
||||
20,3,9,sensation,3.67,1.99,5.16,1,164
|
||||
21,2,7,circuit,4.97,5.63,6.38,1,165
|
||||
7,4,10,habitation,4.6,6.03,5.26,1,166
|
||||
48,2,8,pressure,4.1,3.63,5.8,1,167
|
||||
25,2,10,background,4.03,4.1,5.88,1,168
|
||||
20,2,7,monarch,6.2,6.4,6.92,1,169
|
||||
23,4,11,legislation,3.33,4,5.92,1,170
|
||||
27,2,6,pepper,6.27,6.96,6.52,1,171
|
||||
100,3,8,position,2.97,3.31,6.24,1,172
|
||||
100,1,5,world,5.97,5.9,6.88,1,173
|
||||
1,2,8,frontage,4.57,5.46,5.36,1,174
|
||||
8,1,4,bard,4.9,5.03,4.8,1,175
|
||||
23,2,6,beaver,6.5,6.96,8.19,1,176
|
||||
28,1,5,snake,6.9,7,6.88,1,177
|
||||
7,4,10,rheumatism,4.5,5.39,6.48,1,178
|
||||
100,2,6,market,6.13,6.08,7.04,1,179
|
||||
50,1,4,coin,6.5,6.9,7.09,1,180
|
||||
5,4,9,adversity,2.8,2.73,5.06,1,181
|
||||
28,2,7,lecture,5.57,4.5,5.72,1,182
|
||||
7,1,4,gore,4.67,4.79,5.5,1,183
|
||||
100,1,4,hall,6.37,6.72,6.16,1,184
|
||||
100,1,6,chance,2.5,1.51,5.61,1,185
|
||||
3,4,9,antitoxin,3.6,6.03,5.67,1,186
|
||||
50,3,8,property,4.87,5.99,5.76,1,187
|
||||
100,1,6,church,6.63,6.59,7.52,1,188
|
||||
50,1,3,fur,6.23,6.69,7.36,1,189
|
||||
28,5,11,examination,6.07,5.14,7,1,190
|
||||
1,2,5,mucus,5.53,6.16,6.38,1,191
|
||||
100,1,4,cost,3.57,3.41,6.24,1,192
|
||||
27,2,5,odour,5.13,5.83,5.76,1,193
|
||||
7,3,9,athletics,5.7,4.6,6.92,1,194
|
||||
100,2,6,flower,6.57,6.96,7.13,1,195
|
||||
50,2,5,owner,4.23,5.9,5.71,1,196
|
||||
100,1,5,shore,6.63,6.69,8.13,1,197
|
||||
7,3,7,abdomen,6,6.83,4.75,1,198
|
||||
1,2,6,gadfly,3.77,5.87,3.28,1,199
|
||||
1,2,7,juggler,6.1,6.45,5.84,1,200
|
||||
19,2,7,builder,5.7,6.05,5.56,1,201
|
||||
50,2,6,engine,6.33,6.76,6.08,1,202
|
||||
6,1,4,pelt,5.4,6.2,6.76,1,203
|
||||
10,3,8,illusion,3.53,2.03,4.67,1,204
|
||||
50,3,10,expression,3.57,2.48,6.13,1,205
|
||||
2,2,9,headlight,6.43,6.9,6.32,1,206
|
||||
1,3,10,peacemaker,4.03,4.97,5.08,1,207
|
||||
5,1,4,stub,4.97,6.2,5.24,1,208
|
||||
1,3,8,domicile,4.2,4.89,4.96,1,209
|
||||
5,2,9,nightfall,6.17,5.73,6.52,1,210
|
||||
5,3,9,comforter,5.03,5.06,6.19,1,211
|
||||
100,1,5,child,6.5,6.87,7.04,1,212
|
||||
100,1,6,friend,6.37,4.89,6.4,1,213
|
||||
7,3,9,magnitude,2.5,3.03,5.68,1,214
|
||||
7,3,8,lemonade,6.5,6.93,7.13,1,215
|
||||
19,2,5,jelly,6.4,6.73,6,1,216
|
||||
3,3,8,daffodil,6.47,7,6.96,1,217
|
||||
2,3,7,fallacy,2.3,1.89,3.72,1,218
|
||||
50,2,7,justice,3.6,2.18,6.6,1,219
|
||||
24,3,10,tablespoon,6.33,6.9,5.63,1,220
|
||||
3,2,9,labyrinth,4.83,6.16,4.8,1,221
|
||||
2,2,7,missile,6.33,6.8,6.48,1,222
|
||||
47,2,6,meadow,6.43,6.69,8,1,223
|
||||
100,1,6,speech,4.33,4.87,5.36,1,224
|
||||
1,5,11,elaboration,2.63,2.18,4.36,1,225
|
||||
100,1,4,mind,3.03,2.6,5.88,1,226
|
||||
23,1,4,claw,6.33,6.89,6.67,1,227
|
||||
27,1,5,sauce,5.8,6.76,5.88,1,228
|
||||
13,3,7,vehicle,6.23,6.45,7.08,1,229
|
||||
1,2,7,preview,4.03,4.14,4.12,1,230
|
||||
1,2,6,belfry,4.43,5.96,6.25,1,231
|
||||
2,2,6,tripod,6.23,6.82,5.76,1,232
|
||||
8,2,7,glacier,6.07,6.93,7.21,1,233
|
||||
50,2,7,passion,5.3,1.66,5.68,1,234
|
||||
4,3,6,ritual,4.7,3.7,5.12,1,235
|
||||
21,3,9,institute,4.6,5.84,4.92,1,236
|
||||
4,2,9,franchise,2.9,3.57,4.84,1,237
|
||||
20,2,6,singer,6.17,6.35,6.64,1,238
|
||||
4,4,10,hypothesis,2.4,2.25,5.36,1,239
|
||||
2,3,8,jeopardy,3.03,2,3.48,1,240
|
||||
27,3,10,management,3.9,3.69,5.68,1,241
|
||||
100,2,9,knowledge,2.97,1.56,6.36,1,242
|
||||
50,3,10,settlement,4.6,5.13,6.24,1,243
|
||||
50,2,8,marriage,5.8,3.94,6.29,1,244
|
||||
50,3,7,victory,4.93,2.95,6.12,1,245
|
||||
100,2,6,person,5.83,6.51,5.68,1,246
|
||||
49,1,3,toy,6.17,6.63,6.96,1,247
|
||||
1,2,6,gender,2.9,3.63,5.41,1,248
|
||||
100,2,7,journal,5.6,6.69,5.88,1,249
|
||||
5,3,9,vigilance,3.53,2.6,5.72,1,250
|
||||
1,2,6,rubble,5.23,6.18,5.4,1,251
|
||||
14,2,7,tempest,5.63,5.62,6.96,1,252
|
||||
50,2,6,theory,2.57,1.9,5.88,1,253
|
||||
2,3,9,lubricant,5.23,5.86,5.44,1,254
|
||||
50,2,5,metal,5.87,6.76,6.96,1,255
|
||||
50,4,9,necessity,3,1.97,5.92,1,256
|
||||
3,2,7,concept,1.93,1.97,3.76,1,257
|
||||
50,3,6,colony,5.1,5.87,5,1,258
|
||||
7,3,8,exertion,4.33,2.88,6,1,259
|
||||
23,3,9,sovereign,5.73,5.94,7.12,1,260
|
||||
100,2,4,body,6.4,6.58,5.61,1,261
|
||||
2,3,6,simile,2.9,3.97,5.25,1,262
|
||||
20,2,6,errand,4.27,4.21,6.48,1,263
|
||||
28,1,5,thief,5.7,6.08,6.5,1,264
|
||||
1,1,4,kine,2,4.53,2.88,1,265
|
||||
7,3,9,hurricane,6.33,6.52,7.04,1,266
|
||||
24,3,5,agony,5.43,3.13,6.06,1,267
|
||||
1,3,11,wistfulness,3.13,1.83,4.16,1,268
|
||||
100,2,7,picture,6.2,6.75,7.16,1,269
|
||||
25,4,8,ceremony,5.37,4.58,5.17,1,270
|
||||
7,2,7,lobster,6.57,6.96,6.84,1,271
|
||||
4,3,10,passageway,5.53,6.28,5.08,1,272
|
||||
50,3,7,quality,3.1,2.13,5.52,1,273
|
||||
1,4,8,temerity,2.33,2.19,2.04,1,274
|
||||
100,1,5,chief,6.07,5.87,6.08,1,275
|
||||
100,3,7,officer,6.23,6.32,5.43,1,276
|
||||
50,2,5,anger,4.87,1.7,5.83,1,277
|
||||
100,2,5,sugar,6.57,6.96,7,1,278
|
||||
28,2,7,steamer,6.53,6.94,6.32,1,279
|
||||
50,2,5,cabin,6.47,6.96,7.2,1,280
|
||||
2,2,5,dummy,5.83,6.34,4.88,1,281
|
||||
25,3,6,oxygen,4.27,5.43,6.2,1,282
|
||||
100,1,5,queen,6.57,6.38,7.36,1,283
|
||||
100,3,9,gentleman,6.2,6.42,5.8,1,284
|
||||
27,1,4,mood,3.67,1.52,5.36,1,285
|
||||
50,3,8,hospital,6.53,6.8,7.44,1,286
|
||||
7,3,10,perception,3.17,2.33,5.8,1,287
|
||||
50,2,5,devil,5.63,2.13,6.94,1,288
|
||||
3,3,11,connoisseur,5.2,5.31,4.28,1,289
|
||||
2,2,8,chloride,4.2,6.28,5.75,1,290
|
||||
23,1,5,truck,6.6,7,6.48,1,291
|
||||
100,2,6,valley,6.57,6.66,6.56,1,292
|
||||
20,1,5,quest,4.53,2.76,5.2,1,293
|
||||
5,3,7,heroism,4.17,2.26,5.84,1,294
|
||||
100,1,5,horse,6.8,6.94,8.67,1,295
|
||||
50,3,7,factory,6.43,6.87,6,1,296
|
||||
20,2,7,slipper,6.47,6.94,6.04,1,297
|
||||
7,4,10,periodical,4.93,6.14,5.52,1,298
|
||||
32,2,5,candy,6.63,6.56,6.39,1,299
|
||||
5,3,8,lecturer,5.7,6.49,5.88,1,300
|
||||
50,1,5,flesh,6.13,6.9,5.84,1,301
|
||||
22,2,6,revolt,5.07,4.05,5.6,1,302
|
||||
100,2,6,leader,5.13,5.83,6.16,1,303
|
||||
50,2,6,excuse,2.77,3.05,4.04,1,304
|
||||
50,2,8,contract,4.5,5.24,6.32,1,305
|
||||
6,3,10,photograph,6.43,6.56,6.72,1,306
|
||||
2,3,8,homicide,4.17,3.81,6.24,1,307
|
||||
9,3,10,exhaustion,5.1,3.4,6.08,1,308
|
||||
20,3,7,admiral,6.2,6.35,6.11,1,309
|
||||
20,1,4,lump,5.63,6.2,5.44,1,310
|
||||
20,4,9,democracy,2.47,1.79,5.72,1,311
|
||||
50,1,6,prayer,5.17,3.6,6.63,1,312
|
||||
100,1,4,girl,6.87,6.83,5.12,1,313
|
||||
25,2,8,daylight,5.9,5.75,5.8,1,314
|
||||
100,1,5,table,6.5,7,7.6,1,315
|
||||
29,1,5,peach,6.6,6.8,6.84,1,316
|
||||
22,2,7,goddess,5.23,3.04,6.48,1,317
|
||||
1,3,9,brassiere,6.77,6.96,4.75,1,318
|
||||
50,1,6,troops,6.13,6.69,7.54,1,319
|
||||
40,2,8,garments,5.83,6.59,6.2,1,320
|
||||
100,2,6,doctor,6.4,6.62,7.32,1,321
|
||||
100,2,6,master,4.97,5.53,5.28,1,322
|
||||
50,2,8,creature,4.6,6.03,5.5,1,323
|
||||
1,2,6,foible,2.2,3.07,2.6,1,324
|
||||
19,2,9,northwest,4,3.97,5.76,1,325
|
||||
50,2,6,custom,3.43,2.99,5.33,1,326
|
||||
7,1,4,core,5.17,4.67,5.11,1,327
|
||||
100,1,7,thought,2.77,1.28,5.32,1,328
|
||||
29,3,9,sentiment,3.57,1.83,4.88,1,329
|
||||
45,2,5,mercy,3.4,1.59,5.2,1,330
|
||||
22,2,6,bullet,6.47,7,7.68,1,331
|
||||
50,2,6,safety,4.27,2.25,5.76,1,332
|
||||
23,1,4,oats,6.07,6.9,7.16,1,333
|
||||
24,3,6,injury,5.7,5.51,7.32,1,334
|
||||
19,1,6,bronze,6.17,6.59,6.19,1,335
|
||||
1,1,6,shriek,5.73,5.7,6.92,1,336
|
||||
1,2,9,whalebone,4.9,6.87,7.04,1,337
|
||||
100,2,6,window,6.37,7,6.76,1,338
|
||||
100,1,4,tree,6.77,7,6.79,1,339
|
||||
50,3,9,committee,5.03,6.35,5.95,1,340
|
||||
19,3,9,formation,3.87,3.76,4.92,1,341
|
||||
100,2,5,power,4.47,2.73,5.88,1,342
|
||||
27,2,6,patent,3.43,4.05,4.96,1,343
|
||||
100,3,8,interest,3.13,2.2,5.52,1,344
|
||||
25,2,7,costume,5.8,6.12,6.19,1,345
|
||||
100,1,4,iron,6.07,6.87,6.12,1,346
|
||||
50,3,8,magazine,6.4,6.8,6.52,1,347
|
||||
100,1,6,street,6.57,6.62,7.48,1,348
|
||||
1,3,11,cobblestone,5.87,6.58,6.38,1,349
|
||||
3,2,9,hindrance,3.07,2.97,4.8,1,350
|
||||
8,3,8,bungalow,6.13,6.87,5.48,1,351
|
||||
100,2,6,moment,2.5,2.52,4.38,1,352
|
||||
3,3,8,molecule,4.43,5.38,6.68,1,353
|
||||
3,3,9,blasphemy,3.17,2.88,5.19,1,354
|
||||
50,2,7,product,4.2,5.8,5.12,1,355
|
||||
50,1,5,wheat,6.4,7,7.96,1,356
|
||||
100,1,8,strength,4.63,2.9,5.12,1,357
|
||||
17,2,7,trumpet,6.6,7,6.8,1,358
|
||||
25,1,3,fox,6.73,7,7.4,1,359
|
||||
100,1,4,life,4.07,2.96,6.78,1,360
|
||||
6,2,6,mammal,5.57,6.31,5.8,1,361
|
||||
2,4,10,prosecutor,5,5.87,6.32,1,362
|
||||
14,3,7,gravity,3.6,2.56,6.24,1,363
|
||||
38,3,10,atmosphere,4.23,3.76,7.17,1,364
|
||||
5,3,6,gaiety,5.63,2.15,6.72,1,365
|
||||
7,2,7,dweller,4.37,5.8,5.09,1,366
|
||||
22,1,4,tomb,6.37,6.73,6.04,1,367
|
||||
1,3,9,speakeasy,3.8,4.84,5.43,1,368
|
||||
1,4,10,detonation,4.57,4.45,5.48,1,369
|
||||
2,2,5,fiord,5.7,6.69,6.48,1,370
|
||||
100,1,4,book,6.43,6.96,7.68,1,371
|
||||
4,2,9,courtship,5.3,3.22,6.13,1,372
|
||||
100,2,8,mountain,6.77,7,7.58,1,373
|
||||
100,1,5,plant,6.5,6.87,8.32,1,374
|
||||
5,3,10,underworld,4.37,4.43,5.76,1,375
|
||||
21,3,8,reaction,3.83,2.93,4.84,1,376
|
||||
50,1,4,pipe,6.43,6.9,6.2,1,377
|
||||
27,1,4,lime,5.67,6.69,7.12,1,378
|
||||
100,1,5,dress,6.53,6.93,5.68,1,379
|
||||
2,2,9,storeroom,5.87,6.73,6.52,1,380
|
||||
50,2,5,tower,6.53,6.96,6.42,1,381
|
||||
100,1,4,time,4.13,2.47,7,1,382
|
||||
29,2,5,folly,2.93,2.63,4.4,1,383
|
||||
50,4,9,discovery,4.13,3.06,5.5,1,384
|
||||
9,2,5,chaos,4.57,2.5,5.88,1,385
|
||||
31,1,4,fork,6.57,6.94,7.08,1,386
|
||||
3,3,11,distraction,3.23,2.35,4.12,1,387
|
||||
5,2,5,venom,4.23,5.62,6.4,1,388
|
||||
100,2,5,money,6.43,6.63,6.68,1,389
|
||||
3,3,8,scorpion,6.27,6.93,6.24,1,390
|
||||
100,1,4,form,4.3,4.08,4.6,1,391
|
||||
100,2,6,garden,6.73,6.83,6.36,1,392
|
||||
21,3,10,enterprise,3.07,3.55,5.36,1,393
|
||||
21,2,5,ankle,6.77,7,6.82,1,394
|
||||
1,3,9,hierarchy,5.13,2.73,4.48,1,395
|
||||
100,1,5,grass,6.63,6.96,7.54,1,396
|
||||
28,2,6,rattle,6.3,6.6,6.8,1,397
|
||||
100,1,3,cat,6.8,7,6.76,1,398
|
||||
1,1,4,gist,1.97,1.77,3.33,1,399
|
||||
13,3,8,umbrella,6.6,7,6.76,1,400
|
||||
50,1,4,bowl,6.3,6.9,7.24,1,401
|
||||
26,3,11,distinction,2.7,2.2,3.8,1,402
|
||||
50,1,4,wine,6.6,6.96,7.54,1,403
|
||||
4,3,11,suppression,2.83,2.35,3.89,1,404
|
||||
50,1,4,gift,5.77,5.95,7.04,1,405
|
||||
43,3,9,physician,6.37,6.59,5.92,1,406
|
||||
6,2,8,casement,4.63,6.24,5.25,1,407
|
||||
4,3,7,mastery,2.77,2.2,5.46,1,408
|
||||
27,3,8,tendency,2.2,1.78,4.08,1,409
|
||||
1,3,10,letterhead,5.13,6.45,4.92,1,410
|
||||
48,3,6,origin,2.3,3.25,5.32,1,411
|
||||
100,1,3,air,4.17,5.67,6.36,1,412
|
||||
1,2,11,forethought,2.57,1.83,4.4,1,413
|
||||
50,3,6,memory,3.1,1.78,5,1,414
|
||||
1,2,6,abbess,2.97,4.78,2.48,1,415
|
||||
1,4,9,criterion,1.83,1.93,3,1,416
|
||||
100,2,5,river,6.63,6.83,7.52,1,417
|
||||
35,2,8,kindness,4.2,1.63,4.84,1,418
|
||||
10,3,9,orchestra,6.77,6.55,6.76,1,419
|
||||
4,3,9,exclusion,2.8,2.41,5.32,1,420
|
||||
19,4,12,contribution,3.67,3.33,5.44,1,421
|
||||
100,2,6,answer,2.77,4.49,6.04,1,422
|
||||
16,2,5,abode,5.07,6.31,6.64,1,423
|
||||
17,3,6,comedy,4.9,3.51,6.08,1,424
|
||||
21,3,8,devotion,3.9,1.48,5.52,1,425
|
||||
50,1,5,charm,4.7,2.17,6.13,1,426
|
||||
23,1,4,boss,5.73,6.35,5.81,1,427
|
||||
50,3,6,salary,4.7,5.23,5.08,1,428
|
||||
100,2,6,corner,6.13,6.65,5.67,1,429
|
||||
20,2,6,hatred,3.97,1.59,4.84,1,430
|
||||
29,1,5,swamp,6.33,6.62,6.67,1,431
|
||||
50,2,8,clothing,6.17,6.63,7.08,1,432
|
||||
48,3,11,grandmother,6.43,6.66,6.08,1,433
|
||||
100,2,6,effort,3.33,2.22,5.75,1,434
|
||||
50,1,5,coast,6.13,6.59,6.4,1,435
|
||||
7,2,6,goblet,6.03,6.96,5.72,1,436
|
||||
19,3,9,amazement,4.47,2.18,4.5,1,437
|
||||
50,2,5,pupil,6.37,6.63,6.24,1,438
|
||||
100,2,4,idea,2.2,1.42,4.88,1,439
|
||||
43,2,7,blossom,6.67,6.62,7.6,1,440
|
||||
100,2,5,paper,6.3,6.89,7.68,1,441
|
||||
3,3,9,insolence,3.93,1.93,4.76,1,442
|
||||
100,2,6,mother,6.67,6.52,5.83,1,443
|
||||
9,3,9,ownership,3.27,3.07,5.2,1,444
|
||||
2,2,6,nutmeg,5.37,6.87,5.6,1,445
|
||||
50,3,10,convention,5.07,5.38,4.92,1,446
|
||||
3,2,8,leggings,5.87,6.9,6.12,1,447
|
||||
100,1,5,shoes,6.63,7,7.52,1,448
|
||||
1,1,4,lice,5.57,6.36,6.56,1,449
|
||||
24,3,10,engagement,4.7,3.46,5.76,1,450
|
||||
15,4,9,obedience,3.67,1.58,5.2,1,451
|
||||
1,3,9,medallion,5.87,6.73,6.32,1,452
|
||||
4,4,9,avalanche,6.27,6.38,6.72,1,453
|
||||
21,3,10,discipline,3.57,2.17,6.04,1,454
|
||||
100,3,7,history,3.47,3.03,6.91,1,455
|
||||
50,3,10,appearance,4.07,3.4,5.68,1,456
|
||||
100,2,4,army,6.53,6.55,6.88,1,457
|
||||
21,4,10,ambassador,5.7,6.22,5.22,1,458
|
||||
1,4,11,flexibility,4,3.22,5.6,1,459
|
||||
12,2,7,madness,4.03,2.35,5.16,1,460
|
||||
50,1,6,string,6.2,6.9,5.29,1,461
|
||||
1,3,8,pacifism,3.9,2.06,3.8,1,462
|
||||
2,2,8,namesake,3.37,3.53,4.2,1,463
|
||||
1,2,7,boredom,3.83,1.94,4.63,1,464
|
||||
1,4,8,busybody,5.17,5,5.5,1,465
|
||||
100,1,4,home,6.5,6.25,6.88,1,466
|
||||
50,1,5,fault,2.83,2.87,4.8,1,467
|
||||
5,3,6,equity,2.23,2.57,3.72,1,468
|
||||
20,2,7,settler,5.4,6.07,6.48,1,469
|
||||
22,4,11,disposition,2.93,1.78,4.92,1,470
|
||||
8,2,7,bouquet,6.77,6.55,5.76,1,471
|
||||
38,1,4,limb,6.17,6.93,6.8,1,472
|
||||
50,1,4,deed,3.63,4.19,5.32,1,473
|
||||
31,4,11,explanation,2.9,3.25,5.8,1,474
|
||||
6,3,10,belongings,5.1,5.85,5.38,1,475
|
||||
26,3,9,attendant,5.03,6.07,4.5,1,476
|
||||
5,3,9,racketeer,5.07,6.07,5.56,1,477
|
||||
100,1,4,soil,6,6.87,8,1,478
|
||||
28,2,7,exhaust,5.17,5,6.29,1,479
|
||||
100,1,4,soul,2.13,1.87,6.4,1,480
|
||||
24,3,8,intimate,5,2.03,5.13,1,481
|
||||
7,2,7,leaflet,5.47,6.62,4.92,1,482
|
||||
49,4,7,ability,2.67,2.03,5.6,1,483
|
||||
8,2,7,creator,3.87,3.97,5.68,1,484
|
||||
50,1,5,pride,4.23,1.49,5.24,1,485
|
||||
29,2,4,oven,6.4,6.96,8.08,1,486
|
||||
23,3,8,disaster,5.1,4.12,6.56,1,487
|
||||
3,2,8,kerchief,5.23,6.82,6.48,1,488
|
||||
1,2,8,tweezers,6.57,6.93,5.8,1,489
|
||||
42,2,6,weapon,5.73,6.38,7.84,1,490
|
||||
27,2,6,banker,6.03,6.38,6.56,1,491
|
||||
100,1,5,month,4.37,3.2,4.58,1,492
|
||||
100,2,8,building,6.4,6.94,5.48,1,493
|
||||
50,1,4,fate,2.37,1.46,4,1,494
|
||||
23,3,8,facility,2.73,2.2,4.64,1,495
|
||||
26,3,6,misery,4.37,2.28,5.84,1,496
|
||||
6,2,7,leopard,6.77,7,6.83,1,497
|
||||
1,2,6,rating,2.6,2.66,5.12,1,498
|
||||
100,2,5,woman,6.7,6.63,6.4,1,499
|
||||
2,4,8,atrocity,3.67,2.38,4.17,1,500
|
||||
50,3,8,prisoner,6.23,6.45,6.76,1,501
|
||||
8,1,4,crag,4.77,6.42,5.44,1,502
|
||||
21,1,4,code,4.53,4.53,6.63,1,503
|
||||
1,3,8,betrayal,3.57,1.77,5,1,504
|
||||
50,2,7,boulder,6.13,6.96,5.88,1,505
|
||||
100,1,5,green,6.6,5.46,6.68,1,506
|
||||
3,3,10,inducement,2.93,2.34,3.68,1,507
|
||||
100,1,4,star,6.7,6.73,7.04,1,508
|
||||
100,1,4,fact,2.2,3.31,4.29,1,509
|
||||
1,3,8,derelict,4.6,5.66,4.52,1,510
|
||||
1,2,5,adage,2.77,3.63,3,1,511
|
||||
100,1,5,plain,5.37,5.28,5.2,1,512
|
||||
21,2,7,captive,5.27,5.8,5.39,1,513
|
||||
10,3,9,promotion,3.33,3.56,5.56,1,514
|
||||
100,2,5,ocean,6.77,6.9,8.76,1,515
|
||||
22,1,4,moss,6.33,6.87,7.04,1,516
|
||||
32,1,5,ghost,5.37,2.97,6,1,517
|
||||
24,3,7,miracle,3.33,2.25,5.6,1,518
|
||||
20,2,5,array,3.3,3.6,4.17,1,519
|
||||
50,5,11,opportunity,3.03,2.63,4.08,1,520
|
||||
1,4,9,armadillo,3.77,6.44,4.38,1,521
|
||||
5,4,10,graduation,6.03,4.28,6.28,1,522
|
||||
2,2,7,warbler,5.57,6.63,5.79,1,523
|
||||
100,1,4,lord,4.63,4.18,6.68,1,524
|
||||
50,1,4,corn,6.47,6.9,6.96,1,525
|
||||
19,2,7,fatigue,5.07,4.28,3.88,1,526
|
||||
26,2,7,comrade,5.57,5.65,5.58,1,527
|
||||
1,4,9,disparity,2.7,2.07,3.52,1,528
|
||||
5,4,10,salutation,4.47,4.87,5.24,1,529
|
||||
3,2,7,sunburn,6.7,6.52,7.72,1,530
|
||||
50,1,4,dawn,6.37,5.83,7.36,1,531
|
||||
100,2,4,baby,6.7,6.9,7.04,1,532
|
||||
19,4,11,caterpillar,6.57,6.96,6.88,1,533
|
||||
1,3,10,wholesaler,3.87,6.15,4.88,1,534
|
||||
50,2,6,shadow,5.63,4.94,5.28,1,535
|
||||
50,3,8,quantity,3.47,3.32,4.17,1,536
|
||||
42,3,10,instrument,5.67,6.25,6.72,1,537
|
||||
100,2,5,water,6.6,6.96,7.5,1,538
|
||||
3,1,4,suds,6.4,6.75,7.29,1,539
|
||||
100,2,7,village,6.5,6.69,5.32,1,540
|
||||
22,2,7,tribute,3.57,3.12,5.52,1,541
|
||||
13,1,5,nymph,5.63,4.4,5.36,1,542
|
||||
100,1,4,gold,6.47,6.76,6.36,1,543
|
||||
3,3,8,outsider,5.27,5.07,4.56,1,544
|
||||
50,3,7,library,6.73,6.87,6.4,1,545
|
||||
2,3,10,competence,2.97,1.86,4.63,1,546
|
||||
50,1,4,hide,3.8,5.45,5.63,1,547
|
||||
2,2,6,feline,4.67,5.31,5.42,1,548
|
||||
50,1,6,breast,6.77,6.8,5.81,1,549
|
||||
3,3,10,gymnastics,5.83,5.08,5.52,1,550
|
||||
46,1,4,cash,6.17,6.28,7.21,1,551
|
||||
46,1,4,doll,6.17,6.94,6.12,1,552
|
||||
25,2,7,speaker,5.67,6.13,5.54,1,553
|
||||
50,1,5,slave,6.23,6.38,6.17,1,554
|
||||
19,1,4,cane,6.43,6.93,7.48,1,555
|
||||
100,2,7,present,4.8,3.88,6.13,1,556
|
||||
50,3,9,advantage,2.37,2.25,4.48,1,557
|
||||
50,3,9,professor,6.17,6.52,5.4,1,558
|
||||
1,3,8,rhapsody,4.23,4.38,5.12,1,559
|
||||
4,2,6,impact,4.47,3.73,5.71,1,560
|
||||
2,1,5,noose,6.23,6.2,6.2,1,561
|
||||
50,2,6,bottle,6.57,6.94,7.24,1,562
|
||||
100,1,3,joy,5.43,1.66,6.52,1,563
|
||||
4,1,5,flask,6.5,7,6.28,1,564
|
||||
45,2,6,maiden,6.1,6.52,5.04,1,565
|
||||
9,3,7,dynasty,3.63,4.14,6.28,1,566
|
||||
50,2,6,ticket,6.2,7,7.21,1,567
|
||||
100,1,3,law,3.73,3.23,6.32,1,568
|
||||
1,2,8,traction,4.77,4.14,6.4,1,569
|
||||
19,2,7,thicket,5.6,6.49,6.04,1,570
|
||||
50,2,6,cattle,6.4,6.79,7.56,1,571
|
||||
50,2,9,christmas,6.7,4.53,8.76,1,572
|
||||
26,2,5,piano,6.7,6.85,6.4,1,573
|
||||
100,1,5,chair,6.63,7,7.2,1,574
|
||||
2,2,8,hardwood,5.77,6.58,5.46,1,575
|
||||
7,2,6,portal,5.1,6.25,5.63,1,576
|
||||
100,2,8,pleasure,4.8,2.1,5.54,1,577
|
||||
25,1,4,frog,6.73,6.96,6.56,1,578
|
||||
50,1,5,brain,5.93,6.63,6.8,1,579
|
||||
3,2,10,stagecoach,6.43,6.9,6.96,1,580
|
||||
100,2,6,winter,6.53,5.83,8.32,1,581
|
||||
2,5,13,extermination,4.03,3.13,4.96,1,582
|
||||
50,2,6,virtue,3.33,1.46,4.87,1,583
|
||||
100,1,5,board,6.07,6.87,6.92,1,584
|
||||
25,4,10,comparison,2.93,2.69,4.56,1,585
|
||||
100,2,5,party,6.27,5.5,7.08,1,586
|
||||
27,2,7,scarlet,6.37,5.96,5.8,1,587
|
||||
1,4,10,centennial,4.1,3.45,6.13,1,588
|
||||
100,1,4,fire,6.7,6.66,7.36,1,589
|
||||
15,3,7,alcohol,6.47,6.87,6.08,1,590
|
||||
100,1,4,skin,6.43,6.96,5.67,1,591
|
||||
1,3,7,bivouac,3.37,5.37,5.36,1,592
|
||||
50,1,4,dust,6.03,6.67,6.84,1,593
|
||||
22,3,9,policeman,6.7,6.69,6.96,1,594
|
||||
2,4,7,agility,4.57,2.93,5.75,1,595
|
||||
19,3,10,strawberry,6.8,7,6.71,1,596
|
||||
1,3,11,blunderbuss,3.47,5.25,3.56,1,597
|
||||
3,3,6,galaxy,6,5.03,6,1,598
|
||||
9,3,10,combustion,5.1,4.98,6.72,1,599
|
||||
9,3,10,microscope,6.57,7,5.48,1,600
|
||||
25,2,7,welfare,3.17,2.35,6.16,1,601
|
||||
1,3,11,thistledown,3.83,6.14,4.76,1,602
|
||||
50,1,4,flag,6.6,6.94,6.54,1,603
|
||||
1,3,9,increment,2.63,2.85,3.72,1,604
|
||||
100,2,6,forest,6.63,6.69,9.12,1,605
|
||||
100,2,6,letter,6.37,6.94,5.96,1,606
|
||||
29,1,4,unit,2.87,4.33,4.8,1,607
|
||||
26,2,4,jury,6.07,6.17,6.88,1,608
|
||||
12,4,9,hostility,4.23,2.18,5.64,1,609
|
||||
5,5,14,multiplication,4.73,3.84,6,1,610
|
||||
1,2,6,tidbit,4.37,5.4,5.79,1,611
|
||||
7,3,7,epistle,4.23,5.58,5.63,1,612
|
||||
2,1,5,yacht,6.77,6.96,7.2,1,613
|
||||
26,3,9,fisherman,6.5,6.52,7.84,1,614
|
||||
2,4,8,macaroni,6.47,7,6,1,615
|
||||
29,1,4,mule,6.6,6.96,6.12,1,616
|
||||
19,3,7,loyalty,4.07,1.56,5.72,1,617
|
||||
7,3,9,firmament,4.3,4.5,4.96,1,618
|
||||
3,4,8,heredity,3.53,2.98,5.64,1,619
|
||||
26,2,6,poetry,4.9,4.27,6.24,1,620
|
||||
100,1,3,sky,6.73,6.18,7.84,1,621
|
||||
9,1,6,corpse,6.5,6.89,6.52,1,622
|
||||
9,2,8,friction,4.33,4.26,5.28,1,623
|
||||
25,2,8,sickness,5.17,4.94,6.36,1,624
|
||||
27,2,5,lemon,6.83,6.96,7.72,1,625
|
||||
21,1,4,dirt,6.1,6.66,6.44,1,626
|
||||
1,3,8,semester,3.53,3.88,5.48,1,627
|
||||
5,1,4,gilt,4.2,5.14,5.32,1,628
|
||||
7,3,7,episode,3.37,3.91,5.32,1,629
|
||||
1,2,7,cuisine,5.57,5.52,6.32,1,630
|
||||
100,1,4,hour,3.6,2.93,5.56,1,631
|
||||
2,1,5,spree,4.27,2.81,5.79,1,632
|
||||
100,2,6,season,4.87,4.58,7.88,1,633
|
||||
1,5,11,impropriety,1.87,2.08,3.75,1,634
|
||||
4,3,7,fantasy,3.7,2.03,5.06,1,635
|
||||
12,2,6,saloon,6.43,6.7,7.12,1,636
|
||||
19,2,8,portrait,5.87,6.63,5.52,1,637
|
||||
1,4,9,accordion,6.5,7,5.89,1,638
|
||||
2,4,10,evangelist,4.97,5.95,5.28,1,639
|
||||
1,3,11,bereavement,3.87,2.49,5.75,1,640
|
||||
3,2,6,locker,6.27,6.96,6.44,1,641
|
||||
27,1,6,pledge,3.63,2.93,5.92,1,642
|
||||
100,3,8,industry,5.77,5.76,6,1,643
|
||||
3,1,3,keg,6.4,6.87,4.84,1,644
|
||||
3,4,12,supplication,2.8,2.89,4.04,1,645
|
||||
20,3,6,vanity,3.83,1.77,4.92,1,646
|
||||
23,1,6,warmth,5.7,4,7.36,1,647
|
||||
2,2,6,nectar,5.33,6.41,6.92,1,648
|
||||
1,3,6,sonata,4.53,5.73,5.56,1,649
|
||||
100,1,6,length,3.73,3.75,5.84,1,650
|
||||
31,3,9,agreement,3.33,2.93,4.48,1,651
|
||||
23,5,13,investigation,3.6,3.32,5.8,1,652
|
||||
1,4,11,functionary,1.77,2.62,4.29,1,653
|
||||
50,1,4,cell,6.47,6.63,7.52,1,654
|
||||
5,2,7,gingham,5.33,6.17,5.65,1,655
|
||||
100,2,4,city,6.43,6.41,7.72,1,656
|
||||
24,1,4,link,4.8,5.38,5.2,1,657
|
||||
21,2,6,fabric,5.6,6.55,6.48,1,658
|
||||
1,2,6,savant,3.07,3.02,3.88,1,659
|
||||
50,2,6,advice,3.13,2.08,5.39,1,660
|
||||
17,3,8,jealousy,4.72,1.77,4.88,1,661
|
||||
19,2,8,nonsense,3.07,1.9,4.12,1,662
|
||||
29,4,10,prosperity,4.47,2.78,5.44,1,663
|
||||
50,2,7,diamond,6.67,6.94,7.84,1,664
|
||||
4,2,9,cleanness,4.77,3.63,5.64,1,665
|
||||
1,3,8,barnacle,4.5,6.2,5.69,1,666
|
||||
45,3,9,candidate,4.67,5.53,5.76,1,667
|
||||
2,2,6,morgue,6.03,6.48,6.56,1,668
|
||||
9,3,8,revolver,6.7,6.96,7.4,1,669
|
||||
5,2,6,vacuum,4.77,3.87,5.94,1,670
|
||||
22,1,4,jail,6.43,6.69,7.38,1,671
|
||||
36,2,6,damsel,6.03,6.58,6.12,1,672
|
||||
23,1,5,hound,6.27,6.83,6,1,673
|
||||
50,4,10,automobile,6.87,7,6.16,1,674
|
||||
29,1,4,hint,2.57,3.35,3.72,1,675
|
||||
1,3,8,islander,5.43,6.28,5.48,1,676
|
||||
3,3,9,pollution,4.63,4.14,7.4,1,677
|
||||
100,1,5,dream,4.6,3.03,5.44,1,678
|
||||
2,4,11,vaccination,5.97,5.7,6.12,1,679
|
||||
50,1,7,science,4.07,3.05,6.56,1,680
|
||||
50,1,3,bar,6.4,6.83,6.08,1,681
|
||||
50,1,5,beast,5.9,6.51,6.08,1,682
|
||||
50,3,6,avenue,6.07,6.48,6.09,1,683
|
||||
1,4,7,alimony,4.47,4.87,5.72,1,684
|
||||
26,2,5,elbow,6.3,6.94,5.16,1,685
|
||||
22,3,10,reflection,5.9,3.12,6.56,1,686
|
||||
100,2,7,silence,4.1,3.09,5.82,1,687
|
||||
8,2,5,demon,4.7,2.56,5.04,1,688
|
||||
50,2,6,murder,5.4,4.6,7.8,1,689
|
||||
20,5,11,cooperation,3.4,1.92,4.67,1,690
|
||||
100,2,7,teacher,5.77,6.38,6,1,691
|
||||
2,4,8,delirium,4.8,2.79,5,1,692
|
||||
26,3,9,interview,5.03,4.34,4.88,1,693
|
||||
50,1,4,pole,6.1,6.93,6.2,1,694
|
||||
3,3,8,retailer,4.33,5.88,6.76,1,695
|
||||
50,1,5,shock,4.67,3.97,6.2,1,696
|
||||
25,2,7,prairie,6.47,6.8,8.16,1,697
|
||||
50,2,6,temple,6.13,6.69,6.75,1,698
|
||||
100,2,7,machine,6,6.75,5.88,1,699
|
||||
1,5,12,emancipation,3.2,2.49,5.2,1,700
|
||||
26,1,4,golf,6.7,6.1,8.16,1,701
|
||||
50,1,5,clock,6.5,6.94,7.08,1,702
|
||||
8,4,8,bacteria,5.33,6.38,6.12,1,703
|
||||
40,2,6,insect,6.1,6.8,6.32,1,704
|
||||
28,4,11,competition,4.53,3.08,5.69,1,705
|
||||
100,1,4,meat,6.63,6.93,8.32,1,706
|
||||
2,3,8,aptitude,2.6,1.62,5.25,1,707
|
||||
4,1,4,pact,3.5,3.77,5.12,1,708
|
||||
21,4,7,economy,3.2,2.28,5.88,1,709
|
||||
1,2,10,guardhouse,5.8,6.69,5.76,1,710
|
||||
1,4,10,abdication,3.57,2.66,4.72,1,711
|
||||
100,2,6,spirit,3.43,1.86,5.72,1,712
|
||||
100,1,4,ship,6.67,6.93,7.87,1,713
|
||||
3,4,11,predicament,3.3,2.18,4.64,1,714
|
||||
4,3,7,recital,4.97,5.19,5.56,1,715
|
||||
5,2,6,piston,5.37,6.87,7.4,1,716
|
||||
8,2,7,outcome,2.4,2.8,4.24,1,717
|
||||
1,3,8,falconer,4.03,5.9,5.64,1,718
|
||||
5,2,6,bandit,5.83,6.28,6.92,1,719
|
||||
11,1,5,spire,5.57,6.72,4.72,1,720
|
||||
50,2,6,series,4.47,3.88,5.36,1,721
|
||||
9,3,7,edifice,4.7,6.56,5.16,1,722
|
||||
10,2,6,malice,3.3,1.73,4.56,1,723
|
||||
8,3,10,instructor,5.7,6.45,6.29,1,724
|
||||
27,3,7,tragedy,4.7,2.59,5.84,1,725
|
||||
29,2,8,blessing,4.43,1.75,6.19,1,726
|
||||
20,1,4,fowl,5.87,6.58,7.36,1,727
|
||||
22,2,6,infant,6.33,6.76,7.2,1,728
|
||||
50,2,8,instance,2,2.87,4.04,1,729
|
||||
1,5,9,unreality,2.1,1.18,4.92,1,730
|
||||
100,3,6,animal,6.1,6.75,7,1,731
|
||||
50,2,5,hotel,6.4,6.8,5.96,1,732
|
||||
7,3,9,appliance,5.73,6.45,6.64,1,733
|
||||
1,4,9,amplifier,5.8,6.53,5.96,1,734
|
||||
27,3,9,intellect,2.93,1.83,5.56,1,735
|
||||
8,4,10,metropolis,5.97,5.62,6.28,1,736
|
||||
26,2,7,impulse,3.7,2.08,4.96,1,737
|
||||
27,2,5,bosom,6.57,6.09,5.5,1,738
|
||||
100,2,6,cotton,6,6.9,7.13,1,739
|
||||
6,4,9,alligator,6.87,6.93,7.72,1,740
|
||||
100,1,5,earth,6.27,6.58,7.56,1,741
|
||||
100,2,6,method,2.63,2.2,5.2,1,742
|
||||
22,2,7,assault,4.8,4.19,5.56,1,743
|
||||
100,1,6,health,4.1,3.54,6.39,1,744
|
||||
100,1,5,judge,6.27,6.25,7.04,1,745
|
||||
100,1,4,kiss,6.8,6.13,6.68,1,746
|
||||
3,2,7,shotgun,6.6,6.96,7.88,1,747
|
||||
1,3,7,interim,1.97,2.67,4.08,1,748
|
||||
34,2,6,hammer,6.73,6.96,6.92,1,749
|
||||
6,3,6,malady,3.37,3.72,6,1,750
|
||||
4,2,5,irony,2.83,2.1,5.24,1,751
|
||||
7,2,5,opium,4.6,6.44,5.88,1,752
|
||||
22,3,9,gratitude,3.7,1.59,4.32,1,753
|
||||
50,2,7,student,6.27,6.38,5.96,1,754
|
||||
100,1,4,lake,6.67,6.9,9.22,1,755
|
||||
1,2,6,icebox,6.17,6.9,6.28,1,756
|
||||
2,5,12,eccentricity,3.77,2.27,4.04,1,757
|
||||
50,2,7,fortune,4.57,3.82,6,1,758
|
||||
1,3,11,subtraction,3.8,3.73,5.52,1,759
|
||||
21,1,4,foam,6.33,6.73,6.44,1,760
|
||||
1,2,6,wigwam,6.23,6.83,5.88,1,761
|
||||
50,5,10,university,6.53,5.87,7.2,1,762
|
||||
2,2,6,hurdle,6.33,6.65,5.92,1,763
|
||||
50,1,4,poet,5.27,6.35,5.36,1,764
|
||||
2,4,9,brutality,4.9,3.19,5.06,1,765
|
||||
2,2,7,glutton,5.77,5.77,5.32,1,766
|
||||
32,2,6,cellar,6.27,6.83,6.79,1,767
|
||||
24,3,7,poverty,5.07,3.17,5.44,1,768
|
||||
36,1,4,lawn,6.57,6.96,7.28,1,769
|
||||
13,1,5,skull,6.47,6.96,6.64,1,770
|
||||
2,2,9,onslaught,3.67,3.34,5.84,1,771
|
||||
100,3,7,opinion,3.23,2.29,4.96,1,772
|
||||
2,3,10,disclosure,2.17,2.51,3.56,1,773
|
||||
1,2,9,timepiece,6.1,6.76,6.08,1,774
|
||||
22,4,7,anxiety,4.03,1.63,5.69,1,775
|
||||
50,2,6,author,4.53,6.04,5.24,1,776
|
||||
1,3,5,idiom,3,3.44,4.6,1,777
|
||||
1,2,8,steerage,3,4.29,4.65,1,778
|
||||
4,4,9,festivity,5.3,4.45,6.4,1,779
|
||||
20,2,8,mischief,4.03,2.9,5.44,1,780
|
||||
39,2,6,belief,2.73,1.55,5.24,1,781
|
||||
50,3,9,happiness,5.13,1.94,6,1,782
|
||||
1,2,5,amour,5.5,2.65,5.08,1,783
|
||||
50,2,6,volume,4.53,5.14,6.16,1,784
|
||||
4,3,9,performer,5.43,6.01,6.48,1,785
|
||||
2,2,7,pianist,6.43,6.55,5.96,1,786
|
||||
3,1,5,truce,4.8,3.05,6.17,1,787
|
||||
2,2,7,trellis,5.6,6.69,5,1,788
|
||||
100,1,5,stone,6.23,6.96,7.24,1,789
|
||||
50,2,5,event,2.9,3.72,5.04,1,790
|
||||
22,2,7,butcher,6.27,6.42,6.72,1,791
|
||||
100,1,5,woods,6.7,6.87,7.84,1,792
|
||||
1,2,7,hairpin,6.13,6.96,6,1,793
|
||||
25,2,7,painter,5.87,6.59,6.4,1,794
|
||||
3,3,8,tomahawk,6.57,6.87,6.44,1,795
|
||||
22,1,5,spray,6.17,6.21,6.48,1,796
|
||||
100,2,6,butter,6.57,6.96,6.91,1,797
|
||||
29,2,8,twilight,5.93,5.77,6.56,1,798
|
||||
19,2,6,crisis,3.43,2.81,5.44,1,799
|
||||
2,3,10,camouflage,5.2,5.26,6.38,1,800
|
||||
50,3,6,potato,6.5,7,7.13,1,801
|
||||
1,3,7,acrobat,6.53,6.38,5.67,1,802
|
||||
1,2,7,context,2.13,2.73,4.44,1,803
|
||||
24,2,6,sunset,6.83,6.07,6.96,1,804
|
||||
1,2,8,henchman,4.67,5.65,3.8,1,805
|
||||
1,3,7,perjury,3.37,2.7,5.92,1,806
|
||||
2,3,7,residue,4.87,5.72,4.48,1,807
|
||||
5,2,7,profile,5.97,5.72,5.6,1,808
|
||||
1,2,9,workhouse,4,6.31,4.88,1,809
|
||||
2,3,9,diffusion,3.4,3.18,5.67,1,810
|
||||
100,1,3,car,6.87,7,6.38,1,811
|
||||
37,3,11,destruction,5.27,3.61,5.32,1,812
|
||||
21,2,6,menace,3.73,3.7,5.04,1,813
|
||||
100,1,3,boy,6.57,6.93,6.96,1,814
|
||||
2,4,8,sobriety,3.5,2.9,4.52,1,815
|
||||
19,3,7,edition,3.4,4.64,5.88,1,816
|
||||
20,2,6,decree,3.3,4.58,5.16,1,817
|
||||
100,2,4,duty,3.17,2.32,5.6,1,818
|
||||
100,3,9,newspaper,6.57,6.56,6.12,1,819
|
||||
41,2,8,forehead,6.27,6.93,5.08,1,820
|
||||
50,2,6,palace,6.5,6.73,7.08,1,821
|
||||
8,3,9,ambulance,6.67,7,7.52,1,822
|
||||
1,3,9,feudalism,3.83,2.95,5.8,1,823
|
||||
19,2,8,hardship,4.1,2.93,5.48,1,824
|
||||
100,1,4,wife,6.53,6.52,6.48,1,825
|
||||
100,2,8,railroad,6.27,6.76,6.6,1,826
|
||||
20,2,7,charter,3.83,5.05,4.89,1,827
|
||||
1,5,11,unification,2.77,2.51,4.76,1,828
|
||||
22,2,6,nephew,4.3,6.19,4.48,1,829
|
||||
11,2,7,sadness,4.63,2.47,5.56,1,830
|
||||
28,1,5,stain,5.93,6.25,5.25,1,831
|
||||
2,4,8,panorama,4.47,4.18,5.72,1,832
|
||||
22,2,6,salute,5.77,5,6.52,1,833
|
||||
50,2,6,artist,5.93,6.14,6.65,1,834
|
||||
100,1,4,seat,6.4,6.79,6.08,1,835
|
||||
2,2,6,encore,4,3.62,5.72,1,836
|
||||
23,2,6,banner,5.93,6.58,6.2,1,837
|
||||
30,1,4,cord,6.03,6.93,6,1,838
|
||||
2,2,6,deluge,4.57,4.38,5.32,1,839
|
||||
7,3,7,caravan,5.83,6.15,6.52,1,840
|
||||
30,4,10,inhabitant,4.33,6,5.33,1,841
|
||||
24,1,3,gem,6.4,6.59,6.88,1,842
|
||||
27,2,6,robber,5.67,6.25,6.88,1,843
|
||||
8,3,8,beverage,5.87,5.96,6.58,1,844
|
||||
100,1,4,love,5.6,1.8,6.44,1,845
|
||||
1,3,8,citation,3.57,4.42,5.06,1,846
|
||||
1,4,10,unbeliever,2.6,4,4.72,1,847
|
||||
8,3,9,infection,4.87,5.08,6.12,1,848
|
||||
1,2,6,surtax,1.63,4.12,2.96,1,849
|
||||
29,3,8,incident,2.9,3,4.16,1,850
|
||||
100,1,5,house,6.67,6.93,6.83,1,851
|
||||
50,2,6,vessel,5.9,6.99,7.82,1,852
|
||||
3,2,7,mileage,4.53,4.36,6.72,1,853
|
||||
9,3,7,bravery,4.4,1.93,6.44,1,854
|
||||
22,3,10,permission,2.87,4.43,4.68,1,855
|
||||
20,2,8,hillside,6.3,6.59,6.92,1,856
|
||||
1,3,8,emporium,2.93,5.16,4.04,1,857
|
||||
2,2,7,skillet,6.1,6.8,7.43,1,858
|
||||
100,1,3,sea,6.73,6.79,7.16,1,859
|
||||
7,2,8,prestige,3.67,1.73,4.56,1,860
|
||||
8,1,5,whale,6.5,6.96,7.24,1,861
|
||||
3,1,5,greed,3.53,1.73,5.52,1,862
|
||||
1,3,8,clemency,2.9,1.97,3.94,1,863
|
||||
50,4,8,majority,3.63,3.48,5.48,1,864
|
||||
22,3,9,attribute,2.4,2,3.83,1,865
|
||||
50,2,5,glory,4.13,1.77,5.88,1,866
|
||||
41,2,6,humour,4.57,2.31,5.72,1,867
|
||||
23,3,12,headquarters,5.03,5.94,5.08,1,868
|
||||
5,2,6,poster,6.33,6.96,6.2,1,869
|
||||
8,3,7,utensil,5.47,6.58,6.08,1,870
|
||||
8,4,11,mathematics,4.5,4.35,6.88,1,871
|
||||
50,2,6,prison,6.23,6.62,7.21,1,872
|
||||
7,3,8,kerosene,5.77,6.87,6.04,1,873
|
||||
3,2,7,hostage,5.57,6.05,6.4,1,874
|
||||
23,3,10,restaurant,6.47,6.83,6.88,1,875
|
||||
27,2,5,baron,5.1,5.77,5.72,1,876
|
||||
1,2,6,python,5.47,6.42,5.88,1,877
|
||||
21,1,4,vest,6.37,6.73,5.96,1,878
|
||||
4,5,9,animosity,3.6,1.81,5.19,1,879
|
||||
1,2,7,invoice,5.17,6.14,6.28,1,880
|
||||
1,2,7,doorman,6.4,6.52,6.28,1,881
|
||||
100,1,3,arm,6.53,6.96,6.92,1,882
|
||||
50,3,10,confidence,3.4,1.52,4.17,1,883
|
||||
20,1,4,harp,6.6,6.94,6,1,884
|
||||
17,2,7,pudding,6.27,6.6,7.31,1,885
|
||||
4,2,7,dreamer,5.33,5.1,5.04,1,886
|
||||
50,4,9,vegetable,5.83,6.76,6.92,1,887
|
||||
1,3,8,copybook,4.6,6.62,3.61,1,888
|
||||
1,3,9,disturber,4.1,5.07,4.6,1,889
|
||||
27,2,6,vapour,4.8,5.93,5.76,1,890
|
||||
29,2,6,beggar,6.4,6.25,6.5,1,891
|
||||
100,2,6,dollar,6.5,6.62,6.48,1,892
|
||||
37,3,9,affection,4.87,2.18,6.36,1,893
|
||||
21,2,8,contents,3.57,4.25,5,1,894
|
||||
5,2,5,abyss,5.17,5.4,5.88,1,895
|
||||
28,2,5,salad,6.53,6.83,7.2,1,896
|
||||
50,1,5,steam,6.37,6.41,7.46,1,897
|
||||
19,2,9,fireplace,6.83,6.96,7.08,1,898
|
||||
|
@@ -0,0 +1,126 @@
|
||||
import random
|
||||
|
||||
words = [
|
||||
"behind",
|
||||
"allusion",
|
||||
"volleyball",
|
||||
"frescoes",
|
||||
"scattering",
|
||||
"evading",
|
||||
"quizzed",
|
||||
"hangar",
|
||||
"duopolist",
|
||||
"comet",
|
||||
"sailor",
|
||||
"transparency",
|
||||
"intersperse",
|
||||
"disgruntle",
|
||||
"believed",
|
||||
"cloning",
|
||||
"seams",
|
||||
"checkmate",
|
||||
"glue",
|
||||
"clever",
|
||||
"waved",
|
||||
"innuendo",
|
||||
"pigtail",
|
||||
"impactor",
|
||||
"willa",
|
||||
"shimming",
|
||||
"censor",
|
||||
"adulterate",
|
||||
"giant",
|
||||
"conceptualization",
|
||||
"beautiful",
|
||||
"billybob",
|
||||
"alfalfa",
|
||||
"introducing",
|
||||
"commonplace",
|
||||
"prizewinning",
|
||||
"disable",
|
||||
"crouched",
|
||||
"sauce",
|
||||
"dissident",
|
||||
"safes",
|
||||
"lard",
|
||||
"movement",
|
||||
"surmises",
|
||||
"insight",
|
||||
"nationalist",
|
||||
"renaming",
|
||||
"coroutine",
|
||||
"corrupts",
|
||||
"serape",
|
||||
"estate",
|
||||
"halfhearted",
|
||||
"slaying",
|
||||
"kahuna",
|
||||
"readouts",
|
||||
"blower",
|
||||
"sashay",
|
||||
"differentiation",
|
||||
"befalling",
|
||||
"cotman",
|
||||
"gasket",
|
||||
"sentiments",
|
||||
"finalization",
|
||||
"transplant",
|
||||
"analytical",
|
||||
"quadrature",
|
||||
"deeming",
|
||||
"washed",
|
||||
"enrollment",
|
||||
"antiquarian",
|
||||
"thyratron",
|
||||
"acclimating",
|
||||
"gum",
|
||||
"millionaires",
|
||||
"steeled",
|
||||
"skye",
|
||||
"transistor",
|
||||
"magnifier",
|
||||
"goodtime",
|
||||
"harsher",
|
||||
"digitally",
|
||||
"inter",
|
||||
"closers",
|
||||
"spoof",
|
||||
"hoagland",
|
||||
"alsop",
|
||||
"predicate",
|
||||
"trance",
|
||||
"shuddery",
|
||||
"occupant",
|
||||
"bronx",
|
||||
"persuaded",
|
||||
"antics",
|
||||
"surrounds",
|
||||
"tableland",
|
||||
"nieces",
|
||||
"symptoms",
|
||||
"drub",
|
||||
"freak",
|
||||
"botulinus",
|
||||
"reliableness",
|
||||
"murmured",
|
||||
"russ",
|
||||
"inquirers",
|
||||
"mothering",
|
||||
"mammoth",
|
||||
"to",
|
||||
"stiff",
|
||||
"algorithmically",
|
||||
"twists",
|
||||
"competing",
|
||||
"catholicism",
|
||||
"thinnish",
|
||||
"bathe",
|
||||
"sierra",
|
||||
"barometric",
|
||||
"formed",
|
||||
"law",
|
||||
"mutterers",
|
||||
"recurred"
|
||||
]
|
||||
|
||||
random.shuffle(words)
|
||||
Referência em uma Nova Issue
Bloquear um usuário