lastpass 1.3.0 → 1.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4,11 +4,13 @@
4
4
  module LastPass
5
5
  class Session
6
6
  attr_reader :id,
7
- :key_iteration_count
7
+ :key_iteration_count,
8
+ :encrypted_private_key
8
9
 
9
- def initialize id, key_iteration_count
10
+ def initialize id, key_iteration_count, encrypted_private_key
10
11
  @id = id
11
12
  @key_iteration_count = key_iteration_count
13
+ @encrypted_private_key = encrypted_private_key
12
14
  end
13
15
  end
14
16
  end
@@ -3,16 +3,12 @@
3
3
 
4
4
  module LastPass
5
5
  class Vault
6
- attr_reader :accounts
6
+ attr_reader :accounts, :notes
7
7
 
8
8
  # Fetches a blob from the server and creates a vault
9
- def self.open_remote username, password, multifactor_password = nil
10
- open Vault.fetch_blob(username, password, multifactor_password), username, password
11
- end
12
-
13
- # Creates a vault from a locally stored blob
14
- def self.open_local blob_filename, username, password
15
- # TODO: read the blob here
9
+ def self.open_remote username, password, multifactor_password = nil, client_id = nil
10
+ blob = Vault.fetch_blob username, password, multifactor_password, client_id
11
+ open blob, username, password
16
12
  end
17
13
 
18
14
  # Creates a vault from a blob object
@@ -21,32 +17,62 @@ module LastPass
21
17
  end
22
18
 
23
19
  # Just fetches the blob, could be used to store it locally
24
- def self.fetch_blob username, password, multifactor_password = nil
25
- Fetcher.fetch Fetcher.login username, password, multifactor_password
20
+ def self.fetch_blob username, password, multifactor_password = nil, client_id = nil
21
+ session = Fetcher.login username, password, multifactor_password, client_id
22
+ blob = Fetcher.fetch session
23
+ Fetcher.logout session
24
+
25
+ blob
26
26
  end
27
27
 
28
28
  # This more of an internal method, use one of the static constructors instead
29
29
  def initialize blob, encryption_key
30
- @accounts = []
30
+ chunks = Parser.extract_chunks blob
31
+ if !complete? chunks
32
+ raise InvalidResponseError, "Blob is truncated"
33
+ end
34
+
35
+ private_key = nil
36
+ if blob.encrypted_private_key
37
+ private_key = Parser.parse_private_key blob.encrypted_private_key, encryption_key
38
+ end
39
+
40
+ @accounts, @notes = parse_accounts_and_notes chunks, encryption_key, private_key
41
+ end
42
+
43
+ def accounts_and_notes
44
+ @accounts_and_notes ||= @accounts + @notes
45
+ end
31
46
 
47
+ def complete? chunks
48
+ !chunks.empty? && chunks.last.id == "ENDM" && chunks.last.payload == "OK"
49
+ end
50
+
51
+ def parse_accounts_and_notes chunks, encryption_key, private_key
52
+ accounts = []
53
+ notes = []
32
54
  key = encryption_key
33
- rsa_private_key = nil
34
55
 
35
- Parser.extract_chunks(blob).each do |i|
56
+ chunks.each do |i|
36
57
  case i.id
37
58
  when "ACCT"
38
59
  # TODO: Put shared folder name as group in the account
39
60
  account = Parser.parse_ACCT i, key
40
- if account
41
- @accounts << account
61
+ case account
62
+ when Account
63
+ accounts << account
64
+ when Note
65
+ notes << account
42
66
  end
43
- when "PRIK"
44
- rsa_private_key = Parser.parse_PRIK i, encryption_key
45
67
  when "SHAR"
68
+ raise "private_key must be provided" if !private_key
69
+
46
70
  # After SHAR chunk all the folliwing accounts are enrypted with a new key
47
- key = Parser.parse_SHAR(i, encryption_key, rsa_private_key)[:encryption_key]
71
+ key = Parser.parse_SHAR(i, encryption_key, private_key)[:encryption_key]
48
72
  end
49
73
  end
74
+
75
+ [accounts, notes]
50
76
  end
51
77
  end
52
78
  end
@@ -2,5 +2,5 @@
2
2
  # Licensed under the terms of the MIT license. See LICENCE for details.
3
3
 
4
4
  module LastPass
5
- VERSION = "1.3.0"
5
+ VERSION = "1.7.0"
6
6
  end
@@ -9,14 +9,16 @@ describe LastPass::Account do
9
9
  let(:username) { "username" }
10
10
  let(:password) { "password" }
11
11
  let(:url) { "url" }
12
+ let(:notes) { "notes" }
12
13
  let(:group) { "group" }
13
14
 
14
- subject { LastPass::Account.new id, name, username, password, url, group }
15
+ subject { LastPass::Account.new id, name, username, password, url, notes, group }
15
16
 
16
17
  its(:id) { should eq id }
17
18
  its(:name) { should eq name }
18
19
  its(:username) { should eq username }
19
20
  its(:password) { should eq password }
20
21
  its(:url) { should eq url }
22
+ its(:notes) { should eq notes }
21
23
  its(:group) { should eq group }
22
24
  end
@@ -6,14 +6,16 @@ require "spec_helper"
6
6
  describe LastPass::Blob do
7
7
  let(:bytes) { "TFBBVgAAAAMxMjJQUkVNAAAACjE0MTQ5".decode64 }
8
8
  let(:key_iteration_count) { 500 }
9
+ let(:encrypted_private_key) { "DEADBEEF" }
9
10
  let(:username) { "postlass@gmail.com" }
10
11
  let(:password) { "pl1234567890" }
11
12
  let(:encryption_key) { "OfOUvVnQzB4v49sNh4+PdwIFb9Fr5+jVfWRTf+E2Ghg=".decode64 }
12
13
 
13
- subject { LastPass::Blob.new bytes, key_iteration_count }
14
+ subject { LastPass::Blob.new bytes, key_iteration_count, encrypted_private_key }
14
15
 
15
16
  its(:bytes) { should eq bytes }
16
17
  its(:key_iteration_count) { should eq key_iteration_count }
18
+ its(:encrypted_private_key) { should eq encrypted_private_key }
17
19
 
18
20
  describe "#encryption_key" do
19
21
  it "returns encryption key" do
@@ -10,29 +10,49 @@ describe LastPass::Fetcher do
10
10
 
11
11
  let(:hash) { "7880a04588cfab954aa1a2da98fd9c0d2c6eba4c53e36a94510e6dbf30759256" }
12
12
  let(:session_id) { "53ru,Hb713QnEVM5zWZ16jMvxS0" }
13
- let(:session) { LastPass::Session.new session_id, key_iteration_count }
13
+ let(:escaped_session_id) { "53ru%2CHb713QnEVM5zWZ16jMvxS0" }
14
+ let(:session) { LastPass::Session.new session_id, key_iteration_count, "DEADBEEF" }
14
15
 
15
16
  let(:blob_response) { "TFBBVgAAAAMxMjJQUkVNAAAACjE0MTQ5" }
16
17
  let(:blob_bytes) { blob_response.decode64 }
17
- let(:blob) { LastPass::Blob.new blob_bytes, key_iteration_count }
18
+ let(:blob) { LastPass::Blob.new blob_bytes, key_iteration_count, "DEADBEEF" }
18
19
 
19
- let(:login_post_data) { {method: "mobile",
20
- web: 1,
21
- xml: 1,
20
+ let(:login_post_data) { {method: "cli",
21
+ xml: 2,
22
22
  username: username,
23
23
  hash: hash,
24
- iterations: key_iteration_count} }
24
+ iterations: key_iteration_count,
25
+ includeprivatekeyenc: 1} }
26
+
27
+ let(:device_id) { "492378378052455" }
28
+ let(:login_post_data_with_device_id) { login_post_data.merge({imei: device_id}) }
25
29
 
26
30
  let(:google_authenticator_code) { "123456" }
27
31
  let(:yubikey_password) { "emdbwzemyisymdnevznyqhqnklaqheaxszzvtnxjrmkb" }
28
32
 
29
- let(:login_post_data_with_google_authenticator_code) { login_post_data.merge({otp: google_authenticator_code})}
33
+ let(:login_post_data_with_google_authenticator_code) { login_post_data.merge({otp: google_authenticator_code}) }
30
34
  let(:login_post_data_with_yubikey_password) { login_post_data.merge({otp: yubikey_password}) }
31
35
 
36
+ describe ".logout" do
37
+ it "makes a GET request" do
38
+ web_client = double "web_client"
39
+ expect(web_client).to receive(:get)
40
+ .with("https://lastpass.com/logout.php?method=cli&noredirect=1", cookies: {"PHPSESSID" => escaped_session_id})
41
+ .and_return(http_ok "")
42
+ LastPass::Fetcher.logout session, web_client
43
+ end
44
+
45
+ it "raises an exception on HTTP error" do
46
+ expect {
47
+ LastPass::Fetcher.logout session, double("web_client", get: http_error)
48
+ }.to raise_error LastPass::NetworkError
49
+ end
50
+ end
51
+
32
52
  describe ".request_iteration_count" do
33
53
  it "makes a POST request" do
34
54
  expect(web_client = double("web_client")).to receive(:post)
35
- .with("https://lastpass.com/iterations.php", query: {email: username})
55
+ .with("https://lastpass.com/iterations.php", body: {email: username})
36
56
  .and_return(http_ok(key_iteration_count.to_s))
37
57
 
38
58
  LastPass::Fetcher.request_iteration_count username, web_client
@@ -75,33 +95,38 @@ describe LastPass::Fetcher do
75
95
  end
76
96
 
77
97
  describe ".request_login" do
78
- def verify_post_request multifactor_password, post_data
98
+ def verify_post_request multifactor_password, device_id, post_data
79
99
  web_client = double("web_client")
80
100
  expect(web_client).to receive(:post)
81
101
  .with("https://lastpass.com/login.php", format: :xml, body: post_data)
82
- .and_return(http_ok("ok" => {"sessionid" => session_id}))
102
+ .and_return(http_ok("response" => {"ok" => {"sessionid" => session_id, "privatekeyenc" => "DEADBEEF"}}))
83
103
 
84
104
  LastPass::Fetcher.request_login username,
85
105
  password,
86
106
  key_iteration_count,
87
107
  multifactor_password,
108
+ device_id,
88
109
  web_client
89
110
  end
90
111
 
91
112
  it "makes a POST request" do
92
- verify_post_request nil, login_post_data
113
+ verify_post_request nil, nil, login_post_data
114
+ end
115
+
116
+ it "makes a POST request with device id" do
117
+ verify_post_request nil, device_id, login_post_data_with_device_id
93
118
  end
94
119
 
95
120
  it "makes a POST request with Google Authenticator code" do
96
- verify_post_request google_authenticator_code, login_post_data_with_google_authenticator_code
121
+ verify_post_request google_authenticator_code, nil, login_post_data_with_google_authenticator_code
97
122
  end
98
123
 
99
124
  it "makes a POST request with Yubikey password" do
100
- verify_post_request yubikey_password, login_post_data_with_yubikey_password
125
+ verify_post_request yubikey_password, nil, login_post_data_with_yubikey_password
101
126
  end
102
127
 
103
128
  it "returns a session" do
104
- expect(request_login_with_xml "<ok sessionid='#{session_id}' />").to eq session
129
+ expect(request_login_with_xml "<response><ok sessionid='#{session_id}' /></response>").to eq session
105
130
  end
106
131
 
107
132
  it "raises an exception on HTTP error" do
@@ -153,7 +178,7 @@ describe LastPass::Fetcher do
153
178
  it "raises an exception on missing/incorrect Yubikey password" do
154
179
  message = "Your account settings have restricted you from logging in " +
155
180
  "from mobile devices that do not support YubiKey authentication."
156
- expect { request_login_with_lastpass_error "yubikeyrestricted", message }
181
+ expect { request_login_with_lastpass_error "otprequired", message }
157
182
  .to raise_error LastPass::LastPassIncorrectYubikeyPasswordError, message
158
183
  end
159
184
 
@@ -173,9 +198,9 @@ describe LastPass::Fetcher do
173
198
  describe ".fetch" do
174
199
  it "makes a GET request" do
175
200
  expect(web_client = double("web_client")).to receive(:get)
176
- .with("https://lastpass.com/getaccts.php?mobile=1&b64=1&hash=0.0&hasplugin=3.0.23&requestsrc=android",
201
+ .with("https://lastpass.com/getaccts.php?mobile=1&b64=1&hash=0.0&hasplugin=3.0.23&requestsrc=cli",
177
202
  format: :plain,
178
- cookies: {"PHPSESSID" => session_id})
203
+ cookies: {"PHPSESSID" => escaped_session_id})
179
204
  .and_return(http_ok(blob_response))
180
205
 
181
206
  LastPass::Fetcher.fetch session, web_client
@@ -277,6 +302,7 @@ describe LastPass::Fetcher do
277
302
  password,
278
303
  key_iteration_count,
279
304
  nil,
305
+ nil,
280
306
  double("web_client", post: response)
281
307
  end
282
308
  end
@@ -4,14 +4,22 @@
4
4
  require "spec_helper"
5
5
 
6
6
  describe LastPass::HTTP do
7
- let(:http) { LastPass::HTTP }
7
+ let(:http) { LastPass::HTTP }
8
8
 
9
- it 'can set the proxy options' do
10
- http.http_proxy('proxy.fazbearentertainment.com', 1987, 'ffazbear', 'itsme')
11
- options = http.instance_variable_get(:@default_options)
12
- expect(options[:http_proxyaddr]).to eq('proxy.fazbearentertainment.com')
13
- expect(options[:http_proxyport]).to eq(1987)
14
- expect(options[:http_proxyuser]).to eq('ffazbear')
15
- expect(options[:http_proxypass]).to eq('itsme')
16
- end
9
+ describe "#http_proxy" do
10
+ let(:url) { "https://proxy.example.com" }
11
+ let(:port) { 12345 }
12
+ let(:username) { "username" }
13
+ let(:password) { "password" }
14
+
15
+ it "sets the proxy options" do
16
+ http.http_proxy url, port, username, password
17
+
18
+ options = http.instance_variable_get :@default_options
19
+ expect(options[:http_proxyaddr]).to eq url
20
+ expect(options[:http_proxyport]).to eq port
21
+ expect(options[:http_proxyuser]).to eq username
22
+ expect(options[:http_proxypass]).to eq password
23
+ end
24
+ end
17
25
  end
@@ -6,7 +6,7 @@ require_relative "test_data"
6
6
 
7
7
  describe LastPass::Parser do
8
8
  let(:key_iteration_count) { 5000 }
9
- let(:blob) { LastPass::Blob.new TEST_BLOB, key_iteration_count }
9
+ let(:blob) { LastPass::Blob.new TEST_BLOB, key_iteration_count, "DEADBEEF" }
10
10
  let(:padding) { "BEEFFACE"}
11
11
  let(:encryption_key) { "OfOUvVnQzB4v49sNh4+PdwIFb9Fr5+jVfWRTf+E2Ghg=".decode64 }
12
12
  let(:encoded_rsa_key) { "98F3F5518AE7C03EBBF195A616361619033509FB1FFA0408E883B7C5E80381F8" +
@@ -114,9 +114,10 @@ describe LastPass::Parser do
114
114
  end
115
115
  end
116
116
 
117
- describe ".parse_PRIK" do
118
- let(:chunk) { LastPass::Chunk.new "PRIK", encoded_rsa_key }
119
- let(:rsa_key) { LastPass::Parser.parse_PRIK chunk, rsa_key_encryption_key }
117
+ describe ".parse_private_key" do
118
+ let(:rsa_key) {
119
+ LastPass::Parser.parse_private_key encoded_rsa_key, rsa_key_encryption_key
120
+ }
120
121
 
121
122
  it "parses private key" do
122
123
  expect(rsa_key).to be_instance_of OpenSSL::PKey::RSA
@@ -186,16 +187,17 @@ describe LastPass::Parser do
186
187
  end
187
188
 
188
189
  describe ".parse_secure_note_server" do
190
+ let(:type) { "type"}
189
191
  let(:url) { "url" }
190
192
  let(:username) { "username" }
191
193
  let(:password) { "password" }
192
- let(:notes) { "Hostname:#{url}\nUsername:#{username}\nPassword:#{password}" }
194
+ let(:notes) { "NoteType:#{type}\nHostname:#{url}\nUsername:#{username}\nPassword:#{password}" }
193
195
 
194
196
  it "returns parsed values" do
195
197
  result = LastPass::Parser.parse_secure_note_server notes
196
- expect(result[0]).to eq url
197
- expect(result[1]).to eq username
198
- expect(result[2]).to eq password
198
+
199
+ expect(result).to be_instance_of Hash
200
+ expect(result).to eq(type: type, url: url, username: username, password: password)
199
201
  end
200
202
  end
201
203
 
@@ -6,9 +6,11 @@ require "spec_helper"
6
6
  describe LastPass::Session do
7
7
  let(:id) { "53ru,Hb713QnEVM5zWZ16jMvxS0" }
8
8
  let(:key_iteration_count) { 5000 }
9
+ let(:encrypted_private_key) { "DEADBEEF" }
9
10
 
10
- subject { LastPass::Session.new id, key_iteration_count }
11
+ subject { LastPass::Session.new id, key_iteration_count, encrypted_private_key }
11
12
 
12
13
  its(:id) { should eq id }
13
14
  its(:key_iteration_count) { should eq key_iteration_count }
15
+ its(:encrypted_private_key) { should eq encrypted_private_key }
14
16
  end
@@ -893,104 +893,104 @@ TEST_ENCRYPTION_KEY = "p8utF7ZB8yD06SrtrD4hsdvEOiBU1Y19cr2dhG9DWZg=".decode64
893
893
  TEST_KEY_ITERATION_COUNT = 5000
894
894
 
895
895
  TEST_ACCOUNTS = [
896
- LastPass::Account.new("1872745596", "Muller, Morar and Wisoky", "branson_cormier", "8jgLCzQSkB2rTZ1OtF9sNGpc", "http://nienow.net/meagan.greenholt", "three"),
897
- LastPass::Account.new("1872745606", "goyette.net", "kris_quigley@baileyjewe.biz", "S5@3^wPv!6JsFj", "http://bechtelar.biz/tristian.barrows", "four"),
898
- LastPass::Account.new("1872745616", "Ward Inc", "angela_emard", "zp8N@KoWyS0IYu7VR$dvBF!t", "http://schuster.name/ashton", "one"),
899
- LastPass::Account.new("1872745626", "stehr.com", "bailee_marvin@mohrlegros.net", "cupiditate", "http://runolfon.org/te", "three"),
900
- LastPass::Account.new("1872745636", "kiehn.biz", "freda", "et", "http://hintzprohaska.biz/wade.fisher", "one"),
901
- LastPass::Account.new("1872745646", "Jacobs and Sons", "johnnie.hand", "gzyl6714", "http://schultzheaney.org/arvid", ""),
902
- LastPass::Account.new("1872745656", "Larkin, Kautzer and Wiegand", "hilton", "zguovmdr8703", "http://streich.com/ramona", "one"),
903
- LastPass::Account.new("1872745666", "Conn Inc", "malvina_paucek@nikolausveum.net", "numquam", "http://conn.net/leda", "four"),
904
- LastPass::Account.new("1872745676", "Block, Sanford and Connelly", "marilie_wolff", "zKcy?U*aCGS^gf@Z", "http://conroy.biz/zachery", "two"),
905
- LastPass::Account.new("1872745686", "gradyrenner.org", "oswald@ryan.info", "ojgwad28", "http://kihn.org/candice", ""),
906
- LastPass::Account.new("1872745696", "lesch.net", "nicholas", "Pkc72Lmr1qwI%sNV^d4@GtX", "http://glover.name/jerad", "two"),
907
- LastPass::Account.new("1872745706", "sipes.biz", "kaitlyn.bernier@reichel.net", "in", "http://mayert.name/jeromy", "two"),
908
- LastPass::Account.new("1872745716", "Hintz-Herman", "prince.moriette", "0hebvIS@s^BwMc", "http://sanfordwunsch.org/alek", ""),
909
- LastPass::Account.new("1872745726", "Hammes-Kassulke", "brooke@gloverhintz.net", "paokcs08", "http://lehner.biz/stanley.dooley", "four"),
910
- LastPass::Account.new("1872745736", "hermann.com", "jasper_dickens", "Ppj2b!rIMLu*@ElTCZU", "http://rolfson.net/jaden", "one"),
911
- LastPass::Account.new("1872745746", "Veum and Sons", "marquise@quitzonbrown.com", "owsg728", "http://fahey.name/jon_ankunding", "one"),
912
- LastPass::Account.new("1872745756", "Balistreri, Emard and Mayert", "verona@willmswhite.info", "wnydas6714", "http://treutelkiehn.org/marcos", "two"),
913
- LastPass::Account.new("1872745766", "lindkeler.net", "ed", "quia", "http://leffler.info/chaya", "one"),
914
- LastPass::Account.new("1872745776", "nikolaus.biz", "leonard", "oW9fdvJLkp#%I", "http://brakuswilliamson.com/bret", ""),
915
- LastPass::Account.new("1872745786", "bartonherzog.net", "dock@vonrueden.net", "beatae", "http://kunzeokuneva.info/shawn_langosh", "three"),
916
- LastPass::Account.new("1872745796", "howe.org", "chad@walker.biz", "zexfir7951", "http://crooks.com/sandrine", ""),
917
- LastPass::Account.new("1872745806", "shields.info", "modesto@kunzenicolas.com", "*JDSdp@VyR8f5FOALW", "http://kemmer.org/hilton", "three"),
918
- LastPass::Account.new("1872745816", "kihnabernathy.com", "mafalda.treutel@gislason.name", "hwuoxizq18", "http://trompbernhard.com/trea.hirthe", "two"),
919
- LastPass::Account.new("1872745826", "Gislason and Sons", "torrey@kshlerin.info", "OfZrTFAIq?Uyl9X$", "http://ullrich.info/carlee", "four"),
920
- LastPass::Account.new("1872745836", "simonis.com", "marco.cronin", "upokmxct57", "http://rippin.name/bonita_hickle", "four"),
921
- LastPass::Account.new("1872745856", "Howell, Beer and Yundt", "raegan@cruickshankgreenholt.org", "dHPFrtOjieum4L", "http://aufderharrunolfsdottir.info/felicia_torphy", "two"),
922
- LastPass::Account.new("1872745866", "Gottlieb-Ernser", "ivory.moore@paucek.com", "fugit", "http://lockmanlynch.net/alba", "four"),
923
- LastPass::Account.new("1872745876", "Emmerich and Sons", "lacey.bernier@hansenboyer.com", "aqzkolu6021", "http://carrollschmitt.com/willy.emard", "three"),
924
- LastPass::Account.new("1872745886", "Gerlach, Kirlin and Roberts", "maiya@bayergusikowski.org", "nhit3214", "http://feil.net/natasha_howe", "one"),
925
- LastPass::Account.new("1872745896", "ryan.net", "rubie@fahey.org", "aihw^uFgXnC%R", "http://gleasonjakubowski.biz/august", ""),
926
- LastPass::Account.new("1872745906", "Jewess, Wolf and Volkman", "kristin_blanda@howekuhlman.biz", "nacro5213", "http://wilkinsonleannon.name/bud.willms", "two"),
927
- LastPass::Account.new("1872745916", "Ritchie Group", "nathen_ortiz@turner.biz", "XfmN@G%ebsK1Jc$q", "http://price.info/urban", "two"),
928
- LastPass::Account.new("1872745926", "wiegand.info", "lavon_greenholt", "fzedpuq30", "http://paucekturcotte.org/kadin_gibson", ""),
929
- LastPass::Account.new("1872745936", "Rohan, Schneider and Daniel", "zella.effertz", "wksei21", "http://runte.com/camryn.hane", "one"),
930
- LastPass::Account.new("1872745946", "boyle.name", "gennaro_goldner@kovacek.biz", "eaJD#Kb6UAis@M*8jhILk", "http://kulasklein.info/nyasia", "four"),
931
- LastPass::Account.new("1872745956", "Pouros-Funk", "maudie@fahey.org", "wahkvms6871", "http://schaefer.info/leslie.bogan", "three"),
932
- LastPass::Account.new("1872745966", "Parisian-Legros", "holly", "et", "http://naderrempel.net/gwen_schmidt", "four"),
933
- LastPass::Account.new("1872745976", "Rosenbaum-Schulist", "jordy.krajcik", "xqzflsy843", "http://dooley.info/alek_parker", "four"),
934
- LastPass::Account.new("1872745986", "christiansen.info", "phoebe@larson.info", "bilvs07", "http://johns.name/columbus.dooley", "two"),
935
- LastPass::Account.new("1872745996", "Hauck, Thiel and VonRueden", "leif", "QVx?JvZ46e1FBmsAi", "http://bauch.org/marlin", "one"),
936
- LastPass::Account.new("1872746006", "Sipes and Sons", "leland", "ecgs1758", "http://dubuque.com/jacey", "one"),
937
- LastPass::Account.new("1872746016", "Osinski LLC", "rhoda", "nhwo705", "http://schinner.org/price", "four"),
938
- LastPass::Account.new("1872746026", "daniel.name", "santina@wiegand.net", "dolorem", "http://torp.net/shyanne.smitham", ""),
939
- LastPass::Account.new("1872746036", "darekutch.name", "ali", "U*kgl8u1p#QO9xWNnEd0b3", "http://mante.com/caie_streich", ""),
940
- LastPass::Account.new("1872746046", "grimes.com", "eunice_satterfield@baileymante.net", "ipsam", "http://swaniawski.org/wendell_gaylord", "three"),
941
- LastPass::Account.new("1872746056", "conn.name", "sandrine", "rv%XVjo#2Id?@4L", "http://rolfson.com/willy_bartell", ""),
942
- LastPass::Account.new("1872746066", "Kozey-Spinka", "brando.kshlerin", "consequatur", "http://collinsreichel.net/yasmine", "three"),
943
- LastPass::Account.new("1872746076", "Daugherty LLC", "horacio_schulist@davis.net", "sbxzn64", "http://deckow.net/roosevelt.kshlerin", "four"),
944
- LastPass::Account.new("1872746086", "Lubowitz LLC", "maxine@ebertmckenzie.biz", "qrcl02", "http://considineheidenreich.name/name.christiansen", ""),
945
- LastPass::Account.new("1872746096", "mante.name", "jayne", "xnekizj90", "http://bogisich.net/lori", "four"),
946
- LastPass::Account.new("1872746106", "Mante LLC", "antonio.turner@sauertorphy.com", "ckomnf175", "http://herzog.name/luigi", ""),
947
- LastPass::Account.new("1872746116", "Greenholt-Hodkiewicz", "moriah@mccullough.org", "udaxo7451", "http://mann.com/cecile", "three"),
948
- LastPass::Account.new("1872746126", "Rosenbaum, Sipes and Leffler", "keshaun@schroeder.info", "recusandae", "http://dooley.name/ewald", "two"),
949
- LastPass::Account.new("1872746136", "Fadel, Ferry and Kohler", "sister", "sUxoLNhl8Kty*Ve76b45G", "http://balistrerimcclure.com/jaquan_wilkinson", "two"),
950
- LastPass::Account.new("1872746146", "Schaden-Rosenbaum", "godfrey", "oDVcsx*m!0Rb@NjSyqdGIl", "http://pouros.net/jeremie", ""),
951
- LastPass::Account.new("1872746156", "Monahan, Reinger and McKenzie", "christophe.kub@luettgen.name", "fLqj&e$TyNo8gd7!", "http://keler.info/nikita.lindgren", "four"),
952
- LastPass::Account.new("1872746166", "bednar.info", "roselyn@hickle.com", "*2tiEP&Ic7dT", "http://jaskolski.com/conner_ortiz", "two"),
953
- LastPass::Account.new("1872746176", "Jewess, Wolf and Feil", "hal", "doloribus", "http://champlin.org/lue_schroeder", "three"),
954
- LastPass::Account.new("1872746186", "Kunze-Hettinger", "camilla_pagac", "elpbzT08Dvo6NyQF3wPEr", "http://donnellyadams.com/santino", "one"),
955
- LastPass::Account.new("1872746196", "Jacobs, Toy and Schultz", "billy_boehm@will.biz", "g5X*hRwlmcL6ZM", "http://larkinconsidine.org/leola", "one"),
956
- LastPass::Account.new("1872746206", "sanford.com", "joy@abbott.org", "rfolun872", "http://runtemoen.name/pierre", "three"),
957
- LastPass::Account.new("1872746216", "upton.net", "susana.gaylord", "WR4KxbU^@$Vpi%QH9Mv#T", "http://moore.info/pearl", "three"),
958
- LastPass::Account.new("1872746226", "wiegand.biz", "ashleigh_gutmann", "t7C&j!Ox21oha5sX*f", "http://armstronghackett.name/jaeden", "three"),
959
- LastPass::Account.new("1872746236", "schneider.net", "eunice.sauer@ledner.org", "U%EFVGnxw2fQ^t*", "http://schulistmetz.info/esperanza_cummerata", "two"),
960
- LastPass::Account.new("1872746246", "Swift-Stoltenberg", "katelin_rempel", "labore", "http://beermills.net/danielle", "two"),
961
- LastPass::Account.new("1872746256", "Heathcote Group", "hope.waters@parisianbruen.info", "EhG7zBTb8OseI", "http://douglas.name/porter", ""),
962
- LastPass::Account.new("1872746266", "hilpert.com", "phyllis.lemke", "est", "http://donnelly.com/tyrique_langosh", "one"),
963
- LastPass::Account.new("1872746276", "daviswolff.name", "martine@ryan.com", "incidunt", "http://schoen.info/macy", "one"),
964
- LastPass::Account.new("1872746286", "Bahringer, Prohaska and Mills", "merritt_reilly@lynch.info", "dyX^xZ3HTKsqFIMeA", "http://schuppe.com/rosetta.yundt", ""),
965
- LastPass::Account.new("1872746296", "ledner.name", "billie.lueilwitz@kertzmann.org", "Zi5K6tXh91mJG3EnjBD4r", "http://feil.com/isabelle", "four"),
966
- LastPass::Account.new("1872746306", "jerdecormier.com", "renee.towne@ruecker.net", "vuzoskg85", "http://mckenzie.net/zaria", ""),
967
- LastPass::Account.new("1872746316", "harbervandervort.org", "elta_haag@okuneva.net", "2?GVri70HkKceU*m#CZ3x", "http://whiteklocko.name/lacey.dare", "one"),
968
- LastPass::Account.new("1872746326", "gulgowskimann.org", "chaz_brakus", "explicabo", "http://okuneva.biz/lisandro", "two"),
969
- LastPass::Account.new("1872746336", "padbergconn.info", "lenore@ullrich.net", "ORrNKnhuqd7xeULa^YDk", "http://sauerkuvalis.info/braxton", "one"),
970
- LastPass::Account.new("1872746346", "davis.com", "margarett", "debitis", "http://spinka.info/kendra", ""),
971
- LastPass::Account.new("1872746366", "Gerlach Inc", "krystel_boyer", "qui", "http://pouromitham.name/efrain", "three"),
972
- LastPass::Account.new("1872746376", "cummerata.net", "rudy.flatley", "mzqvakic527", "http://heidenreich.net/ryann_hayes", ""),
973
- LastPass::Account.new("1872746386", "schowalter.name", "hyman.satterfield", "pjts564", "http://okeefedamore.biz/giovani", "one"),
974
- LastPass::Account.new("1872746396", "McLaughlin-Fadel", "fanny_sporer", "kyti64", "http://dickibosco.biz/zachariah", "four"),
975
- LastPass::Account.new("1872746406", "Gerlach-Nienow", "treva.block", "csnxhldi893", "http://kunzemurazik.net/johnny.koch", "two"),
976
- LastPass::Account.new("1872746416", "O'Reilly-Trantow", "grayson", "non", "http://harris.name/rosalind_marquardt", "three"),
977
- LastPass::Account.new("1872746426", "Larkin-Konopelski", "josianne_walker", "bwms78", "http://runolfsdottir.name/nicklaus_hayes", "two"),
978
- LastPass::Account.new("1872746436", "Swaniawski, Will and Gaylord", "jeramie.ohara@nader.org", "quia", "http://oreilly.info/dahlia_donnelly", ""),
979
- LastPass::Account.new("1872746446", "emmerichgaylord.name", "diana@hansenbeahan.net", "omnis", "http://rath.net/leif_hermann", "three"),
980
- LastPass::Account.new("1872746456", "armstrong.org", "genesis@rosenbaumlueilwitz.biz", "zHeu%^kxj9Y0Qr4@m*3!ov", "http://schmidtmertz.name/kira", "one"),
981
- LastPass::Account.new("1872746466", "Waelchi Group", "trace.heaney@heidenreichbernier.com", "whljnru03", "http://moore.biz/anibal", "two"),
982
- LastPass::Account.new("1872746476", "fahey.org", "ward_okuneva", "qjnz18", "http://leuschke.com/daphney", "two"),
983
- LastPass::Account.new("1872746486", "koelpin.info", "dylan.klocko", "vdjlot364", "http://cronin.net/cyril", "three"),
984
- LastPass::Account.new("1872746496", "Murphy-Breitenberg", "marcia_kreiger", "dacyz723", "http://steuber.com/ali_gibson", "three"),
985
- LastPass::Account.new("1872746506", "andersondicki.org", "ceasar@lind.com", "nvymdsk14", "http://kertzmann.biz/jaydon_kunze", "four"),
986
- LastPass::Account.new("1872746516", "watersreichel.net", "adella_price@beahanblock.biz", "maiores", "http://gutkowskirau.org/dora.williamson", "four"),
987
- LastPass::Account.new("1872746526", "torphy.biz", "osborne_hackett@davis.org", "wkdcu1265", "http://buckridge.net/lauretta.veum", "four"),
988
- LastPass::Account.new("1872746536", "Moen-Hermiston", "hildegard@hahn.com", "zbag942", "http://cummingswehner.biz/april", ""),
989
- LastPass::Account.new("1872746546", "Gaylord-Lowe", "jerrell", "quasi", "http://grady.biz/mohammed_brakus", ""),
990
- LastPass::Account.new("1872746556", "Bechtelar, Wyman and Thompson", "shanie@batz.biz", "vel", "http://gottlieb.name/elisabeth", "four"),
991
- LastPass::Account.new("1872746566", "jacobs.info", "lon_champlin@cristlittel.name", "aut", "http://dachgislason.org/alva", "two"),
992
- LastPass::Account.new("1872746576", "ankunding.com", "reina_runolfon@altenwerthhilll.net", "@g&aWsoTeJEFhHK5wr#4", "http://rice.info/giovanny_ebert", "two"),
993
- LastPass::Account.new("1872746586", "Okuneva-Schmitt", "esperanza@kshlerin.com", "djwhba31", "http://glovermckenzie.info/katelynn", ""),
994
- LastPass::Account.new("1872746596", "jones.name", "elvera", "ewoqt49", "http://sipes.com/joey.metz", "two"),
995
- LastPass::Account.new("1872746606", "Tromp-Roob", "brisa.mcdermott", "vcnkg254", "http://bernier.org/gage_haag", "three"),
896
+ LastPass::Account.new("1872745596", "Muller, Morar and Wisoky", "branson_cormier", "8jgLCzQSkB2rTZ1OtF9sNGpc", "http://nienow.net/meagan.greenholt", "", "three"),
897
+ LastPass::Account.new("1872745606", "goyette.net", "kris_quigley@baileyjewe.biz", "S5@3^wPv!6JsFj", "http://bechtelar.biz/tristian.barrows", "", "four"),
898
+ LastPass::Account.new("1872745616", "Ward Inc", "angela_emard", "zp8N@KoWyS0IYu7VR$dvBF!t", "http://schuster.name/ashton", "", "one"),
899
+ LastPass::Account.new("1872745626", "stehr.com", "bailee_marvin@mohrlegros.net", "cupiditate", "http://runolfon.org/te", "", "three"),
900
+ LastPass::Account.new("1872745636", "kiehn.biz", "freda", "et", "http://hintzprohaska.biz/wade.fisher", "", "one"),
901
+ LastPass::Account.new("1872745646", "Jacobs and Sons", "johnnie.hand", "gzyl6714", "http://schultzheaney.org/arvid", "", ""),
902
+ LastPass::Account.new("1872745656", "Larkin, Kautzer and Wiegand", "hilton", "zguovmdr8703", "http://streich.com/ramona", "", "one"),
903
+ LastPass::Account.new("1872745666", "Conn Inc", "malvina_paucek@nikolausveum.net", "numquam", "http://conn.net/leda", "", "four"),
904
+ LastPass::Account.new("1872745676", "Block, Sanford and Connelly", "marilie_wolff", "zKcy?U*aCGS^gf@Z", "http://conroy.biz/zachery", "", "two"),
905
+ LastPass::Account.new("1872745686", "gradyrenner.org", "oswald@ryan.info", "ojgwad28", "http://kihn.org/candice", "", ""),
906
+ LastPass::Account.new("1872745696", "lesch.net", "nicholas", "Pkc72Lmr1qwI%sNV^d4@GtX", "http://glover.name/jerad", "", "two"),
907
+ LastPass::Account.new("1872745706", "sipes.biz", "kaitlyn.bernier@reichel.net", "in", "http://mayert.name/jeromy", "", "two"),
908
+ LastPass::Account.new("1872745716", "Hintz-Herman", "prince.moriette", "0hebvIS@s^BwMc", "http://sanfordwunsch.org/alek", "", ""),
909
+ LastPass::Account.new("1872745726", "Hammes-Kassulke", "brooke@gloverhintz.net", "paokcs08", "http://lehner.biz/stanley.dooley", "", "four"),
910
+ LastPass::Account.new("1872745736", "hermann.com", "jasper_dickens", "Ppj2b!rIMLu*@ElTCZU", "http://rolfson.net/jaden", "", "one"),
911
+ LastPass::Account.new("1872745746", "Veum and Sons", "marquise@quitzonbrown.com", "owsg728", "http://fahey.name/jon_ankunding", "", "one"),
912
+ LastPass::Account.new("1872745756", "Balistreri, Emard and Mayert", "verona@willmswhite.info", "wnydas6714", "http://treutelkiehn.org/marcos", "", "two"),
913
+ LastPass::Account.new("1872745766", "lindkeler.net", "ed", "quia", "http://leffler.info/chaya", "", "one"),
914
+ LastPass::Account.new("1872745776", "nikolaus.biz", "leonard", "oW9fdvJLkp#%I", "http://brakuswilliamson.com/bret", "", ""),
915
+ LastPass::Account.new("1872745786", "bartonherzog.net", "dock@vonrueden.net", "beatae", "http://kunzeokuneva.info/shawn_langosh", "", "three"),
916
+ LastPass::Account.new("1872745796", "howe.org", "chad@walker.biz", "zexfir7951", "http://crooks.com/sandrine", "", ""),
917
+ LastPass::Account.new("1872745806", "shields.info", "modesto@kunzenicolas.com", "*JDSdp@VyR8f5FOALW", "http://kemmer.org/hilton", "", "three"),
918
+ LastPass::Account.new("1872745816", "kihnabernathy.com", "mafalda.treutel@gislason.name", "hwuoxizq18", "http://trompbernhard.com/trea.hirthe", "", "two"),
919
+ LastPass::Account.new("1872745826", "Gislason and Sons", "torrey@kshlerin.info", "OfZrTFAIq?Uyl9X$", "http://ullrich.info/carlee", "", "four"),
920
+ LastPass::Account.new("1872745836", "simonis.com", "marco.cronin", "upokmxct57", "http://rippin.name/bonita_hickle", "", "four"),
921
+ LastPass::Account.new("1872745856", "Howell, Beer and Yundt", "raegan@cruickshankgreenholt.org", "dHPFrtOjieum4L", "http://aufderharrunolfsdottir.info/felicia_torphy", "", "two"),
922
+ LastPass::Account.new("1872745866", "Gottlieb-Ernser", "ivory.moore@paucek.com", "fugit", "http://lockmanlynch.net/alba", "", "four"),
923
+ LastPass::Account.new("1872745876", "Emmerich and Sons", "lacey.bernier@hansenboyer.com", "aqzkolu6021", "http://carrollschmitt.com/willy.emard", "", "three"),
924
+ LastPass::Account.new("1872745886", "Gerlach, Kirlin and Roberts", "maiya@bayergusikowski.org", "nhit3214", "http://feil.net/natasha_howe", "", "one"),
925
+ LastPass::Account.new("1872745896", "ryan.net", "rubie@fahey.org", "aihw^uFgXnC%R", "http://gleasonjakubowski.biz/august", "", ""),
926
+ LastPass::Account.new("1872745906", "Jewess, Wolf and Volkman", "kristin_blanda@howekuhlman.biz", "nacro5213", "http://wilkinsonleannon.name/bud.willms", "", "two"),
927
+ LastPass::Account.new("1872745916", "Ritchie Group", "nathen_ortiz@turner.biz", "XfmN@G%ebsK1Jc$q", "http://price.info/urban", "", "two"),
928
+ LastPass::Account.new("1872745926", "wiegand.info", "lavon_greenholt", "fzedpuq30", "http://paucekturcotte.org/kadin_gibson", "", ""),
929
+ LastPass::Account.new("1872745936", "Rohan, Schneider and Daniel", "zella.effertz", "wksei21", "http://runte.com/camryn.hane", "", "one"),
930
+ LastPass::Account.new("1872745946", "boyle.name", "gennaro_goldner@kovacek.biz", "eaJD#Kb6UAis@M*8jhILk", "http://kulasklein.info/nyasia", "", "four"),
931
+ LastPass::Account.new("1872745956", "Pouros-Funk", "maudie@fahey.org", "wahkvms6871", "http://schaefer.info/leslie.bogan", "", "three"),
932
+ LastPass::Account.new("1872745966", "Parisian-Legros", "holly", "et", "http://naderrempel.net/gwen_schmidt", "", "four"),
933
+ LastPass::Account.new("1872745976", "Rosenbaum-Schulist", "jordy.krajcik", "xqzflsy843", "http://dooley.info/alek_parker", "", "four"),
934
+ LastPass::Account.new("1872745986", "christiansen.info", "phoebe@larson.info", "bilvs07", "http://johns.name/columbus.dooley", "", "two"),
935
+ LastPass::Account.new("1872745996", "Hauck, Thiel and VonRueden", "leif", "QVx?JvZ46e1FBmsAi", "http://bauch.org/marlin", "", "one"),
936
+ LastPass::Account.new("1872746006", "Sipes and Sons", "leland", "ecgs1758", "http://dubuque.com/jacey", "", "one"),
937
+ LastPass::Account.new("1872746016", "Osinski LLC", "rhoda", "nhwo705", "http://schinner.org/price", "", "four"),
938
+ LastPass::Account.new("1872746026", "daniel.name", "santina@wiegand.net", "dolorem", "http://torp.net/shyanne.smitham", "", ""),
939
+ LastPass::Account.new("1872746036", "darekutch.name", "ali", "U*kgl8u1p#QO9xWNnEd0b3", "http://mante.com/caie_streich", "", ""),
940
+ LastPass::Account.new("1872746046", "grimes.com", "eunice_satterfield@baileymante.net", "ipsam", "http://swaniawski.org/wendell_gaylord", "", "three"),
941
+ LastPass::Account.new("1872746056", "conn.name", "sandrine", "rv%XVjo#2Id?@4L", "http://rolfson.com/willy_bartell", "", ""),
942
+ LastPass::Account.new("1872746066", "Kozey-Spinka", "brando.kshlerin", "consequatur", "http://collinsreichel.net/yasmine", "", "three"),
943
+ LastPass::Account.new("1872746076", "Daugherty LLC", "horacio_schulist@davis.net", "sbxzn64", "http://deckow.net/roosevelt.kshlerin", "", "four"),
944
+ LastPass::Account.new("1872746086", "Lubowitz LLC", "maxine@ebertmckenzie.biz", "qrcl02", "http://considineheidenreich.name/name.christiansen", "", ""),
945
+ LastPass::Account.new("1872746096", "mante.name", "jayne", "xnekizj90", "http://bogisich.net/lori", "", "four"),
946
+ LastPass::Account.new("1872746106", "Mante LLC", "antonio.turner@sauertorphy.com", "ckomnf175", "http://herzog.name/luigi", "", ""),
947
+ LastPass::Account.new("1872746116", "Greenholt-Hodkiewicz", "moriah@mccullough.org", "udaxo7451", "http://mann.com/cecile", "", "three"),
948
+ LastPass::Account.new("1872746126", "Rosenbaum, Sipes and Leffler", "keshaun@schroeder.info", "recusandae", "http://dooley.name/ewald", "", "two"),
949
+ LastPass::Account.new("1872746136", "Fadel, Ferry and Kohler", "sister", "sUxoLNhl8Kty*Ve76b45G", "http://balistrerimcclure.com/jaquan_wilkinson", "", "two"),
950
+ LastPass::Account.new("1872746146", "Schaden-Rosenbaum", "godfrey", "oDVcsx*m!0Rb@NjSyqdGIl", "http://pouros.net/jeremie", "", ""),
951
+ LastPass::Account.new("1872746156", "Monahan, Reinger and McKenzie", "christophe.kub@luettgen.name", "fLqj&e$TyNo8gd7!", "http://keler.info/nikita.lindgren", "", "four"),
952
+ LastPass::Account.new("1872746166", "bednar.info", "roselyn@hickle.com", "*2tiEP&Ic7dT", "http://jaskolski.com/conner_ortiz", "", "two"),
953
+ LastPass::Account.new("1872746176", "Jewess, Wolf and Feil", "hal", "doloribus", "http://champlin.org/lue_schroeder", "", "three"),
954
+ LastPass::Account.new("1872746186", "Kunze-Hettinger", "camilla_pagac", "elpbzT08Dvo6NyQF3wPEr", "http://donnellyadams.com/santino", "", "one"),
955
+ LastPass::Account.new("1872746196", "Jacobs, Toy and Schultz", "billy_boehm@will.biz", "g5X*hRwlmcL6ZM", "http://larkinconsidine.org/leola", "", "one"),
956
+ LastPass::Account.new("1872746206", "sanford.com", "joy@abbott.org", "rfolun872", "http://runtemoen.name/pierre", "", "three"),
957
+ LastPass::Account.new("1872746216", "upton.net", "susana.gaylord", "WR4KxbU^@$Vpi%QH9Mv#T", "http://moore.info/pearl", "", "three"),
958
+ LastPass::Account.new("1872746226", "wiegand.biz", "ashleigh_gutmann", "t7C&j!Ox21oha5sX*f", "http://armstronghackett.name/jaeden", "", "three"),
959
+ LastPass::Account.new("1872746236", "schneider.net", "eunice.sauer@ledner.org", "U%EFVGnxw2fQ^t*", "http://schulistmetz.info/esperanza_cummerata", "", "two"),
960
+ LastPass::Account.new("1872746246", "Swift-Stoltenberg", "katelin_rempel", "labore", "http://beermills.net/danielle", "", "two"),
961
+ LastPass::Account.new("1872746256", "Heathcote Group", "hope.waters@parisianbruen.info", "EhG7zBTb8OseI", "http://douglas.name/porter", "", ""),
962
+ LastPass::Account.new("1872746266", "hilpert.com", "phyllis.lemke", "est", "http://donnelly.com/tyrique_langosh", "", "one"),
963
+ LastPass::Account.new("1872746276", "daviswolff.name", "martine@ryan.com", "incidunt", "http://schoen.info/macy", "", "one"),
964
+ LastPass::Account.new("1872746286", "Bahringer, Prohaska and Mills", "merritt_reilly@lynch.info", "dyX^xZ3HTKsqFIMeA", "http://schuppe.com/rosetta.yundt", "", ""),
965
+ LastPass::Account.new("1872746296", "ledner.name", "billie.lueilwitz@kertzmann.org", "Zi5K6tXh91mJG3EnjBD4r", "http://feil.com/isabelle", "", "four"),
966
+ LastPass::Account.new("1872746306", "jerdecormier.com", "renee.towne@ruecker.net", "vuzoskg85", "http://mckenzie.net/zaria", "", ""),
967
+ LastPass::Account.new("1872746316", "harbervandervort.org", "elta_haag@okuneva.net", "2?GVri70HkKceU*m#CZ3x", "http://whiteklocko.name/lacey.dare", "", "one"),
968
+ LastPass::Account.new("1872746326", "gulgowskimann.org", "chaz_brakus", "explicabo", "http://okuneva.biz/lisandro", "", "two"),
969
+ LastPass::Account.new("1872746336", "padbergconn.info", "lenore@ullrich.net", "ORrNKnhuqd7xeULa^YDk", "http://sauerkuvalis.info/braxton", "", "one"),
970
+ LastPass::Account.new("1872746346", "davis.com", "margarett", "debitis", "http://spinka.info/kendra", "", ""),
971
+ LastPass::Account.new("1872746366", "Gerlach Inc", "krystel_boyer", "qui", "http://pouromitham.name/efrain", "", "three"),
972
+ LastPass::Account.new("1872746376", "cummerata.net", "rudy.flatley", "mzqvakic527", "http://heidenreich.net/ryann_hayes", "", ""),
973
+ LastPass::Account.new("1872746386", "schowalter.name", "hyman.satterfield", "pjts564", "http://okeefedamore.biz/giovani", "", "one"),
974
+ LastPass::Account.new("1872746396", "McLaughlin-Fadel", "fanny_sporer", "kyti64", "http://dickibosco.biz/zachariah", "", "four"),
975
+ LastPass::Account.new("1872746406", "Gerlach-Nienow", "treva.block", "csnxhldi893", "http://kunzemurazik.net/johnny.koch", "", "two"),
976
+ LastPass::Account.new("1872746416", "O'Reilly-Trantow", "grayson", "non", "http://harris.name/rosalind_marquardt", "", "three"),
977
+ LastPass::Account.new("1872746426", "Larkin-Konopelski", "josianne_walker", "bwms78", "http://runolfsdottir.name/nicklaus_hayes", "", "two"),
978
+ LastPass::Account.new("1872746436", "Swaniawski, Will and Gaylord", "jeramie.ohara@nader.org", "quia", "http://oreilly.info/dahlia_donnelly", "", ""),
979
+ LastPass::Account.new("1872746446", "emmerichgaylord.name", "diana@hansenbeahan.net", "omnis", "http://rath.net/leif_hermann", "", "three"),
980
+ LastPass::Account.new("1872746456", "armstrong.org", "genesis@rosenbaumlueilwitz.biz", "zHeu%^kxj9Y0Qr4@m*3!ov", "http://schmidtmertz.name/kira", "", "one"),
981
+ LastPass::Account.new("1872746466", "Waelchi Group", "trace.heaney@heidenreichbernier.com", "whljnru03", "http://moore.biz/anibal", "", "two"),
982
+ LastPass::Account.new("1872746476", "fahey.org", "ward_okuneva", "qjnz18", "http://leuschke.com/daphney", "", "two"),
983
+ LastPass::Account.new("1872746486", "koelpin.info", "dylan.klocko", "vdjlot364", "http://cronin.net/cyril", "", "three"),
984
+ LastPass::Account.new("1872746496", "Murphy-Breitenberg", "marcia_kreiger", "dacyz723", "http://steuber.com/ali_gibson", "", "three"),
985
+ LastPass::Account.new("1872746506", "andersondicki.org", "ceasar@lind.com", "nvymdsk14", "http://kertzmann.biz/jaydon_kunze", "", "four"),
986
+ LastPass::Account.new("1872746516", "watersreichel.net", "adella_price@beahanblock.biz", "maiores", "http://gutkowskirau.org/dora.williamson", "", "four"),
987
+ LastPass::Account.new("1872746526", "torphy.biz", "osborne_hackett@davis.org", "wkdcu1265", "http://buckridge.net/lauretta.veum", "", "four"),
988
+ LastPass::Account.new("1872746536", "Moen-Hermiston", "hildegard@hahn.com", "zbag942", "http://cummingswehner.biz/april", "", ""),
989
+ LastPass::Account.new("1872746546", "Gaylord-Lowe", "jerrell", "quasi", "http://grady.biz/mohammed_brakus", "", ""),
990
+ LastPass::Account.new("1872746556", "Bechtelar, Wyman and Thompson", "shanie@batz.biz", "vel", "http://gottlieb.name/elisabeth", "", "four"),
991
+ LastPass::Account.new("1872746566", "jacobs.info", "lon_champlin@cristlittel.name", "aut", "http://dachgislason.org/alva", "", "two"),
992
+ LastPass::Account.new("1872746576", "ankunding.com", "reina_runolfon@altenwerthhilll.net", "@g&aWsoTeJEFhHK5wr#4", "http://rice.info/giovanny_ebert", "", "two"),
993
+ LastPass::Account.new("1872746586", "Okuneva-Schmitt", "esperanza@kshlerin.com", "djwhba31", "http://glovermckenzie.info/katelynn", "", ""),
994
+ LastPass::Account.new("1872746596", "jones.name", "elvera", "ewoqt49", "http://sipes.com/joey.metz", "", "two"),
995
+ LastPass::Account.new("1872746606", "Tromp-Roob", "brisa.mcdermott", "vcnkg254", "http://bernier.org/gage_haag", "", "three"),
996
996
  ]