-
-
Save technoweenie/1363336 to your computer and use it in GitHub Desktop.
Simple CQL to Thrift Comparison in ruby
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'bundler' | |
Bundler.require | |
require 'cassandra-cql' | |
require 'simple_uuid' | |
require 'cassandra/0.8' | |
require 'benchmark' | |
require 'json' | |
data = JSON.parse(IO.read("forgery.json")) | |
$emails = data['emails'] | |
$texts = data['text'] | |
def setup | |
@cassandra_cql = CassandraCQL::Database.new('127.0.0.1:9160') | |
begin | |
@cassandra_cql.execute("DROP KEYSPACE Testing") | |
rescue CassandraCQL::Error::InvalidRequestException => ex | |
end | |
@cassandra_cql.execute("CREATE KEYSPACE Testing WITH strategy_class='org.apache.cassandra.locator.SimpleStrategy' AND strategy_options:replication_factor=1") | |
@cassandra_cql.execute("use Testing") | |
begin | |
@cassandra_cql.execute 'DROP COLUMNFAMILY wide_row_thrift' | |
rescue CassandraCQL::Error::InvalidRequestException => ex | |
end | |
begin | |
@cassandra_cql.execute 'DROP COLUMNFAMILY wide_row_cql' | |
rescue CassandraCQL::Error::InvalidRequestException => ex | |
end | |
@cassandra_cql.execute "CREATE COLUMNFAMILY wide_row_cql (id uuid PRIMARY KEY)" | |
@cassandra_cql.execute "CREATE COLUMNFAMILY wide_row_thrift (id uuid PRIMARY KEY)" | |
begin | |
@cassandra_cql.execute 'DROP COLUMNFAMILY narrow_row_thrift' | |
rescue CassandraCQL::Error::InvalidRequestException => ex | |
end | |
begin | |
@cassandra_cql.execute 'DROP COLUMNFAMILY narrow_row_cql' | |
rescue CassandraCQL::Error::InvalidRequestException => ex | |
end | |
@cassandra_cql.execute "CREATE COLUMNFAMILY narrow_row_cql (id uuid PRIMARY KEY)" | |
@cassandra_cql.execute "CREATE COLUMNFAMILY narrow_row_thrift (id uuid PRIMARY KEY)" | |
setup_connections | |
end | |
def setup_connections | |
@cassandra_thrift = Cassandra.new('Testing', "127.0.0.1:9160") | |
@cassandra_cql = CassandraCQL::Database.new('127.0.0.1:9160', :keyspace => 'Testing') | |
end | |
def insert_narrow_row_cql(count = 1000) | |
count.times do |i| | |
values = [CassandraCQL::UUID.new] | |
values.push *$emails[i] | |
@cassandra_cql.execute("INSERT INTO narrow_row_cql (id, email, password, first_name, last_name) VALUES (?, ?, ?, ?, ?)", | |
*values) | |
end | |
end | |
def insert_narrow_row_thrift(count = 1000) | |
count.times do |i| | |
em = $emails[i] | |
@cassandra_thrift.insert(:narrow_row_thrift, SimpleUUID::UUID.new.to_s, | |
{ 'email' => em[0], | |
'password' => em[1], | |
'first_name' => em[2], | |
'last_name' => em[3] | |
} | |
) | |
end | |
end | |
def insert_wide_row_cql(row_count, column_count) | |
row_count.times do | |
columns = [CassandraCQL::UUID.new] | |
cql = "INSERT INTO wide_row_cql (id" | |
column_count.times do |index| | |
cql += ",'column_#{index.to_s.rjust(4,'0')}'" | |
columns << $texts[index] | |
end | |
cql += ") VALUES (?#{',?' * column_count})" | |
@cassandra_cql.execute(cql, *columns) | |
end | |
end | |
def insert_wide_row_thrift(row_count, column_count) | |
row_count.times do | |
columns = {} | |
column_count.times do |index| | |
columns['column_' + index.to_s.rjust(4,'0')] = $texts[index] | |
end | |
@cassandra_thrift.insert(:wide_row_thrift, SimpleUUID::UUID.new.to_s, columns) | |
end | |
end | |
def read_wide_row_cql | |
rows_read = 0 | |
@cassandra_cql.execute("SELECT * FROM wide_row_cql").fetch{|row| rows_read += 1} | |
end | |
def read_wide_row_thrift | |
rows_read = 0 | |
@cassandra_thrift.each(:wide_row_thrift, :count => 1000) {|row| rows_read += 1} | |
end | |
def read_narrow_row_cql | |
rows_read = 0 | |
@cassandra_cql.execute("SELECT * FROM narrow_row_cql").fetch{|row| rows_read += 1} | |
end | |
def read_narrow_row_thrift | |
rows_read = 0 | |
@cassandra_thrift.each(:narrow_row_thrift) {|row| rows_read += 1} | |
end | |
def benchmark_inserts | |
Benchmark.bm(35)do|x| | |
x.report("CQL Insert 100 rows 1000 cols:") {insert_wide_row_cql(100, 1000) } | |
x.report("Thrift Insert 100 rows 1000 cols:") {insert_wide_row_thrift(100, 1000) } | |
x.report("CQL Insert 1000 rows 5 cols: ") {insert_narrow_row_cql(1000) } | |
x.report("Thrift Insert 1000 rows 5 cols: ") {insert_narrow_row_thrift(1000) } | |
end | |
end | |
def benchmark_reads | |
Benchmark.bm(35)do|x| | |
x.report("CQL Read 100 rows 1000 cols:") {read_wide_row_cql } | |
x.report("Thrift 100 rows 1000 cols:") {read_wide_row_thrift } | |
x.report("CQL Read 1000 rows 5 cols: ") {read_narrow_row_cql } | |
x.report("Thrift 1000 rows 5 cols: ") {read_narrow_row_thrift } | |
end | |
end | |
if __FILE__ == $0 | |
setup | |
setup_connections | |
benchmark_inserts | |
benchmark_reads | |
#require 'perftools' | |
#PerfTools::CpuProfiler.start("/tmp/read_wide_row_cql") do | |
# read_wide_row_cql | |
#end | |
# | |
#require 'rbtrace' | |
#while true | |
# read_wide_row_cql | |
#end | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"emails":[["[email protected]","qXr0QjxrVKNb","Ralph","Harper"],["[email protected]","YAeYTG","Catherine","James"],["[email protected]","ZiSyYF","Marilyn","Jenkins"],["[email protected]","393fujb6s","Heather","Patterson"],["[email protected]","LzBo5rwzVGBl","Andrea","Franklin"],["[email protected]","sr3qf5qUIW","Kevin","Hart"],["[email protected]","XTkdpPosO","Benjamin","Parker"],["[email protected]","92qegQINW","Tammy","Collins"],["[email protected]","27ccooys8czG","Ronald","Roberts"],["[email protected]","pdenWLk","Mary","Romero"],["[email protected]","bQHycr7aTwz","Philip","Torres"],["[email protected]","DQ3pdUils","Adam","Fowler"],["[email protected]","Fk4lJhb","Ernest","Porter"],["[email protected]","nib8U4p","Wanda","Gutierrez"],["[email protected]","XUdd03DtEBE","Emily","Wright"],["[email protected]","nApjRv4ZtCe8","James","Martinez"],["[email protected]","fNRgNx5Ri","Albert","Moore"],["[email protected]","QictzyEfF","Christine","Jacobs"],["[email protected]","rW53VG6","Jennifer","Parker"],["[email protected]","QeHVTOZLd5X","Jimmy","James"],["[email protected]","fi9vJd88a3VD","Kelly","Dixon"],["[email protected]","cDuFKyCBdz4j","Judy","Harris"],["[email protected]","U3hr64d","Evelyn","Hansen"],["[email protected]","sLYABH","Matthew","Hansen"],["[email protected]","EXlBgWsZA","Mildred","Medina"],["[email protected]","nxMlqZDsdM","Albert","Stephens"],["[email protected]","vLhq9jr5z","Tammy","Baker"],["[email protected]","THiRdXwtsop","Samuel","Davis"],["[email protected]","3NBBhlb5kAzP","Shirley","Morris"],["[email protected]","4aEJBFfaAZ7","Cheryl","Jenkins"],["[email protected]","XIzzW10S","Jonathan","Collins"],["[email protected]","voIQE78","Lawrence","Graham"],["[email protected]","Wd3hBawu","Russell","Cook"],["[email protected]","VJIbbrt","Nancy","Chapman"],["[email protected]","KZVJROKTr","Russell","Williams"],["[email protected]","5ibxaMctV","Sarah","Chapman"],["[email protected]","BMjaJQYl","Stephanie","Baker"],["[email protected]","vqSZ6W7","Jacqueline","Porter"],["[email protected]","MMyTKk7","Dennis","Fowler"],["[email protected]","tWY1gtGlt","Bonnie","Murphy"],["[email protected]","gFV9zBiVn","Nicholas","Reed"],["[email protected]","hBBRyEpXI","Carol","Bradley"],["[email protected]","hbbXy1","Howard","Shaw"],["[email protected]","uwgTGiJkXz","Doris","Reynolds"],["[email protected]","LtfFqD","Diane","Richards"],["[email protected]","5UtZbC76v2bJ","Jennifer","Wheeler"],["[email protected]","h31yVEsUdu","Willie","Freeman"],["[email protected]","q4wNcU","Deborah","Matthews"],["[email protected]","dSu93Q5","George","Hawkins"],["[email protected]","iTSW6b1H","John","Nelson"],["[email protected]","rLtlxeh9","Amy","Black"],["[email protected]","tpf2LcdJwRl","Janet","Reynolds"],["[email protected]","OnA6oumzv8dt","David","Gray"],["[email protected]","fkmHjBw","Albert","Moore"],["[email protected]","iy1bN2","Patricia","Barnes"],["[email protected]","dIE39gf8d3","Joe","Hunt"],["[email protected]","5BYxJpaKC","Lillian","Clark"],["[email protected]","92QkmHKx","Susan","Robinson"],["[email protected]","W1MDzXrvQhvt","Alice","Mcdonald"],["[email protected]","vURsyP","Kevin","Snyder"],["[email protected]","jQwsXyeMDx","Janice","Watkins"],["[email protected]","wGkX7rcB9X","Arthur","Mitchell"],["[email protected]","hOZT0ZaLy","Diane","Davis"],["[email protected]","wtKMyXxBpW","Judith","Hanson"],["[email protected]","QeHTpqO","Martha","Carr"],["[email protected]","Xs4591Uh","Jerry","White"],["[email protected]","WHw5kcMDZd8","Gerald","Barnes"],["[email protected]","Ahn7WmpBCdWK","Cynthia","Tucker"],["[email protected]","PZ2pboOLka8","Roger","Moore"],["[email protected]","udU4ezTXaWvH","Brandon","Nguyen"],["[email protected]","CjWjoM","Susan","Payne"],["[email protected]","SedtsV7","Jimmy","Walker"],["[email protected]","eqBRaZ","Scott","Morgan"],["[email protected]","eO7J7b7gTxT","Harold","Bailey"],["[email protected]","PYGzj7","Donald","Rodriguez"],["[email protected]","OweDhc","Alice","Ferguson"],["[email protected]","LjXfDhEINFDj","Bruce","Campbell"],["[email protected]","MQWdGG6zkWZ","Betty","Allen"],["[email protected]","vvWcvxW5R","Mildred","Owens"],["[email protected]","GJTmRwA","Paula","Burke"],["[email protected]","MADtInEO","Andrew","Hawkins"],["[email protected]","PJ0IXWXgkG","Cynthia","Marshall"],["[email protected]","UhLzpGt","Michael","Lawrence"],["[email protected]","3VKBDt0Y3wW","Joyce","Phillips"],["[email protected]","LNVFyvRSGmU","James","Williams"],["[email protected]","gqKbiQC5bG","Catherine","Woods"],["[email protected]","CtWRjiHHuxYP","Louise","Wallace"],["[email protected]","I0YVNYJ5o","Judith","Morales"],["[email protected]","Cw3lhDr","Joe","Peters"],["[email protected]","zLSuhVC","Fred","Nelson"],["[email protected]","uJNaeDGef","Joseph","Berry"],["[email protected]","f4hIoCh","James","James"],["[email protected]","WsG4T2vY","Virginia","Ryan"],["[email protected]","XhThTm","Sarah","Myers"],["[email protected]","A0L9gV8y8","Martha","Lawrence"],["[email protected]","afOYdJ3IaRRX","Todd","Wagner"],["[email protected]","n4xVHOsyFWbT","Andrew","Martinez"],["[email protected]","22yBSKMJ9","Matthew","Ortiz"],["[email protected]","DFqF2rah","Jennifer","Fernandez"],["[email protected]","CwdTmCk","Marilyn","Coleman"],["[email protected]","0kvHRSNg9w","Frank","Spencer"],["[email protected]","CoA4ZCktSa","Denise","Miller"],["[email protected]","nwRvHtiyMa","Katherine","Garrett"],["[email protected]","9EvBYchRY7E","Craig","Reed"],["[email protected]","cL72iggOxd","Bonnie","Little"],["[email protected]","xAR4mj","Clarence","Bell"],["[email protected]","ZhzcpL","Mildred","Davis"],["[email protected]","eUD7gBst","Jessica","Ramirez"],["[email protected]","IBE6Yd6gEe","Patrick","Richardson"],["[email protected]","20aDyhRu","Emily","Ryan"],["[email protected]","Ci63PHzY","Richard","Perkins"],["[email protected]","aY1zx7zj","Charles","Ramirez"],["[email protected]","lPFpDJum","Paula","Burns"],["[email protected]","0o7liG","Sara","Spencer"],["[email protected]","YR4uOtcE2f9Q","Joe","Burton"],["[email protected]","fmqhI4","Phillip","Gordon"],["[email protected]","6AOHj5QA2","Dorothy","Spencer"],["[email protected]","xSTB3hzph","Annie","Banks"],["[email protected]","Wvij5le","Philip","Lynch"],["[email protected]","HFEhcDCp0wr","Amy","Harrison"],["[email protected]","7VFVltmt","Carolyn","Graham"],["[email protected]","80bXIY","Christina","Watkins"],["[email protected]","nUo7slS31","Chris","Lane"],["[email protected]","O7t5n0","Jerry","Ferguson"],["[email protected]","33LRFO9N4qG","David","Jacobs"],["[email protected]","ukJAbH0dn","Craig","Ross"],["[email protected]","blESLIGpK2","Lois","Robertson"],["[email protected]","Nm57LdqF","Janet","Diaz"],["[email protected]","qZibbyd07e9","Howard","Rivera"],["[email protected]","U8QxWczY1kv","Julie","Coleman"],["[email protected]","Z7WMOcJ","Juan","Fernandez"],["[email protected]","f7i1DtqWKL","Carol","Nguyen"],["[email protected]","kbxwYviVAyA","Peter","Rodriguez"],["[email protected]","vZqUT9WCC","Douglas","Romero"],["[email protected]","yBxpTak","Jacqueline","Garza"],["[email protected]","mxLj5A7","Christine","Howell"],["[email protected]","UpX2qsTLnv06","Diana","Greene"],["[email protected]","Go71PgkYluV","Elizabeth","Bennett"],["[email protected]","qtE1RB0x8XK","Gerald","Wagner"],["[email protected]","43kO7a","Frank","Richardson"],["[email protected]","52gxVCy4y","Phillip","Dunn"],["[email protected]","kLoBKzKVDC","Johnny","Perkins"],["[email protected]","krN3iJwtHZ","Daniel","Young"],["[email protected]","Sjt3uk9NLhDZ","Lawrence","Brooks"],["[email protected]","wfY3Al75P","Kathleen","Sanchez"],["[email protected]","NBsBN8gU","Joshua","Stone"],["[email protected]","VSfYRzwNbYzM","Phyllis","Hanson"],["[email protected]","6auUljHv7F","Amanda","Smith"],["[email protected]","1R27DjHmUV","Annie","Bishop"],["[email protected]","QprR7BTC","Deborah","Cunningham"],["[email protected]","DqMhH53","Carlos","Pierce"],["[email protected]","DxDp35CsQ","Alan","Shaw"],["[email protected]","J7zihsT","Melissa","Murphy"],["[email protected]","zKr1tWnDR0n","Tina","Moreno"],["[email protected]","U9IQA1","Janice","Bishop"],["[email protected]","KEyM2p7pt","Donna","Fuller"],["[email protected]","8pxAHg8AX5","Margaret","Lawrence"],["[email protected]","RChPfmp","James","Nelson"],["[email protected]","hTUX1A","Willie","Ferguson"],["[email protected]","U1HYRT","Carolyn","Vasquez"],["[email protected]","wJFzlN9jSs","Willie","Bryant"],["[email protected]","NErKj9i8uzd","Lisa","Simmons"],["[email protected]","QdScY5NYl4","Gregory","Rogers"],["[email protected]","Fjznzui0sL","Denise","Young"],["[email protected]","pWM1OWEHqah","Anne","West"],["[email protected]","J7JRuL3N","Brenda","Daniels"],["[email protected]","3ChRhO8i9pXD","Teresa","King"],["[email protected]","GCMPMybjP","Norma","Russell"],["[email protected]","yzLYaDzA","David","Bishop"],["[email protected]","tkOELU","Thomas","Howell"],["[email protected]","3vWsrcipD","Rachel","Freeman"],["[email protected]","s1VwQWrB","Emily","Medina"],["[email protected]","J96oVc","Sean","Gray"],["[email protected]","gwStsvll","Richard","Wagner"],["[email protected]","U9zRuE","Janice","Stone"],["[email protected]","uIMEsJq","Paula","Chavez"],["[email protected]","F6xTvpSsKsE","Judy","Gonzalez"],["[email protected]","yiQedX3r","Phillip","Tucker"],["[email protected]","wCV8DJq","Jessica","Sims"],["[email protected]","f6bKceLjRWb","Donna","Arnold"],["[email protected]","GgY8sFok","Antonio","Chavez"],["[email protected]","M3LpYGQiv4n","Edward","Cook"],["[email protected]","QO1VwcJS4","Kathryn","Romero"],["[email protected]","oRHYmc8zWW","Rachel","Fowler"],["[email protected]","R8M4gz91C","Dennis","Fisher"],["[email protected]","ufi4GcDLd","Lillian","Lopez"],["[email protected]","auWSOJOIUDR","Carl","Sims"],["[email protected]","3PwkNE3aItfa","Linda","Mitchell"],["[email protected]","ls3tpV5g","Louis","Olson"],["[email protected]","eihyxY1D1ZLe","Carol","Sanchez"],["[email protected]","PDb2gesIw","Teresa","Alexander"],["[email protected]","nIxtiOSB","Carolyn","Hicks"],["[email protected]","PXc6Dd","Judy","Jordan"],["[email protected]","m3sTI3rcX0","Joseph","Franklin"],["[email protected]","JFVeAzKz","Norma","Wilson"],["[email protected]","xQ1zqvw","Harold","Wilson"],["[email protected]","1aYmmTep6utH","Ruth","Gardner"],["[email protected]","kVt3mEO7egj","Jack","Rose"],["[email protected]","DfSKopzgEAD","Kathleen","Dean"],["[email protected]","lfVpYwoz0sa","Sean","Montgomery"],["[email protected]","cKutxzG","Gerald","Campbell"],["[email protected]","28bz58oPW","Cheryl","Weaver"],["[email protected]","B7zJd9","Joseph","Reynolds"],["[email protected]","qGMFhA","Russell","Ward"],["[email protected]","FCWyht","Shirley","Allen"],["[email protected]","bYLClLhZoi3c","Pamela","Gonzalez"],["[email protected]","CoI1XhImVOyJ","Sandra","Peters"],["[email protected]","HTEmTt43ZT","Denise","George"],["[email protected]","YmNHiiwHkRee","Arthur","Campbell"],["[email protected]","GJOLmakuk","Joseph","Harper"],["[email protected]","XHAPIMhqk","Billy","Foster"],["[email protected]","VAXbCGz0dXZ","Joyce","Price"],["[email protected]","ZfprJK8qZXoT","Alice","Baker"],["[email protected]","0HiFqpKA1aY","Henry","Garrett"],["[email protected]","iuGOXSAhHpa","Nicole","Cruz"],["[email protected]","iszdn4","Jack","Campbell"],["[email protected]","z64RCcInWfY","Norma","Oliver"],["[email protected]","KYniDb0","Todd","Richards"],["[email protected]","4lHDjwKO","Justin","Snyder"],["[email protected]","wp3VtDX0Kx4A","Daniel","Richards"],["[email protected]","PNnafs","Ryan","Little"],["[email protected]","aEsB5H","Aaron","Hill"],["[email protected]","dcGWXJ69","Brandon","Phillips"],["[email protected]","om8HJhc37","Catherine","Mills"],["[email protected]","deH0Ke1","Larry","Little"],["[email protected]","kr1Boi","Juan","Hart"],["[email protected]","o6LTRc","Sarah","Diaz"],["[email protected]","FMN1YXSAM6Lz","Gary","Kim"],["[email protected]","dPVZBL8M","Harry","Olson"],["[email protected]","9duhUlPJQfU2","Sharon","Wheeler"],["[email protected]","AaHSkOV1wo","Amanda","Berry"],["[email protected]","lXERjg","Russell","Moore"],["[email protected]","bLNhMQ8YoOK","Arthur","Carter"],["[email protected]","RaFppfTpgEx","Barbara","Welch"],["[email protected]","pWlFGC3x7bg","Antonio","Hawkins"],["[email protected]","Ga2wMhBCpM","Terry","Harvey"],["[email protected]","HbKhvi0dOVD","Jane","Matthews"],["[email protected]","6UjILLQxFAZ","Joe","Reyes"],["[email protected]","cdriinXPLW","Arthur","Elliott"],["[email protected]","iS6wLaO2AC","Ann","Armstrong"],["[email protected]","QuRJW1E5Xzh","Paula","Gonzales"],["[email protected]","Xc63nHMWNeV8","Frank","Patterson"],["[email protected]","VnUvxC","Gregory","Harris"],["[email protected]","WTpTcK","Randy","White"],["[email protected]","8i1hzk376qqZ","Matthew","Rose"],["[email protected]","5nNeCZoq","Robin","Johnston"],["[email protected]","gRopmWJoDa","Lori","Davis"],["[email protected]","usNSv8Narn9F","Gloria","Fields"],["[email protected]","OHodmuKt","Jean","Brown"],["[email protected]","a9znMs9D","Brenda","Wallace"],["[email protected]","QM8OvtHrij","Cheryl","Howell"],["[email protected]","RIPlcRm","Julie","Perkins"],["[email protected]","hcXKPXG","Martin","Fields"],["[email protected]","SqaEEedE","Ryan","Warren"],["[email protected]","qrwtstHT7nOz","Edward","Johnston"],["[email protected]","6X2RY3YbP","Carolyn","Matthews"],["[email protected]","OHrLBDnRqGB","Patricia","Carpenter"],["[email protected]","0gIORaKQG","Ryan","Stevens"],["[email protected]","bPiNTNLB1Wv","Laura","Howard"],["[email protected]","CsHlv5i","Andrew","Bailey"],["[email protected]","cM2eWfigmw","Roger","Turner"],["[email protected]","gLY9hTx7I","George","Spencer"],["[email protected]","adfKJBMV1","Stephanie","Graham"],["[email protected]","PzD9VU8x5vU","Willie","Bell"],["[email protected]","amEfgDF9x","Elizabeth","Wallace"],["[email protected]","Sl54wFoU","Carlos","Gonzales"],["[email protected]","PqhawnGw","Ronald","Mason"],["[email protected]","KYPxB2JYI","Jimmy","Moore"],["[email protected]","ieKvHiaLUTUc","Daniel","Reynolds"],["[email protected]","3Led8SqqQQ3","Sharon","Burton"],["[email protected]","jKkTGFP","Sharon","Carter"],["[email protected]","dJSNVmvk32N","Mary","Webb"],["[email protected]","ZHmFlA","Sandra","Butler"],["[email protected]","J4SMK7M","Rachel","Jackson"],["[email protected]","j159i53gVi","Ralph","Warren"],["[email protected]","hFQXhSCH9O","Amy","Black"],["[email protected]","paYvrAHhtRrS","Ruth","Larson"],["[email protected]","DT7verdbk96r","Debra","Payne"],["[email protected]","D8kzJblOsnY","Daniel","Washington"],["[email protected]","cPGOus","Robin","Webb"],["[email protected]","KzQrIR","George","Hernandez"],["[email protected]","jHNxSN","Melissa","Davis"],["[email protected]","vDtVoCaWf","Angela","Powell"],["[email protected]","idbHDRaH","Edward","Scott"],["[email protected]","DBkGQe","Louis","Perkins"],["[email protected]","WBi3KA","George","Carpenter"],["[email protected]","Ve81Ll1","Ryan","Hicks"],["[email protected]","0ztFVA4sU2","Anna","Cole"],["[email protected]","fQDVQ3biqQMT","Terry","Gutierrez"],["[email protected]","SCfGnKoVmyGk","Edward","Armstrong"],["[email protected]","62ImNjG92t","Irene","Cole"],["[email protected]","UesN7Hud0IZ","Bobby","Sanders"],["[email protected]","zEz2SjnJ","Donna","Kennedy"],["[email protected]","cs8JtF","Jason","Reid"],["[email protected]","zE004qI4fH4n","Kathleen","Welch"],["[email protected]","NBAWf6ramds","Wanda","Walker"],["[email protected]","OoDmuF","Clarence","Mcdonald"],["[email protected]","D3ffKxTrWod","Helen","Brown"],["[email protected]","PaucMt38Bi","Jason","Rice"],["[email protected]","R7h4KNxo","Amy","Sullivan"],["[email protected]","EpRpx4Z","Eugene","Franklin"],["[email protected]","M76m6A","Joyce","Hicks"],["[email protected]","C9PT1W","Ann","Ortiz"],["[email protected]","Jw2qcGszI","Donald","Harper"],["[email protected]","QEeaDXcGv5d8","Christine","Freeman"],["[email protected]","5B8XLgPXn20Z","Robert","Austin"],["[email protected]","gVChod","Diane","Russell"],["[email protected]","5Qh1HHKDumj9","Linda","Frazier"],["[email protected]","IJpz85","Julie","Larson"],["[email protected]","Eu49ehsFv1","Margaret","Snyder"],["[email protected]","CmUaZUdnHrBe","Donald","Edwards"],["[email protected]","IVjL8DNtO9xj","Irene","Perry"],["[email protected]","RD6Q0UqdwUF","Jacqueline","Arnold"],["[email protected]","DyvugA6CPXVV","Joyce","Crawford"],["[email protected]","N0gv1Z","Juan","Medina"],["[email protected]","M8BnbF7","Joan","Jenkins"],["[email protected]","0bQef884","Ashley","Lee"],["[email protected]","5FR9J1","Ruth","Lopez"],["[email protected]","IaIURz","Brandon","Montgomery"],["[email protected]","Lh64zbeyxzC","Norma","Ortiz"],["[email protected]","XJW7X0","Arthur","Young"],["[email protected]","XY459V","Alice","Roberts"],["[email protected]","RjB7QfQPwJY6","Bruce","Rice"],["[email protected]","BdiaO7XPNGB9","Kevin","Andrews"],["[email protected]","M8DsDgDc","Jeffrey","Day"],["[email protected]","m18g1REVbbx5","Craig","Williamson"],["[email protected]","hRJGgISEmvtl","Chris","Nichols"],["[email protected]","H11r3sUnH9KN","Marie","Simpson"],["[email protected]","aGP6yoi","Sharon","Peters"],["[email protected]","BKa9deCzNz0C","Patricia","Welch"],["[email protected]","Pod0n8Rq","Fred","Boyd"],["[email protected]","lKF6Gj","Lisa","Washington"],["[email protected]","7rcPD7EEl","Lisa","Burton"],["[email protected]","MRboT4Wfulb","David","Sims"],["[email protected]","GX1hf05ih7J","Johnny","Mendoza"],["[email protected]","ug4CjhcsYKz4","Sandra","Payne"],["[email protected]","BHJ1KDu0rd","Marie","Garza"],["[email protected]","eETlwN46oOuw","Paula","Bradley"],["[email protected]","tEPXw2O","Sharon","Coleman"],["[email protected]","cxI4gqug","Brian","Bennett"],["[email protected]","gvk5uDue","Betty","Alexander"],["[email protected]","DWt27t877","Jeffrey","Holmes"],["[email protected]","rvEpDpCcwiN","Jennifer","Williamson"],["[email protected]","TwYYQEnoIZjm","Shirley","Bennett"],["[email protected]","RJZK8YPZNrb","Kathryn","Banks"],["[email protected]","9M3Mu5vA8T","Ruth","Willis"],["[email protected]","58YZ3zfLcpRm","Rose","Burton"],["[email protected]","E2FtjWOp4JfD","Craig","Adams"],["[email protected]","qzg5WZTVgnr","Justin","Richards"],["[email protected]","PFCDfAFYBt","Martin","Long"],["[email protected]","ZGTF8uy","Melissa","Daniels"],["[email protected]","OgF323a","Irene","Evans"],["[email protected]","QuTjVT","Todd","Robinson"],["[email protected]","DwBf3tn","Lillian","Day"],["[email protected]","yxiLZYpJDR2t","Donna","Snyder"],["[email protected]","rArLCIf","Julie","Payne"],["[email protected]","ExzHek6n","Roger","Johnston"],["[email protected]","b40gKGh8V","Judy","Gordon"],["[email protected]","12Ty02qFXKt","Betty","Ruiz"],["[email protected]","eTGj0YGuOFK","Kathy","Jordan"],["[email protected]","Rz3OwHNDKK","Marie","Moore"],["[email protected]","n8tqM3Mt","Jack","Wallace"],["[email protected]","XDQTBgTyv","Jessica","Jackson"],["[email protected]","KzmnOdZaNBx1","Martha","Ford"],["[email protected]","rd7797","Alice","Woods"],["[email protected]","3tNm8UoaHR8","Adam","Warren"],["[email protected]","dLOY6evBdd","Harold","Richards"],["[email protected]","d6XG6luhcT6S","Roy","Gomez"],["[email protected]","v4Vl54PQIm6N","Debra","Russell"],["[email protected]","CrVkiv","Howard","Ryan"],["[email protected]","EkckTXnGw","Peter","Dean"],["[email protected]","eioVscJ4","Arthur","Jordan"],["[email protected]","OQ6VzoCw7","Mark","Chavez"],["[email protected]","huyyB5Scaf","Eugene","Rivera"],["[email protected]","e48e1gV","Terry","Williamson"],["[email protected]","NVW93WEor","Linda","Fuller"],["[email protected]","pp1iww","Rebecca","Greene"],["[email protected]","MyVY1QmFb","Anne","Romero"],["[email protected]","QtOw39HxG","Deborah","Rice"],["[email protected]","gmg7xJPA","Frances","Stone"],["[email protected]","pOAUMv","Scott","Alvarez"],["[email protected]","2akk4Odg0eKN","Jimmy","Thomas"],["[email protected]","GhhhFzvo","Philip","Stone"],["[email protected]","B5qBxmgdao","Jack","Martin"],["[email protected]","37JAXjAEf","Kimberly","Griffin"],["[email protected]","HEupGqr9L","Timothy","Woods"],["[email protected]","Eq3s9IYl3T0","Jose","Wallace"],["[email protected]","M2NkP3CUE","Lori","Berry"],["[email protected]","TAYH6k","Margaret","Gordon"],["[email protected]","yOVoDB8","Susan","Fernandez"],["[email protected]","CCPytR98bA","Elizabeth","Ortiz"],["[email protected]","G3IhDuuWuFh","Rose","Berry"],["[email protected]","dIbER7S8A","Norma","Bowman"],["[email protected]","bnvVoP","Mary","Bryant"],["[email protected]","h2mMZ8gJ","Justin","Dean"],["[email protected]","7wChghD7r6qv","Jacqueline","Shaw"],["[email protected]","a4V3aGcGQ","Alan","Carter"],["[email protected]","B4WbLi8rb3ar","Laura","Lee"],["[email protected]","WVCVMydgA","Jonathan","Diaz"],["[email protected]","NNTBOfi","Marie","Marshall"],["[email protected]","IWoCgnJF","Carl","Ryan"],["[email protected]","tmtheUdH","Frances","Smith"],["[email protected]","6bvpuG2B","Michelle","Rodriguez"],["[email protected]","h7xkv9D2ZGsC","Lois","Foster"],["[email protected]","J9C6wRT","Joshua","Lynch"],["[email protected]","kRpahJ","Jacqueline","Fields"],["[email protected]","7UE2st","Robert","Elliott"],["[email protected]","VWcCzZt5B3g","Kimberly","Peterson"],["[email protected]","ZSyXvjedkMio","Beverly","Wood"],["[email protected]","3oo5kSt8","Lawrence","Gilbert"],["[email protected]","dpSbFxX","Timothy","Garcia"],["[email protected]","yVNmZfxX","Marilyn","Gordon"],["[email protected]","t6XBdxR","Brenda","Mccoy"],["[email protected]","6abUIxj","Arthur","Hayes"],["[email protected]","iUr2HezZhNs","Michelle","Hughes"],["[email protected]","0K74z7iPYva1","Stephen","Fox"],["[email protected]","M2P20E","Wanda","Gibson"],["[email protected]","dM20tsE78","Sandra","Reyes"],["[email protected]","6PjZ7awws","Craig","Ramos"],["[email protected]","K7oaTwVe","Denise","Davis"],["[email protected]","AD8piCcuMKcI","Jeremy","Moore"],["[email protected]","Z76er7ki","James","Chapman"],["[email protected]","QsW8wrsU9K","Lisa","Lewis"],["[email protected]","NTLSHZp","Anthony","Ferguson"],["[email protected]","eFR15JZ7","Emily","Hanson"],["[email protected]","u6LZOaK4k1","Heather","Gordon"],["[email protected]","kvogL4x","Chris","Pierce"],["[email protected]","2nKbrgOvxhE","Jessica","Parker"],["[email protected]","rG4ID3BW","Sharon","Stone"],["[email protected]","KkU75b1uhI","Amanda","Holmes"],["[email protected]","6kEVfc","Walter","Hamilton"],["[email protected]","wTl0CfqgD","Lois","Murray"],["[email protected]","2uMur72W","Gregory","Bennett"],["[email protected]","iFtZia","Carol","Fowler"],["[email protected]","qAgWXm","Katherine","Cole"],["[email protected]","SOK8jhJGUe","Wayne","Weaver"],["[email protected]","XYYwcm","John","Lee"],["[email protected]","2OgQX9G","Walter","Kennedy"],["[email protected]","tnLySccZgymj","Patrick","Fisher"],["[email protected]","jBYHDo","Teresa","Bishop"],["[email protected]","ZCYPHBGeH5","Carolyn","Bennett"],["[email protected]","wPjdATl","Diana","Dean"],["[email protected]","UHsFUTUZL3o","Justin","Garza"],["[email protected]","bo1gJoogu","Richard","Gordon"],["[email protected]","y3ebTq","Wayne","Powell"],["[email protected]","fHuGfq","Ruth","Martinez"],["[email protected]","XldbLEu6x57M","Anne","James"],["[email protected]","XXwER7B8A","Rebecca","Lewis"],["[email protected]","zUzrmAOd7u","Ryan","Wells"],["[email protected]","AEWVAKnKn","Carolyn","Lopez"],["[email protected]","dfBEGVF","Howard","Lewis"],["[email protected]","X29gVevlz","Barbara","Hughes"],["[email protected]","HBmpRkiKKPlq","Jack","Mccoy"],["[email protected]","fCqJX2l","Ronald","Murray"],["[email protected]","W2SF6JNDTTmZ","Fred","Fields"],["[email protected]","qQu7Qk","Martha","Thomas"],["[email protected]","CHDCEuA","Janice","Ross"],["[email protected]","q6JLSZIzRB5","George","Russell"],["[email protected]","VXoHOI","Catherine","Bishop"],["[email protected]","s6MRJz","Joyce","Davis"],["[email protected]","SxBw81oNSCmc","Jesse","Evans"],["[email protected]","nxIGXkPF89P","Kimberly","Hernandez"],["[email protected]","0MGsbOiF","Joshua","Pierce"],["[email protected]","8IR27mT0","Scott","Griffin"],["[email protected]","CQC8H5","Joe","Lane"],["[email protected]","eDjeUcB","Margaret","Phillips"],["[email protected]","zw7nLLmx6H","Jean","Reed"],["[email protected]","vrs6waF","Christine","Gibson"],["[email protected]","4VDkJz","Jimmy","Williams"],["[email protected]","e5G2DN","Bruce","Alexander"],["[email protected]","2dOK9wQFB","Bruce","Rivera"],["[email protected]","pXQOuiirioHk","Stephen","Young"],["[email protected]","d7w4Mo","Donald","Richardson"],["[email protected]","ItseEjtZhY","Martha","Larson"],["[email protected]","Ozdt53","Nancy","Brown"],["[email protected]","w9vPSOc8cotC","Timothy","Cruz"],["[email protected]","g65THN","Stephen","Olson"],["[email protected]","jc33Yt5","Judy","Lawrence"],["[email protected]","N6vjDkg0chQt","Walter","Fernandez"],["[email protected]","cuFaFeacxiGL","Nicholas","Wright"],["[email protected]","jCT6XalBJ1","Martin","Elliott"],["[email protected]","wCII906","Howard","Evans"],["[email protected]","SmFc5uUQqplg","Martha","Hudson"],["[email protected]","7JFPm8","Jeffrey","Morris"],["[email protected]","lRxFrb","Paula","Taylor"],["[email protected]","M38KBOx7iT6","Bobby","Reynolds"],["[email protected]","ruuvSxT","Jane","James"],["[email protected]","4OXB7L6","Todd","Coleman"],["[email protected]","bQZoXCxxm","Gregory","Roberts"],["[email protected]","iCULHr","Stephanie","Moreno"],["[email protected]","QA0jGoIy","Timothy","Barnes"],["[email protected]","ceMw848","Barbara","Adams"],["[email protected]","WCCPS6","Shawn","Hamilton"],["[email protected]","p81DKPeUAC","Harold","Powell"],["[email protected]","Ddg0vt9","Scott","Fisher"],["[email protected]","qv6Jv0ZZi","Aaron","Adams"],["[email protected]","RI3ru6A57Q","Rebecca","Boyd"],["[email protected]","KY2dii","Keith","Morrison"],["[email protected]","X24vBavr1l","Sara","Moore"],["[email protected]","Nw7xjpuu","Cheryl","Oliver"],["[email protected]","2CFHcuJ2ADL","Ruth","Coleman"],["[email protected]","P1t1yboJ3","Juan","Hawkins"],["[email protected]","0fupHfBs8","Shawn","Cole"],["[email protected]","VWL9Ih0oCrUr","Chris","Alexander"],["[email protected]","8dI3Iod4","Anthony","Howard"],["[email protected]","T0JDB1cpqfQ","Ronald","Edwards"],["[email protected]","7m3L5u9Fy","Larry","Fields"],["[email protected]","4A4SE2nzN","Kathy","Ford"],["[email protected]","690kSAa","Janice","Parker"],["[email protected]","VupX6EjwR","Gerald","Lynch"],["[email protected]","gxYdXByk","Kathy","Morgan"],["[email protected]","Bxiiro28","Juan","Hayes"],["[email protected]","9rMP6n081","Julia","Dean"],["[email protected]","frA5Hd6eyr","Beverly","Henry"],["[email protected]","mplGkPKTT","Jimmy","James"],["[email protected]","ukENGa","Dorothy","Dean"],["[email protected]","5W6TAYFoz","Christine","Freeman"],["[email protected]","hUxmyi54","Christopher","Wilson"],["[email protected]","FeLJpVXZH4P","Gloria","Mccoy"],["[email protected]","iuClzdd","Timothy","Ortiz"],["[email protected]","h09cVpF0sp","Martin","Hall"],["[email protected]","eS9pXF","Philip","Chavez"],["[email protected]","6YaciVmF","Sara","Mccoy"],["[email protected]","28wafbl5rjU","Eugene","Moreno"],["[email protected]","hxWpdZ","Gerald","Stanley"],["[email protected]","49eEp9OW","Walter","Perez"],["[email protected]","1ebqz77UxMBt","Christine","Ruiz"],["[email protected]","mr8hnhrZ","Harry","Davis"],["[email protected]","q86Fkt","Cheryl","Nguyen"],["[email protected]","2Um1UrV9","Pamela","Morales"],["[email protected]","itMc2UD1veJw","Victor","Roberts"],["[email protected]","bStm1y","Rebecca","Miller"],["[email protected]","2AcEs95DiQu","Fred","Wells"],["[email protected]","gZCaFdo","Lillian","Myers"],["[email protected]","sEV3LQpSg9o6","Louis","Tucker"],["[email protected]","X9hgFpDxwI","Alan","Morgan"],["[email protected]","FBfyNFcF3","Kathleen","Jacobs"],["[email protected]","5CiX5fU","Carol","Green"],["[email protected]","F6or8YE","Aaron","Mitchell"],["[email protected]","0UfVpjsLb86","Irene","Dean"],["[email protected]","rsF80JH","Gerald","Watkins"],["[email protected]","MfMBiLe0xV","Eric","Armstrong"],["[email protected]","WYvY8AyRqpXF","Kimberly","Simpson"],["[email protected]","jBM7Upv","Todd","Hicks"],["[email protected]","NUC7Msr7L","Chris","Meyer"],["[email protected]","uSKYCd4j","Nancy","Morris"],["[email protected]","320iiMLx","Laura","Daniels"],["[email protected]","ZTpQAbIJd","Peter","Wells"],["[email protected]","Kjj6I0gSX1D","Jack","Nichols"],["[email protected]","W1X0yV","Arthur","Hudson"],["[email protected]","jan16AKD","Martha","Rice"],["[email protected]","ZSpAhG","Laura","Price"],["[email protected]","8bpu5tZ","Adam","Mitchell"],["[email protected]","UlEADGuT7","Gerald","Ruiz"],["[email protected]","o7lq4h6mRPB","Timothy","Richards"],["[email protected]","V6xzR4LEp","Brandon","Hawkins"],["[email protected]","28RInd","Johnny","Armstrong"],["[email protected]","Kt7eH7yl","Karen","Kelly"],["[email protected]","sH5jyTMvy","Nicole","Harris"],["[email protected]","lPZES4mplvNJ","Sean","Montgomery"],["[email protected]","g8IAwxtA5Kc","Denise","Stewart"],["[email protected]","m63tu9psXj","Andrea","Gibson"],["[email protected]","fm8vPSTAeeUN","Ashley","Howard"],["[email protected]","1wnQqnu0z","Randy","Hicks"],["[email protected]","LroZeFPSJr","Joe","Ross"],["[email protected]","4eL7LxTY","Diane","Morales"],["[email protected]","9lGrS8FGF1i1","Craig","Warren"],["[email protected]","c316cYu","Howard","Mitchell"],["[email protected]","UA2BESeG4bki","Mark","James"],["[email protected]","UuTVMnQ5f7J","Judy","Campbell"],["[email protected]","HsP72pP","Russell","Porter"],["[email protected]","9Y6s4MEDwXWX","Susan","Grant"],["[email protected]","SW9LiV","Scott","Ortiz"],["[email protected]","uE86fpXv","Randy","Hamilton"],["[email protected]","vAG0M3","Mildred","Hamilton"],["[email protected]","TDeOE9l","Robert","Payne"],["[email protected]","pUCPM5aOgxY","John","Meyer"],["[email protected]","4zgCp5BE","Linda","Holmes"],["[email protected]","PhoLaU","Rose","Shaw"],["[email protected]","3ZlKf5mfhmJ","Anna","Welch"],["[email protected]","NkdDAQs6j","Angela","Ford"],["[email protected]","XNjffw","Carol","Day"],["[email protected]","9ktwIXVfQaZ","Anna","Howell"],["[email protected]","qs28deOgd","Dorothy","Lee"],["[email protected]","jnVomRZ","Eric","Smith"],["[email protected]","6RzqFAUq","Aaron","Flores"],["[email protected]","v85J7dw9q","Helen","Grant"],["[email protected]","hzn98d","Marilyn","Nguyen"],["[email protected]","pdtmbvPk","Ernest","Spencer"],["[email protected]","UMmGYhsQZT","Ralph","Gordon"],["[email protected]","VTPMPZZzOaBF","Alice","Bowman"],["[email protected]","n8VTu8qdrs24","Donna","Crawford"],["[email protected]","0dtBziR3","Susan","Carter"],["[email protected]","CKxjdDum","Roy","Alexander"],["[email protected]","hF1sxG8cW","Brandon","Howard"],["[email protected]","8zIGP5XTu05","Julie","Sullivan"],["[email protected]","6q03y1Rnqcif","Andrea","Carroll"],["[email protected]","g3BbclUkEYSy","Roy","Welch"],["[email protected]","2bRB9Bq","Donna","Turner"],["[email protected]","KNA8MiKinI","Jonathan","Campbell"],["[email protected]","quA6ov","Jonathan","Knight"],["[email protected]","aQZNp1","Roy","Hawkins"],["[email protected]","duikXQ0","Willie","Elliott"],["[email protected]","6ZSslaL4o","Beverly","Lopez"],["[email protected]","w7zNd3","Louis","Hawkins"],["[email protected]","59ZfYmLRak1","Roy","Taylor"],["[email protected]","3GjnNG","Todd","Chapman"],["[email protected]","xcGpjvni","Paula","Perry"],["[email protected]","G4dfjbX","Maria","Kelly"],["[email protected]","UYAgFWSCXoc","Rebecca","Jordan"],["[email protected]","QpxYQ2Wn","Paul","Rose"],["[email protected]","eUM09BlTwc","Diane","Smith"],["[email protected]","fL6DbJ24g","Gerald","Lawrence"],["[email protected]","UnM8NBJt","Benjamin","James"],["[email protected]","hS77i9y","Gregory","Hamilton"],["[email protected]","pRQxxpAYn","Paul","Mason"],["[email protected]","84LAHQdC","Lori","Morales"],["[email protected]","wMZ8O5x4k8k","Carlos","Mccoy"],["[email protected]","96eL6iDcKjR","Brandon","Gutierrez"],["[email protected]","BMROG2","James","Reed"],["[email protected]","z03pz9foWeso","Gary","Bailey"],["[email protected]","TxiZq6415ebi","Joe","Fowler"],["[email protected]","DNtFNmEuwSG","Steven","Alvarez"],["[email protected]","1cNL0l","Heather","Perez"],["[email protected]","uulUeTXr","Brian","Dixon"],["[email protected]","9YsQUJdkv7","Brandon","Phillips"],["[email protected]","wdlEEXI9uYAK","Teresa","Cooper"],["[email protected]","68njOODE","Randy","Allen"],["[email protected]","GIC9MfXpvx","Johnny","Carpenter"],["[email protected]","QJrnh0J","Teresa","Williams"],["[email protected]","3OtefdcKllq","Lori","Rivera"],["[email protected]","ryi3JNR5T","Johnny","Williamson"],["[email protected]","3mMEc9r8F","Terry","Shaw"],["[email protected]","p3QWUtpbff9","Brenda","Hayes"],["[email protected]","BeE1Ujx5E3","Donna","Perez"],["[email protected]","QntJ1pYv7","Gloria","Wells"],["[email protected]","FOAHsfqiI5aN","Sean","Ellis"],["[email protected]","qGG895","Nancy","Rivera"],["[email protected]","4Af1bqD8","Jessica","Sanders"],["[email protected]","gsWgmw9","Timothy","Fisher"],["[email protected]","70e4pSGg","Christina","Hayes"],["[email protected]","SIEehoWbo","Ann","Bailey"],["[email protected]","qWr187d","Phillip","Peterson"],["[email protected]","VEQrF7e5rZ","Randy","Porter"],["[email protected]","JK0gl3DE","Amy","Smith"],["[email protected]","TRBZgtRjXc9B","Louise","Porter"],["[email protected]","emyGXsIo","Sean","Snyder"],["[email protected]","1oyTjAu","Wayne","Turner"],["[email protected]","CFFbkgVkoM","Helen","Shaw"],["[email protected]","vyvvFeG","Johnny","Bowman"],["[email protected]","BragqfR6UW","Donna","Wood"],["[email protected]","P0qbFNw","Martin","Burns"],["[email protected]","gNnSqlwiQQ","Samuel","Banks"],["[email protected]","0x8TJXrRCI4","Theresa","Hill"],["[email protected]","8MOE7vf0","Rebecca","Young"],["[email protected]","tv3v7sEKn","Katherine","Dean"],["[email protected]","vNQOQozvuq","Louis","Thomas"],["[email protected]","pKDN4cRVjIT","Susan","Miller"],["[email protected]","QwYflN","Johnny","Woods"],["[email protected]","PuhAbB0Tz","James","Bryant"],["[email protected]","rSZiIMLbmuz2","Nancy","Ross"],["[email protected]","TOWs9j","Frances","Walker"],["[email protected]","6jIjIB","Barbara","Banks"],["[email protected]","gtWu6TYc3","Wayne","Meyer"],["[email protected]","FzRryK","Diane","Rivera"],["[email protected]","n00tWbKW3dFB","Joshua","Little"],["[email protected]","BE65I9","Alan","Payne"],["[email protected]","NtzXmG29uPOT","Pamela","Hudson"],["[email protected]","o7jxuA6bTJIX","Jessica","Morris"],["[email protected]","bISF7MhbwyP","Helen","Bradley"],["[email protected]","77HvLU6RQ","Joan","Simpson"],["[email protected]","F2A5vSQTG4a","Rachel","Wallace"],["[email protected]","c0twjb","Catherine","Richards"],["[email protected]","88onBh4G7","Mark","Hayes"],["[email protected]","X2kvlHZn2KM","Doris","Hansen"],["[email protected]","kdTZSg6kaX","Raymond","Sullivan"],["[email protected]","437LkO","William","Boyd"],["[email protected]","PGPvtcWXxuF","Janice","Long"],["[email protected]","rhVCQyyqX","Helen","Simmons"],["[email protected]","nT4fkCmR","Sean","Simpson"],["[email protected]","ck1iHLTI6","Earl","Banks"],["[email protected]","kGIRfDl","Matthew","Morgan"],["[email protected]","RQxVxU6b4P4","Andrew","Taylor"],["[email protected]","EaG9H5VdO","Christopher","Ellis"],["[email protected]","5BzwMNJoaJo","Judith","Montgomery"],["[email protected]","HQf9lvg","Lori","Burns"],["[email protected]","2rQCZ92","Ernest","Cook"],["[email protected]","GbkqKAXXtxOk","Christopher","Palmer"],["[email protected]","vhaQ4s","Thomas","Holmes"],["[email protected]","eZj6hNTIRC","Deborah","Williams"],["[email protected]","wudxkwsep","Chris","Tucker"],["[email protected]","ipoAC1rdv","Albert","Watkins"],["[email protected]","RhFiVEc","Sara","Diaz"],["[email protected]","fsujiHnll","Jose","Reyes"],["[email protected]","izXiRZP3lYSa","Richard","Reed"],["[email protected]","MsSO8r","James","Palmer"],["[email protected]","mUGFUX","Charles","Harper"],["[email protected]","4jG9QRYApnSX","Julie","Perkins"],["[email protected]","Za7NHbdIyt5A","Martin","Howell"],["[email protected]","gA2CCB","Brenda","Ross"],["[email protected]","auubD0lO9r","Susan","Murphy"],["[email protected]","AjjD0Q3Hm9w","Joe","Thomas"],["[email protected]","jIBrFJEMxr8J","Angela","Webb"],["[email protected]","QWLsjnfvD","Mary","Gordon"],["[email protected]","dR4Wag0","Phillip","Morris"],["[email protected]","ogLzcWO","Douglas","Armstrong"],["[email protected]","EwLTB9QS","George","White"],["[email protected]","loUD0E","Beverly","Jordan"],["[email protected]","mlQP45v4Q","Lawrence","Patterson"],["[email protected]","KWKjU9sI","Susan","Reed"],["[email protected]","koTsLT3ZS","Doris","Bennett"],["[email protected]","v1yh4oULw","Gregory","Robertson"],["[email protected]","MxHYLrBQGJ","Thomas","Cook"],["[email protected]","HEGseOJF2Bqf","Jeffrey","Willis"],["[email protected]","3mwr5dm38","Carlos","Green"],["[email protected]","rPbeKVEl2","Todd","Freeman"],["[email protected]","jguOt39A0aX","Donald","Williamson"],["[email protected]","c01stb1Hbi","Norma","Price"],["[email protected]","CLH2imCvsy","Kenneth","Pierce"],["[email protected]","6tQdrcrY","Johnny","Matthews"],["[email protected]","cdAHVmK","Arthur","Campbell"],["[email protected]","oba2tzqLC","Christina","Hawkins"],["[email protected]","9Z7I6eV","Michael","Matthews"],["[email protected]","0mQNecvYKW","David","Kim"],["[email protected]","kraTGJ8w7","Todd","Torres"],["[email protected]","WzzxJQZ4Y","Joshua","Peterson"],["[email protected]","7srH8OKUBPI","Albert","Hansen"],["[email protected]","F0NIGbmqa","Sarah","Howell"],["[email protected]","nys3DPVkk5","Shirley","Howell"],["[email protected]","5W6IcF86Fwf","Jennifer","Day"],["[email protected]","0GlTs9JuqSN","Annie","Simpson"],["[email protected]","nWPV1DJkG","Frank","Thomas"],["[email protected]","zhGjqO","Beverly","Anderson"],["[email protected]","AOImGzot9Y","Nicole","Schmidt"],["[email protected]","NczWkpvYN8","Roy","Carr"],["[email protected]","rVPzLBp","Earl","Day"],["[email protected]","2xtl9Uzx","Arthur","Hudson"],["[email protected]","yvkYaFMSztG","Dennis","Palmer"],["[email protected]","TMYalhISrjal","Gary","Carr"],["[email protected]","mgAJ3n49bm","Ashley","Garrett"],["[email protected]","KosoH8GCaT","Marie","Stephens"],["[email protected]","riUT7Bxc","Gerald","Ellis"],["[email protected]","zxVMrBm2g","Gregory","Gray"],["[email protected]","v2uqiSW0c","Jessica","James"],["[email protected]","UCynpCr3dQ","Ryan","Morales"],["[email protected]","qpN6MFNRTmB","Sandra","Morgan"],["[email protected]","GbyFe7KX80z","Clarence","Schmidt"],["[email protected]","GM54qq","Diane","Morales"],["[email protected]","Oh0L2UOw","Mildred","Harvey"],["[email protected]","xiH4Hkz8gF","Jessica","Wright"],["[email protected]","AN0HC6d","Joseph","Simmons"],["[email protected]","HhVF9q","David","Harvey"],["[email protected]","OcZidAFdo2AG","Alan","Robinson"],["[email protected]","XxQYPPLEzjRd","Joshua","Gilbert"],["[email protected]","vm59hm","Steve","Ferguson"],["[email protected]","I7k0akUdf6","Amanda","Armstrong"],["[email protected]","7ojgLZsH","Raymond","Ward"],["[email protected]","baUY0dDYA3","Russell","Evans"],["[email protected]","gE6n7Axa","Louise","Brooks"],["[email protected]","lrQe07tqhJ","Anthony","Romero"],["[email protected]","Ch6MIVqxYotM","Patricia","Foster"],["[email protected]","xwIDnBN0lRMO","Louise","Lawrence"],["[email protected]","lkLSr39G","Theresa","Cruz"],["[email protected]","ursykTA","Dorothy","Hansen"],["[email protected]","2qJK2m2grLZl","Alan","Romero"],["[email protected]","xD5DgEZEQ","William","Watson"],["[email protected]","JHIEY2","Eric","Rose"],["[email protected]","eZ07iR8v","Linda","Pierce"],["[email protected]","nmkaplj","Matthew","Gomez"],["[email protected]","KlPvbUG","Russell","Gutierrez"],["[email protected]","XYvEh51GIuL","Louise","Cole"],["[email protected]","Cy5PJp9Tx3f","Alan","Lee"],["[email protected]","SqtjT9pnK","Heather","Johnston"],["[email protected]","Rz3Z5QhM9v","Gerald","Lawrence"],["[email protected]","w09jmcdaVh","Jesse","Harris"],["[email protected]","r00gIb","Bonnie","Brown"],["[email protected]","GRUHoJCxG9aP","Benjamin","Wagner"],["[email protected]","p8V0akHEQ","Phillip","Cook"],["[email protected]","YTjV5aA","Andrea","Young"],["[email protected]","j6a6c0avbB","Harold","Stone"],["[email protected]","PFkY2x9","Bruce","Harrison"],["[email protected]","6j5j9R","Debra","Taylor"],["[email protected]","9WEBJMgSeuIp","Judith","Perry"],["[email protected]","5ZbWzQvEYa","Raymond","Black"],["[email protected]","daVQKf","Sarah","Armstrong"],["[email protected]","J9HpDh4aLd","Shawn","Price"],["[email protected]","60KbbGfH5","Judy","Richards"],["[email protected]","T0PIb9Yljm3","Gregory","Thomas"],["[email protected]","Be6ODKEa","Gregory","Reynolds"],["[email protected]","FxXOVlBygsIc","Theresa","Wells"],["[email protected]","DNByeNd7v8n","John","Simpson"],["[email protected]","Jylt6P","Peter","Allen"],["[email protected]","6qbMHSHdY7L","Donald","Webb"],["[email protected]","kRwTPsoqqoKx","Heather","Stone"],["[email protected]","C7YDZd","Bobby","Barnes"],["[email protected]","iAFPdgfkc3g","Adam","Gutierrez"],["[email protected]","SOoLgHAZS","Gerald","Matthews"],["[email protected]","1VuExz3","Jack","Duncan"],["[email protected]","HXjOXyMbQ2","Nicholas","Rice"],["[email protected]","FF1RWiNqwk4","Jose","Nichols"],["[email protected]","mZdjfhhao","Ruth","Riley"],["[email protected]","csHuVNPeC","Heather","Simpson"],["[email protected]","lh02aIqL","Evelyn","Lopez"],["[email protected]","S6yN8axeKBP","Maria","Chavez"],["[email protected]","b213iZk","Lois","Webb"],["[email protected]","Olj4mbpZqW7G","Tammy","Murray"],["[email protected]","yXNwdLF","Barbara","Carr"],["[email protected]","YvDsUAUa","Annie","Turner"],["[email protected]","KtSPng74cze","Betty","Williamson"],["[email protected]","KsXJXk","Terry","George"],["[email protected]","Rj4AwtCU5W5","Betty","Chavez"],["[email protected]","0rtEuJjPFSpQ","Ann","Wood"],["[email protected]","TFim5xd","Catherine","Fuller"],["[email protected]","qGPaoA","Teresa","Frazier"],["[email protected]","6ye6hvuG","Bonnie","Cruz"],["[email protected]","CvTr0D2Mg","Scott","Ross"],["[email protected]","1GOdAdVUo","Kevin","Gibson"],["[email protected]","CzcLRtl0eQw","Rebecca","Brooks"],["[email protected]","5EK7kv13zd","Steven","Clark"],["[email protected]","Ts3JgTQNt9","Harold","Reyes"],["[email protected]","jWVubnmt","Philip","Chapman"],["[email protected]","5qp5Xx3lk","Arthur","Ryan"],["[email protected]","E6HiVsuo","Sara","Morales"],["[email protected]","sjfyD9","Norma","Matthews"],["[email protected]","97JRYUP","Denise","Chavez"],["[email protected]","ZyMc5zXY6UA7","Patricia","King"],["[email protected]","JiRPMWcJWVBC","Deborah","Reid"],["[email protected]","T8ARcfUOLHj0","Anthony","Perry"],["[email protected]","i5OHqEc6","Barbara","Miller"],["[email protected]","oc8Ewsq1zGx6","Daniel","Knight"],["[email protected]","STjt7CUC","Nicole","Knight"],["[email protected]","DblWz7S","Pamela","Rose"],["[email protected]","X54xDl7","Jennifer","Stewart"],["[email protected]","2bxqp399t","Debra","Howell"],["[email protected]","G99eiqnm6914","Harold","Castillo"],["[email protected]","SHP7aKHRy","Jesse","Garrett"],["[email protected]","ay1WEXWfam","Martha","Meyer"],["[email protected]","eUjz04nW","Jimmy","Barnes"],["[email protected]","Heor4ySxjuWO","Nancy","Reid"],["[email protected]","VmnBjJT0X1","Judith","Palmer"],["[email protected]","Er0LlCUNo1xY","Cynthia","Sanchez"],["[email protected]","3QP50AQGRsU","Raymond","Larson"],["[email protected]","O2cMoz9Zw","Wanda","Banks"],["[email protected]","Qg17JbEI","Patrick","Washington"],["[email protected]","2FkZXO6","Anne","Howell"],["[email protected]","wghmOzmNGrkH","Terry","Phillips"],["[email protected]","n5mx7aCdrl","Kevin","Johnston"],["[email protected]","tKjBfID","Samuel","Robertson"],["[email protected]","dDUrccCR","Gregory","Cox"],["[email protected]","xEUMQf2hoa","Walter","Woods"],["[email protected]","VSgKOWfc","Bruce","Sanchez"],["[email protected]","F6djLvtdE4f","Tina","Martinez"],["[email protected]","hJcrBR","Timothy","Weaver"],["[email protected]","8pw0DT","Jessica","James"],["[email protected]","YJrhdD8tO","Virginia","Simpson"],["[email protected]","ZuyAcD","Ernest","Olson"],["[email protected]","IYxcMyfSpIjT","Steve","Carr"],["[email protected]","pnCLgNsmH","Kevin","Gardner"],["[email protected]","JTwgmRr2Ba","Angela","Jones"],["[email protected]","NOh9xsSqdhK3","Benjamin","Patterson"],["[email protected]","GrWHpUw542Ru","Nancy","Kim"],["[email protected]","NPhBdvnCSO","Joan","Schmidt"],["[email protected]","6pIPPI2Z6k","Bruce","Johnston"],["[email protected]","O0aeqx","Jesse","Mccoy"],["[email protected]","DXUIr9oqQA2X","Ann","Thomas"],["[email protected]","aJInFQ","Andrea","Jordan"],["[email protected]","W6EDubeR","Justin","Greene"],["[email protected]","2ZUuYp","Nicholas","Austin"],["[email protected]","RE9oBia","Aaron","Morris"],["[email protected]","VTOg2iUc","Julia","Allen"],["[email protected]","gtEnZVhGK","Tina","Weaver"],["[email protected]","6CFD8nI3","Sandra","Moore"],["[email protected]","goyvBK2k","Roger","Frazier"],["[email protected]","lzuvehNg71zW","Alice","Ramirez"],["[email protected]","g4tEaNS","Bonnie","Chapman"],["[email protected]","e1V7nnTcuYC","Judith","Boyd"],["[email protected]","wqJUbpxlwuQ3","Raymond","Dunn"],["[email protected]","3i0vSkivUjkE","Jeffrey","Carpenter"],["[email protected]","pFegCDuwRez0","Albert","Dunn"],["[email protected]","qkaFoBSb","Raymond","Campbell"],["[email protected]","QFB8mlcY0dZq","Debra","Henderson"],["[email protected]","IxFNHBjpxznK","Teresa","Riley"],["[email protected]","OsiFoL0Fyad","Evelyn","Armstrong"],["[email protected]","mMITBP","Keith","Parker"],["[email protected]","xsfQCP0mnNw","Nicholas","Ortiz"],["[email protected]","oiAd4dg","Laura","Owens"],["[email protected]","RNRmkaf","Ruby","Nelson"],["[email protected]","lQTjAuq7s","Tina","Fisher"],["[email protected]","hFmKmgfQf","Marilyn","Ross"],["[email protected]","n8EmpZC7m","Doris","Ford"],["[email protected]","3DYpJ32","Denise","Rivera"],["[email protected]","3RUPh7","Phyllis","Henry"],["[email protected]","BFFp5QiqA0T","Marilyn","Russell"],["[email protected]","mZnEQItsj","Cynthia","Mendoza"],["[email protected]","iTMP6rhTcA","Karen","Burton"],["[email protected]","pjn1A2myC","Shawn","Dean"],["[email protected]","GQdIl1iuWl","Mildred","Fuller"],["[email protected]","CKlBZjmw","Harry","Ellis"],["[email protected]","IRkbeWPDT","Billy","Harris"],["[email protected]","A1FDqZhH","Mildred","Torres"],["[email protected]","YuEFpP","Larry","Clark"],["[email protected]","Wka3LEtX31s","Andrea","Alexander"],["[email protected]","QYHMqNmnMZm","Norma","Washington"],["[email protected]","9ItBHns","Robert","Baker"],["[email protected]","93nLk5SM","Kathryn","Smith"],["[email protected]","ORnu8KiCN","Sandra","Peterson"],["[email protected]","hdJsjU","Rachel","Banks"],["[email protected]","6piYm8hlG","Patrick","Ellis"],["[email protected]","krxvFNl","Tammy","Gutierrez"],["[email protected]","SSjptqM","Kimberly","Carr"],["[email protected]","O3YNp4abYFQz","Willie","Sanchez"],["[email protected]","kv24ZSaK4","Tina","George"],["[email protected]","CCZjCP4KH","Henry","Romero"],["[email protected]","WCTuC5g","Earl","Stewart"],["[email protected]","ASWj8ep","Andrew","Hunter"],["[email protected]","IYU0Pg","Ryan","Richards"],["[email protected]","i1eA9q6NBg","Janice","Wallace"],["[email protected]","67r5C5y4P","Jesse","Wells"],["[email protected]","WtgB954","Lois","Stewart"],["[email protected]","THBsHLFQr9as","Beverly","Rodriguez"],["[email protected]","SqJdh1waE4","Deborah","Ray"],["[email protected]","WZoIiIe1","Lori","Boyd"],["[email protected]","LSyJYs","Bonnie","Johnson"],["[email protected]","mW1Nu6","Christina","Elliott"],["[email protected]","2vFfZ4ZhY9S","Deborah","Grant"],["[email protected]","gnlwd0pQfWLT","Eugene","Meyer"],["[email protected]","beuW6a","Mildred","Hansen"],["[email protected]","ZkOUjK","Andrew","Stone"],["[email protected]","TcuIt0MseM0r","Michelle","Hudson"],["[email protected]","ZKZmolQReG2","Theresa","Morris"],["[email protected]","016cz8pNl","Kathleen","Alvarez"],["[email protected]","qzpUoSwI8d","Johnny","Mendoza"],["[email protected]","pKtT3Bnr","Robert","Sanders"],["[email protected]","3jLcpsbdIM","Peter","Brown"],["[email protected]","1JFLceK","Bobby","Lawson"],["[email protected]","NY2xsXTHfx","Victor","Palmer"],["[email protected]","KOPD3hz","Brandon","Perez"],["[email protected]","F8Z6HeTVN","Theresa","Perez"],["[email protected]","ULPtjy1","Thomas","Rodriguez"],["[email protected]","wlljoIqBD","Karen","Bryant"],["[email protected]","Iah2lo","Stephanie","Hudson"],["[email protected]","Y34oBu2PpoY","Christopher","Gonzales"],["[email protected]","bzK8qY9bzW","Sharon","Riley"],["[email protected]","OiIYnrKJ","Jeffrey","Foster"],["[email protected]","wiwKjNCZ","Ashley","Peters"],["[email protected]","j9ObY3","Eugene","Harvey"],["[email protected]","8BBmeQP","Randy","Rivera"],["[email protected]","PFa72rC","Jonathan","Gordon"],["[email protected]","9NV9FG","Barbara","Garza"],["[email protected]","Y6ic6pRXG8","Louise","Butler"],["[email protected]","hHy6spl","Johnny","Bailey"],["[email protected]","1A1lRzaIzBg","Jose","Bradley"],["[email protected]","OooeurE","Andrew","Jenkins"],["[email protected]","4bQLKY3w3us5","Lawrence","Austin"],["[email protected]","0vhCLtJEfl","Andrew","Hunt"],["[email protected]","hjvvDE","Jacqueline","Day"],["[email protected]","hXaNDdSpw4","Raymond","Peters"],["[email protected]","qOrIogfOwI3o","James","Wallace"],["[email protected]","EHiCNgnVDuV7","Theresa","Castillo"],["[email protected]","rvQ3MBrMOBo","Aaron","Fernandez"],["[email protected]","yNY2RZMMysEX","Brandon","Patterson"],["[email protected]","2Nad5a1ULjGP","Mildred","Banks"],["[email protected]","tOWRls0fTH5l","Norma","Dunn"],["[email protected]","1wXvoV","Mark","Brown"],["[email protected]","VZKQgv8NGqM","Walter","Phillips"],["[email protected]","OLGM2VqB","Teresa","Morales"],["[email protected]","vPDQ5X1","Emily","Perry"],["[email protected]","JJp4wqRNb07a","Howard","Elliott"],["[email protected]","BZmFtCBZCP","Ruth","Thompson"],["[email protected]","aSGn5id","Andrea","Garza"],["[email protected]","NzZphe","David","Banks"],["[email protected]","n1nKR09lv6y","Jacqueline","Murphy"],["[email protected]","C16iHmMME","Amanda","Moore"],["[email protected]","xvG5NYwQuI","Mary","Williamson"],["[email protected]","QBsfsLzw3","Bruce","Green"],["[email protected]","O9gUGrbn9KN","Steve","Woods"],["[email protected]","ppo2koz","Joan","Hudson"],["[email protected]","GLTv5188gm","Barbara","Woods"],["[email protected]","J5EHgFPbS7v","Joseph","Alvarez"],["[email protected]","SOUYkSUpXMWw","Arthur","Turner"],["[email protected]","auawMmgfy4r","Steve","Brooks"],["[email protected]","OGImx2H","Eugene","Lynch"],["[email protected]","oVMB9iv","Victor","Stone"],["[email protected]","jMSnWD3VhqLX","Louis","Cole"],["[email protected]","bn004xDkgCQ","Helen","Wheeler"],["[email protected]","WXRwS9ry","Jack","Jacobs"],["[email protected]","TdQ9W51k","Edward","Williams"],["[email protected]","cBciFSO","Phyllis","Freeman"],["[email protected]","p5w2BSgBIylG","Arthur","Williamson"],["[email protected]","XF2tWcOH","Patrick","Fuller"],["[email protected]","49XBhSyNhp","Scott","Knight"],["[email protected]","NAFnNZb","Christine","Reynolds"],["[email protected]","kHISBMF","Johnny","Cooper"],["[email protected]","7sIzjPF0","David","Gray"],["[email protected]","8bm8CcGi","Janice","Williams"],["[email protected]","BbiOtClwRuqM","Harry","Boyd"],["[email protected]","tiefUoRGh","Steven","Greene"],["[email protected]","VugXueF","Joshua","Ramos"],["[email protected]","YQQ0KNQ9XziG","Melissa","Wheeler"],["[email protected]","fy7dKv","Harry","Mcdonald"]],"text":["ZmbBxxQuVIi","psAFIys3JXf","nX9eZeE8NORVxTs","V1ylUR3ETfyjihk","eZy486onJgWyl","Ulcv8tfNEYeG5","NKCovPpVUu","Zf8JA0Ftphc5Rbs","H7ipBiJWgg","WWy7N82kbL6","2D1GvSsZ5eecZYi","DeJrkMM0nSb7uF","bIg8ugQ39Qqdg5","eeiXjQOJocsgK","iIbclGJEoMUPvd","buonftIFQo9W9lg","ozJq7prjXYQkF","SuvDwpPOpPmwb","MeoK1XMorP","tI4bxFNIGCLwG","9JYUyQIVbLiX","CMR7I03tkf","V0Y6wj9DmX","OnSgDzYDXngKrUW","Rk0yIdu6NuvX","YUJx80P7eLyU3","hWUTsfCHfAiMh7","oCo6UdOhKFYG3T","gYqOH9siafx11","qHipPmhc7hdHHN","MsYkUFHziJXu0Y","Iu8QJqhnGx","HbQkObRe3xyi","RQpv4ZcUKfqIW7","25y18TByhHh","7sK4Jeq2Gu","VVTKPAMOsaZE","c5hbv20guSNI","ap9hfEHxmQVn","wh0qVTWFQyI","Px9HL619sulHa","lS8Stnj4k6J0XK","Nnr6lkCRI28Tel","A6v7rtemSq6LxE","Z4QdMg1cBJ","LYSBvM2pFDq","DMV3ygt3AQ9Bq","vp9C1eQaNV8CN","qGmBC73oslQTf","dhzVcZIMBMyBy8W","Cu2ilIz0ZcWdz","iSzlGBR6LEvlNQA","HFCvtkv6WNY","kNVcaNEu49","ulbV0M7hbptQ","IZs266pzgIb9XW","YjzIiya2Nf4Nt","Po2O3udsCj0J683","LCCAGc15Ub9h0BL","lF9yJvwwDBbWW","K7FWLn5U2mhfuE2","nCHvWhKsQqh","t9YnxiRCx87ZmhU","U0eBLfvZeJFc","PDUp5EtpeN","WzUljVz1fUQDX2","xCCbXN8SUk2k","QCmrKrYuSwZ0","j9eAdmli1Pr2t8","CQlz2I8AoKTEQTN","8SiWq7MFjFt12JS","wjjSFn6Pi3h","5sQDz1ENiVa","9WFlwTzt0wuu","AxcP6cqxmq","Tc6tjhImZO","upUxpRw2HOz5zq","lpBAKCLHBZh5I","QXcwBP4KFM","FgBWhjmXDSWQnE4","q0xWsQxKrHYUbK","pmWdqoEMVNtr5","7F86Z1afWZE5w","Y8PyaV0moa","8uYuHsOf8UNcza","gcVJxyuPWZ","V6u5cLT2srA8","Bh2kQ7xFyIf","sXMFCbrsYf","p6ZGxvVLZbjD","dylxJK63P9rYN","9Fro4RDwaKzv","8IhXntEkblM0d","r8EDBiHdFz","3GAm2BeQ0bKEs","AQbA9aMcuexRH0","ffIfjGRAeB6CY","MHUFYPYD35hh5","eG9MuWdVfh","jkEeKoMcZ0Nrp","WGfb9pW15frh7Aw","NTVH5WqNZCzdw","8Y01htOIHvPTuy","3jJvGZ8CQ3fQPk","c4PJYGsKwRaI4","FWhS4UCmGNx3DoC","P5SUsbhGUQyd73n","XjVikcto07c","t8zYH9OV0g","rQTAzrkHxtTU","HlmSkxc6WMnND","4vkKAI51v9DG","N2CIcHANdC4j","iH0m2ATaPji92ZH","xq8qwUEXiK","LhzWiLauWes","i8LZRprVFVRs","z76K4HtJoSh1","khlIYzKiX4ATUh","NiBeoqI3Cb59OI","huegFENAlr","OTy0CR4OSmej9I","okiWcKKed0p3pj","QaraJVk26Wr","ho2hHrXxlc6Ca","kyKedp4uRIM","7GjDHJkEoJAo","vkRHH7CidJKwPrX","seIWVO8YIfZfjp","kpJ2MGMffETi","SAXIWBpyGnP","8ZwFXOwmMrRVcpQ","pxdjf9j1fknHKxn","TUzPfDtXGzQYj","yjdXRsBWHTOa","EULp9LE2lis","WdO2COHUmS","CTjst0mATo6ynK","gH2dh4D7ynxxszN","vUYCiHwesDoe","ABQtuV0wqCSrShg","0khY6rLA6XL","JtXUQaneBKr","xSe13nhCPXU5","dRsGUCKlv5LV","Oxw5zeePQItE9","qOrQIYz0fsPSaJq","ZJOBQKk3PB","5EzbP0qN7YkODt","pwA3AiUnp4Q7JO","c8zufMuY6Ft","yxeigcSZFN","gJvAcEHKwGBQYR","jbB0tvoPyBu","N8S3fU8FhkvH","SabYKEh5kR","eMUGQiDjBq","kx9RxD355pqXqtQ","4FEV8JEopZbsl","GjclZoUUCzuJG","Wi957P2G8tQjxjb","HlUDTPrhRQQXH4D","qdnzd1fpTPOMgB","Kkp1ORz7so","YEp2QFulkCIw3","cCEC5utt0CNHtw","apnAEdLmlR7jDC","tvIUafTpnFpFm0Z","lur2wv7xbEMX","7lseCrfFoR4Go","RaiLA1AaJzTee","MMVlA0WRH7gCH","ehqxCqnr9O8oOHz","K3sFK2E331n","zd1kbGoIE5","W7ibzNmhz97t8N","hthXfNBNsH1","MZKtibjuDKXLQ","23RdRb2qOO1KZBv","Hyw8PftRPAn5pot","cdeQCnfbMdVOIA","N4c3TU0HWS6","7VXbGLG9hJlW","YNvzjOpHtxwHd5","h8aGHIi3jq6k16x","SlEiScPVYorRbEh","KxlqSb7gkuO","PsvqV8K09hbun7","dZOR5neD5v22sU","1ob5WZwOXSrIB","6RUjXm72i75O","1GqRlJjxsUJSs6E","5dyaioXtz41","sJ8zthf4ZSFC","D1dkF7lQMr","9tHjj7fzzwZYe","Gda0Gxr0eT","hSMpEAIDblHIxRg","v3EBfXPx00","2hiiEPldZv","yUsqx1FIn0Er","TLBiqMS4EkQVA","AqyBQMqv9Q6L2","4Nr9QVuSSvobuJ8","m6Gn0Dt3lE3vI","XuE2P0JD4nvlCbi","O2sJRZEkU8","CUV8firFJJ9FzHC","JavRsbAwMv","4z2qr3WcVJ2ZyG","xitWDNvT4f8y","AY19y8ygbp","S9MC53c0g2f","x9KoKibDua","skaJ9vM3CNBTAG3","AJJdwNeScDo","JxyUXc2nE3k5K","uQ4GAFiNvuhD","F99Nl8W3fQUE3","RcqAHvnEsUtELTr","pW25RRkxvn","vp8dUnsOvuYeMO","TiHVT8RDIKR","cLGWwcokdye","WQTVDQsa8ShW","EArmGZw4s1q","MoCPoSl32LsFd","ciBgsok0G8U808","0IdVVXaRtGkf","VvynWsGrdfk2","HeDNONMDo4FnXK","bgfA13MlYdp3","WQwjS45MPm","gc2Jm1ohOKgGlBE","hpscW1UGla9cb","760ArqsSJ7","bP7iNrv2luAhTsw","7pxSG8QaiGP","u9Z5HA6jx2LKL","nVssvQK5cirz","l1K5YBPnwNCszUG","DZYlCESvlF","SbI87vuNqo","G5xIsqXUD0FwAn1","vDgO1uVqXgYg","HocolljI2F9","o9RZVMUo2KAsq","J4w7Nwd8ayhiFqJ","MjBMj2tWzbz4","v2nDTvVEZ7QtJ","TEsiBael9W","rkmLZtJz3U","jz4RJye6x7ieS","6SuRG9v3pLrEDn","EFZIZxuq91M","4zNLCztDimvUXBN","3KTLhxnEdm","A2Tbpr9RrE70jO","VWpEQg8FBH","tdVCZoErQu","KlpxyYGJfWnbTeG","0yz1Zv5cUK0","8ZBaYujfFdsMEH","GSA6tysqcXZqS","PRSKi0poBdtK","GXnJxNaS12e","Cuvqe5sITN","ZxwOTaO5QGqB","0E3jJ1eYuXx2OV","2fgAOzHY0WQPBL7","uRX7sP2DroZ6rdb","2BxO0PbYWi9lYB","h4A5UtPLvy","p235yinFHmgGRwN","6GxF9Jwt7TPCySM","wAaVJ5ZdNvd","6LowO8JeP6S","8SgfkOyajrgi","Frqv3LwZ6kw3","T7M8Zrbbhbam","cwh9HFrg8JsO","jAazLeFxw4o","H9y95szYL1PO5","aaujQCttsMiOXK","KGdWzn7nCiuY","MNnJwvxEFGBKmO","THhSxiboSv","tQgoQmOZtsvcjZH","a6zlNfBA8J4","Z7IMkcjsU3OHJ7","kVY4DNiS890","2TAaXhh3165Imb","gyEJMyjBLWbyNS","e5OltRs84ChQwFj","6uOn2qkvnpnj","ebLBt7QgLDRPV","RoGn2REieThK","R5f9B3zG2KQ4","kTYyMW8GrXnBGFN","kVovFhETOiX5ng","1O4ovMFObpPiuI","kaQRTliT8C","ofrzYL0cd2KK4U","8xXkYd8Jex0","a2GeQgoZRNZ3eo","Y7dosv8Wpxa7","Q2VqNZ5zgodixzQ","9KU1JU9R6llqi53","PCpmuF8IZp","gMU2s9Tcl8","fP9Rt2nOHD3","Yuu16gFyL1","ESav143OpLMXnru","AsQYMEAq9MYT","EzOfNBsBDXFvn","gg49aT8YW1Nd","1HiiVNc6Al5","yDuv2L134RH1","oZSsuneiXweB2a","Vv5lOthtJd5w","o4jBAalyXebsv8","r9mszS04kTc","oba8XjLAxT","U6kzriQRaHH","V65VPaiLTS8Wm","bNZu1OrzYd9","2FXFblZDLvi","IdxXUj9lBdN","EIrEq9zXvAoCGJU","kpMXax605Lq","fQZpa2FTFcWI6r2","Qp12EcBJGJALM","4APIkxy0wPa0il","k52k8GRR8CNLC","w2KTqG3r2sG","rowm1bPvxp","M7biDE4Arl6XTr","P4Li0smpkDyBe","KRYabqtMiIB","eeuorAd6BPe1S","EwVhr7H1mVry","O3HL0ZUv1H","mCDkU5YyIB","QbGZOHna8D","ggxckBUfPzRWu","KlzrRdGj1d","6AbO5b8LKXDf9w","swuakO0t8yx72","O326ysV0pdAhiI","WYeuYgqtA2zl","I0JAGvNDJNM","k7NRmARqzqcH5","Ln9iyMf203D","OZuQmfErySs","6UcXXkROicv","W7IUwycbfqWsmX4","MRPfoDSh9zIMT","lOw6atHEbvP33G3","iptrBGF6ok05i","Ncw0pafCAm","9ggvFwFzru21","yFJ6pUu7Hq","sCwkqblYoj45","dC8P4K0e7m","wX6iAiJIGxUrxx","WaxqAedcSez","iHpNMlDkaEMZvgA","wjgol0TGLQ","QK6aH6fMFGH2","n68Xf26c5xe4V","s09X8SUQb0ZNyF","eBirS8gtrpZgO","q6hrS3TYw3p","teDRkt9nnw9plg","r0rDbOyynpf","GpUjyN9Jx4t","klfcxbTZb4","TlYxHQwMRnSZqkJ","zQo46ovUDEIp","x2xcAUsFpmiGr","pPntkuoLXar","e05fIkZl6fT","wMAMgCTItib","SVFhpuhWL9DXC4c","6J6DbtcwPKa","J0Bk0bkK57C","gUlokjal5PcoCY","kQebJWCWgAFszgB","ERakh4Twrb","SDi5eG9n34kUyQ","HRFXYAf2fsNZW6k","CdZSDhwbkhG","wJCufOHdEKDSuQE","jUP0mZmwLHL","8r9T36O1HOgZNC8","CPpm1154OXHpAVF","o1k7amr9JCIfpEp","74H4R5UznaRp","x9ORev2gpabQ","10XyjrxKUkx6qO","SwVfV4grHF","Jxa25biTInVOI3","fJGSwu9PUZYhfqS","BAizJPAzMVw","RGttNWKbCu","r0lmXr2CThRxmv","Ps7IjWoGqyEv","pu3XnJWVAWQ77ae","niPwM7P07Tb88P","dDDOS7QRUAAAAW","suP7AXcGhvpv","UFxF1SRqQE6","ArfPlTW8CN0","CfqF3DuaRaUWN2f","xeSdecL2WCGpV3","2NPp96uSlWCWrf7","rWI1DKXJeKRoTc5","iiYAiL3LhMseAL","iW32r19ObMXSAv","t4Uykxciep","VVr2roqFvxzXnsd","vtxpxFw5Oa4uD","J5llgPEFReQ","MnzA819UV6i","AEflDQRbJQ2ibYt","R7WXycYYODajoXC","giYLCMFsMxQRSHl","X3YyphzUksv4zop","0K21ZO5toEjaht","MMupNmnKShql","0yUvRUa5rPoJy","uEVUD3k5TUO6","zD5Gmhu1FF756Z3","zeenOpLczTUs9gT","gVVvImmFNnfuj","4uw2kyLIc1Nv","JQ9ENgW67WV","JdMwfL59wZl81Us","EKnqjDTcXxjvjZ","SsClb85nHJgZ","PAN6rPidfI","IND4TpSLVt","6CptuPCluYUO5k","rOYBb5wdRd","kYNBAbqqVtyyB","GdsEEVFpQK","zX1uM3f3JdS","F64lohR1JSn3t1U","IqA1ReaTtt","BSsV5TLn0n2j","2dNR4IiUXqI","kfIbUmR9ZP1oa","4EB8Mi4AnYLo","iXaamznselXxO","EOoQAZB5tJAHY","1NKmf4b2itlq","3gxkQkYg46XYE","bv8AtjS2V5jK","kLntgH0OUmEA","KwLIsDjAebuukIi","dvyrijpJeSt6Ua","YknoQLJ4Ciukw3","l3zwgZj0lZeDoS","gMrUmSLva8","FquGA474tjLt1","H8WZNFnceD","63kRwGIMWLj","P2RUsYGaAx0xlp4","8kZN7CRQj51y","8amTCuBzIc9","iY6zujnhf9","zdC0bbRSFoR0nRa","HpRclBDk6c0f5b","LGXy07o0Jd7QKEC","eiVaSfaLjwR","2O6mlwicExLwgLw","NcADlB8WCi36","G0Kx20F0FuhdwE","SjL3ynjM5Wf","OyXI6sLru6Q1E","1g2XbYEbBQW","qPancqDsIYd00Z","Qpzs6nx0WPg","tRE9CmVyTQ","qG3QhYCpsSZybx","E5hV8ncPGKBzqud","t5PfdH6W65ch","0a8kiNzZPd","QpHV5UbfXA","4elhYXhbRid","4T3PevanliJzM","wQndaVlFgZX73NJ","3Av5RfDbQbF9rf","q5ZLGIT4rh39","OhDfP0V9TL","utZuuLIdJx","XUrcKH66T26OyJL","ylgiUMHs1nT2bJ5","mGBXKZcokM","oyCNkPPQsOg","0no0gPxga5vWF","4TtNp5dTjTmb","qzWrmklTda","qalRfxUk9LN","2hQvxcAGyKN1","GDXWpdd4Y76V","LvDZ9h9doOUx2O","OJGKT8OaXP9n","Ncu4HjhsYkNyZ","huNfSLTtUjvEh","NIYMp9FiPcxh","QFWjcWuv1eiF","D3OCH0rnx0z","af1ASWtjQz2sSO","ITKZkpavFLaDskD","PUa5W7YmACxVh","7L8aoSnu06c6nD","8fJMGfLzumulfP","XiNzKL8ZlMSRjA","wCL6FTCpYfE78u","Zj9a9zuVFEAb7dk","tKvCatR7is5rpD","Vxq17LWnLH54","w1uq297C8mGFYeh","fQOiAS7TZTchmaU","trTWsyOl9ktB","8Nvxkun9xHyCiQL","AmROt7Gi2UpJqq","j8J1YJ53g4j8","hAJ6vg2Noe21NZ","pUQfThAHJr","Fy4nNAqZEIKH","OwfkYHMXaVLJ","8HsWcjWTzu07","TmiGFMlY4zQ5","xEb2E1C2Ez","TKpym6rwBbs","4VZPP4I6rPTaTM","zMoZn4fXo5tQZeg","siLYj24S5E","ORTl2qeekI3vAN","HJSZC01SBM9ck","I1egOQm0Hg","MjLZBKMuDuLjG","Te2nXpOpx4cR","WPbn3ZNGjT","SSHkmAmIhMjTt","pBi1Whizxia2","yjkoTPXujJmh","IEHkUSPwCv9aI4","Wgq2CalE8TZW2P","s8b32zhZZpBFSx8","r8XwaWNzCclmN","rBpq1RP96d0","qN8g7xMUUS","Uha0MC9egUKPW","bUQAwW1QumMDet","Drr4NJfehx","NbzPGNhh9dRF","COlk2ikzdHgfG5b","JDrkH9V2OLhJ5","sHQ5SudML2rCHrN","rqkMiVER8Dzt8","F5tbvyBMXyec","VPqhavfCVjk","VyfEcz38PEimq","slVx3mDaCQsn","Ng0BDKTm6s3","nQXOHuSxzABb8V","p3NirLK8214P0","71sgTjELa3sA","IzCaBOabXcp","3L7flCPpOo","5WRmYP69xO","OF9OaRXvisDepcv","71yr5Rqin3Ig","oyqk3YhQyzGhX","G51abD2ZU1HSOq","F51ILEmhB5U","2Y0ZfWJUP6UgN","bI50OiSEJY","Z3edgyXUqU8","U1bEDntIbH","3vyiUNmxzN8","8gcrQ21Olp5dAIS","4Y0Agk5HfMEkW22","3reuSJZwgDPTA1","kGIUgG3DOAEnwN4","UifAsoffMOX","IxWkTHZ2zYmYp8","KesHouawo52R649","Gf4SrbaydEOaxV","eo3WMCitZQ20b8t","fobgRii16yX","PhoTh9GLtbm6i","HdTaYnCoZkZZnX","E4ulquyLj5s","Cdfy6Jyp7JTn9l","JCnVWVY86wzx5k","H8UBTjx6zBd","o0V8sLD3VnVIr5","8gi30mwaC246","A1oIlmIluI","nNO2nDjXMw","CwFGWaTgFvyr","cCxOw68KKMXwl7","vJ9HA3o7gOuVh3","gSKZkOgNYro","KO03n8RF8STFuE","rZSiMmE9FLiveA4","odii3rYfayWJX","zZZ5appBLVFA","dZGUfBq4YDCQvj","M5Z2cbkQVnD","YAGEaHvfpO","l9pPsRP9EGiD3","ELUKznk2HD","ztRWxUEfI3IsUwf","ioc8GhwO7BxZq","ikETcCF3R9p","J3av45wpVXvDr4","FUZdVHsumOLw","Nro7ya55FSJ0d","Urtd4VXClNbNhuf","E9uokFnLwwH","2zYLfxpfONq","K8qVvZHgsFSTgxD","yqhEIUAdqwUQQ6A","OYaykUsJivEf","H8mLK2hrOgG1","7o51vCMK5HiO","2rt1Oz1HWa78K3","xpK0zRZDVbAyP9I","B8MZG5V8oEN","pKtxD1qGDcaqC","5taBk85I3Hycb","hcGR9gwh10aeiE","2iTcKtdM9uaW","RF3kIU25GoKVxR2","39uqEnTSc4fB","00enzwu46XrVr","9vTMzPYsx6ux2b7","3hjVQmxWT8NU","t7tJiEHF4kRJ","6CJaAZpLCEUssME","gUXgHWJbxwigWqQ","B06dhiwwl0Ht","iX9IWhixhchXz","iQLvOCe63PRn","nigi0EJape","9Dik61QmYEjBUm","Bssr6WfShwUmbQ","OzD04nZ0JCz","Ceu2W1rQzh3","309HcrVcnXFj","3hpgEQor9E","OoS49KPf3dCJ","89N8rWWyCEYj","a8KgNZRdxRLE0","P6o5iQLKfmim","PQYySCLSpS7nEv","Bj6HYgPH2HHHB","lfeNy2qYv9KmkD","1YbmPqFdqni3Is","uisFE8q2WTNAuhX","B8Jr7W2NUHtjcPi","GA1kAI6aSQfx","GTyVNrC9b2qJ3v","NjBecEy5Xsik","1gwzzFJQmjN","jOByNY8vSfYK0SM","NgyMihyr1YBaalt","gYRjOX458LnLVxN","zbm0Lw42ac","MzeNbgWeFxA2IXH","lURILYSS0F","V6gTHZOB6lSUzp","dVeZ5UFtDfm","AAQcSCMI9fg","Dj9yQIy1cH8W","qGumE2vaPUf","y5nORbMnyhj4qzj","eYVOGejz1oTdnab","64Em4tjFINkI40","ATdtUOSR9T2a","ZgpvQQ0H8gb25","2iwRLO7j5y4Ty9","ViHUV9sJfs","83Dl8jl3X8","6fIbmsTyQdc9oRy","9dQFsoKAq4UE8","po5Cc0LPvVEk","wB8B63buEqWt","cYRvUIk5BRtNSy","jruRbE29EEK","ydQIZSDfTpO","7WJeU1fX1Bw1A","5d8IWFmQUW","HcHK73Sjmf","WDbjJSTQJy5oU7","oUP6ADbwWz5Y","a9X1gP8aQ2xJ","UdjkOr2pCRf","AAxZqxLxfE1KsW","1sBCNxysuK","QP12d1mmQJvGzK","OwFiLiRH08EbJVf","Rn1geRMc1iuPE","VYDoowBmqG","ojYxoWipC7aYh","7L9G9XBW9058Kvu","REMFdffTkuj2CP1","dd5Hr12LtpZ","mRTeGNRRUmIK3zv","Q1EadP7DTtLZ","7C3y6qC4D9LnuvW","nOzdNrwz14kHT","tO5IIr5znbFtbVW","8IcSkNY28zH","S3OPVFgWlx","Ug9ghT9K1f","Mb7KKZQbZ9t1","6ohOIEwzcS49hvJ","RQ8B7gDj36PkZz0","WkKEPrzecGSB3M","bhemAlmVH6E","vF1yc1zIMNLY","qnrcPhhQAtfOK","2yYkOnit0t6KncS","RrRdBoRdjU","MJg0Sh2bq2","F6O4vXNcf0A","720M4lUMk809","49Lqsem9I1RNOC","PT4OXTTGg2CX","IbXfoTFjk9q","sgMkCcMJVC","yrY6KOnZPNkzq","qwEBvbuf6c","PeTYip3PFC","9UsgRmmQ38Y6VU","7BPqDOTzxWz","Vs1tTawoica8ZPx","Zh6XF6Vu3QLWlFj","H8lTFKJ3Ci","PUqiGrhAilU","4m7as98IPUNo","IT08skwpgePYDjz","JqjFqaVvaGRb","qQSPCORUEj","fTIX899Zj3Uaw8v","4i4t9wfPr6Nq1i","WxwJwrxU3RzuO","yn1MgRxv8HW","5poTkXa0J4cPCE","WTPZMG9J5DLOgK","lTIBR0IezUGuRk","mxVQEfAlNznV8","b5hssgFeHx","AM8uhjvASqcTzuP","RIah1g3cjAfO","e606pCtAExGN","Us8lIUlmFjuzu","Ydbu3VG2Ip","NGCgBHkgEMfOPz","OY6eRsMnAmEV0","nutdq1NkTPFVqB","N5Wg4GYAr1ZWB","yiMnDt987c3TApN","eJMGjUcvaxhnJZF","sspOcjDabOxu","gg1dPygRlqeY4V","d71by2z29xaW6dd","D5ACdOBs6ndTgSn","obCRHnLdY2t8a85","GKZMwkGd5M2Yp","BaIWwvO8upMVr","eTJ62KWNOg2","w4RcVafrqnI","xWWfQC1Axe","4QQHEE8c0pclFo","ScVpVjOMrBT","kyBK7JBOW3D6ne","OzDykLcR1EZ","awsSt9mI1P","dchZzBPZfR","p2aOCcGTIlPglp","wNWzbXTtGTpi","tx6b155vNeZEqU","9pEr8wL40Y","XnvuegfCQs","U0AQJVeq22dPcKT","gbqa5KHhKI","94eNAwQOTFyI","HKS2B3Gcm6YWDE","7mZZYBDpgdQ97","bHp4J8xMk09B","kw67KY6mZCAmo5u","0YMFFU43o0nau","5uwKiztiXM9F8","urtuxJ9XJ5Y02Oi","MtdfQ0KeKhciu","bBWKObyoZz","zmb6V3pRHN","juru798wjjeaY7","ZpwDXvNx9nIv","sjxAeBhxBV29e","brTIuhsRGvse","vzMPA0ehYK7sb","MAA1fnRehFyoJ","EsOvDeHf6Z","W4jQfbz5k2","ZdN3FKmCUJoTt","Dt8V8tPUOEU0N0","uD3LbX34Yf","L2lbpDEGM1IbK","V1N2TM3nnnfGX","43S0oGzR5bZF","Cz9cWXunid9c86","W9wXElUaJo","pmHe4wilLEzpxfl","Q9dJ80Khwgp41ac","AHa1v94RPKIE2gi","4UtwxMkaieyx","Mmme89JwLN0","XUnD5H2wsmpbqW9","A73r1XUNTgzSfBy","1aBR1RcfpX","zDKN1xtZpk","dHjIEeg7Yhf","Mw2ENPowGn","DR4Pak6tR6vE","d1cmkccLEHo","oU7HGbhC4V","cgPisTRUh1g1Ia","ifxZV02oMQmmt","XlnxlBBrp0I","ZMtIR7tUUNRPp","eioAbeK02ncNqub","EY2nrsHV5vxQb8","IhAth151IG","iUjujPlyjlfK","nHJezBL2jJ","FRXKT4Fz05KrKd","kEpaVXQHgzS","9q55Yy8flM6bIB","7xUjlYrf3o","ibo1n7gZNPPzW3","PDO4wfxAdx","K2IgescKfYCH02Y","7EpubpJMvyEwGJ","SSlvYURgYMbW","r84MwyOAKL","rNJ2EJMZSvjiay","vTyDHWcNHyGBVwq","0onV05qeRVNF","YPWnOVAf3o","6mTw19vIooO8utb","Z0PAX9dcJBWKiP","mqhnM8NoHx1l5a","2wi2SEzFzYa","u0mIy0PgDoq","ZUrq0rA4ruCae","6W4niVGilg","ZcpNOWNmjc","a1jhzR9CCZsDJ","otuuOdYAm57","rQDO8AEWMuYOIR","UOAqdPYfEnBB","KyNyJ6UA6Cn","BFRdtC0voDqWiHx","sjRLyzRI9VSqYr","edUEfYKMry7cV07","oSHoSTVZt5Bi","fU173D9e3J79CSh","HP5mRPNHLN","7DpGmY2PDSI","vDcSt429gyicxyU","06afzzxcYWuti","aNymJxj7yjs2lu","0jNTiS8QoF3Qcz","5PZWFxmgmh1klSa","EWqNMaS1w3ggJXY","nmTkNoiAtR","oCZVbgMDmsyll","imlFWYdrSBEze","kUjVQv7JO75Ah","DA8dN6JHr9mt","saWRnT3SHDz1J","dMIxmlfcQgY3g4j","2lwLJ92XaO","9Vv0mIBGHag","GJbEMWFJHJa9qzu","Vg93WmQT2JW1EA","iD9CrWfzTU","1mEtLBEfjup","OwAJKNPHb5","OAgBVfulaYRc4bI","9DxB46zbiiFu9","pab9H0zSYdS","vfhDNWAxnk3qt","vxVAP1RkdDK","OKOeNZeqKwG9Q","cFivyxmxJu6H","2FnuhZcPngFTR","t4nq42gQQ2XwEm8","upnYmL3uINkS9gF","QXjDCaIcUSOU","IpvA8jkHRvxzqI","PVCaHDl8ma","rpNGXvf9XqEH","SPrhzD52SnBo","n4iOagknEQpv","nFEoB3xquPGYFH6","O2GnC588ad","fii3ljWmjiuldS","5hNj6EeQeNjEhuX","ApJ5O18TaTTrr","q0CaDdCebZ","8AgrtcN9Wy3SO","b30yNYuAqw","UE34l5uJZt0P0OC","PuLE3NnByW7","gy4wARINIFua8","r4ucvlPx12zRK","Uu8wGzA8ggx2a","VwUwf7eccqNa0J","TJZywNR3Qsvs3","qukFiKdFRN","YNSwJZBw2oKy","AbQw78B3Iv","X55VcMwiam3","vUgiw74YdCR","RHvBVZ8hll","speGVjq4Xs","9e7BuCO5e4","qxPRzf2nCsd9Y","wMhRQrhAxW","sCDRrMyIvqa3QP","xcivqhw3Xf51DOO","7REBfBNZfvU","TNmDBhMITNTFXPq","zwAUbzvoP2KtQLH","U8ml21HM82R","eDMm7bWWGgOvX","DQbwnVksSLub","i4x1gg1qZhrk","HOfr2MwQ43Abm","o2cVgoBm0eNOO","ahOWlbQONxj6sh5","bmPKQKiLwo","3HiUjV2fwt","B5SzR3v81jyP","IAvQWtSHcKYAVf","S6ZB7PirRttuh","bNxVQPoVgwPZ","o46s6gSdXbV","NoJXZraheuPk","UfraxNS6PJdfX","RUoF11kPYEzrx","WAHAUbaxuwXK","ulSMUPBTlGDorW","aRei7OzgGx7KlK","MH2eeFqxTh5T0MZ","OILasWHaQhv8","5qDruaH3iJq","O3yQ0roz7Nj2L","5utfLXMbNmqZHlc","6AJYMSW7HlHZN","OGUtQRqBPO","Pp5FXuglBH6cpC","OxOH2hllx7V4d","zdy5Gcf9iq","2qJ5yILtriJqlxP","zDMXLuq7ACy","bQI8YLG7CvI","ij2rzr9uqwrRbp","RPY25KtbcWEqus1","bxLCNj1SYkln","sU9lkf2Cyo","IEOwQHyQ8Z","0FCo4q6DgdhPXWo","UbIZI54qqfkOU","aXezFwt8kpfI","TcBhIOBb3K","5VZVgiGKJtLmedZ","tLeaeOZmH0wqK","ORXaUbaFwChtsc","iUfSdtt4IL0e","oq8xnaCIbNO3rI","VMCcWsjN4rWa","0D705OgWDrStAM","XjXsfvUVlX","7LdEmiFyy5I","NW2CD0XmwsC2","7JD9ARIRJx9LmH8","tWIqhbNeb0","7L4UUNUIpM3","5o7upgQUu4Mn","8DdehY8xUPR93D"]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'bundler' | |
Bundler.require | |
require 'forgery' | |
emails = [] | |
1000.times do | |
emails << [Forgery(:internet).email_address, Forgery(:basic).password, | |
Forgery(:name).first_name, Forgery(:name).last_name] | |
end | |
texts = [] | |
1000.times do | |
texts << Forgery(:basic).text | |
end | |
require 'json' | |
File.open("forgery.json", "w") do |io| | |
io << {:emails => emails, :text => texts}.to_json | |
end | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source :rubygems | |
gem 'rake' | |
gem 'forgery' | |
gem 'cassandra-cql', :path => '../cassandra-cql' | |
gem 'cassandra', :path => '../cassandra' | |
gem 'perftools.rb' | |
gem 'rbtrace' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ruby cql_speed_comparison.rb | |
user system total real | |
CQL Insert 100 rows 1000 cols: 7.640000 0.080000 7.720000 ( 9.216009) | |
Thrift Insert 100 rows 1000 cols: 11.690000 0.140000 11.830000 ( 12.782685) | |
CQL Insert 1000 rows 5 cols: 0.500000 0.050000 0.550000 ( 1.246638) | |
Thrift Insert 1000 rows 5 cols: 0.730000 0.050000 0.780000 ( 1.265024) | |
user system total real | |
CQL Read 100 rows 1000 cols: 3.260000 0.030000 3.290000 ( 3.862104) | |
Thrift 100 rows 1000 cols: 4.540000 0.060000 4.600000 ( 4.999242) | |
CQL Read 1000 rows 5 cols: 0.160000 0.000000 0.160000 ( 0.187445) | |
Thrift 1000 rows 5 cols: 0.240000 0.010000 0.250000 ( 0.292730) | |
# technoweenie | |
## WITH FORGERY | |
CQL Insert 100 rows 1000 cols: 4.890000 0.030000 4.920000 ( 5.358919) | |
Thrift Insert 100 rows 1000 cols: 9.050000 0.040000 9.090000 ( 9.304115) | |
CQL Insert 1000 rows 5 cols: 0.350000 0.030000 0.380000 ( 0.674745) | |
Thrift Insert 1000 rows 5 cols: 0.580000 0.040000 0.620000 ( 0.925563) | |
user system total real | |
CQL Read 100 rows 1000 cols: 2.180000 0.010000 2.190000 ( 2.315632) | |
Thrift 100 rows 1000 cols: 3.020000 0.020000 3.040000 ( 3.136465) | |
CQL Read 1000 rows 5 cols: 0.110000 0.000000 0.110000 ( 0.131341) | |
Thrift 1000 rows 5 cols: 0.010000 0.000000 0.010000 ( 0.014766) | |
## WITHOUT FORGERY | |
CQL Insert 100 rows 1000 cols: 1.190000 0.020000 1.210000 ( 1.582572) | |
Thrift Insert 100 rows 1000 cols: 5.600000 0.020000 5.620000 ( 5.857047) | |
CQL Insert 1000 rows 5 cols: 0.230000 0.030000 0.260000 ( 0.471141) | |
Thrift Insert 1000 rows 5 cols: 0.480000 0.040000 0.520000 ( 0.668661) | |
user system total real | |
CQL Read 100 rows 1000 cols: 2.210000 0.000000 2.210000 ( 2.307815) | |
Thrift 100 rows 1000 cols: 3.060000 0.020000 3.080000 ( 3.175320) | |
CQL Read 1000 rows 5 cols: 0.120000 0.000000 0.120000 ( 0.128986) | |
Thrift 1000 rows 5 cols: 0.010000 0.000000 0.010000 ( 0.014461) | |
## PYTHON | |
Insert 100 rows 1000 cols: 1.278700 | |
Insert 1000 rows 5 cols: 0.341874 | |
Read all of the rows (wide, then narrow): 0.133715 | |
Read all of the rows (wide, then narrow): 0.104260 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import uuid | |
import time | |
import json | |
import pycassa | |
from pycassa.system_manager import SystemManager | |
from pycassa.pool import ConnectionPool | |
from pycassa.columnfamily import ColumnFamily | |
keyspace = "pyTesting" | |
def setup(): | |
sys = SystemManager("127.0.0.1:9160") | |
try: | |
sys.drop_keyspace(keyspace) | |
except pycassa.cassandra.c10.ttypes.InvalidRequestException: | |
pass | |
sys.create_keyspace(keyspace, 'SimpleStrategy', {'replication_factor': '1'}) | |
sys.create_column_family(keyspace, "wide_row", | |
comparator_type='UTF8Type', | |
default_validation_class='UTF8Type', | |
key_validation_class="UUIDType") | |
sys.create_column_family(keyspace, "narrow_row", | |
comparator_type='UTF8Type', | |
default_validation_class='UTF8Type', | |
key_validation_class="UUIDType") | |
def insert_wide_rows(cf, texts): | |
"""Insert 100 rows 1000 cols""" | |
for _ in xrange(100): | |
values = {} | |
for index in xrange(1000): | |
values["column_%04d" % index] = texts[index] | |
cf.insert(uuid.uuid1(), values) | |
def insert_narrow_rows(cf, emails): | |
"""Insert 1000 rows 5 cols""" | |
for index in xrange(1000): | |
em = emails[index] | |
cf.insert(uuid.uuid1(), { | |
"email": em[0], "password": em[1], | |
"first_name": em[2], "last_name": em[3]}) | |
def read_rows(cf): | |
"""Read all of the rows (wide, then narrow)""" | |
rows_read = 0 | |
for row in cf.get_range(): | |
rows_read += 1 | |
if __name__ == "__main__": | |
setup() | |
with open('forgery.json', 'r') as io: | |
data = json.loads(io.read()) | |
texts = data['text'] | |
emails = data['emails'] | |
pool = ConnectionPool(keyspace) | |
narrow_cf = ColumnFamily(pool, "narrow_row") | |
wide_cf = ColumnFamily(pool, "wide_row") | |
glob = globals() | |
for (method, args) in ( | |
("insert_wide_rows", (wide_cf, data['text'])), | |
("insert_narrow_rows", (narrow_cf, data['emails'])), | |
("read_rows", (wide_cf,)), | |
("read_rows", (narrow_cf,))): | |
meth = glob[method] | |
start = time.time() | |
meth(*args) | |
print "%s: %f" % (meth.__doc__, time.time()-start) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment