any_login 1.5.3 → 1.6.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (47) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/stylesheets/any_login/application.css +3 -0
  3. data/app/controllers/any_login/application_controller.rb +1 -9
  4. data/app/views/any_login/_any_login.html.erb +4 -4
  5. data/app/views/any_login/assets/_css.html.erb +101 -0
  6. data/app/views/any_login/assets/_js.html.erb +25 -0
  7. data/config/routes.rb +0 -2
  8. data/lib/any_login/helpers.rb +3 -1
  9. data/lib/any_login/providers/devise.rb +1 -1
  10. data/lib/any_login/version.rb +1 -1
  11. data/test/rails_apps/authlogic/db/development.sqlite3 +0 -0
  12. data/test/rails_apps/authlogic/db/test.sqlite3 +0 -0
  13. data/test/rails_apps/authlogic/db/test.sqlite3-shm +0 -0
  14. data/test/rails_apps/authlogic/db/test.sqlite3-wal +0 -0
  15. data/test/rails_apps/authlogic/log/development.log +438 -0
  16. data/test/rails_apps/authlogic/log/test.log +1144 -0
  17. data/test/rails_apps/authlogic/tmp/development_secret.txt +1 -0
  18. data/test/rails_apps/authlogic/tmp/local_secret.txt +1 -0
  19. data/test/rails_apps/clearance/config/environment.rb +1 -0
  20. data/test/rails_apps/clearance/db/development.sqlite3 +0 -0
  21. data/test/rails_apps/clearance/db/test.sqlite3 +0 -0
  22. data/test/rails_apps/clearance/db/test.sqlite3-shm +0 -0
  23. data/test/rails_apps/clearance/db/test.sqlite3-wal +0 -0
  24. data/test/rails_apps/clearance/log/development.log +388 -0
  25. data/test/rails_apps/clearance/log/test.log +1110 -0
  26. data/test/rails_apps/clearance/tmp/development_secret.txt +1 -0
  27. data/test/rails_apps/clearance/tmp/local_secret.txt +1 -0
  28. data/test/rails_apps/devise/db/development.sqlite3 +0 -0
  29. data/test/rails_apps/devise/db/schema.rb +4 -4
  30. data/test/rails_apps/devise/db/test.sqlite3 +0 -0
  31. data/test/rails_apps/devise/db/test.sqlite3-shm +0 -0
  32. data/test/rails_apps/devise/db/test.sqlite3-wal +0 -0
  33. data/test/rails_apps/devise/log/development.log +1081 -0
  34. data/test/rails_apps/devise/log/test.log +2120 -0
  35. data/test/rails_apps/devise/tmp/development_secret.txt +1 -0
  36. data/test/rails_apps/devise/tmp/local_secret.txt +1 -0
  37. data/test/rails_apps/sorcery/db/development.sqlite3 +0 -0
  38. data/test/rails_apps/sorcery/db/test.sqlite3 +0 -0
  39. data/test/rails_apps/sorcery/db/test.sqlite3-shm +0 -0
  40. data/test/rails_apps/sorcery/db/test.sqlite3-wal +0 -0
  41. data/test/rails_apps/sorcery/log/development.log +247 -0
  42. data/test/rails_apps/sorcery/log/test.log +532 -0
  43. data/test/rails_apps/sorcery/tmp/development_secret.txt +1 -0
  44. data/test/rails_apps/sorcery/tmp/local_secret.txt +1 -0
  45. data/test/test_helper_common.rb +2 -1
  46. metadata +86 -7
  47. data/app/assets/javascripts/any_login/application.js +0 -23
@@ -0,0 +1,438 @@
1
+  (1.6ms) SELECT sqlite_version(*)
2
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
3
+  (1.3ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
4
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
5
+ Migrating to CreateUsers (20150907190739)
6
+ TRANSACTION (0.1ms) begin transaction
7
+  (0.8ms) CREATE TABLE "users" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "age" integer, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
8
+ ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150907190739"]]
9
+ TRANSACTION (0.9ms) commit transaction
10
+ Migrating to AddDeviseToUsers (20150907190846)
11
+ TRANSACTION (0.0ms) begin transaction
12
+  (0.5ms) ALTER TABLE "users" ADD "email" varchar DEFAULT '' NOT NULL
13
+  (0.2ms) ALTER TABLE "users" ADD "encrypted_password" varchar DEFAULT '' NOT NULL
14
+  (0.2ms) ALTER TABLE "users" ADD "reset_password_token" varchar
15
+  (0.2ms) ALTER TABLE "users" ADD "reset_password_sent_at" datetime
16
+  (0.2ms) ALTER TABLE "users" ADD "remember_created_at" datetime
17
+  (0.2ms) ALTER TABLE "users" ADD "sign_in_count" integer DEFAULT 0 NOT NULL
18
+  (0.2ms) ALTER TABLE "users" ADD "current_sign_in_at" datetime
19
+  (0.2ms) ALTER TABLE "users" ADD "last_sign_in_at" datetime
20
+  (0.2ms) ALTER TABLE "users" ADD "current_sign_in_ip" varchar
21
+  (0.2ms) ALTER TABLE "users" ADD "last_sign_in_ip" varchar
22
+  (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
23
+  (0.3ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
24
+ ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150907190846"]]
25
+ TRANSACTION (0.9ms) commit transaction
26
+ Migrating to ChangeUsers (20150928123254)
27
+ TRANSACTION (0.0ms) begin transaction
28
+  (0.5ms) ALTER TABLE "users" ADD "login" varchar
29
+  (0.2ms) ALTER TABLE "users" ADD "crypted_password" varchar
30
+  (0.2ms) ALTER TABLE "users" ADD "password_salt" varchar
31
+  (0.2ms) ALTER TABLE "users" ADD "persistence_token" varchar
32
+  (0.2ms) ALTER TABLE "users" ADD "login_count" integer
33
+  (0.2ms) ALTER TABLE "users" ADD "failed_login_count" integer
34
+  (0.2ms) ALTER TABLE "users" ADD "last_request_at" datetime
35
+  (0.2ms) ALTER TABLE "users" ADD "current_login_at" datetime
36
+  (0.4ms) ALTER TABLE "users" ADD "last_login_at" datetime
37
+  (0.3ms) ALTER TABLE "users" ADD "current_login_ip" varchar
38
+  (0.3ms) ALTER TABLE "users" ADD "last_login_ip" varchar
39
+ ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150928123254"]]
40
+ TRANSACTION (0.8ms) commit transaction
41
+ Migrating to PopulateTestUsers (20220825195914)
42
+ TRANSACTION (0.1ms) begin transaction
43
+  (0.6ms) ALTER TABLE "users" ADD "role" varchar
44
+ User Exists? (0.4ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "fcc25c7f18eecd552970561b2f379e76bb5f5507bf81ded875ac49fd1c22e26387ea29601d86e0f51c9de93fc6257010a792088084ffabdfaac18c1dd1f4dd92"], ["LIMIT", 1]]
45
+ User Create (0.5ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 0"], ["age", 77], ["created_at", "2024-06-28 08:01:25.447511"], ["updated_at", "2024-06-28 08:01:25.447511"], ["email", "alan0@gmail.com"], ["crypted_password", "$2a$10$qRlQOzGqWYgkqnFRGr/oc.CQRa3..mklf6j4N2nhsnOIBZ62CSa8S"], ["password_salt", "jlOd349w41D-UVUMHn5V"], ["persistence_token", "fcc25c7f18eecd552970561b2f379e76bb5f5507bf81ded875ac49fd1c22e26387ea29601d86e0f51c9de93fc6257010a792088084ffabdfaac18c1dd1f4dd92"], ["role", "moderator"]]
46
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "7ddf3d3177c38ec90b8c90517064c91c1a8906b4ac56c805320a7dda6e0bccbfb76d4ea0b855f806ffb74633d7a7e3fadf4f4a3a9ad9bf862527a2f516f8ca4b"], ["LIMIT", 1]]
47
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 1"], ["age", 55], ["created_at", "2024-06-28 08:01:25.519473"], ["updated_at", "2024-06-28 08:01:25.519473"], ["email", "alan1@gmail.com"], ["crypted_password", "$2a$10$iBRgifhsPO4/GsX7a8erSu70if7wjtWQrOpqbeaohhyLI0ofSXg1K"], ["password_salt", "c4LRThE0Bb0fubzeJFUm"], ["persistence_token", "7ddf3d3177c38ec90b8c90517064c91c1a8906b4ac56c805320a7dda6e0bccbfb76d4ea0b855f806ffb74633d7a7e3fadf4f4a3a9ad9bf862527a2f516f8ca4b"], ["role", "moderator"]]
48
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "9ab1ca5ad091f3c633e66a79a241b5375dfe25449b121dbddc0858cadacdf844215938b2652e7f14bc764c946babf0beb596f4a4dcee52dba96df4d8de33d2fc"], ["LIMIT", 1]]
49
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 2"], ["age", 33], ["created_at", "2024-06-28 08:01:25.587932"], ["updated_at", "2024-06-28 08:01:25.587932"], ["email", "bob2@gmail.com"], ["crypted_password", "$2a$10$fZJs0GeRIYd0cKalBHQE4u2ADns1JaJm526ODMheTDWAyir0zVR7e"], ["password_salt", "zK-qoHuSPtCFOfqV-_54"], ["persistence_token", "9ab1ca5ad091f3c633e66a79a241b5375dfe25449b121dbddc0858cadacdf844215938b2652e7f14bc764c946babf0beb596f4a4dcee52dba96df4d8de33d2fc"], ["role", "admin"]]
50
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "5885ea8848683ac78f92d5cd1044f0659a619db9cebe119809dd8c71f907c14877e2749cd99d79e57c22a264fbbb55383ef9c618de3d641a55b6f52060374dfc"], ["LIMIT", 1]]
51
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 3"], ["age", 76], ["created_at", "2024-06-28 08:01:25.656750"], ["updated_at", "2024-06-28 08:01:25.656750"], ["email", "kris3@gmail.com"], ["crypted_password", "$2a$10$LwhDsqs/eGyRSYOemKlm9uamG1VgaGvzyG7awNJaEX59tfATY8OB6"], ["password_salt", "5Jv8_leDEbjHi0wIouw1"], ["persistence_token", "5885ea8848683ac78f92d5cd1044f0659a619db9cebe119809dd8c71f907c14877e2749cd99d79e57c22a264fbbb55383ef9c618de3d641a55b6f52060374dfc"], ["role", "moderator"]]
52
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "482c178361d8ae61b1176812efef8a53e26fada3f1155d8e53693d45b74de65c665e7b71f3f5c6f9f1ba3f7801030e81a19336a334babeb11a1497eab277b3e6"], ["LIMIT", 1]]
53
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 4"], ["age", 86], ["created_at", "2024-06-28 08:01:25.738125"], ["updated_at", "2024-06-28 08:01:25.738125"], ["email", "alan4@gmail.com"], ["crypted_password", "$2a$10$7tZQ8u1wWxQQgyaHzQXnaei4rkKW/XUxz5GjB1Z1sWU4LgfV86KCW"], ["password_salt", "ju5I7zdbs2t6stS9hmGN"], ["persistence_token", "482c178361d8ae61b1176812efef8a53e26fada3f1155d8e53693d45b74de65c665e7b71f3f5c6f9f1ba3f7801030e81a19336a334babeb11a1497eab277b3e6"], ["role", "admin"]]
54
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "47f9012cef9daafaf6d0f1f3fbfa796b6c6e518e62b5ca5976be44509a0b5131ea4c15f96eb8a460c0c7f1781da500a9717cce8251c677334db6bd33508ddb12"], ["LIMIT", 1]]
55
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 5"], ["age", 78], ["created_at", "2024-06-28 08:01:25.807625"], ["updated_at", "2024-06-28 08:01:25.807625"], ["email", "michaeljohn5@gmail.com"], ["crypted_password", "$2a$10$V4nDZYszAaeIBH4/kjtoH.sd.vVanzoDASApoZf.8SmhSDLBVz1A6"], ["password_salt", "G9asj3F1DIofNK8Gqqbv"], ["persistence_token", "47f9012cef9daafaf6d0f1f3fbfa796b6c6e518e62b5ca5976be44509a0b5131ea4c15f96eb8a460c0c7f1781da500a9717cce8251c677334db6bd33508ddb12"], ["role", "admin"]]
56
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "9f7b6b065486ec41174e4a8158ff4834c050b567c26e671c2a4ae3130a84519075b2e63b6e655393ac77a519b57b82c0cd877eaeb2d4df83aefc86ecebbd0461"], ["LIMIT", 1]]
57
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 6"], ["age", 80], ["created_at", "2024-06-28 08:01:25.877113"], ["updated_at", "2024-06-28 08:01:25.877113"], ["email", "bob6@gmail.com"], ["crypted_password", "$2a$10$1pVCHWjAfNwBwhOYHt2fyuuRpijYlbsFWq4Zymmw8p8Ej9wRpf.De"], ["password_salt", "UvqYDAwWeb9FYh_rySHF"], ["persistence_token", "9f7b6b065486ec41174e4a8158ff4834c050b567c26e671c2a4ae3130a84519075b2e63b6e655393ac77a519b57b82c0cd877eaeb2d4df83aefc86ecebbd0461"], ["role", "user"]]
58
+ User Exists? (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "c26f725920bacabd009a5dc56be7a0e8290577df1b01fb7bd019490421905c14a026209a49816e00b328a2e0c22d9df121cd9e6d782862ba5bb293f8453096d1"], ["LIMIT", 1]]
59
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 7"], ["age", 12], ["created_at", "2024-06-28 08:01:25.946825"], ["updated_at", "2024-06-28 08:01:25.946825"], ["email", "kris7@gmail.com"], ["crypted_password", "$2a$10$RF6fjuoWIQ0uwEUrNOOdGesWLCcvVUXMbs8YhwgjfH7l2.1owt8rO"], ["password_salt", "PKlnF1ZSGEIISgbBEvpt"], ["persistence_token", "c26f725920bacabd009a5dc56be7a0e8290577df1b01fb7bd019490421905c14a026209a49816e00b328a2e0c22d9df121cd9e6d782862ba5bb293f8453096d1"], ["role", "admin"]]
60
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "ccd06c977d7221b2453b080b5cff115df6e657f70e2e52bafa319da8b08f48ed024f92a758fd254570fa271705863d634572936615d5ca7156cc453803c3864a"], ["LIMIT", 1]]
61
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 8"], ["age", 35], ["created_at", "2024-06-28 08:01:26.015185"], ["updated_at", "2024-06-28 08:01:26.015185"], ["email", "stan8@gmail.com"], ["crypted_password", "$2a$10$fxVtfJcIe.5NsjdvJD9d4uyVty39tuys1td8krL54gdAj1LXPlMIS"], ["password_salt", "_7u2XHJJXHJnA9C_tDrs"], ["persistence_token", "ccd06c977d7221b2453b080b5cff115df6e657f70e2e52bafa319da8b08f48ed024f92a758fd254570fa271705863d634572936615d5ca7156cc453803c3864a"], ["role", "moderator"]]
62
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "c0ab9debc7b12848383bcb4701da243db77d39005a214f880e6385ac074a8ef518e92666e57de45b6018732aaf2ac1a6bb13c0a2ea764cb84657d58860f492fe"], ["LIMIT", 1]]
63
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 9"], ["age", 12], ["created_at", "2024-06-28 08:01:26.083607"], ["updated_at", "2024-06-28 08:01:26.083607"], ["email", "stan9@gmail.com"], ["crypted_password", "$2a$10$IMw/VAIAQz3WAV9Le97BY.tuPn.N4Gv2Pv0gFo/vS6rH6HoSPPrKy"], ["password_salt", "j3A3KE01ipIRfQY0hGSa"], ["persistence_token", "c0ab9debc7b12848383bcb4701da243db77d39005a214f880e6385ac074a8ef518e92666e57de45b6018732aaf2ac1a6bb13c0a2ea764cb84657d58860f492fe"], ["role", "user"]]
64
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "2dc9d226fc7f1db3485896db0ddc355ea8d86ffe2080d358b093b7675ba3d01d98297bc5801ff1c1206d1b34a371d494f01423080f3d9667bfc31892b426c6d8"], ["LIMIT", 1]]
65
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 10"], ["age", 40], ["created_at", "2024-06-28 08:01:26.154065"], ["updated_at", "2024-06-28 08:01:26.154065"], ["email", "igor10@gmail.com"], ["crypted_password", "$2a$10$8rPHWARnRmtXBrnQXmRB5.ywi76dgZdZ10n1z2kn.y26wnk6tv.Iq"], ["password_salt", "ONTje3D0d4zdBXzM0CNg"], ["persistence_token", "2dc9d226fc7f1db3485896db0ddc355ea8d86ffe2080d358b093b7675ba3d01d98297bc5801ff1c1206d1b34a371d494f01423080f3d9667bfc31892b426c6d8"], ["role", "moderator"]]
66
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "16092036a945fd294ac424e378478aecdf6cbc586d140c615b77f686aa54ae6b5e6945305dee44195da8f00c5855093906c26b2cfde066f7d9b26022438a2003"], ["LIMIT", 1]]
67
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 11"], ["age", 59], ["created_at", "2024-06-28 08:01:26.222503"], ["updated_at", "2024-06-28 08:01:26.222503"], ["email", "alan11@gmail.com"], ["crypted_password", "$2a$10$N7sDnoeAwYtS6BfkJauG/uyfEAW/e/SIldU.Ue2dsFdfTiMV2zVtK"], ["password_salt", "aRylez-x-aEChwgt0KxW"], ["persistence_token", "16092036a945fd294ac424e378478aecdf6cbc586d140c615b77f686aa54ae6b5e6945305dee44195da8f00c5855093906c26b2cfde066f7d9b26022438a2003"], ["role", "moderator"]]
68
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "6436b667097cf53a6d0121d2792f0e21f63c78b9f7f98f8980c674805b4e0d16c044419e4d77309da78713d705e1e47dba30cb66e423220448dc19b2548eca33"], ["LIMIT", 1]]
69
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 12"], ["age", 32], ["created_at", "2024-06-28 08:01:26.291375"], ["updated_at", "2024-06-28 08:01:26.291375"], ["email", "igor12@gmail.com"], ["crypted_password", "$2a$10$SFmM7Sy2/NwKHhNKFJ3yN.JEILhFzNGmDD4tRZ0Rxbe6sCh/la4F6"], ["password_salt", "cYGoRNzYyQL1QUfurJ9t"], ["persistence_token", "6436b667097cf53a6d0121d2792f0e21f63c78b9f7f98f8980c674805b4e0d16c044419e4d77309da78713d705e1e47dba30cb66e423220448dc19b2548eca33"], ["role", "user"]]
70
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "69963dfde2a081bb64a47cec87d31e3c2d526fc5897e310ca264785161b56908ecb646cd871684e888475f7cdad9c3e5cb8a4ffc0052e762b6d966b57bbf3741"], ["LIMIT", 1]]
71
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 13"], ["age", 4], ["created_at", "2024-06-28 08:01:26.360136"], ["updated_at", "2024-06-28 08:01:26.360136"], ["email", "bob13@gmail.com"], ["crypted_password", "$2a$10$AWv8YdDgEFNv65N0QOTW7eukodTiw1Cx5iHLX8Ojf4RNphIyeQura"], ["password_salt", "O0YcfwNXCGj4ksw3pNNO"], ["persistence_token", "69963dfde2a081bb64a47cec87d31e3c2d526fc5897e310ca264785161b56908ecb646cd871684e888475f7cdad9c3e5cb8a4ffc0052e762b6d966b57bbf3741"], ["role", "user"]]
72
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "1b25148df53de29493d0b7c2fbda77e26ab939071a75873f8f1d96deb7d2314ad2cbe1e770cc036926f10331f242d9618efe4027455708b44961b01776c71c6b"], ["LIMIT", 1]]
73
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 14"], ["age", 19], ["created_at", "2024-06-28 08:01:26.431332"], ["updated_at", "2024-06-28 08:01:26.431332"], ["email", "igor14@gmail.com"], ["crypted_password", "$2a$10$xGZnpM6OeyRRjZPl5eeX7ewyM5lLmrFCCNyUyxiX795U8gXIQk/XK"], ["password_salt", "bR6fWLDXzDWhBUHlYEKS"], ["persistence_token", "1b25148df53de29493d0b7c2fbda77e26ab939071a75873f8f1d96deb7d2314ad2cbe1e770cc036926f10331f242d9618efe4027455708b44961b01776c71c6b"], ["role", "admin"]]
74
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "5d340fbcba9957391ab641901c3396f4000d9c7579bde702dc061542c978a8097a243fbe7ec9f351f9242472c50a497206868ca472fda74786cb21fce1b9bd69"], ["LIMIT", 1]]
75
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 15"], ["age", 67], ["created_at", "2024-06-28 08:01:26.501373"], ["updated_at", "2024-06-28 08:01:26.501373"], ["email", "stan15@gmail.com"], ["crypted_password", "$2a$10$bLRAIUVsw1eclSLMiDeb8eE2NKkTeRX.dbWPYBfrq1b3/PWGz3ef."], ["password_salt", "F2eFmRWIzpHQfjpyHoTW"], ["persistence_token", "5d340fbcba9957391ab641901c3396f4000d9c7579bde702dc061542c978a8097a243fbe7ec9f351f9242472c50a497206868ca472fda74786cb21fce1b9bd69"], ["role", "moderator"]]
76
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "74c2ca5b0c9d7da85c75ac09f08005596a8a51935396a89ef4186c171fc0fbb968a8e8942b3bb8e2c50f251fbedeecc74b810634b179f34f62350ad3acb166f2"], ["LIMIT", 1]]
77
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 16"], ["age", 16], ["created_at", "2024-06-28 08:01:26.570746"], ["updated_at", "2024-06-28 08:01:26.570746"], ["email", "igor16@gmail.com"], ["crypted_password", "$2a$10$A/9fsfFEIfCwK4M/3RC9bewyoXemfF8z/y8agitdSeR66T1gj5Ft."], ["password_salt", "tmLklBATBDN7hx9ltu1r"], ["persistence_token", "74c2ca5b0c9d7da85c75ac09f08005596a8a51935396a89ef4186c171fc0fbb968a8e8942b3bb8e2c50f251fbedeecc74b810634b179f34f62350ad3acb166f2"], ["role", "moderator"]]
78
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "5fdbe10c8504d73453337a8bd68608ffeeb93f09da70aa5dec8c97623f5c8cf993c193a9954f33fa2a40ab1f8388accecf6f3d78b1eff0394818d91cb15da810"], ["LIMIT", 1]]
79
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 17"], ["age", 94], ["created_at", "2024-06-28 08:01:26.640397"], ["updated_at", "2024-06-28 08:01:26.640397"], ["email", "bob17@gmail.com"], ["crypted_password", "$2a$10$dveyyGvJSgbo0bCiucjGYuxrtNpxlynQSMA4BMw315SlvbVRlDdg6"], ["password_salt", "yAQOmm4Plzl_3D2IzhPQ"], ["persistence_token", "5fdbe10c8504d73453337a8bd68608ffeeb93f09da70aa5dec8c97623f5c8cf993c193a9954f33fa2a40ab1f8388accecf6f3d78b1eff0394818d91cb15da810"], ["role", "user"]]
80
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "7209f71230794c90996ebe8496064e0e5d6ee37897c466ab0491a6dc1df4f148d1a6ab58790d1c6c8caa3c67a13bbc13f72b78862f07a5aa7c34d5785b4c624d"], ["LIMIT", 1]]
81
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 18"], ["age", 58], ["created_at", "2024-06-28 08:01:26.709837"], ["updated_at", "2024-06-28 08:01:26.709837"], ["email", "bob18@gmail.com"], ["crypted_password", "$2a$10$OAFXZ2DqTpwhntI6sFaEjO.QxbSPU0jsaRbcDbxncFC8ORINZIoJy"], ["password_salt", "WITFO4MWrWftgPmTIByO"], ["persistence_token", "7209f71230794c90996ebe8496064e0e5d6ee37897c466ab0491a6dc1df4f148d1a6ab58790d1c6c8caa3c67a13bbc13f72b78862f07a5aa7c34d5785b4c624d"], ["role", "moderator"]]
82
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "6b998ad7fbe86efe765f144073f576dcf5feaccfad3624eeeb707768e120965f141e59be68b75b21442a6b89b8b4a4ebdd825aacfa15714b07c4f40f861e2268"], ["LIMIT", 1]]
83
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 19"], ["age", 9], ["created_at", "2024-06-28 08:01:26.780636"], ["updated_at", "2024-06-28 08:01:26.780636"], ["email", "alan19@gmail.com"], ["crypted_password", "$2a$10$kPxCI2Vu8QDrT7XioZkLo.LMAzyRNJx7go3QwDURbk/h8tO1rHxei"], ["password_salt", "SUGKxd2hUIDy06Srgi5d"], ["persistence_token", "6b998ad7fbe86efe765f144073f576dcf5feaccfad3624eeeb707768e120965f141e59be68b75b21442a6b89b8b4a4ebdd825aacfa15714b07c4f40f861e2268"], ["role", "moderator"]]
84
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "b3a2383108834e8e27dc4972819371f590cdc0eb92ada5422dbd449fa9de37b93fe3de325d755b6fdb1af2603e26661a5a32a818f173b2dad376e99bbed092d6"], ["LIMIT", 1]]
85
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 20"], ["age", 69], ["created_at", "2024-06-28 08:01:26.850762"], ["updated_at", "2024-06-28 08:01:26.850762"], ["email", "bob20@gmail.com"], ["crypted_password", "$2a$10$ftFIFGk24HSmIrFmM8O9WOKvWmsqGEOQN2i5tvOv2X7IL6MD.QVTa"], ["password_salt", "BPShEIaWi4v6-8-NFJGi"], ["persistence_token", "b3a2383108834e8e27dc4972819371f590cdc0eb92ada5422dbd449fa9de37b93fe3de325d755b6fdb1af2603e26661a5a32a818f173b2dad376e99bbed092d6"], ["role", "moderator"]]
86
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "851873c4ff6c93fc2ceb18e920b5a2eaa0e7c4e436aed546feaf10d85189e7abbabc7c9e934b3c63c15394b33e6bc7785eb5524397cfe5cf31ddde891c39b00b"], ["LIMIT", 1]]
87
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 21"], ["age", 97], ["created_at", "2024-06-28 08:01:26.922065"], ["updated_at", "2024-06-28 08:01:26.922065"], ["email", "alan21@gmail.com"], ["crypted_password", "$2a$10$Bcw4/U34Sp9WTQIp4dP3QeWCbkSPRgvBXxOq82MhSIo69qVpIgwka"], ["password_salt", "qCg786p8hUJfjoQEarra"], ["persistence_token", "851873c4ff6c93fc2ceb18e920b5a2eaa0e7c4e436aed546feaf10d85189e7abbabc7c9e934b3c63c15394b33e6bc7785eb5524397cfe5cf31ddde891c39b00b"], ["role", "user"]]
88
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "160a637b7ea2751a07d868242b1f0ad0061350ad99b4e2d1a28b25e9eba0600ed7a4295b22bf2d7e43f4a5353d2f2684ab3e2a2493105b5c8721f47631afbf71"], ["LIMIT", 1]]
89
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 22"], ["age", 14], ["created_at", "2024-06-28 08:01:26.992926"], ["updated_at", "2024-06-28 08:01:26.992926"], ["email", "igor22@gmail.com"], ["crypted_password", "$2a$10$4lz.3jtDVgwqtH6T0TAukeUfuZbytjFLCX9.VVzlqyffAITAXkWsC"], ["password_salt", "_4dSBBgSgXvzMXDWXJDO"], ["persistence_token", "160a637b7ea2751a07d868242b1f0ad0061350ad99b4e2d1a28b25e9eba0600ed7a4295b22bf2d7e43f4a5353d2f2684ab3e2a2493105b5c8721f47631afbf71"], ["role", "user"]]
90
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "426d9f8f76479d80130117bb746b5e98ea147c37aac1703b2aea38ba755e75a989ac00f974704854a6ab64412ad4f3b6a1fcdf4463c24d9380b9dbca4ed90a54"], ["LIMIT", 1]]
91
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 23"], ["age", 53], ["created_at", "2024-06-28 08:01:27.061794"], ["updated_at", "2024-06-28 08:01:27.061794"], ["email", "stan23@gmail.com"], ["crypted_password", "$2a$10$QC82FmC9k/qut3my30UC/ugFBmjvdGfqMilDpDZyioB83S5a6ROoC"], ["password_salt", "rx_JCJ3zPOxJC5kJBH2T"], ["persistence_token", "426d9f8f76479d80130117bb746b5e98ea147c37aac1703b2aea38ba755e75a989ac00f974704854a6ab64412ad4f3b6a1fcdf4463c24d9380b9dbca4ed90a54"], ["role", "admin"]]
92
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "95b9dbccffa3f96d534206cbe302fb4d3ec7318934318cff58c3dfafb40ead880733b6643bc9bea12b71495dbbcc56368fae3abbec82d7f62e745654f14d5f01"], ["LIMIT", 1]]
93
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 24"], ["age", 25], ["created_at", "2024-06-28 08:01:27.134856"], ["updated_at", "2024-06-28 08:01:27.134856"], ["email", "michaeljohn24@gmail.com"], ["crypted_password", "$2a$10$YdB7dKa/vZyMDvxYQLUGuOM6hO6gw5tY8e5dZaF5B5uT6GIat8D8C"], ["password_salt", "n3-idKhslw5EMnU9PnCD"], ["persistence_token", "95b9dbccffa3f96d534206cbe302fb4d3ec7318934318cff58c3dfafb40ead880733b6643bc9bea12b71495dbbcc56368fae3abbec82d7f62e745654f14d5f01"], ["role", "admin"]]
94
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "bb0691079b9b98e0051ebd7d86ccf590e7dc5ae8f918bb05a6da52936bb7b44cf59c3703ef0ad256a1559f727f5a5fdba2591a99056c8320945a0003c0182f84"], ["LIMIT", 1]]
95
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 25"], ["age", 6], ["created_at", "2024-06-28 08:01:27.207724"], ["updated_at", "2024-06-28 08:01:27.207724"], ["email", "michaeljohn25@gmail.com"], ["crypted_password", "$2a$10$XOpcckyNrAyqc7nZEMD/i.nl2dFiXaSYUmJvU66eIBiRrlIVA0w4q"], ["password_salt", "BFGXOREBf3i25wo6mJL_"], ["persistence_token", "bb0691079b9b98e0051ebd7d86ccf590e7dc5ae8f918bb05a6da52936bb7b44cf59c3703ef0ad256a1559f727f5a5fdba2591a99056c8320945a0003c0182f84"], ["role", "moderator"]]
96
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "e270efc35c0adca5376ed34d050570d22b934cdbc0a81d176d4f5a0483876ca7b0fcc2c65175eb5898c49c11fa7bdcbfd5f31b5a17ff3e52322758a78521d34c"], ["LIMIT", 1]]
97
+ User Create (0.5ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 26"], ["age", 31], ["created_at", "2024-06-28 08:01:27.284961"], ["updated_at", "2024-06-28 08:01:27.284961"], ["email", "kris26@gmail.com"], ["crypted_password", "$2a$10$JWIGaRXC1ZzKIHuKUiVmgeWmty/LaNvMt9wacSN5VPm03CQVNWVHS"], ["password_salt", "W2I3XzMdMEU9xRdleVww"], ["persistence_token", "e270efc35c0adca5376ed34d050570d22b934cdbc0a81d176d4f5a0483876ca7b0fcc2c65175eb5898c49c11fa7bdcbfd5f31b5a17ff3e52322758a78521d34c"], ["role", "admin"]]
98
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "e937a802180c770f10b721ec542e22edde6ee01c2c1ee6c5e13f38e20efa5bc6eabdc3c7d86df6df8cf6653616dbe7b56c1a9a8b761728b548cabd760520b714"], ["LIMIT", 1]]
99
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 27"], ["age", 30], ["created_at", "2024-06-28 08:01:27.380801"], ["updated_at", "2024-06-28 08:01:27.380801"], ["email", "igor27@gmail.com"], ["crypted_password", "$2a$10$bsGDHONmvK6mwG/DAu0NXu1xBHfL8mAJkW.Bduk2XJajGoDFTegFy"], ["password_salt", "QG_shTsu0edXyRUQVbnp"], ["persistence_token", "e937a802180c770f10b721ec542e22edde6ee01c2c1ee6c5e13f38e20efa5bc6eabdc3c7d86df6df8cf6653616dbe7b56c1a9a8b761728b548cabd760520b714"], ["role", "user"]]
100
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "fabef116850531b6aa2b80c9b36d4b9c46aadf242a1d3f92905d36f205669271a589b3c065e1772b51e646b31c426d4794a8456359b57a419a432c485bf2f195"], ["LIMIT", 1]]
101
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 28"], ["age", 15], ["created_at", "2024-06-28 08:01:27.467442"], ["updated_at", "2024-06-28 08:01:27.467442"], ["email", "alan28@gmail.com"], ["crypted_password", "$2a$10$F0f5VmMRHb1nyJYSC8jaUecUTZ/26FI9ZHaz.lDapbgE/iP.BX1qa"], ["password_salt", "txUW5I3167Hdqo7bNOEt"], ["persistence_token", "fabef116850531b6aa2b80c9b36d4b9c46aadf242a1d3f92905d36f205669271a589b3c065e1772b51e646b31c426d4794a8456359b57a419a432c485bf2f195"], ["role", "moderator"]]
102
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "d959fa6c19d17130b7225d341af58a5ef3cb697f01279bcc1861b9eb4252ab419ab3baf2554f13094ecec99217b1f331c40a39833d89be5ae6c5be965bedd1b6"], ["LIMIT", 1]]
103
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 29"], ["age", 52], ["created_at", "2024-06-28 08:01:27.549170"], ["updated_at", "2024-06-28 08:01:27.549170"], ["email", "michaeljohn29@gmail.com"], ["crypted_password", "$2a$10$j8bPqPJHiYZDN04lkqMfXe4usDZqe0cYIusmChBdwU5.v3frHvHUa"], ["password_salt", "QuTyodXlKcsLKCEw5ysU"], ["persistence_token", "d959fa6c19d17130b7225d341af58a5ef3cb697f01279bcc1861b9eb4252ab419ab3baf2554f13094ecec99217b1f331c40a39833d89be5ae6c5be965bedd1b6"], ["role", "admin"]]
104
+ User Exists? (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "79d85ab97c83b1573ab31e36c1e7defe283fe8c81d4daba756079c3d1f0922694f7749bcfa6738a50f265b94b8a8d1a987c6f839b9240b93f07a6e5a4c9c4b2b"], ["LIMIT", 1]]
105
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 30"], ["age", 17], ["created_at", "2024-06-28 08:01:27.630627"], ["updated_at", "2024-06-28 08:01:27.630627"], ["email", "igor30@gmail.com"], ["crypted_password", "$2a$10$QMcfmE5p1pwEC.JuDV5RkuyZas4makIeA6lYVGFl3Yj3/vRkUlO0O"], ["password_salt", "e-n9XSsFCP3FFCJpnspM"], ["persistence_token", "79d85ab97c83b1573ab31e36c1e7defe283fe8c81d4daba756079c3d1f0922694f7749bcfa6738a50f265b94b8a8d1a987c6f839b9240b93f07a6e5a4c9c4b2b"], ["role", "user"]]
106
+ User Exists? (0.5ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "0e5d5a85946b6e69c3d0f52b479582827e82b3081a5fb98bc88bbef8eee9364ad14c50795c7d9724c64e3f0e26373280c51d93047fd0cd65766397243e24490d"], ["LIMIT", 1]]
107
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 31"], ["age", 94], ["created_at", "2024-06-28 08:01:27.709753"], ["updated_at", "2024-06-28 08:01:27.709753"], ["email", "michaeljohn31@gmail.com"], ["crypted_password", "$2a$10$cIQr/Uitd0S8aJtLTOh8kuDmlmIgzDUWRxh3fG35iDasGhrVDvBhG"], ["password_salt", "P94TVrdBJaNjW2Ajwu0W"], ["persistence_token", "0e5d5a85946b6e69c3d0f52b479582827e82b3081a5fb98bc88bbef8eee9364ad14c50795c7d9724c64e3f0e26373280c51d93047fd0cd65766397243e24490d"], ["role", "admin"]]
108
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "da89763e7aba47284cc8dd0a53c904f3ed5ac7bcf3e47427e203e6b570c0af401f4c6c909e0639c0ae7a2f95da97ed83ed4524d4cb59c7626a5719ce1986a9ac"], ["LIMIT", 1]]
109
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 32"], ["age", 34], ["created_at", "2024-06-28 08:01:27.785649"], ["updated_at", "2024-06-28 08:01:27.785649"], ["email", "stan32@gmail.com"], ["crypted_password", "$2a$10$ZHDSLE72Gpr/Gx2g/CmmKepHxhn7mrYgflsGbLWl.oEAqst0zI9tu"], ["password_salt", "xGhOtqt0rF99p2ibusYI"], ["persistence_token", "da89763e7aba47284cc8dd0a53c904f3ed5ac7bcf3e47427e203e6b570c0af401f4c6c909e0639c0ae7a2f95da97ed83ed4524d4cb59c7626a5719ce1986a9ac"], ["role", "admin"]]
110
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "69724e24e36f44c082dc0d3ffac400e7db8cdf77ad3db1fdb0a4639c52316535501e90301f34988b6b83c33792a58310016fcb07be81f87c7ac6233c9803bd99"], ["LIMIT", 1]]
111
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 33"], ["age", 65], ["created_at", "2024-06-28 08:01:27.857142"], ["updated_at", "2024-06-28 08:01:27.857142"], ["email", "igor33@gmail.com"], ["crypted_password", "$2a$10$xLx34jaVqpu0ZCREUkVuMOOEin1Q4HDY4yX5P31SPY.NDoPhWW5Zu"], ["password_salt", "a-GbSaAd4ut9tO1gxmHR"], ["persistence_token", "69724e24e36f44c082dc0d3ffac400e7db8cdf77ad3db1fdb0a4639c52316535501e90301f34988b6b83c33792a58310016fcb07be81f87c7ac6233c9803bd99"], ["role", "moderator"]]
112
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "8d3c725ea6201e43e013c95115d061cbfce327aa004abd88805cd6d4be60b2219d5b984318900e4640abd8b162c501be0c8c6531ecebc7d98d6e9c2435a29c02"], ["LIMIT", 1]]
113
+ User Create (0.3ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 34"], ["age", 68], ["created_at", "2024-06-28 08:01:27.808017"], ["updated_at", "2024-06-28 08:01:27.808017"], ["email", "michaeljohn34@gmail.com"], ["crypted_password", "$2a$10$.MST5vUt9Q4K.f25BowrrufD1xZWqD6U7w6UT3n0qQ.50euPfTE6K"], ["password_salt", "XL_hhvZW-vS9ncBWUkDa"], ["persistence_token", "8d3c725ea6201e43e013c95115d061cbfce327aa004abd88805cd6d4be60b2219d5b984318900e4640abd8b162c501be0c8c6531ecebc7d98d6e9c2435a29c02"], ["role", "admin"]]
114
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "20191c4713d03507f0392a8d8808f8caf43c755f9549d55bc91bdc2435daa944ba634e43020fd03c63486f5de925ff8b9b0849a6dcfd674c0a3a6ccb80c2f0e0"], ["LIMIT", 1]]
115
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 35"], ["age", 62], ["created_at", "2024-06-28 08:01:27.885986"], ["updated_at", "2024-06-28 08:01:27.885986"], ["email", "igor35@gmail.com"], ["crypted_password", "$2a$10$vgDYcHVewaJJl7ZpaiyUXuRj1bNwPtVydjl2PIH2q07ZEPuILEyDm"], ["password_salt", "A5l7-cJlQPlZKxa5TwPC"], ["persistence_token", "20191c4713d03507f0392a8d8808f8caf43c755f9549d55bc91bdc2435daa944ba634e43020fd03c63486f5de925ff8b9b0849a6dcfd674c0a3a6ccb80c2f0e0"], ["role", "user"]]
116
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "2ab3b127624920746bd2c23de1bb651477e56d18b1932fc53b4245f3de8567bfbb0dc318c6255e4e0adc63561570f1cdd66e545003eea08b8a4cb92967dea7ad"], ["LIMIT", 1]]
117
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 36"], ["age", 53], ["created_at", "2024-06-28 08:01:27.956498"], ["updated_at", "2024-06-28 08:01:27.956498"], ["email", "alan36@gmail.com"], ["crypted_password", "$2a$10$F8jCAsX0Wt2nfT0qw8tHEuwUefsAGik6P2O5jUFZ8CNguccEQJ6pK"], ["password_salt", "iejhGUfbqQGnGeLKg3uo"], ["persistence_token", "2ab3b127624920746bd2c23de1bb651477e56d18b1932fc53b4245f3de8567bfbb0dc318c6255e4e0adc63561570f1cdd66e545003eea08b8a4cb92967dea7ad"], ["role", "moderator"]]
118
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "8b7c35f2576e5359a97cb96277ab21a88b09ac91c998db8e91c8b5ad03fb92077dbb5d5fac2d8997f34f9bdbaf19bb220a4c9d450d6adb466f9d2372dbe3945b"], ["LIMIT", 1]]
119
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 37"], ["age", 10], ["created_at", "2024-06-28 08:01:28.026949"], ["updated_at", "2024-06-28 08:01:28.026949"], ["email", "alan37@gmail.com"], ["crypted_password", "$2a$10$JuRdN5Ad2c0wzyKB14lL0e8CYLP0Ri5nXUwG0DeLMljc0iDGUI9Kq"], ["password_salt", "4BNuBl2gi7KRNbxoxHM8"], ["persistence_token", "8b7c35f2576e5359a97cb96277ab21a88b09ac91c998db8e91c8b5ad03fb92077dbb5d5fac2d8997f34f9bdbaf19bb220a4c9d450d6adb466f9d2372dbe3945b"], ["role", "admin"]]
120
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "30f18eee5565c81c001c4123d9a07a12cd29cd23f4f923637c386f95c5779236f6a65c9a4b379f4b927b0c489979fbd8af4ad3acf20b5f1fee8947ec5960f128"], ["LIMIT", 1]]
121
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 38"], ["age", 65], ["created_at", "2024-06-28 08:01:28.099074"], ["updated_at", "2024-06-28 08:01:28.099074"], ["email", "michaeljohn38@gmail.com"], ["crypted_password", "$2a$10$rp3Hp/w49sdrKr7K0UpSnOdtGfL9IZ9XjTWFo6mHZJpdhuqBWxhh6"], ["password_salt", "-OkuOLabsPuHdjwyM_Jo"], ["persistence_token", "30f18eee5565c81c001c4123d9a07a12cd29cd23f4f923637c386f95c5779236f6a65c9a4b379f4b927b0c489979fbd8af4ad3acf20b5f1fee8947ec5960f128"], ["role", "user"]]
122
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "af40c4b25dce0b9e9cfdac091c6b53f33a2950b6737807b931b4a7de3c3f4385500fa896f07d85f249745f1d4b73b26f44934f144cbce42dd63ddbd558832513"], ["LIMIT", 1]]
123
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 39"], ["age", 80], ["created_at", "2024-06-28 08:01:28.172467"], ["updated_at", "2024-06-28 08:01:28.172467"], ["email", "kris39@gmail.com"], ["crypted_password", "$2a$10$VVQsz1/pqWDSho9LxihNDOdU.rleNZtu79.oipf48G3S5PTOej5Ji"], ["password_salt", "0AcDOGcjid-IkEwPUp4B"], ["persistence_token", "af40c4b25dce0b9e9cfdac091c6b53f33a2950b6737807b931b4a7de3c3f4385500fa896f07d85f249745f1d4b73b26f44934f144cbce42dd63ddbd558832513"], ["role", "user"]]
124
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "007e79a573ae5735c9775db9666ae70a836fbef2c9ae4a55f790bd31f07ef818dc75853ab083020f716294c7119f0f762c7c209c5dd91ddd6e8f919761c6d2b0"], ["LIMIT", 1]]
125
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 40"], ["age", 13], ["created_at", "2024-06-28 08:01:28.246627"], ["updated_at", "2024-06-28 08:01:28.246627"], ["email", "michaeljohn40@gmail.com"], ["crypted_password", "$2a$10$FJfPyWUS9C3.FBN3e26vqO7PU7h3REOV4C.SeUOeYrWTBKausEzrG"], ["password_salt", "vOPfdtO2KNX82OKCk9AO"], ["persistence_token", "007e79a573ae5735c9775db9666ae70a836fbef2c9ae4a55f790bd31f07ef818dc75853ab083020f716294c7119f0f762c7c209c5dd91ddd6e8f919761c6d2b0"], ["role", "moderator"]]
126
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "0f2cc9ed1c7702409fccc6a43c0b28a115023ba81b7bc3912002a79e0181d3f3b2dde8ec04ea202f22f2a4aa82c698e6a9df74f54e7a2092d87b5bd91c8040c6"], ["LIMIT", 1]]
127
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 41"], ["age", 28], ["created_at", "2024-06-28 08:01:28.319169"], ["updated_at", "2024-06-28 08:01:28.319169"], ["email", "igor41@gmail.com"], ["crypted_password", "$2a$10$5EfrX4iGKQ94qEySqvI3T.ifKFTfLXGXJBclCM8fwnwYzj1n2lKAG"], ["password_salt", "BUzHh8-BsZPmw8ju_pHc"], ["persistence_token", "0f2cc9ed1c7702409fccc6a43c0b28a115023ba81b7bc3912002a79e0181d3f3b2dde8ec04ea202f22f2a4aa82c698e6a9df74f54e7a2092d87b5bd91c8040c6"], ["role", "moderator"]]
128
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "c9cc345a2b9b649f02daeacc18c0e27ac01992784d488c3d7fc719f5c0452621beecabdd5ba5a2e4a031f329c3fd50e1f0dd59dcbf4e2950f2ffec40f277d021"], ["LIMIT", 1]]
129
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 42"], ["age", 48], ["created_at", "2024-06-28 08:01:28.391886"], ["updated_at", "2024-06-28 08:01:28.391886"], ["email", "alan42@gmail.com"], ["crypted_password", "$2a$10$R3lvw3RGpOIhU0dYtvwlpuCJIoajPhmcIESAg8dqX4AjwEwD89gyW"], ["password_salt", "VIyozcuPdhKrJMWeMfes"], ["persistence_token", "c9cc345a2b9b649f02daeacc18c0e27ac01992784d488c3d7fc719f5c0452621beecabdd5ba5a2e4a031f329c3fd50e1f0dd59dcbf4e2950f2ffec40f277d021"], ["role", "user"]]
130
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "676e5c3d72d11ce7907999166db89f18496b833106b623abf0dd6b952147919fa85ab7aa11e0fa9429409b7fb3c0c1a2e57a9645cc8c40be54e52d3f64d05d68"], ["LIMIT", 1]]
131
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 43"], ["age", 98], ["created_at", "2024-06-28 08:01:28.464613"], ["updated_at", "2024-06-28 08:01:28.464613"], ["email", "kris43@gmail.com"], ["crypted_password", "$2a$10$qF1SsObktbIy4vZ4pekZkOsH3ey/iG/uwqbO01qkabHV/SmQbfrSa"], ["password_salt", "X0xI_9lkmOlWKEqf_c21"], ["persistence_token", "676e5c3d72d11ce7907999166db89f18496b833106b623abf0dd6b952147919fa85ab7aa11e0fa9429409b7fb3c0c1a2e57a9645cc8c40be54e52d3f64d05d68"], ["role", "moderator"]]
132
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "78f6a6bad133cc7df8675bd5e6f72b76c477ff89b3500bbf5bd9087d2c5cf6d2e5e032a675a6eaa1cbf2e54a209a6f1224252e65649f8edc39fec1e87635b2ab"], ["LIMIT", 1]]
133
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 44"], ["age", 27], ["created_at", "2024-06-28 08:01:28.539765"], ["updated_at", "2024-06-28 08:01:28.539765"], ["email", "bob44@gmail.com"], ["crypted_password", "$2a$10$a8Fd10Gtsvx.qlP2uRX6DegKAbr4PAKDQAfKXWW6pbCTrmuwWpxpS"], ["password_salt", "tZI8YNyfIhpVeC0LISKC"], ["persistence_token", "78f6a6bad133cc7df8675bd5e6f72b76c477ff89b3500bbf5bd9087d2c5cf6d2e5e032a675a6eaa1cbf2e54a209a6f1224252e65649f8edc39fec1e87635b2ab"], ["role", "user"]]
134
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "e58128269bb187d8b84cbf3714376df41b6fa6c3923d1b3023a66b8665cc77ae65f61b388f04e709fd73866a67ea50803450acdc721b408e58ab3d49021a21f8"], ["LIMIT", 1]]
135
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 45"], ["age", 66], ["created_at", "2024-06-28 08:01:28.611196"], ["updated_at", "2024-06-28 08:01:28.611196"], ["email", "bob45@gmail.com"], ["crypted_password", "$2a$10$an6hFFTVndDM7P.Mi6K9su/hy8NS83LBgzISTGtwYUDHGVdkfKARu"], ["password_salt", "OBLt9UD2viBFB1jTiZWp"], ["persistence_token", "e58128269bb187d8b84cbf3714376df41b6fa6c3923d1b3023a66b8665cc77ae65f61b388f04e709fd73866a67ea50803450acdc721b408e58ab3d49021a21f8"], ["role", "user"]]
136
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "a32008f6ea92d6d4eb7e1a3e8424efa9322137811542f60303fb997e6878e943f560284e2ce63a723834569a2d29abcd89f2be7f1c16f31363fa0dfec0c6b278"], ["LIMIT", 1]]
137
+ User Create (0.3ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 46"], ["age", 30], ["created_at", "2024-06-28 08:01:28.683459"], ["updated_at", "2024-06-28 08:01:28.683459"], ["email", "igor46@gmail.com"], ["crypted_password", "$2a$10$KN6iLCOPwAvIH8x..2nBwujt4NSktDBD2spEZpTtSOaneTFh4M4De"], ["password_salt", "U2YBVeYqfxXOMi08fPTx"], ["persistence_token", "a32008f6ea92d6d4eb7e1a3e8424efa9322137811542f60303fb997e6878e943f560284e2ce63a723834569a2d29abcd89f2be7f1c16f31363fa0dfec0c6b278"], ["role", "admin"]]
138
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "51b0a2954a6551182d2f2f2453c2c7f6c4ed175b6bd55155694b7e2f3941c33c24492a10341a846f2c28eb32930ea8b06b330aefc77ea3d9b394abc3fdde0399"], ["LIMIT", 1]]
139
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 47"], ["age", 32], ["created_at", "2024-06-28 08:01:28.758016"], ["updated_at", "2024-06-28 08:01:28.758016"], ["email", "stan47@gmail.com"], ["crypted_password", "$2a$10$7XVrT04NkZPXNhiFDRdXN.wJRvbsgDmenJzS47OjVZ/9u1oYpjOkS"], ["password_salt", "z8pc1MoWA5trgxjvmVos"], ["persistence_token", "51b0a2954a6551182d2f2f2453c2c7f6c4ed175b6bd55155694b7e2f3941c33c24492a10341a846f2c28eb32930ea8b06b330aefc77ea3d9b394abc3fdde0399"], ["role", "user"]]
140
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "22cc6094bf3f3c8d632d3c8131fefdc4c457a7c099da4a4ad1302d34fdef7532495d925b3ac905d0cddd477a28bdef4880ede8fb933a5c29524ffa85b102d9e3"], ["LIMIT", 1]]
141
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 48"], ["age", 46], ["created_at", "2024-06-28 08:01:28.832199"], ["updated_at", "2024-06-28 08:01:28.832199"], ["email", "michaeljohn48@gmail.com"], ["crypted_password", "$2a$10$rvlqFN.E43fZ5sT7sO/qEeH3u6HkEtitx1TiLv48/93HukBU6tHTW"], ["password_salt", "CMOCH8I_dCoI9fuOHrRp"], ["persistence_token", "22cc6094bf3f3c8d632d3c8131fefdc4c457a7c099da4a4ad1302d34fdef7532495d925b3ac905d0cddd477a28bdef4880ede8fb933a5c29524ffa85b102d9e3"], ["role", "user"]]
142
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "58359aca1a518301b30a7641115ed2adde9e598648a8fbe3bc6395000e4f8b55d8cd46dd95e767a3b2a37bda9cf2f0115e1cc4d131868e56850e48b88176fd07"], ["LIMIT", 1]]
143
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 49"], ["age", 67], ["created_at", "2024-06-28 08:01:28.903979"], ["updated_at", "2024-06-28 08:01:28.903979"], ["email", "igor49@gmail.com"], ["crypted_password", "$2a$10$b5Q6wsEzkuB8k4UIN7pfhe7K8jrdoWHpxrOi7ibr3.VyWFbmgBshu"], ["password_salt", "IJZow4lqvWXkmeGpRw0t"], ["persistence_token", "58359aca1a518301b30a7641115ed2adde9e598648a8fbe3bc6395000e4f8b55d8cd46dd95e767a3b2a37bda9cf2f0115e1cc4d131868e56850e48b88176fd07"], ["role", "admin"]]
144
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "851921bfc7941917ea1e5b809b70b49a9eec3243537cc0b2fdd57106e3cd66a8ad2f48beea87b098a6a2a364b379832305c311e8ddd3342bf7fbe4198d5d566a"], ["LIMIT", 1]]
145
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 50"], ["age", 47], ["created_at", "2024-06-28 08:01:28.972620"], ["updated_at", "2024-06-28 08:01:28.972620"], ["email", "kris50@gmail.com"], ["crypted_password", "$2a$10$aEDoiI3urW3dXkXSQCh.Du40kvkJrs9Mp469K.MHIkj/FWzVHSQDe"], ["password_salt", "ul0nnzw7AeM31ms7UyIJ"], ["persistence_token", "851921bfc7941917ea1e5b809b70b49a9eec3243537cc0b2fdd57106e3cd66a8ad2f48beea87b098a6a2a364b379832305c311e8ddd3342bf7fbe4198d5d566a"], ["role", "moderator"]]
146
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "35a8b2bf4204cfe4891b9eef0e1b95c8d1a3aa984186d173a4225bd4416bd11e70740da7dbe11d854f25de5da4c147cf7d30197aba70b2ddb4a51d2964cebb16"], ["LIMIT", 1]]
147
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 51"], ["age", 32], ["created_at", "2024-06-28 08:01:29.042145"], ["updated_at", "2024-06-28 08:01:29.042145"], ["email", "igor51@gmail.com"], ["crypted_password", "$2a$10$pZkR7cgfSsCTDBkKhgjgKuWPz6vcncK9I.Rc6l85BLxORbHQuXcae"], ["password_salt", "781h1fNbx5ixZwIT2bPu"], ["persistence_token", "35a8b2bf4204cfe4891b9eef0e1b95c8d1a3aa984186d173a4225bd4416bd11e70740da7dbe11d854f25de5da4c147cf7d30197aba70b2ddb4a51d2964cebb16"], ["role", "moderator"]]
148
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "764de78bdb5e290fbebc8222b8591d3918cb16dbca837afe67227ebbe0000850ea44315d5332f42c7a006600a6ada1aaaa2d54f3be7f333446070aef1ff52809"], ["LIMIT", 1]]
149
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 52"], ["age", 73], ["created_at", "2024-06-28 08:01:29.113223"], ["updated_at", "2024-06-28 08:01:29.113223"], ["email", "michaeljohn52@gmail.com"], ["crypted_password", "$2a$10$da.gXl6pWH.TnsQO/iYmKeAkKqySx6KaUnyRAj9qBvUsA3KcWPWly"], ["password_salt", "ni6r-HpjVLLfzIcLyUjT"], ["persistence_token", "764de78bdb5e290fbebc8222b8591d3918cb16dbca837afe67227ebbe0000850ea44315d5332f42c7a006600a6ada1aaaa2d54f3be7f333446070aef1ff52809"], ["role", "admin"]]
150
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "522e137edb8974505a713b3e23d13084a4fb956e67b329463010370cf910773b8c309688e7ef8df159a8040c6032d90702d5ff31368b205d0f42778ed7109812"], ["LIMIT", 1]]
151
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 53"], ["age", 43], ["created_at", "2024-06-28 08:01:29.186764"], ["updated_at", "2024-06-28 08:01:29.186764"], ["email", "alan53@gmail.com"], ["crypted_password", "$2a$10$7xkP59yHmjKTTAeORJt66eufz2K.sMcWk6sMHAX4k0Zfx8TMm0csm"], ["password_salt", "m-quEZL3ZcxBp1zWtrU-"], ["persistence_token", "522e137edb8974505a713b3e23d13084a4fb956e67b329463010370cf910773b8c309688e7ef8df159a8040c6032d90702d5ff31368b205d0f42778ed7109812"], ["role", "user"]]
152
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "8dca111bf1d2d5f469677cfebfb13b9caf029d52fb294fc643cb63bc0d6d819531d906f7c5878095772a37143e0cc2a65f8dc32c89fc38a29849b5e4ec3ad763"], ["LIMIT", 1]]
153
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 54"], ["age", 83], ["created_at", "2024-06-28 08:01:29.258525"], ["updated_at", "2024-06-28 08:01:29.258525"], ["email", "bob54@gmail.com"], ["crypted_password", "$2a$10$oW6FVKBGBl3z3BmT5dPSW.Q6R8DxF6ifnl9MYGFbBto0FX5Y1y8ZG"], ["password_salt", "KVDtJSqnjQAcD9U2Y4cT"], ["persistence_token", "8dca111bf1d2d5f469677cfebfb13b9caf029d52fb294fc643cb63bc0d6d819531d906f7c5878095772a37143e0cc2a65f8dc32c89fc38a29849b5e4ec3ad763"], ["role", "user"]]
154
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "027952d8b415ed6bc462f1cb75445968a34278242167fb74faf13dbbc87080c2d056c876c4534a4507731f03aff338f6739c0f0b454858ec97c2e18c7eb9cb52"], ["LIMIT", 1]]
155
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 55"], ["age", 3], ["created_at", "2024-06-28 08:01:29.331969"], ["updated_at", "2024-06-28 08:01:29.331969"], ["email", "michaeljohn55@gmail.com"], ["crypted_password", "$2a$10$z2Hp0F4oADA5sQLPVoX9aOheDyS1veYEK5g7nsJe8McPKzjegBR3G"], ["password_salt", "2f44ZgB1D9CJ1UJ-qQwo"], ["persistence_token", "027952d8b415ed6bc462f1cb75445968a34278242167fb74faf13dbbc87080c2d056c876c4534a4507731f03aff338f6739c0f0b454858ec97c2e18c7eb9cb52"], ["role", "user"]]
156
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "ab75d2ea4ed7579b02b7cb7c2ff267c68c01508ada52a28bf5b9562ea51323cb77213cae6674f37d344ddbcd9916dff4fb908d277041040e46ef993d0e2f7108"], ["LIMIT", 1]]
157
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 56"], ["age", 1], ["created_at", "2024-06-28 08:01:29.404836"], ["updated_at", "2024-06-28 08:01:29.404836"], ["email", "alan56@gmail.com"], ["crypted_password", "$2a$10$CDhWtifQDObGJh359U27ZO3RkOtlOlJNw3EAs.WebrCzChl0lP0Wq"], ["password_salt", "ggndnXujGp1RisFsZg3E"], ["persistence_token", "ab75d2ea4ed7579b02b7cb7c2ff267c68c01508ada52a28bf5b9562ea51323cb77213cae6674f37d344ddbcd9916dff4fb908d277041040e46ef993d0e2f7108"], ["role", "admin"]]
158
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "7e9d2a505031334f4b908fa79f1286819f0c87dc22d2a07b84ead3384dc9aa3c1f5cbb0ca4774b04105c29dd8d6abd64612e38e34414c567f8123e15de4994ac"], ["LIMIT", 1]]
159
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 57"], ["age", 9], ["created_at", "2024-06-28 08:01:29.474339"], ["updated_at", "2024-06-28 08:01:29.474339"], ["email", "kris57@gmail.com"], ["crypted_password", "$2a$10$UhRLRz5.KtEEQiPGUCUA7OL0SgELxiqQAkA7qmBHs0ANb5hGv2XPa"], ["password_salt", "b6SPDcKyAnP_lqQr6SAY"], ["persistence_token", "7e9d2a505031334f4b908fa79f1286819f0c87dc22d2a07b84ead3384dc9aa3c1f5cbb0ca4774b04105c29dd8d6abd64612e38e34414c567f8123e15de4994ac"], ["role", "moderator"]]
160
+ User Exists? (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "5d7bba8d54837ffa1e684d3be5c5ee390912cc903f07911f496233940ec95fed1276e6b7a53eaa2d97b3b64f3022c3de75768507b5cb0fa3cf9d187261a713d5"], ["LIMIT", 1]]
161
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 58"], ["age", 38], ["created_at", "2024-06-28 08:01:29.542947"], ["updated_at", "2024-06-28 08:01:29.542947"], ["email", "alan58@gmail.com"], ["crypted_password", "$2a$10$DKdyYewswTsxsOVqbMz.FOGbXefiJjCEeODfAG83hAkIOmab0P1Em"], ["password_salt", "f3bp81PhP9wLK9p25C-_"], ["persistence_token", "5d7bba8d54837ffa1e684d3be5c5ee390912cc903f07911f496233940ec95fed1276e6b7a53eaa2d97b3b64f3022c3de75768507b5cb0fa3cf9d187261a713d5"], ["role", "admin"]]
162
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "b8c551d8769eb7bbe427c6edf3f64992e556662dd4555d24dbd4581fb54066741867594115c37a32cae54aaee4dace3b85791f03ad533b3de63589d798637fb4"], ["LIMIT", 1]]
163
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 59"], ["age", 73], ["created_at", "2024-06-28 08:01:29.613375"], ["updated_at", "2024-06-28 08:01:29.613375"], ["email", "michaeljohn59@gmail.com"], ["crypted_password", "$2a$10$M0.EM50KxgTafDEeMSMovO4qDS3uiS04wtHdKQoP7ugJvLB4cQuC."], ["password_salt", "qLbn02Q4rUR1JpvLKDfZ"], ["persistence_token", "b8c551d8769eb7bbe427c6edf3f64992e556662dd4555d24dbd4581fb54066741867594115c37a32cae54aaee4dace3b85791f03ad533b3de63589d798637fb4"], ["role", "admin"]]
164
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "8d98db5d23ea3abdd562fc0d76ffe6424a8430ed91e579fe6fb32116237920b2ed5141585dd3b0b756c704c4b7918b1ac27df1e19d19e0c0a76219f5e537ec79"], ["LIMIT", 1]]
165
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 60"], ["age", 80], ["created_at", "2024-06-28 08:01:29.686295"], ["updated_at", "2024-06-28 08:01:29.686295"], ["email", "igor60@gmail.com"], ["crypted_password", "$2a$10$jk6I7OU9bAlgMFU3orSkr.fKWpRh9iFoQkLTsndtO2huJIL4SDjF6"], ["password_salt", "ETGBcHLcxvgkgJ3rpol9"], ["persistence_token", "8d98db5d23ea3abdd562fc0d76ffe6424a8430ed91e579fe6fb32116237920b2ed5141585dd3b0b756c704c4b7918b1ac27df1e19d19e0c0a76219f5e537ec79"], ["role", "admin"]]
166
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "5e480ea113ea5445bd01c83837302c09523e7ecda5869e2e5948e112da0be86b9666c2f57a4cd2dc11127f90be77dd0cf1e7389dc1066d16b28ab9be9875b465"], ["LIMIT", 1]]
167
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 61"], ["age", 95], ["created_at", "2024-06-28 08:01:29.758115"], ["updated_at", "2024-06-28 08:01:29.758115"], ["email", "alan61@gmail.com"], ["crypted_password", "$2a$10$Nk3WcBSTqxCmFUI59O.aR.s8BtjFpaLcrtWWCLStVhlh.LHSM4s4a"], ["password_salt", "RzaEZo2SkOxyZkBL0e5m"], ["persistence_token", "5e480ea113ea5445bd01c83837302c09523e7ecda5869e2e5948e112da0be86b9666c2f57a4cd2dc11127f90be77dd0cf1e7389dc1066d16b28ab9be9875b465"], ["role", "moderator"]]
168
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "8338d269c2d8e51f5b96a4f74b9be2e3c575249a94a67b8b153c334be886e166210032d9bfdb29d40d3f8051ccbecd048f0487eaf2c2d1be3698452caae84e34"], ["LIMIT", 1]]
169
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 62"], ["age", 59], ["created_at", "2024-06-28 08:01:29.830022"], ["updated_at", "2024-06-28 08:01:29.830022"], ["email", "alan62@gmail.com"], ["crypted_password", "$2a$10$1j53snee8E67DVi0Nn668eBmGfu8SjEYyMGXy/huvhrm.jRUnMiDS"], ["password_salt", "_cnuY1gP0vUuFgSu6fPl"], ["persistence_token", "8338d269c2d8e51f5b96a4f74b9be2e3c575249a94a67b8b153c334be886e166210032d9bfdb29d40d3f8051ccbecd048f0487eaf2c2d1be3698452caae84e34"], ["role", "admin"]]
170
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "6e023fcaae8242e15c785663190e5ecc42c3177bdf07fa8c19ced6ef9964eedc2da81d1264b90931cd799daa9982a7c2af36e4c9108c1e45710108503b885d70"], ["LIMIT", 1]]
171
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 63"], ["age", 23], ["created_at", "2024-06-28 08:01:29.900554"], ["updated_at", "2024-06-28 08:01:29.900554"], ["email", "kris63@gmail.com"], ["crypted_password", "$2a$10$VKE/Qp0vinewjDkHUxRWHOrEQp9DZlJ3nWPFxqWSOMktqL3OuJ6G."], ["password_salt", "7abj_vnIPKtCutqwoiFx"], ["persistence_token", "6e023fcaae8242e15c785663190e5ecc42c3177bdf07fa8c19ced6ef9964eedc2da81d1264b90931cd799daa9982a7c2af36e4c9108c1e45710108503b885d70"], ["role", "moderator"]]
172
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "4563d493099a770638f4bea16da220b6892b66a0464ad05fa536344a17d33e0427510d2d0d613d5a9967e5daae35753360e6c503a055796eb6761af281af82b8"], ["LIMIT", 1]]
173
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 64"], ["age", 29], ["created_at", "2024-06-28 08:01:29.973208"], ["updated_at", "2024-06-28 08:01:29.973208"], ["email", "stan64@gmail.com"], ["crypted_password", "$2a$10$CFlPVhIEhNCKMTm8kb8X4uPc7qbMByscWbXh7aR3Ypaa7m.FHBs/u"], ["password_salt", "QK_QjC1QWOUTy0qvNijf"], ["persistence_token", "4563d493099a770638f4bea16da220b6892b66a0464ad05fa536344a17d33e0427510d2d0d613d5a9967e5daae35753360e6c503a055796eb6761af281af82b8"], ["role", "admin"]]
174
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "f89942bc3d22db2b72e257d3273cfd795e72ae59337502d487291138a56b5dee56f03fa1d0ba85ba097674c3bf33433532c42f5ca64d1892b255f09439682a7c"], ["LIMIT", 1]]
175
+ User Create (0.4ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 65"], ["age", 92], ["created_at", "2024-06-28 08:01:30.045969"], ["updated_at", "2024-06-28 08:01:30.045969"], ["email", "igor65@gmail.com"], ["crypted_password", "$2a$10$4Cty8E5UNOskNJNqsyFJk.v220m7RuN5UU7GQjm9a4NNtAfzgiJK2"], ["password_salt", "Ej42i3NK5hBm8ee-uc9t"], ["persistence_token", "f89942bc3d22db2b72e257d3273cfd795e72ae59337502d487291138a56b5dee56f03fa1d0ba85ba097674c3bf33433532c42f5ca64d1892b255f09439682a7c"], ["role", "user"]]
176
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "85d80f68d0ed891e6603120a2e86d60a76cb1cd072a51eca4ce8ddafc847b1e82aaf1c8d0201c93f7a44d8c05fe71f52a8c53c80a0026a8102915c699d8411ac"], ["LIMIT", 1]]
177
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 66"], ["age", 0], ["created_at", "2024-06-28 08:01:30.115252"], ["updated_at", "2024-06-28 08:01:30.115252"], ["email", "kris66@gmail.com"], ["crypted_password", "$2a$10$e4R7I4YzD9/0YYKddXbYp.jdDFmIEfHX.CAPOky4eq2P8oY3spK32"], ["password_salt", "XjNqojAR09xfg6WaW4DB"], ["persistence_token", "85d80f68d0ed891e6603120a2e86d60a76cb1cd072a51eca4ce8ddafc847b1e82aaf1c8d0201c93f7a44d8c05fe71f52a8c53c80a0026a8102915c699d8411ac"], ["role", "user"]]
178
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "6f67e8e8d98540c6c0fa70ded2e541f49c0a22f68916c03e8e280f56e4f47eb5925c86aeb54863c9169000940b5708117277993a4a5ea30da80e56e4ab2c5374"], ["LIMIT", 1]]
179
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 67"], ["age", 84], ["created_at", "2024-06-28 08:01:30.185560"], ["updated_at", "2024-06-28 08:01:30.185560"], ["email", "kris67@gmail.com"], ["crypted_password", "$2a$10$xbh473vGZyLOTzdCVb6HM.zYxrpRMWEFojlmaxLGrrS6qk.xDWbAO"], ["password_salt", "aurXERzvD5oIGNoKpt9M"], ["persistence_token", "6f67e8e8d98540c6c0fa70ded2e541f49c0a22f68916c03e8e280f56e4f47eb5925c86aeb54863c9169000940b5708117277993a4a5ea30da80e56e4ab2c5374"], ["role", "admin"]]
180
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "8ca32827fc885dcb0a3c5ebacbb25c4fe79a3897fb8d60d85cf59cbc9949637a8e716332f19ee6e03217f9a91a7c4497bb958cf173d15282d962e57b18ecafc3"], ["LIMIT", 1]]
181
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 68"], ["age", 49], ["created_at", "2024-06-28 08:01:30.259675"], ["updated_at", "2024-06-28 08:01:30.259675"], ["email", "bob68@gmail.com"], ["crypted_password", "$2a$10$gQ8XoelUFm7I17XFalmTKub0S7vqAIh50heU8kqQDr3agkALCRcsa"], ["password_salt", "QKZO2ThYJYLZkokUB6GT"], ["persistence_token", "8ca32827fc885dcb0a3c5ebacbb25c4fe79a3897fb8d60d85cf59cbc9949637a8e716332f19ee6e03217f9a91a7c4497bb958cf173d15282d962e57b18ecafc3"], ["role", "user"]]
182
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "d8854042bab0eab1dc3fbea3193df7460657e852bea6098ed35305b98816c785fd5acdd1a930db8ded6e79194c9a6d21e3db92e7506649e5d7231355f50dca38"], ["LIMIT", 1]]
183
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 69"], ["age", 41], ["created_at", "2024-06-28 08:01:30.333345"], ["updated_at", "2024-06-28 08:01:30.333345"], ["email", "stan69@gmail.com"], ["crypted_password", "$2a$10$HpC5pW89klD27nUXRTIFdeh6JmHw7/tvskc1kVf6y1COAVjqJfIAy"], ["password_salt", "_N-eAIdjZliiSfky-cOu"], ["persistence_token", "d8854042bab0eab1dc3fbea3193df7460657e852bea6098ed35305b98816c785fd5acdd1a930db8ded6e79194c9a6d21e3db92e7506649e5d7231355f50dca38"], ["role", "moderator"]]
184
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "a10f19c914fcda6ed8ad55f03c48807d74a6d6fc24ecc77c2f806bc2529a79ccc0ee50ad3ae41b6b53e19c59bb7ed386c46c35916b0bd208a6a22271fb21801d"], ["LIMIT", 1]]
185
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 70"], ["age", 23], ["created_at", "2024-06-28 08:01:30.415583"], ["updated_at", "2024-06-28 08:01:30.415583"], ["email", "stan70@gmail.com"], ["crypted_password", "$2a$10$er8lmPI77Tu9j2lfZPrj8.qPZCVsjQKY5mJAkdH.zdAchTqk3oBji"], ["password_salt", "ZNtYw6Ch84js-bOnTcuP"], ["persistence_token", "a10f19c914fcda6ed8ad55f03c48807d74a6d6fc24ecc77c2f806bc2529a79ccc0ee50ad3ae41b6b53e19c59bb7ed386c46c35916b0bd208a6a22271fb21801d"], ["role", "moderator"]]
186
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "9c0f64d641023cf7e657ecb9fa8e635f194af63d2b9beea8b321b8256825d79216a1bff44c07a56bb221f7144d816808d6e2dcc156360694a3c6a60f24fa633b"], ["LIMIT", 1]]
187
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 71"], ["age", 25], ["created_at", "2024-06-28 08:01:30.495771"], ["updated_at", "2024-06-28 08:01:30.495771"], ["email", "kris71@gmail.com"], ["crypted_password", "$2a$10$N6ATPuZNNwHz2UP8y9HSOO1gV.S03WcZEacttPk4GloOI958W3GsO"], ["password_salt", "VL0aLxFm2eVxvD9zZmXB"], ["persistence_token", "9c0f64d641023cf7e657ecb9fa8e635f194af63d2b9beea8b321b8256825d79216a1bff44c07a56bb221f7144d816808d6e2dcc156360694a3c6a60f24fa633b"], ["role", "user"]]
188
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "f6a0c90ecf320e97f9eea3c4c41c33493c6c4d7aaef6ba71e79b07c6cbd83b6ff93ac77d7f1e67bf20fb76eec892e8a8b212d2cfa2e05124477965b7aedaae3a"], ["LIMIT", 1]]
189
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 72"], ["age", 79], ["created_at", "2024-06-28 08:01:30.567740"], ["updated_at", "2024-06-28 08:01:30.567740"], ["email", "kris72@gmail.com"], ["crypted_password", "$2a$10$8mLZN5fT2DAyIrUhjR1WiObCYK93ZEm7.bt2broHtuIqKWANqB6WK"], ["password_salt", "COK-EJFDXoysVIVITlj_"], ["persistence_token", "f6a0c90ecf320e97f9eea3c4c41c33493c6c4d7aaef6ba71e79b07c6cbd83b6ff93ac77d7f1e67bf20fb76eec892e8a8b212d2cfa2e05124477965b7aedaae3a"], ["role", "user"]]
190
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "796c8cf44114fb491e22cb33f5f10f29dcf6d8cd0b575aa5e814f7cca44775414b0aea58918a63514b4a7ce9087445056c75fe8df597288ba3c48815120a8eb0"], ["LIMIT", 1]]
191
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 73"], ["age", 73], ["created_at", "2024-06-28 08:01:30.639711"], ["updated_at", "2024-06-28 08:01:30.639711"], ["email", "bob73@gmail.com"], ["crypted_password", "$2a$10$qRgmrVpiybgLOY/QWMwak.nwWIwKqi58u9.vSTXEVonADJohHe8tK"], ["password_salt", "pNcOWZr6ooe0P2fa3lNZ"], ["persistence_token", "796c8cf44114fb491e22cb33f5f10f29dcf6d8cd0b575aa5e814f7cca44775414b0aea58918a63514b4a7ce9087445056c75fe8df597288ba3c48815120a8eb0"], ["role", "moderator"]]
192
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "04f56b74ad81f6ad7d1cb68b8fd1277fe9a172f7ccea4a9664a4d74530cb622efe6c37e0900177cdeb6fb7504c3ede0415b8083456fc1e4cc0aad15dff366aeb"], ["LIMIT", 1]]
193
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 74"], ["age", 39], ["created_at", "2024-06-28 08:01:30.709805"], ["updated_at", "2024-06-28 08:01:30.709805"], ["email", "bob74@gmail.com"], ["crypted_password", "$2a$10$9p7gl4y9Q7ZPmOQ2ALHlqOYO5xZq99sgIfbBPk5w/v.TDtBSEHzDa"], ["password_salt", "lORqfe7lMRRnyMu7QwS1"], ["persistence_token", "04f56b74ad81f6ad7d1cb68b8fd1277fe9a172f7ccea4a9664a4d74530cb622efe6c37e0900177cdeb6fb7504c3ede0415b8083456fc1e4cc0aad15dff366aeb"], ["role", "admin"]]
194
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "e33c231897b414297749d100a9babc14cc63e95ea9af01451d0501ddf5033cfe575002539185fbd0cbcd458498668acacefa86c767bd4e8c3e8c514aa48f3893"], ["LIMIT", 1]]
195
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 75"], ["age", 25], ["created_at", "2024-06-28 08:01:30.783767"], ["updated_at", "2024-06-28 08:01:30.783767"], ["email", "michaeljohn75@gmail.com"], ["crypted_password", "$2a$10$0wS2uZzAXim.w4Nfg0OaoOXOiJjo4CQhdKlt8zQiXse04/9rRvL5."], ["password_salt", "TXr3TMncKtenAyTsKb8I"], ["persistence_token", "e33c231897b414297749d100a9babc14cc63e95ea9af01451d0501ddf5033cfe575002539185fbd0cbcd458498668acacefa86c767bd4e8c3e8c514aa48f3893"], ["role", "admin"]]
196
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "4f0faa7930405312f9f7482254af181c263b4abca90702e5590a24fe89b59ab703db212761a874f167261afec85c82cd07287e48b1024b3a4caa5e12ecb56cd9"], ["LIMIT", 1]]
197
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 76"], ["age", 57], ["created_at", "2024-06-28 08:01:30.855047"], ["updated_at", "2024-06-28 08:01:30.855047"], ["email", "michaeljohn76@gmail.com"], ["crypted_password", "$2a$10$n4OgXgn/YKZgJIe.mNOjU.uwPTcZ/p9BiTOHFyvx4.ZUBz7DkONIa"], ["password_salt", "rROWoIAPifQxXKPZDZGW"], ["persistence_token", "4f0faa7930405312f9f7482254af181c263b4abca90702e5590a24fe89b59ab703db212761a874f167261afec85c82cd07287e48b1024b3a4caa5e12ecb56cd9"], ["role", "moderator"]]
198
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "500189b9b20dbbc46641ffebc4b67c82f4275ad4aaecbc847b0b053653d956cf3eb0785660451ec2c3fbeecdc17d34cd0d46841d1395e9e79ea6a780aca1fc96"], ["LIMIT", 1]]
199
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 77"], ["age", 8], ["created_at", "2024-06-28 08:01:30.929715"], ["updated_at", "2024-06-28 08:01:30.929715"], ["email", "bob77@gmail.com"], ["crypted_password", "$2a$10$8n.FwDZPgowlAx0JA9zfq.qYxwOkisxPMUfUzIKJrJ.GKs6zayyw6"], ["password_salt", "WwJHqPGWVPPCxKaO9gtW"], ["persistence_token", "500189b9b20dbbc46641ffebc4b67c82f4275ad4aaecbc847b0b053653d956cf3eb0785660451ec2c3fbeecdc17d34cd0d46841d1395e9e79ea6a780aca1fc96"], ["role", "admin"]]
200
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "17c666abe77b94d19c4a5397b6b5e6d90d309ec10f0b3330e0f04fbf76cae60f3287dcbc60c68f10c2ed69888a4bfb4ec5345eb34437021764c3091e613ed0ea"], ["LIMIT", 1]]
201
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 78"], ["age", 97], ["created_at", "2024-06-28 08:01:31.003035"], ["updated_at", "2024-06-28 08:01:31.003035"], ["email", "igor78@gmail.com"], ["crypted_password", "$2a$10$JZVqm5KJ3XTIMuKJFxyJXetc5IR1/4LJaTHC6n7vDOcVSEpKDwypS"], ["password_salt", "ABq950KKbZVv7Oi12dtK"], ["persistence_token", "17c666abe77b94d19c4a5397b6b5e6d90d309ec10f0b3330e0f04fbf76cae60f3287dcbc60c68f10c2ed69888a4bfb4ec5345eb34437021764c3091e613ed0ea"], ["role", "user"]]
202
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "694d12e6e783ab8d2161092504ead302b4fb298fad765289c787d793bb9297ab41381f7127aea053bb6ac451643bc3110152a3dc2ed6e949bf6970a09c714329"], ["LIMIT", 1]]
203
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 79"], ["age", 68], ["created_at", "2024-06-28 08:01:31.077583"], ["updated_at", "2024-06-28 08:01:31.077583"], ["email", "stan79@gmail.com"], ["crypted_password", "$2a$10$VdFSoFwTisbsPlL9qIalTefr.w1EpgwB/b1NnXfOLU3rJu9zY43bG"], ["password_salt", "jQSYVeD91PxNgfTDir7v"], ["persistence_token", "694d12e6e783ab8d2161092504ead302b4fb298fad765289c787d793bb9297ab41381f7127aea053bb6ac451643bc3110152a3dc2ed6e949bf6970a09c714329"], ["role", "admin"]]
204
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "8fbbaf678843e3245dded6c1e44c01f5f696cef790569bcf44449547aa47006d8bf39c3939cfbb8bf7ff940c0c5e02e0942fb0980073216df0bd2d501fe32594"], ["LIMIT", 1]]
205
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 80"], ["age", 8], ["created_at", "2024-06-28 08:01:31.149161"], ["updated_at", "2024-06-28 08:01:31.149161"], ["email", "michaeljohn80@gmail.com"], ["crypted_password", "$2a$10$TZB7oFFIuCO5gar.zKuhf.jtBJD8d0UnEOshrMqO1e1w4144JPkXi"], ["password_salt", "DY7BSbaZNARAqndqxMsG"], ["persistence_token", "8fbbaf678843e3245dded6c1e44c01f5f696cef790569bcf44449547aa47006d8bf39c3939cfbb8bf7ff940c0c5e02e0942fb0980073216df0bd2d501fe32594"], ["role", "admin"]]
206
+ User Exists? (0.4ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "09d5ef5221bfb3c5a2f59a614dbcbfc0518640e516ccd361c29a66e8f06baa22d715c9da8b83da466d2c2f2cbb73572a58caea736bf229904de0ae6f7daebf4d"], ["LIMIT", 1]]
207
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 81"], ["age", 84], ["created_at", "2024-06-28 08:01:31.221060"], ["updated_at", "2024-06-28 08:01:31.221060"], ["email", "kris81@gmail.com"], ["crypted_password", "$2a$10$5V6zLerxltRK7UEXhTAfleNoduGVNZfdYAYaNYxKM3PZ.pp/L5O2a"], ["password_salt", "t5zxQ8iv7w8kEmRmeuHi"], ["persistence_token", "09d5ef5221bfb3c5a2f59a614dbcbfc0518640e516ccd361c29a66e8f06baa22d715c9da8b83da466d2c2f2cbb73572a58caea736bf229904de0ae6f7daebf4d"], ["role", "user"]]
208
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "ca294632b6329bfd4c5a2e302f9f5a0b41f894f92e771b435a27a21045af4cd8afcf75b2aabf54bc214692449dd54da00c0784872e6797c9fc676dda2b9eea15"], ["LIMIT", 1]]
209
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 82"], ["age", 66], ["created_at", "2024-06-28 08:01:31.289891"], ["updated_at", "2024-06-28 08:01:31.289891"], ["email", "alan82@gmail.com"], ["crypted_password", "$2a$10$zsFuVS3kVCTCExmBYdPJaeu1OEyaM3DsKeqzptOp8gN/ECvkyaUOS"], ["password_salt", "uzFOI7vyFzmXZ4kloYn2"], ["persistence_token", "ca294632b6329bfd4c5a2e302f9f5a0b41f894f92e771b435a27a21045af4cd8afcf75b2aabf54bc214692449dd54da00c0784872e6797c9fc676dda2b9eea15"], ["role", "moderator"]]
210
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "691856efc49df51986c9418710ed70bc6fafefb435b388536e79546b4ae3220cc971c2ad272bdf1f725409346d228046613eb8b3cbec68e2e2f7f1ea1cc04582"], ["LIMIT", 1]]
211
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 83"], ["age", 70], ["created_at", "2024-06-28 08:01:31.360684"], ["updated_at", "2024-06-28 08:01:31.360684"], ["email", "alan83@gmail.com"], ["crypted_password", "$2a$10$HgQe3hNy6zJ0O4yNUgrqEesBkcjaVyvlSbJftdy/QsaoFCQhnF./2"], ["password_salt", "xQhQTTUo7glQInGHLOk7"], ["persistence_token", "691856efc49df51986c9418710ed70bc6fafefb435b388536e79546b4ae3220cc971c2ad272bdf1f725409346d228046613eb8b3cbec68e2e2f7f1ea1cc04582"], ["role", "moderator"]]
212
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "57fca01bd7bac1bb4761bac007793c8b8495aedd928663218464e6c0498696b98905a9acbeb80846bbf5a1ab36f5e94b033e687386395edfcd00aa59496e8ffe"], ["LIMIT", 1]]
213
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Bob 84"], ["age", 55], ["created_at", "2024-06-28 08:01:31.431224"], ["updated_at", "2024-06-28 08:01:31.431224"], ["email", "igor84@gmail.com"], ["crypted_password", "$2a$10$IJr4qNXp4Rh5QqsCwBtlD.wRlt5bFOYiKEZpKxeo6D5eu0mkbVJXe"], ["password_salt", "rQw4t0n7B3lSIiI86ZcU"], ["persistence_token", "57fca01bd7bac1bb4761bac007793c8b8495aedd928663218464e6c0498696b98905a9acbeb80846bbf5a1ab36f5e94b033e687386395edfcd00aa59496e8ffe"], ["role", "admin"]]
214
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "e88674d37f4c95884c60eeff5a5262e9ce9aaab1ee1f06f70a98234e955887fb6407a40b203806ec716d5bd5f1af31ccc71894db4991a8a3497e2e78e3029211"], ["LIMIT", 1]]
215
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 85"], ["age", 57], ["created_at", "2024-06-28 08:01:31.499823"], ["updated_at", "2024-06-28 08:01:31.499823"], ["email", "bob85@gmail.com"], ["crypted_password", "$2a$10$8eE0Hf0tiJirOw1Qma0bdezBkdZi4aui9WUaX8n7FZHyd8cvQf7fy"], ["password_salt", "zXRGrixza9di_Nw7H7Bu"], ["persistence_token", "e88674d37f4c95884c60eeff5a5262e9ce9aaab1ee1f06f70a98234e955887fb6407a40b203806ec716d5bd5f1af31ccc71894db4991a8a3497e2e78e3029211"], ["role", "user"]]
216
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "f82d510c1890bbebd473f6249e81244cbad33af0c3d1d69c145ea1772d3fba5bf3803c0620e89301ba304eb6ae46f15e535269c0bb9a87540a9f80db2a2ab1d9"], ["LIMIT", 1]]
217
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 86"], ["age", 33], ["created_at", "2024-06-28 08:01:31.569671"], ["updated_at", "2024-06-28 08:01:31.569671"], ["email", "alan86@gmail.com"], ["crypted_password", "$2a$10$K3LyyVRLUq1XvA9QXaA9Oe2sOtVtBAjxK.Yw3B/WKJBLU88ga9Xy."], ["password_salt", "n-9CtQZFYabcGiN3jtyq"], ["persistence_token", "f82d510c1890bbebd473f6249e81244cbad33af0c3d1d69c145ea1772d3fba5bf3803c0620e89301ba304eb6ae46f15e535269c0bb9a87540a9f80db2a2ab1d9"], ["role", "admin"]]
218
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "e0aa34c9ae6f91d5023bd825ddc7b8ac2baecb4e0b3a8247f1fe55ac6e8ee42197c4be9382ba62f034265fc479e3e023a0e00b1812f303df499ace18a2578a98"], ["LIMIT", 1]]
219
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 87"], ["age", 73], ["created_at", "2024-06-28 08:01:31.638732"], ["updated_at", "2024-06-28 08:01:31.638732"], ["email", "stan87@gmail.com"], ["crypted_password", "$2a$10$du5v9d6aLZpEIArChjlxluIyc2/27esWV5tRf/mwgdPVsb4.zZrh."], ["password_salt", "UdO-PHktAANdNTo9EkdB"], ["persistence_token", "e0aa34c9ae6f91d5023bd825ddc7b8ac2baecb4e0b3a8247f1fe55ac6e8ee42197c4be9382ba62f034265fc479e3e023a0e00b1812f303df499ace18a2578a98"], ["role", "moderator"]]
220
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "dedeafb2ac999666f8e5cd69c79ae196b6946ae1712d4086b73116d3c10dacd337c56d91c131f059f0679dd6d7b051e2df9be416069f8c0b2c7aa872382b6142"], ["LIMIT", 1]]
221
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 88"], ["age", 92], ["created_at", "2024-06-28 08:01:31.708792"], ["updated_at", "2024-06-28 08:01:31.708792"], ["email", "bob88@gmail.com"], ["crypted_password", "$2a$10$g/fiG8giculCHh9wt5d3ZunN5mP2t5QdwwfA6qc7ophm6dSbdGNpO"], ["password_salt", "AsVKJIzH5xYGGKt0h3ym"], ["persistence_token", "dedeafb2ac999666f8e5cd69c79ae196b6946ae1712d4086b73116d3c10dacd337c56d91c131f059f0679dd6d7b051e2df9be416069f8c0b2c7aa872382b6142"], ["role", "moderator"]]
222
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "8cdd950d9d2998ffa06b9b803e184ac1fdd833cae1d9cc44550b9915c8b0fe2b0661346ec67f42787e2ae1866ef44d483c225dd88bfddbabe6426884eb21e4cf"], ["LIMIT", 1]]
223
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 89"], ["age", 43], ["created_at", "2024-06-28 08:01:31.778387"], ["updated_at", "2024-06-28 08:01:31.778387"], ["email", "bob89@gmail.com"], ["crypted_password", "$2a$10$8.adnelPTAVG/qqoYLlKCO6yCx61/Zmsh76Q5zIn7VxdmKfdiRAKe"], ["password_salt", "oMZ_hwpnqUZQAVqi8jYA"], ["persistence_token", "8cdd950d9d2998ffa06b9b803e184ac1fdd833cae1d9cc44550b9915c8b0fe2b0661346ec67f42787e2ae1866ef44d483c225dd88bfddbabe6426884eb21e4cf"], ["role", "admin"]]
224
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "48f6735806252f13f7e1cebd30ae91d18f57283d73a103469f9b747f169ff1e93aeee0e7dfd21e37fe762c2699e7ebc0ef42b6a9fe31a1e08eb397aff39a42c9"], ["LIMIT", 1]]
225
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 90"], ["age", 62], ["created_at", "2024-06-28 08:01:31.848278"], ["updated_at", "2024-06-28 08:01:31.848278"], ["email", "kris90@gmail.com"], ["crypted_password", "$2a$10$rN.ajIAOQii1VwLug/b0i.ed/6faXsJT30MHKaLGxP812wMgFP5k6"], ["password_salt", "p71x_k8ghyrntDRzA_jB"], ["persistence_token", "48f6735806252f13f7e1cebd30ae91d18f57283d73a103469f9b747f169ff1e93aeee0e7dfd21e37fe762c2699e7ebc0ef42b6a9fe31a1e08eb397aff39a42c9"], ["role", "moderator"]]
226
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "94740025acded0c1d9065728c794740e616aaf7d0e27aab433ec601aa231466684cee7222448c649692742844ab067ba2b43be6a26994ac7c6a2800d7c933af3"], ["LIMIT", 1]]
227
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "MichaelJohn 91"], ["age", 41], ["created_at", "2024-06-28 08:01:31.917609"], ["updated_at", "2024-06-28 08:01:31.917609"], ["email", "kris91@gmail.com"], ["crypted_password", "$2a$10$0AXJbTGL7vHe.I67caZ6quT6m0y5rE4u0sUCrSYgBZY1/RAb9F8Aq"], ["password_salt", "4IL2vCsLyKI0vEb7vD6x"], ["persistence_token", "94740025acded0c1d9065728c794740e616aaf7d0e27aab433ec601aa231466684cee7222448c649692742844ab067ba2b43be6a26994ac7c6a2800d7c933af3"], ["role", "admin"]]
228
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "3e3a8c50254a53a03a19067063d23fad3bdcae8372373c6a486b4133caf44febe2d28a98966a6f0ad07197d7138b73cf2192e15fef97b308e53df232e103bf24"], ["LIMIT", 1]]
229
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 92"], ["age", 99], ["created_at", "2024-06-28 08:01:31.988512"], ["updated_at", "2024-06-28 08:01:31.988512"], ["email", "kris92@gmail.com"], ["crypted_password", "$2a$10$TtLNONSFcXFSKlGn4BKc0OJFHWP9dQJCqSguJNHgkOfoWC10ms8qe"], ["password_salt", "gcf_VUy33oBISkP7DS8-"], ["persistence_token", "3e3a8c50254a53a03a19067063d23fad3bdcae8372373c6a486b4133caf44febe2d28a98966a6f0ad07197d7138b73cf2192e15fef97b308e53df232e103bf24"], ["role", "admin"]]
230
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "a1e3f1ff1002329643210f29840258f9f481a1511fb2bd5c2318f336b2bda3b59c87cda2fa079f77d4e3149e8d2b0c352663cf237aad0833564e3e0252b78959"], ["LIMIT", 1]]
231
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 93"], ["age", 40], ["created_at", "2024-06-28 08:01:32.058375"], ["updated_at", "2024-06-28 08:01:32.058375"], ["email", "alan93@gmail.com"], ["crypted_password", "$2a$10$BEOioB0aRDMJPf0f65zJNeRr.B3Vh7M.9B/T1qo0Nc5.N7FUep97K"], ["password_salt", "maa-jS5mKjA_O4HmdNhQ"], ["persistence_token", "a1e3f1ff1002329643210f29840258f9f481a1511fb2bd5c2318f336b2bda3b59c87cda2fa079f77d4e3149e8d2b0c352663cf237aad0833564e3e0252b78959"], ["role", "admin"]]
232
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "23b9bffc85e5c2d0363a2a6ff5ded5b6ab8699579d8efdde0f692a0e15ebd993bdb54f9d20b06562db8d3aa97b3d0ddc5c5cabacc5965d343853fff2b1e1aa64"], ["LIMIT", 1]]
233
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Kris 94"], ["age", 41], ["created_at", "2024-06-28 08:01:32.129313"], ["updated_at", "2024-06-28 08:01:32.129313"], ["email", "michaeljohn94@gmail.com"], ["crypted_password", "$2a$10$DpQSge34F./f9I0ZHsnoQ.DSvVRWk8e3nv02Cc.1eeChl7bFlYeuS"], ["password_salt", "PRKgE4j6N2P4YFmn8sZE"], ["persistence_token", "23b9bffc85e5c2d0363a2a6ff5ded5b6ab8699579d8efdde0f692a0e15ebd993bdb54f9d20b06562db8d3aa97b3d0ddc5c5cabacc5965d343853fff2b1e1aa64"], ["role", "moderator"]]
234
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "26b0dcaeafb5eaa5bcec30658b5be098877ba69717b3aa3e12e3031d79e8cc24a610c6141d0e5bcbb2090520c3055dcec86aa20e12942309bd4314b12c7a5eba"], ["LIMIT", 1]]
235
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 95"], ["age", 57], ["created_at", "2024-06-28 08:01:32.202406"], ["updated_at", "2024-06-28 08:01:32.202406"], ["email", "bob95@gmail.com"], ["crypted_password", "$2a$10$szWsgOd3/BNMLhQhe8oOfefDuJ4nrbBx58yC11FeBixXkf5l9O9IC"], ["password_salt", "ryPbRprQAd9at_CroHB0"], ["persistence_token", "26b0dcaeafb5eaa5bcec30658b5be098877ba69717b3aa3e12e3031d79e8cc24a610c6141d0e5bcbb2090520c3055dcec86aa20e12942309bd4314b12c7a5eba"], ["role", "user"]]
236
+ User Exists? (0.7ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "c2af5f09e775c248ab15eba9ccb7f1ceeb412b74c4f8a201bf5b7ca82ccd0184b16a7b4ea159fcf00c2f224d5f6a0eaa2856a3b4c3a2cca9d33959bb6ee29086"], ["LIMIT", 1]]
237
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Igor 96"], ["age", 50], ["created_at", "2024-06-28 08:01:32.301046"], ["updated_at", "2024-06-28 08:01:32.301046"], ["email", "igor96@gmail.com"], ["crypted_password", "$2a$10$Axnu9hrgqjcd0bdtTqGv1uAuu2..gPLi6Y.WPIZQH8Qo3VEwgSA7u"], ["password_salt", "7CAuhRT4jRTsahqY5Zzk"], ["persistence_token", "c2af5f09e775c248ab15eba9ccb7f1ceeb412b74c4f8a201bf5b7ca82ccd0184b16a7b4ea159fcf00c2f224d5f6a0eaa2856a3b4c3a2cca9d33959bb6ee29086"], ["role", "user"]]
238
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "e5636d0dbdcee58efde2c7e51382f5ef3a6e255e7b7f1a7e540db71eab8cba8798e112f03cc99a1e49d78a940c3baec92b6abc620ad318abe1399a9923133c2d"], ["LIMIT", 1]]
239
+ User Create (0.4ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Alan 97"], ["age", 42], ["created_at", "2024-06-28 08:01:32.404365"], ["updated_at", "2024-06-28 08:01:32.404365"], ["email", "kris97@gmail.com"], ["crypted_password", "$2a$10$Wl1h.87OWJpA6ktovX9mn.n592k5L5wk0UX6twDoA1cmJ95lZ7VrW"], ["password_salt", "307ferQszKxP7wssEiwh"], ["persistence_token", "e5636d0dbdcee58efde2c7e51382f5ef3a6e255e7b7f1a7e540db71eab8cba8798e112f03cc99a1e49d78a940c3baec92b6abc620ad318abe1399a9923133c2d"], ["role", "user"]]
240
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "eb69eb52e38170713d7da0061909c9936e002ed54e4d272d7c061064f19e3c9dcd96211e70dcab1f71690c382b00c6edbb7d179801f36e00adb9af5725cbe73a"], ["LIMIT", 1]]
241
+ User Create (0.2ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 98"], ["age", 5], ["created_at", "2024-06-28 08:01:32.506372"], ["updated_at", "2024-06-28 08:01:32.506372"], ["email", "alan98@gmail.com"], ["crypted_password", "$2a$10$VEIBfheP2hetXUDA4OdOaORCcQPFGGyotGSMmeBEH043irywZdF/e"], ["password_salt", "kShwTdfToUEQgcDwyMeh"], ["persistence_token", "eb69eb52e38170713d7da0061909c9936e002ed54e4d272d7c061064f19e3c9dcd96211e70dcab1f71690c382b00c6edbb7d179801f36e00adb9af5725cbe73a"], ["role", "user"]]
242
+ User Exists? (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."persistence_token" = ? LIMIT ? [["persistence_token", "36ec15f866b83459625e7d3290a5ad532f25aeafe5b659659d9e32361de2e709644f8664c24ac1b7c454651285abe4f136c6b1bbca066f30c96ba7ab2fabab42"], ["LIMIT", 1]]
243
+ User Create (0.1ms) INSERT INTO "users" ("name", "age", "created_at", "updated_at", "email", "crypted_password", "password_salt", "persistence_token", "role") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Stan 99"], ["age", 63], ["created_at", "2024-06-28 08:01:32.600264"], ["updated_at", "2024-06-28 08:01:32.600264"], ["email", "kris99@gmail.com"], ["crypted_password", "$2a$10$2eRR3WR2Mxuu3F4DUeMoqeWNg0McBAyA9CyYD3aBm0SJjtRi/q.v."], ["password_salt", "hfzBF9h3JN5jpyTFgQze"], ["persistence_token", "36ec15f866b83459625e7d3290a5ad532f25aeafe5b659659d9e32361de2e709644f8664c24ac1b7c454651285abe4f136c6b1bbca066f30c96ba7ab2fabab42"], ["role", "user"]]
244
+ ActiveRecord::SchemaMigration Create (4.8ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20220825195914"]]
245
+ TRANSACTION (12.4ms) commit transaction
246
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
247
+ TRANSACTION (0.1ms) begin transaction
248
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2024-06-28 08:01:32.630201"], ["updated_at", "2024-06-28 08:01:32.630201"]]
249
+ TRANSACTION (1.0ms) commit transaction
250
+  (0.1ms) SELECT sqlite_version(*)
251
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
252
+  (1.5ms) SELECT sqlite_version(*)
253
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
254
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
255
+  (0.0ms) SELECT sqlite_version(*)
256
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
257
+  (1.0ms) SELECT sqlite_version(*)
258
+  (2.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
259
+ ActiveRecord::InternalMetadata Load (0.8ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
260
+  (0.1ms) SELECT sqlite_version(*)
261
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
262
+ Started GET "/" for ::1 at 2024-06-28 11:35:09 +0300
263
+  (1.5ms) SELECT sqlite_version(*)
264
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
265
+ Processing by HomeController#index as HTML
266
+ Rendering layout layouts/application.html.erb
267
+ Rendering home/index.html.erb within layouts/application
268
+ Rendered home/index.html.erb within layouts/application (Duration: 20.3ms | Allocations: 7745)
269
+ Rendered shared/_header.html.erb (Duration: 0.4ms | Allocations: 115)
270
+ Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.4ms | Allocations: 120)
271
+ Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.6ms | Allocations: 172)
272
+ Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.5ms | Allocations: 134)
273
+ User Load (0.7ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 10]]
274
+ ↳ app/views/shared/_footer.html.erb:14
275
+ Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 67.9ms | Allocations: 67826)
276
+ Rendered shared/_footer.html.erb (Duration: 69.8ms | Allocations: 68680)
277
+ Rendered layout layouts/application.html.erb (Duration: 92.6ms | Allocations: 77494)
278
+ Completed 200 OK in 107ms (Views: 97.0ms | ActiveRecord: 1.3ms | Allocations: 81198)
279
+
280
+
281
+ Started POST "/any_login/any_login/sign_in" for ::1 at 2024-06-28 11:35:19 +0300
282
+ Processing by AnyLogin::ApplicationController#any_login as HTML
283
+ Parameters: {"authenticity_token"=>"[FILTERED]", "selected_id"=>"5"}
284
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]]
285
+ TRANSACTION (0.1ms) begin transaction
286
+ User Update (0.5ms) UPDATE "users" SET "updated_at" = ?, "login_count" = ?, "failed_login_count" = ?, "last_request_at" = ?, "current_login_at" = ?, "current_login_ip" = ? WHERE "users"."id" = ? [["updated_at", "2024-06-28 08:35:19.117432"], ["login_count", 1], ["failed_login_count", 0], ["last_request_at", "2024-06-28 08:35:19.116090"], ["current_login_at", "2024-06-28 08:35:19.116012"], ["current_login_ip", "::1"], ["id", 5]]
287
+ TRANSACTION (0.8ms) commit transaction
288
+ Redirected to http://localhost:3000/
289
+ Completed 302 Found in 22ms (ActiveRecord: 1.7ms | Allocations: 7544)
290
+
291
+
292
+ Started GET "/" for ::1 at 2024-06-28 11:35:19 +0300
293
+ Processing by HomeController#index as HTML
294
+ Rendering layout layouts/application.html.erb
295
+ Rendering home/index.html.erb within layouts/application
296
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]]
297
+ ↳ app/controllers/application_controller.rb:11:in `current_user_session'
298
+ TRANSACTION (0.1ms) begin transaction
299
+ ↳ app/controllers/application_controller.rb:11:in `current_user_session'
300
+ User Update (0.5ms) UPDATE "users" SET "updated_at" = ?, "last_request_at" = ? WHERE "users"."id" = ? [["updated_at", "2024-06-28 08:35:19.152576"], ["last_request_at", "2024-06-28 08:35:19.152191"], ["id", 5]]
301
+ ↳ app/controllers/application_controller.rb:11:in `current_user_session'
302
+ TRANSACTION (0.8ms) commit transaction
303
+ ↳ app/controllers/application_controller.rb:11:in `current_user_session'
304
+ Rendered home/index.html.erb within layouts/application (Duration: 7.4ms | Allocations: 3909)
305
+ Rendered shared/_header.html.erb (Duration: 0.0ms | Allocations: 7)
306
+ Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | Allocations: 5)
307
+ Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | Allocations: 5)
308
+ Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | Allocations: 7)
309
+ User Load (0.2ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 10]]
310
+ ↳ app/views/shared/_footer.html.erb:14
311
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 5], ["LIMIT", 1]]
312
+ ↳ app/views/shared/_footer.html.erb:14
313
+ Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 6.2ms | Allocations: 3001)
314
+ Rendered shared/_footer.html.erb (Duration: 6.6ms | Allocations: 3181)
315
+ Rendered layout layouts/application.html.erb (Duration: 14.7ms | Allocations: 7418)
316
+ Completed 200 OK in 15ms (Views: 13.1ms | ActiveRecord: 2.0ms | Allocations: 7749)
317
+
318
+
319
+ Started POST "/any_login/any_login/sign_in" for ::1 at 2024-06-28 11:35:22 +0300
320
+ Processing by AnyLogin::ApplicationController#any_login as HTML
321
+ Parameters: {"authenticity_token"=>"[FILTERED]", "selected_id"=>"8", "id"=>"", "back_to_previous_id"=>""}
322
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]]
323
+ TRANSACTION (0.1ms) begin transaction
324
+ User Update (0.3ms) UPDATE "users" SET "updated_at" = ?, "login_count" = ?, "failed_login_count" = ?, "last_request_at" = ?, "current_login_at" = ?, "current_login_ip" = ? WHERE "users"."id" = ? [["updated_at", "2024-06-28 08:35:22.386648"], ["login_count", 1], ["failed_login_count", 0], ["last_request_at", "2024-06-28 08:35:22.386328"], ["current_login_at", "2024-06-28 08:35:22.386280"], ["current_login_ip", "::1"], ["id", 8]]
325
+ TRANSACTION (2.2ms) commit transaction
326
+ Redirected to http://localhost:3000/
327
+ Completed 302 Found in 10ms (ActiveRecord: 2.8ms | Allocations: 5058)
328
+
329
+
330
+ Started GET "/" for ::1 at 2024-06-28 11:35:22 +0300
331
+ Processing by HomeController#index as HTML
332
+ Rendering layout layouts/application.html.erb
333
+ Rendering home/index.html.erb within layouts/application
334
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]]
335
+ ↳ app/controllers/application_controller.rb:11:in `current_user_session'
336
+ TRANSACTION (0.0ms) begin transaction
337
+ ↳ app/controllers/application_controller.rb:11:in `current_user_session'
338
+ User Update (0.3ms) UPDATE "users" SET "updated_at" = ?, "last_request_at" = ? WHERE "users"."id" = ? [["updated_at", "2024-06-28 08:35:22.410065"], ["last_request_at", "2024-06-28 08:35:22.409770"], ["id", 8]]
339
+ ↳ app/controllers/application_controller.rb:11:in `current_user_session'
340
+ TRANSACTION (0.7ms) commit transaction
341
+ ↳ app/controllers/application_controller.rb:11:in `current_user_session'
342
+ Rendered home/index.html.erb within layouts/application (Duration: 5.8ms | Allocations: 3637)
343
+ Rendered shared/_header.html.erb (Duration: 0.0ms | Allocations: 6)
344
+ Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | Allocations: 5)
345
+ Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | Allocations: 5)
346
+ Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | Allocations: 7)
347
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 10]]
348
+ ↳ app/views/shared/_footer.html.erb:14
349
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 8], ["LIMIT", 1]]
350
+ ↳ app/views/shared/_footer.html.erb:14
351
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 5], ["LIMIT", 1]]
352
+ ↳ app/views/shared/_footer.html.erb:14
353
+ Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 4.4ms | Allocations: 3573)
354
+ Rendered shared/_footer.html.erb (Duration: 4.8ms | Allocations: 3738)
355
+ Rendered layout layouts/application.html.erb (Duration: 11.2ms | Allocations: 7685)
356
+ Completed 200 OK in 12ms (Views: 10.1ms | ActiveRecord: 1.5ms | Allocations: 7968)
357
+
358
+
359
+ Started POST "/any_login/any_login/sign_in" for ::1 at 2024-06-28 11:35:30 +0300
360
+ Processing by AnyLogin::ApplicationController#any_login as HTML
361
+ Parameters: {"authenticity_token"=>"[FILTERED]", "selected_id"=>"", "id"=>"", "back_to_previous_id"=>"8"}
362
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]]
363
+ TRANSACTION (0.1ms) begin transaction
364
+ User Update (0.3ms) UPDATE "users" SET "updated_at" = ?, "login_count" = ?, "last_request_at" = ?, "current_login_at" = ?, "last_login_at" = ?, "last_login_ip" = ? WHERE "users"."id" = ? [["updated_at", "2024-06-28 08:35:30.660336"], ["login_count", 2], ["last_request_at", "2024-06-28 08:35:30.659883"], ["current_login_at", "2024-06-28 08:35:30.659822"], ["last_login_at", "2024-06-28 08:35:22.386280"], ["last_login_ip", "::1"], ["id", 8]]
365
+ TRANSACTION (2.2ms) commit transaction
366
+ Redirected to http://localhost:3000/
367
+ Completed 302 Found in 9ms (ActiveRecord: 2.8ms | Allocations: 5144)
368
+
369
+
370
+ Started GET "/" for ::1 at 2024-06-28 11:35:30 +0300
371
+ Processing by HomeController#index as HTML
372
+ Rendering layout layouts/application.html.erb
373
+ Rendering home/index.html.erb within layouts/application
374
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]]
375
+ ↳ app/controllers/application_controller.rb:11:in `current_user_session'
376
+ TRANSACTION (0.1ms) begin transaction
377
+ ↳ app/controllers/application_controller.rb:11:in `current_user_session'
378
+ User Update (0.5ms) UPDATE "users" SET "updated_at" = ?, "last_request_at" = ? WHERE "users"."id" = ? [["updated_at", "2024-06-28 08:35:30.686251"], ["last_request_at", "2024-06-28 08:35:30.685827"], ["id", 8]]
379
+ ↳ app/controllers/application_controller.rb:11:in `current_user_session'
380
+ TRANSACTION (0.8ms) commit transaction
381
+ ↳ app/controllers/application_controller.rb:11:in `current_user_session'
382
+ Rendered home/index.html.erb within layouts/application (Duration: 7.0ms | Allocations: 3675)
383
+ Rendered shared/_header.html.erb (Duration: 0.0ms | Allocations: 6)
384
+ Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | Allocations: 5)
385
+ Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | Allocations: 5)
386
+ Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | Allocations: 7)
387
+ User Load (0.2ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 10]]
388
+ ↳ app/views/shared/_footer.html.erb:14
389
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 8], ["LIMIT", 1]]
390
+ ↳ app/views/shared/_footer.html.erb:14
391
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 5], ["LIMIT", 1]]
392
+ ↳ app/views/shared/_footer.html.erb:14
393
+ Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 6.1ms | Allocations: 3576)
394
+ Rendered shared/_footer.html.erb (Duration: 6.4ms | Allocations: 3741)
395
+ Rendered layout layouts/application.html.erb (Duration: 14.1ms | Allocations: 7726)
396
+ Completed 200 OK in 15ms (Views: 12.6ms | ActiveRecord: 1.9ms | Allocations: 8009)
397
+
398
+
399
+ Started POST "/any_login/any_login/sign_in" for ::1 at 2024-06-28 11:35:35 +0300
400
+ Processing by AnyLogin::ApplicationController#any_login as HTML
401
+ Parameters: {"authenticity_token"=>"[FILTERED]", "selected_id"=>"", "id"=>"", "back_to_previous_id"=>"5"}
402
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]]
403
+ TRANSACTION (0.1ms) begin transaction
404
+ User Update (0.4ms) UPDATE "users" SET "updated_at" = ?, "login_count" = ?, "last_request_at" = ?, "current_login_at" = ?, "last_login_at" = ?, "last_login_ip" = ? WHERE "users"."id" = ? [["updated_at", "2024-06-28 08:35:35.433731"], ["login_count", 2], ["last_request_at", "2024-06-28 08:35:35.433383"], ["current_login_at", "2024-06-28 08:35:35.433347"], ["last_login_at", "2024-06-28 08:35:19.116012"], ["last_login_ip", "::1"], ["id", 5]]
405
+ TRANSACTION (2.2ms) commit transaction
406
+ Redirected to http://localhost:3000/
407
+ Completed 302 Found in 17ms (ActiveRecord: 2.9ms | Allocations: 5148)
408
+
409
+
410
+ Started GET "/" for ::1 at 2024-06-28 11:35:35 +0300
411
+ Processing by HomeController#index as HTML
412
+ Rendering layout layouts/application.html.erb
413
+ Rendering home/index.html.erb within layouts/application
414
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]]
415
+ ↳ app/controllers/application_controller.rb:11:in `current_user_session'
416
+ TRANSACTION (0.1ms) begin transaction
417
+ ↳ app/controllers/application_controller.rb:11:in `current_user_session'
418
+ User Update (0.5ms) UPDATE "users" SET "updated_at" = ?, "last_request_at" = ? WHERE "users"."id" = ? [["updated_at", "2024-06-28 08:35:35.536427"], ["last_request_at", "2024-06-28 08:35:35.536090"], ["id", 5]]
419
+ ↳ app/controllers/application_controller.rb:11:in `current_user_session'
420
+ TRANSACTION (3.0ms) commit transaction
421
+ ↳ app/controllers/application_controller.rb:11:in `current_user_session'
422
+ Rendered home/index.html.erb within layouts/application (Duration: 34.1ms | Allocations: 3677)
423
+ Rendered shared/_header.html.erb (Duration: 0.0ms | Allocations: 6)
424
+ Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_js.html.erb (Duration: 0.0ms | Allocations: 5)
425
+ Rendered /Users/admin/projects/any_login/app/views/any_login/assets/_css.html.erb (Duration: 0.0ms | Allocations: 5)
426
+ Rendered /Users/admin/projects/any_login/app/views/any_login/svg/_user.html.erb (Duration: 0.0ms | Allocations: 7)
427
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 10]]
428
+ ↳ app/views/shared/_footer.html.erb:14
429
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 5], ["LIMIT", 1]]
430
+ ↳ app/views/shared/_footer.html.erb:14
431
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 8], ["LIMIT", 1]]
432
+ ↳ app/views/shared/_footer.html.erb:14
433
+ Rendered /Users/admin/projects/any_login/app/views/any_login/_any_login.html.erb (Duration: 5.8ms | Allocations: 3580)
434
+ Rendered shared/_footer.html.erb (Duration: 6.2ms | Allocations: 3745)
435
+ Rendered layout layouts/application.html.erb (Duration: 41.0ms | Allocations: 7732)
436
+ Completed 200 OK in 42ms (Views: 37.2ms | ActiveRecord: 4.1ms | Allocations: 8015)
437
+
438
+