@prosopo/provider 1.0.2 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (190) hide show
  1. package/README.md +0 -258
  2. package/dist/api/admin.d.ts +2 -2
  3. package/dist/api/admin.d.ts.map +1 -1
  4. package/dist/api/admin.js +5 -64
  5. package/dist/api/admin.js.map +1 -1
  6. package/dist/api/authMiddleware.d.ts +4 -4
  7. package/dist/api/authMiddleware.d.ts.map +1 -1
  8. package/dist/api/authMiddleware.js +15 -29
  9. package/dist/api/authMiddleware.js.map +1 -1
  10. package/dist/api/captcha.d.ts +2 -2
  11. package/dist/api/captcha.d.ts.map +1 -1
  12. package/dist/api/captcha.js +64 -55
  13. package/dist/api/captcha.js.map +1 -1
  14. package/dist/api/captchaScheduler.d.ts +2 -2
  15. package/dist/api/captchaScheduler.d.ts.map +1 -1
  16. package/dist/api/captchaScheduler.js +11 -10
  17. package/dist/api/captchaScheduler.js.map +1 -1
  18. package/dist/api/errorHandler.d.ts +3 -3
  19. package/dist/api/errorHandler.d.ts.map +1 -1
  20. package/dist/api/errorHandler.js +7 -3
  21. package/dist/api/errorHandler.js.map +1 -1
  22. package/dist/api/verify.d.ts +2 -2
  23. package/dist/api/verify.d.ts.map +1 -1
  24. package/dist/api/verify.js +37 -29
  25. package/dist/api/verify.js.map +1 -1
  26. package/dist/cjs/api/admin.cjs +2 -89
  27. package/dist/cjs/api/authMiddleware.cjs +1 -15
  28. package/dist/cjs/api/captcha.cjs +89 -52
  29. package/dist/cjs/api/captchaScheduler.cjs +4 -7
  30. package/dist/cjs/api/errorHandler.cjs +3 -1
  31. package/dist/cjs/api/verify.cjs +54 -28
  32. package/dist/cjs/index.cjs +0 -3
  33. package/dist/cjs/tasks/dataset/datasetTasks.cjs +68 -0
  34. package/dist/cjs/tasks/dataset/datasetTasksUtils.cjs +34 -0
  35. package/dist/cjs/tasks/imgCaptcha/imgCaptchaTasks.cjs +277 -0
  36. package/dist/cjs/tasks/imgCaptcha/imgCaptchaTasksUtils.cjs +25 -0
  37. package/dist/cjs/tasks/powCaptcha/powTasks.cjs +107 -0
  38. package/dist/cjs/tasks/powCaptcha/powTasksUtils.cjs +55 -0
  39. package/dist/cjs/tasks/tasks.cjs +21 -524
  40. package/dist/cjs/util.cjs +32 -19
  41. package/dist/index.d.ts +7 -8
  42. package/dist/index.d.ts.map +1 -1
  43. package/dist/index.js +7 -8
  44. package/dist/index.js.map +1 -1
  45. package/dist/tasks/dataset/datasetTasks.d.ts +15 -0
  46. package/dist/tasks/dataset/datasetTasks.d.ts.map +1 -0
  47. package/dist/tasks/dataset/datasetTasks.js +40 -0
  48. package/dist/tasks/dataset/datasetTasks.js.map +1 -0
  49. package/dist/tasks/dataset/datasetTasksUtils.d.ts +3 -0
  50. package/dist/tasks/dataset/datasetTasksUtils.d.ts.map +1 -0
  51. package/dist/tasks/dataset/datasetTasksUtils.js +34 -0
  52. package/dist/tasks/dataset/datasetTasksUtils.js.map +1 -0
  53. package/dist/tasks/imgCaptcha/imgCaptchaTasks.d.ts +28 -0
  54. package/dist/tasks/imgCaptcha/imgCaptchaTasks.d.ts.map +1 -0
  55. package/dist/tasks/imgCaptcha/imgCaptchaTasks.js +212 -0
  56. package/dist/tasks/imgCaptcha/imgCaptchaTasks.js.map +1 -0
  57. package/dist/tasks/imgCaptcha/imgCaptchaTasksUtils.d.ts +7 -0
  58. package/dist/tasks/imgCaptcha/imgCaptchaTasksUtils.d.ts.map +1 -0
  59. package/dist/tasks/imgCaptcha/imgCaptchaTasksUtils.js +18 -0
  60. package/dist/tasks/imgCaptcha/imgCaptchaTasksUtils.js.map +1 -0
  61. package/dist/tasks/index.d.ts +1 -1
  62. package/dist/tasks/index.d.ts.map +1 -1
  63. package/dist/tasks/index.js +1 -1
  64. package/dist/tasks/index.js.map +1 -1
  65. package/dist/tasks/powCaptcha/powTasks.d.ts +13 -0
  66. package/dist/tasks/powCaptcha/powTasks.d.ts.map +1 -0
  67. package/dist/tasks/powCaptcha/powTasks.js +66 -0
  68. package/dist/tasks/powCaptcha/powTasks.js.map +1 -0
  69. package/dist/tasks/powCaptcha/powTasksUtils.d.ts +5 -0
  70. package/dist/tasks/powCaptcha/powTasksUtils.d.ts.map +1 -0
  71. package/dist/tasks/powCaptcha/powTasksUtils.js +49 -0
  72. package/dist/tasks/powCaptcha/powTasksUtils.js.map +1 -0
  73. package/dist/tasks/tasks.d.ts +12 -43
  74. package/dist/tasks/tasks.d.ts.map +1 -1
  75. package/dist/tasks/tasks.js +13 -431
  76. package/dist/tasks/tasks.js.map +1 -1
  77. package/dist/tests/index.d.ts +2 -0
  78. package/dist/tests/index.d.ts.map +1 -0
  79. package/dist/tests/index.js +2 -0
  80. package/dist/tests/index.js.map +1 -0
  81. package/dist/tests/integration/imgCaptcha.test.d.ts +2 -0
  82. package/dist/tests/integration/imgCaptcha.test.d.ts.map +1 -0
  83. package/dist/tests/integration/imgCaptcha.test.js +111 -0
  84. package/dist/tests/integration/imgCaptcha.test.js.map +1 -0
  85. package/dist/tests/integration/mocks/solvedTestCaptchas.d.ts +32 -0
  86. package/dist/tests/integration/mocks/solvedTestCaptchas.d.ts.map +1 -0
  87. package/dist/tests/integration/mocks/solvedTestCaptchas.js +1042 -0
  88. package/dist/tests/integration/mocks/solvedTestCaptchas.js.map +1 -0
  89. package/dist/tests/integration/powCaptcha.test.d.ts +2 -0
  90. package/dist/tests/integration/powCaptcha.test.d.ts.map +1 -0
  91. package/dist/tests/integration/powCaptcha.test.js +171 -0
  92. package/dist/tests/integration/powCaptcha.test.js.map +1 -0
  93. package/dist/tests/unit/api/authMiddleware.test.d.ts +2 -0
  94. package/dist/tests/unit/api/authMiddleware.test.d.ts.map +1 -0
  95. package/dist/tests/unit/api/authMiddleware.test.js +87 -0
  96. package/dist/tests/unit/api/authMiddleware.test.js.map +1 -0
  97. package/dist/tests/unit/api/captchaScheduler.test.d.ts +2 -0
  98. package/dist/tests/unit/api/captchaScheduler.test.d.ts.map +1 -0
  99. package/dist/tests/unit/api/captchaScheduler.test.js +47 -0
  100. package/dist/tests/unit/api/captchaScheduler.test.js.map +1 -0
  101. package/dist/tests/unit/api/errorHandler.test.d.ts +2 -0
  102. package/dist/tests/unit/api/errorHandler.test.d.ts.map +1 -0
  103. package/dist/tests/unit/api/errorHandler.test.js +65 -0
  104. package/dist/tests/unit/api/errorHandler.test.js.map +1 -0
  105. package/dist/tests/unit/tasks/dataset/datasetTasks.test.d.ts +2 -0
  106. package/dist/tests/unit/tasks/dataset/datasetTasks.test.d.ts.map +1 -0
  107. package/dist/tests/unit/tasks/dataset/datasetTasks.test.js +88 -0
  108. package/dist/tests/unit/tasks/dataset/datasetTasks.test.js.map +1 -0
  109. package/dist/tests/unit/tasks/dataset/datasetTasksUtils.test.d.ts +2 -0
  110. package/dist/tests/unit/tasks/dataset/datasetTasksUtils.test.d.ts.map +1 -0
  111. package/dist/tests/unit/tasks/dataset/datasetTasksUtils.test.js +75 -0
  112. package/dist/tests/unit/tasks/dataset/datasetTasksUtils.test.js.map +1 -0
  113. package/dist/tests/unit/tasks/imgCaptcha/imgCaptchaTasks.test.d.ts +2 -0
  114. package/dist/tests/unit/tasks/imgCaptcha/imgCaptchaTasks.test.d.ts.map +1 -0
  115. package/dist/tests/unit/tasks/imgCaptcha/imgCaptchaTasks.test.js +260 -0
  116. package/dist/tests/unit/tasks/imgCaptcha/imgCaptchaTasks.test.js.map +1 -0
  117. package/dist/tests/unit/tasks/imgCaptcha/imgCaptchaTasksUtils.test.d.ts +2 -0
  118. package/dist/tests/unit/tasks/imgCaptcha/imgCaptchaTasksUtils.test.d.ts.map +1 -0
  119. package/dist/tests/unit/tasks/imgCaptcha/imgCaptchaTasksUtils.test.js +46 -0
  120. package/dist/tests/unit/tasks/imgCaptcha/imgCaptchaTasksUtils.test.js.map +1 -0
  121. package/dist/tests/unit/tasks/powCaptcha/powTasks.test.d.ts +2 -0
  122. package/dist/tests/unit/tasks/powCaptcha/powTasks.test.d.ts.map +1 -0
  123. package/dist/tests/unit/tasks/powCaptcha/powTasks.test.js +133 -0
  124. package/dist/tests/unit/tasks/powCaptcha/powTasks.test.js.map +1 -0
  125. package/dist/tests/unit/tasks/powCaptcha/powTasksUtils.test.d.ts +2 -0
  126. package/dist/tests/unit/tasks/powCaptcha/powTasksUtils.test.d.ts.map +1 -0
  127. package/dist/tests/unit/tasks/powCaptcha/powTasksUtils.test.js +94 -0
  128. package/dist/tests/unit/tasks/powCaptcha/powTasksUtils.test.js.map +1 -0
  129. package/dist/util.d.ts +2 -2
  130. package/dist/util.d.ts.map +1 -1
  131. package/dist/util.js +10 -8
  132. package/dist/util.js.map +1 -1
  133. package/package.json +74 -86
  134. package/vite.cjs.config.ts +3 -3
  135. package/vite.test.config.ts +12 -12
  136. package/dist/batch/commitments.d.ts +0 -24
  137. package/dist/batch/commitments.d.ts.map +0 -1
  138. package/dist/batch/commitments.js +0 -130
  139. package/dist/batch/commitments.js.map +0 -1
  140. package/dist/batch/index.d.ts +0 -2
  141. package/dist/batch/index.d.ts.map +0 -1
  142. package/dist/batch/index.js +0 -2
  143. package/dist/batch/index.js.map +0 -1
  144. package/dist/cjs/batch/commitments.cjs +0 -158
  145. package/dist/cjs/batch/index.cjs +0 -4
  146. package/dist/scheduler.d.ts +0 -4
  147. package/dist/scheduler.d.ts.map +0 -1
  148. package/dist/scheduler.js +0 -21
  149. package/dist/scheduler.js.map +0 -1
  150. package/dist/tests/accounts.d.ts +0 -12
  151. package/dist/tests/accounts.d.ts.map +0 -1
  152. package/dist/tests/accounts.js +0 -35
  153. package/dist/tests/accounts.js.map +0 -1
  154. package/dist/tests/contract/helpers.test.d.ts +0 -6
  155. package/dist/tests/contract/helpers.test.d.ts.map +0 -1
  156. package/dist/tests/contract/helpers.test.js +0 -54
  157. package/dist/tests/contract/helpers.test.js.map +0 -1
  158. package/dist/tests/dataUtils/DatabaseAccounts.d.ts +0 -35
  159. package/dist/tests/dataUtils/DatabaseAccounts.d.ts.map +0 -1
  160. package/dist/tests/dataUtils/DatabaseAccounts.js +0 -84
  161. package/dist/tests/dataUtils/DatabaseAccounts.js.map +0 -1
  162. package/dist/tests/dataUtils/DatabasePopulator.d.ts +0 -73
  163. package/dist/tests/dataUtils/DatabasePopulator.d.ts.map +0 -1
  164. package/dist/tests/dataUtils/DatabasePopulator.js +0 -326
  165. package/dist/tests/dataUtils/DatabasePopulator.js.map +0 -1
  166. package/dist/tests/dataUtils/dapp-example-contract/dapp.json +0 -648
  167. package/dist/tests/dataUtils/dapp-example-contract/loadFiles.d.ts +0 -4
  168. package/dist/tests/dataUtils/dapp-example-contract/loadFiles.d.ts.map +0 -1
  169. package/dist/tests/dataUtils/dapp-example-contract/loadFiles.js +0 -27
  170. package/dist/tests/dataUtils/dapp-example-contract/loadFiles.js.map +0 -1
  171. package/dist/tests/dataUtils/funds.d.ts +0 -9
  172. package/dist/tests/dataUtils/funds.d.ts.map +0 -1
  173. package/dist/tests/dataUtils/funds.js +0 -105
  174. package/dist/tests/dataUtils/funds.js.map +0 -1
  175. package/dist/tests/dataUtils/populateDatabase.d.ts +0 -16
  176. package/dist/tests/dataUtils/populateDatabase.d.ts.map +0 -1
  177. package/dist/tests/dataUtils/populateDatabase.js +0 -72
  178. package/dist/tests/dataUtils/populateDatabase.js.map +0 -1
  179. package/dist/tests/getUser.d.ts +0 -4
  180. package/dist/tests/getUser.d.ts.map +0 -1
  181. package/dist/tests/getUser.js +0 -18
  182. package/dist/tests/getUser.js.map +0 -1
  183. package/dist/tests/tasks/tasks.test.d.ts +0 -6
  184. package/dist/tests/tasks/tasks.test.d.ts.map +0 -1
  185. package/dist/tests/tasks/tasks.test.js +0 -636
  186. package/dist/tests/tasks/tasks.test.js.map +0 -1
  187. package/dist/tests/util.test.d.ts +0 -2
  188. package/dist/tests/util.test.d.ts.map +0 -1
  189. package/dist/tests/util.test.js +0 -23
  190. package/dist/tests/util.test.js.map +0 -1
@@ -0,0 +1,1042 @@
1
+ export const dummyUserAccount = {
2
+ address: "5H9NydeNeQ1Jkr9YehjJDGB1tgc3VuoYGvG7na4zvNDg4k3r",
3
+ seed: "infant pear sad kit mass marriage ill loyal cushion level typical survey",
4
+ };
5
+ export const datasetWithSolutionHashes = {
6
+ datasetId: "0x9f460e81ac9c71b486f796a21bb36e2263694756a6621134d110da217fd3ef25",
7
+ datasetContentId: "0x3a2dbbf5610f04f54581843db3adf7e0fadc02cdb8e42e30b028c850e0603165",
8
+ format: "SelectAll",
9
+ contentTree: [
10
+ [
11
+ "0x77ba6bdfedc563a34580c8b9cbcdec64608fda0ebf93649797af751d91b8e7a2",
12
+ "0x0460173e77b2280224c8bc409cfdfcae8f77314e535a52db38258fafeb7e4670",
13
+ "0x5073c70e3c1a89f69b00bd32c06857dbd045d345c2c2be7970c12bba8edaff82",
14
+ "0x36b991ffb57cdcb6d5e5b3ec8d34855069357c4d7409e98af6cd9503c6504f60",
15
+ "0xa3cf080335408e6cb29415ac3bdbf57d9dca2c24b52b7a9e682b209e65d586aa",
16
+ "0x5d07c582890d4a90b021e2c77b5a8341ec65e5ce31e8b59670b9378ed33a7f31",
17
+ "0xa45af7caacd6a2c19219f0a733c8febf453ef62258f6afa22f7f830f6125d9f2",
18
+ "0xf4416f464d8df14718f0f1dac447d8b7403c9c8eaa3c5da8cf0019a06197b5f3",
19
+ "0x89916d3a386b0dd3942aa659245bca778467d14ebe509312779c56b8a003f4bc",
20
+ "0xe36eb6b306154f44fcdbe793a60257c474401e8bd8e63da15f9654e831c08eb2",
21
+ "0x7c08a0e5636efa5dff2f8815095ec4390e844e50bfbe63d8e1e1c75ec6540592",
22
+ "0x2089b6232685100ad4318d75f9cc2d5909a0cd2ef49e7b3e314726b25a71c807",
23
+ "0x466dcd81d4e1d271cf3b5b0cdacb7417119ce11b2843aea517eb3dda847392a9",
24
+ "0xe286bba23407a9036b9e60eec7ea41ebfe7f2b1452443da1e9561909534c719d",
25
+ "0x452063fa194844cf1f8f622aa7de46b7c948b1fc38fe87426b3443487a5104ce",
26
+ "0x78374f5795a85c1ff01fc13e60da3992b7054bcc16945a0820e4a58ba881b9ed",
27
+ ],
28
+ [
29
+ "0xfd87321affde04a6ec7bf3144caf399fbbdf827cc5da78b0de40b7babbf3e2b5",
30
+ "0x524207a9d35ba9347b5551c712969622b3b23868bf36d47cdf5df2ac275ac08e",
31
+ "0x1f763f670852d6ee1cbb729c8f89463c02736c3d4501741fc2249f37ea7bc2e5",
32
+ "0xf0ef076d0795d20de2572682223cbf4c3df448bb88983329c54328f24c2b0284",
33
+ "0x9d09b2e8fb3aa9ace1d5d8da6df872b1fa604e455fc5c139713b8419a430b316",
34
+ "0xf237ab7c9ecbf8cbfdc79e59d5c988f659762f2b9950d7876035db7717af8de7",
35
+ "0xfb0154e6ce3ad844c4d6507471a6d8fe0e6b50be9191bd313b4ae0d0aace16f5",
36
+ "0x5a38b852491c1fd93781ad9a48395ab88180783efcf141a51e4bfb2d3e174e4e",
37
+ ],
38
+ [
39
+ "0x07a343972179ae82d9d350bf6fc4da0f899371df7b26045dc91ffec21fbee097",
40
+ "0x796877d60e8211b953afef6a146b8cefe8383caf197664c1f738fce67d5181d3",
41
+ "0x981a8e410f10cac34895f4894adab792e5b6f2863ebb718f82421c29cbb9e3ce",
42
+ "0x06f117f1c14da7e1609360dce5470ab181a9a32d6aa78237f4017bb3d3f06fe6",
43
+ ],
44
+ [
45
+ "0x917afb2ea5ed801defd5ed3f1fddf636bca14e37e7418934612c781ceb13e013",
46
+ "0xe3ae5147692d38fbe62aa786dcc0b4c5031fbff200bf1a4261fd0ab2c687d9a2",
47
+ ],
48
+ ["0x3a2dbbf5610f04f54581843db3adf7e0fadc02cdb8e42e30b028c850e0603165"],
49
+ ],
50
+ solutionTree: [
51
+ [
52
+ "0xf96f89b2792512ec092ead208301f55ba18023ab7e02bec26c32fe888277cc45",
53
+ "0x5d417991939a866abddffec672850be406e31985221914e9b3bbb4eeed57d13b",
54
+ "0xb66681a776e4bf1128d1c36c49daaf32e0140e425d6950d47029a8d4286ae670",
55
+ "0x683292a791c937e5e9be6f2fe0ac708deb4726af4e37c71cacc36f6371c3a088",
56
+ "0x9ad2b46ce33db79f62679a0d0c4262dfff9b359337243d50e47479ae46e4ca8e",
57
+ "0xa8309e583ba17f5cbdcbf09aa3c422bc94060a3cd86517b1c456e72be2e2d263",
58
+ "0x6cb3449c723ca8f419104446ccda1f98f7cf9eb06a88ecebdf1ba0f5d9228c40",
59
+ "0x3bacf645655004bd36c56d3215ff0e1925fdc4241a41fdbb711d4222d3b56af3",
60
+ "0x723e7c158ce1621dafd2785996fce297ead3bcf6efb2e3f77a090bd83c8b9362",
61
+ "0xf8d0abb371ec9a6984492cb7444bfaef848f7d13cb65b8058d479ab1b1e6c932",
62
+ "0xc9d80c281e124d55441b394bec7d6a64e35c4409d57e37bcb9b9748066b095d6",
63
+ "0xd0d357d973f3971fa5431d6bcec9819cb2363b1e6d5d585d5bf97f4f18ac76a5",
64
+ "0x8683a18e05a9eefb959ba41374f2ef208484079405e9c098910f9d9a4cf60ddf",
65
+ "0x43828174c4c62e82cd7be31465df33f10c6de4301d02feeff8ca15cc26ecd3bb",
66
+ "0xfbc6d9acb0bc751f3a63682e1a960b74f97fd30b20b633b0acd39e2a4aba1a9c",
67
+ "0x59466eea239ed267b0a60ce0f28ec617834b6fbe41f5f38047f50de6539e659c",
68
+ ],
69
+ [
70
+ "0x38054dca5f875ca7046b0e41c66268c63e51bd8aae96c9f28d3411c2663af043",
71
+ "0xc3539913305b78f3d1265a090e3903eb043b08f0bc2f04df21d3f7a55995a812",
72
+ "0xf715fbdf71e1635ef0bdbfb119f12a7ea1d78ad541731a76b444328f567dcf31",
73
+ "0x9e761cf605b71f9b8c5789c650ae54ef808fd38e509c58ac9bcb3c4c92791769",
74
+ "0xdb1a901059cd95e220ab842d6ff9919cd251317f73d680d835156dd82dc0f93e",
75
+ "0x93d690c1d76366c427f29c10c060d3dc45b54e7ab1eb58dc4ba04ca711cfec84",
76
+ "0x18dfb79b012e7d660317eb6a458afc97604000957f0ce8f24ee4524f70b1af7d",
77
+ "0x716aaa481088666d681bebedb5c184de5764565f6608f2fa802df352878bcd63",
78
+ ],
79
+ [
80
+ "0xfd37f79fd06f9cdf9bcb2e196a51d5c059cde1c5e79f98ff9cf4cb72bbf6ab56",
81
+ "0x17622f69a5eaf2da98c398a11d0678a07aee297b3ba09a4824a466d811244e4f",
82
+ "0x4b2c23afef161a5cc3e8acb905f0b600e842fdb385a0379459a203bf3f4fea57",
83
+ "0xc055496bb6dc077820ad775b7bd946ecf0cfde8484a53bf40938a249eb9c8c7f",
84
+ ],
85
+ [
86
+ "0x0e92e9e630844d5c8b6afaf2145303ee0a8c419ce68ec44bbc16246ed2571b74",
87
+ "0x0397a2316b1372f4fb9062c63b4a2ac43cb7eb8a580d5dd6fd3cb556f501e747",
88
+ ],
89
+ ["0x9f460e81ac9c71b486f796a21bb36e2263694756a6621134d110da217fd3ef25"],
90
+ ],
91
+ captchas: [
92
+ {
93
+ captchaId: "0xf96f89b2792512ec092ead208301f55ba18023ab7e02bec26c32fe888277cc45",
94
+ captchaContentId: "0x77ba6bdfedc563a34580c8b9cbcdec64608fda0ebf93649797af751d91b8e7a2",
95
+ solved: true,
96
+ salt: "0x01010101010101010101010101010101",
97
+ items: [
98
+ {
99
+ hash: "0x7f4313a6d4240e206d7c7f16d368ddf12d5f1d78296fd3de7e91df1d7739a35f",
100
+ data: "https://prosopo.github.io/demo-datasets/img/01.01.jpeg",
101
+ type: "image",
102
+ },
103
+ {
104
+ hash: "0x967a0107da9f2b1658fea482111dcae32b1bc544da0ee5a3797d758937872ceb",
105
+ data: "https://prosopo.github.io/demo-datasets/img/01.02.jpeg",
106
+ type: "image",
107
+ },
108
+ {
109
+ hash: "0x369734d30701d97ded13c95b34bcd81fc63160fce136ae0c2eb7a2457b5b96c5",
110
+ data: "https://prosopo.github.io/demo-datasets/img/01.03.jpeg",
111
+ type: "image",
112
+ },
113
+ {
114
+ hash: "0x3be8ae584fa11426b8eeac21c87e9f2ab751ab380ec9298b7cd7aed713007ca8",
115
+ data: "https://prosopo.github.io/demo-datasets/img/01.04.jpeg",
116
+ type: "image",
117
+ },
118
+ {
119
+ hash: "0x156390dcf3d60b0e6cff5c9d83b5309049fa8a06a44e948cffe469369940a838",
120
+ data: "https://prosopo.github.io/demo-datasets/img/01.05.jpeg",
121
+ type: "image",
122
+ },
123
+ {
124
+ hash: "0xd4ff6a66ca9b373061cd1dd0477cf598779a73bc7f048eb12b3b8631ea151d7d",
125
+ data: "https://prosopo.github.io/demo-datasets/img/01.06.jpeg",
126
+ type: "image",
127
+ },
128
+ {
129
+ hash: "0xcbcb4ad03e1309f009f78ca0b71125916b5ee8eb8cb53d174f32e58fd3b3dbcd",
130
+ data: "https://prosopo.github.io/demo-datasets/img/01.07.jpeg",
131
+ type: "image",
132
+ },
133
+ {
134
+ hash: "0x0e5279ccf0f0f956d510b15af0b7a2c2c99b6f28a565ea0d5a367c7dbf992495",
135
+ data: "https://prosopo.github.io/demo-datasets/img/01.08.jpeg",
136
+ type: "image",
137
+ },
138
+ {
139
+ hash: "0x5a9f32b7cb8b55a7ec138d21260df31a401ed4fbaa67550ede344e240bf277ee",
140
+ data: "https://prosopo.github.io/demo-datasets/img/01.09.jpeg",
141
+ type: "image",
142
+ },
143
+ ],
144
+ target: "bus",
145
+ solution: [
146
+ "0x369734d30701d97ded13c95b34bcd81fc63160fce136ae0c2eb7a2457b5b96c5",
147
+ "0x3be8ae584fa11426b8eeac21c87e9f2ab751ab380ec9298b7cd7aed713007ca8",
148
+ "0x967a0107da9f2b1658fea482111dcae32b1bc544da0ee5a3797d758937872ceb",
149
+ ],
150
+ },
151
+ {
152
+ captchaId: "0x5d417991939a866abddffec672850be406e31985221914e9b3bbb4eeed57d13b",
153
+ captchaContentId: "0x0460173e77b2280224c8bc409cfdfcae8f77314e535a52db38258fafeb7e4670",
154
+ solved: true,
155
+ salt: "0x02020202020202020202020202020202",
156
+ items: [
157
+ {
158
+ hash: "0x7f4313a6d4240e206d7c7f16d368ddf12d5f1d78296fd3de7e91df1d7739a35f",
159
+ data: "https://prosopo.github.io/demo-datasets/img/01.01.jpeg",
160
+ type: "image",
161
+ },
162
+ {
163
+ hash: "0x967a0107da9f2b1658fea482111dcae32b1bc544da0ee5a3797d758937872ceb",
164
+ data: "https://prosopo.github.io/demo-datasets/img/01.02.jpeg",
165
+ type: "image",
166
+ },
167
+ {
168
+ hash: "0x369734d30701d97ded13c95b34bcd81fc63160fce136ae0c2eb7a2457b5b96c5",
169
+ data: "https://prosopo.github.io/demo-datasets/img/01.03.jpeg",
170
+ type: "image",
171
+ },
172
+ {
173
+ hash: "0x3be8ae584fa11426b8eeac21c87e9f2ab751ab380ec9298b7cd7aed713007ca8",
174
+ data: "https://prosopo.github.io/demo-datasets/img/01.04.jpeg",
175
+ type: "image",
176
+ },
177
+ {
178
+ hash: "0x156390dcf3d60b0e6cff5c9d83b5309049fa8a06a44e948cffe469369940a838",
179
+ data: "https://prosopo.github.io/demo-datasets/img/01.05.jpeg",
180
+ type: "image",
181
+ },
182
+ {
183
+ hash: "0xd4ff6a66ca9b373061cd1dd0477cf598779a73bc7f048eb12b3b8631ea151d7d",
184
+ data: "https://prosopo.github.io/demo-datasets/img/01.06.jpeg",
185
+ type: "image",
186
+ },
187
+ {
188
+ hash: "0xcbcb4ad03e1309f009f78ca0b71125916b5ee8eb8cb53d174f32e58fd3b3dbcd",
189
+ data: "https://prosopo.github.io/demo-datasets/img/01.07.jpeg",
190
+ type: "image",
191
+ },
192
+ {
193
+ hash: "0x0e5279ccf0f0f956d510b15af0b7a2c2c99b6f28a565ea0d5a367c7dbf992495",
194
+ data: "https://prosopo.github.io/demo-datasets/img/01.08.jpeg",
195
+ type: "image",
196
+ },
197
+ {
198
+ hash: "0x5a9f32b7cb8b55a7ec138d21260df31a401ed4fbaa67550ede344e240bf277ee",
199
+ data: "https://prosopo.github.io/demo-datasets/img/01.09.jpeg",
200
+ type: "image",
201
+ },
202
+ ],
203
+ target: "train",
204
+ solution: [
205
+ "0x0e5279ccf0f0f956d510b15af0b7a2c2c99b6f28a565ea0d5a367c7dbf992495",
206
+ "0x5a9f32b7cb8b55a7ec138d21260df31a401ed4fbaa67550ede344e240bf277ee",
207
+ "0x7f4313a6d4240e206d7c7f16d368ddf12d5f1d78296fd3de7e91df1d7739a35f",
208
+ ],
209
+ },
210
+ {
211
+ captchaId: "0xb66681a776e4bf1128d1c36c49daaf32e0140e425d6950d47029a8d4286ae670",
212
+ captchaContentId: "0x5073c70e3c1a89f69b00bd32c06857dbd045d345c2c2be7970c12bba8edaff82",
213
+ solved: true,
214
+ salt: "0x05050505050505050505050505050505",
215
+ items: [
216
+ {
217
+ hash: "0x7f4313a6d4240e206d7c7f16d368ddf12d5f1d78296fd3de7e91df1d7739a35f",
218
+ data: "https://prosopo.github.io/demo-datasets/img/01.01.jpeg",
219
+ type: "image",
220
+ },
221
+ {
222
+ hash: "0x967a0107da9f2b1658fea482111dcae32b1bc544da0ee5a3797d758937872ceb",
223
+ data: "https://prosopo.github.io/demo-datasets/img/01.02.jpeg",
224
+ type: "image",
225
+ },
226
+ {
227
+ hash: "0x369734d30701d97ded13c95b34bcd81fc63160fce136ae0c2eb7a2457b5b96c5",
228
+ data: "https://prosopo.github.io/demo-datasets/img/01.03.jpeg",
229
+ type: "image",
230
+ },
231
+ {
232
+ hash: "0x3be8ae584fa11426b8eeac21c87e9f2ab751ab380ec9298b7cd7aed713007ca8",
233
+ data: "https://prosopo.github.io/demo-datasets/img/01.04.jpeg",
234
+ type: "image",
235
+ },
236
+ {
237
+ hash: "0x156390dcf3d60b0e6cff5c9d83b5309049fa8a06a44e948cffe469369940a838",
238
+ data: "https://prosopo.github.io/demo-datasets/img/01.05.jpeg",
239
+ type: "image",
240
+ },
241
+ {
242
+ hash: "0xd4ff6a66ca9b373061cd1dd0477cf598779a73bc7f048eb12b3b8631ea151d7d",
243
+ data: "https://prosopo.github.io/demo-datasets/img/01.06.jpeg",
244
+ type: "image",
245
+ },
246
+ {
247
+ hash: "0xcbcb4ad03e1309f009f78ca0b71125916b5ee8eb8cb53d174f32e58fd3b3dbcd",
248
+ data: "https://prosopo.github.io/demo-datasets/img/01.07.jpeg",
249
+ type: "image",
250
+ },
251
+ {
252
+ hash: "0x0e5279ccf0f0f956d510b15af0b7a2c2c99b6f28a565ea0d5a367c7dbf992495",
253
+ data: "https://prosopo.github.io/demo-datasets/img/01.08.jpeg",
254
+ type: "image",
255
+ },
256
+ {
257
+ hash: "0x5a9f32b7cb8b55a7ec138d21260df31a401ed4fbaa67550ede344e240bf277ee",
258
+ data: "https://prosopo.github.io/demo-datasets/img/01.09.jpeg",
259
+ type: "image",
260
+ },
261
+ ],
262
+ target: "plane",
263
+ solution: [
264
+ "0x156390dcf3d60b0e6cff5c9d83b5309049fa8a06a44e948cffe469369940a838",
265
+ "0xcbcb4ad03e1309f009f78ca0b71125916b5ee8eb8cb53d174f32e58fd3b3dbcd",
266
+ "0xd4ff6a66ca9b373061cd1dd0477cf598779a73bc7f048eb12b3b8631ea151d7d",
267
+ ],
268
+ },
269
+ {
270
+ captchaId: "0x683292a791c937e5e9be6f2fe0ac708deb4726af4e37c71cacc36f6371c3a088",
271
+ captchaContentId: "0x36b991ffb57cdcb6d5e5b3ec8d34855069357c4d7409e98af6cd9503c6504f60",
272
+ solved: true,
273
+ salt: "0x01010101010101010101010101010101",
274
+ items: [
275
+ {
276
+ hash: "0x0138ab8b1951c2b36284f6abacfc40cc3ec8280adc38462cc5f6b852e17ffe59",
277
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_5.png",
278
+ type: "image",
279
+ },
280
+ {
281
+ hash: "0x42f21fc48111aa49236db34cc4c98571dfb145f146a5672640b9c5568edb77c1",
282
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_24.png",
283
+ type: "image",
284
+ },
285
+ {
286
+ hash: "0xef306d5ae594772d9d5bb0729ff7f9ecdff016c21cd07ea9008856b16698dd06",
287
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_27.png",
288
+ type: "image",
289
+ },
290
+ {
291
+ hash: "0x7291367a7273dcdd07506634f19679679f4c2b3cfb25e3b662c74a4c75ab2d41",
292
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_28.png",
293
+ type: "image",
294
+ },
295
+ {
296
+ hash: "0x0b1539673d659a02a13782745ca98bbb2fed8c95f04621b0aa86e464e4b6773f",
297
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_22.png",
298
+ type: "image",
299
+ },
300
+ {
301
+ hash: "0x5fddbc30f4ac4edd73ac4242f183a2dab7da1bb8e5de3ea483611022319080cd",
302
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_32.png",
303
+ type: "image",
304
+ },
305
+ {
306
+ hash: "0x777ec78a400afa334f16d283803461cbbf814601aea9755b8350683567208172",
307
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_26.png",
308
+ type: "image",
309
+ },
310
+ {
311
+ hash: "0x58dc1a9c15b6e6629179c4fe08c05f12b3be168094a14c8d941e3f973b4b67e0",
312
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_44.png",
313
+ type: "image",
314
+ },
315
+ {
316
+ hash: "0x2ee5bac3c390ebff1f400d4da87a877e3efa1054625bd03102596babd3021589",
317
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_51.png",
318
+ type: "image",
319
+ },
320
+ ],
321
+ target: "dog",
322
+ solution: [
323
+ "0x2ee5bac3c390ebff1f400d4da87a877e3efa1054625bd03102596babd3021589",
324
+ "0x7291367a7273dcdd07506634f19679679f4c2b3cfb25e3b662c74a4c75ab2d41",
325
+ "0xef306d5ae594772d9d5bb0729ff7f9ecdff016c21cd07ea9008856b16698dd06",
326
+ ],
327
+ },
328
+ {
329
+ captchaId: "0x9ad2b46ce33db79f62679a0d0c4262dfff9b359337243d50e47479ae46e4ca8e",
330
+ captchaContentId: "0xa3cf080335408e6cb29415ac3bdbf57d9dca2c24b52b7a9e682b209e65d586aa",
331
+ solved: true,
332
+ salt: "0x02020202020202020202020202020202",
333
+ items: [
334
+ {
335
+ hash: "0x0138ab8b1951c2b36284f6abacfc40cc3ec8280adc38462cc5f6b852e17ffe59",
336
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_5.png",
337
+ type: "image",
338
+ },
339
+ {
340
+ hash: "0x42f21fc48111aa49236db34cc4c98571dfb145f146a5672640b9c5568edb77c1",
341
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_24.png",
342
+ type: "image",
343
+ },
344
+ {
345
+ hash: "0xef306d5ae594772d9d5bb0729ff7f9ecdff016c21cd07ea9008856b16698dd06",
346
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_27.png",
347
+ type: "image",
348
+ },
349
+ {
350
+ hash: "0x7291367a7273dcdd07506634f19679679f4c2b3cfb25e3b662c74a4c75ab2d41",
351
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_28.png",
352
+ type: "image",
353
+ },
354
+ {
355
+ hash: "0x0b1539673d659a02a13782745ca98bbb2fed8c95f04621b0aa86e464e4b6773f",
356
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_22.png",
357
+ type: "image",
358
+ },
359
+ {
360
+ hash: "0x5fddbc30f4ac4edd73ac4242f183a2dab7da1bb8e5de3ea483611022319080cd",
361
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_32.png",
362
+ type: "image",
363
+ },
364
+ {
365
+ hash: "0x777ec78a400afa334f16d283803461cbbf814601aea9755b8350683567208172",
366
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_26.png",
367
+ type: "image",
368
+ },
369
+ {
370
+ hash: "0x58dc1a9c15b6e6629179c4fe08c05f12b3be168094a14c8d941e3f973b4b67e0",
371
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_44.png",
372
+ type: "image",
373
+ },
374
+ {
375
+ hash: "0x2ee5bac3c390ebff1f400d4da87a877e3efa1054625bd03102596babd3021589",
376
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_51.png",
377
+ type: "image",
378
+ },
379
+ ],
380
+ target: "cat",
381
+ solution: [
382
+ "0x0138ab8b1951c2b36284f6abacfc40cc3ec8280adc38462cc5f6b852e17ffe59",
383
+ "0x0b1539673d659a02a13782745ca98bbb2fed8c95f04621b0aa86e464e4b6773f",
384
+ "0x42f21fc48111aa49236db34cc4c98571dfb145f146a5672640b9c5568edb77c1",
385
+ ],
386
+ },
387
+ {
388
+ captchaId: "0xa8309e583ba17f5cbdcbf09aa3c422bc94060a3cd86517b1c456e72be2e2d263",
389
+ captchaContentId: "0x5d07c582890d4a90b021e2c77b5a8341ec65e5ce31e8b59670b9378ed33a7f31",
390
+ solved: true,
391
+ salt: "0x03030303030303030303030303030303",
392
+ items: [
393
+ {
394
+ hash: "0x0138ab8b1951c2b36284f6abacfc40cc3ec8280adc38462cc5f6b852e17ffe59",
395
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_5.png",
396
+ type: "image",
397
+ },
398
+ {
399
+ hash: "0x42f21fc48111aa49236db34cc4c98571dfb145f146a5672640b9c5568edb77c1",
400
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_24.png",
401
+ type: "image",
402
+ },
403
+ {
404
+ hash: "0xef306d5ae594772d9d5bb0729ff7f9ecdff016c21cd07ea9008856b16698dd06",
405
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_27.png",
406
+ type: "image",
407
+ },
408
+ {
409
+ hash: "0x7291367a7273dcdd07506634f19679679f4c2b3cfb25e3b662c74a4c75ab2d41",
410
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_28.png",
411
+ type: "image",
412
+ },
413
+ {
414
+ hash: "0x0b1539673d659a02a13782745ca98bbb2fed8c95f04621b0aa86e464e4b6773f",
415
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_22.png",
416
+ type: "image",
417
+ },
418
+ {
419
+ hash: "0x5fddbc30f4ac4edd73ac4242f183a2dab7da1bb8e5de3ea483611022319080cd",
420
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_32.png",
421
+ type: "image",
422
+ },
423
+ {
424
+ hash: "0x777ec78a400afa334f16d283803461cbbf814601aea9755b8350683567208172",
425
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_26.png",
426
+ type: "image",
427
+ },
428
+ {
429
+ hash: "0x58dc1a9c15b6e6629179c4fe08c05f12b3be168094a14c8d941e3f973b4b67e0",
430
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_44.png",
431
+ type: "image",
432
+ },
433
+ {
434
+ hash: "0x2ee5bac3c390ebff1f400d4da87a877e3efa1054625bd03102596babd3021589",
435
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_51.png",
436
+ type: "image",
437
+ },
438
+ ],
439
+ target: "horse",
440
+ solution: [
441
+ "0x58dc1a9c15b6e6629179c4fe08c05f12b3be168094a14c8d941e3f973b4b67e0",
442
+ "0x5fddbc30f4ac4edd73ac4242f183a2dab7da1bb8e5de3ea483611022319080cd",
443
+ "0x777ec78a400afa334f16d283803461cbbf814601aea9755b8350683567208172",
444
+ ],
445
+ },
446
+ {
447
+ captchaId: "0x6cb3449c723ca8f419104446ccda1f98f7cf9eb06a88ecebdf1ba0f5d9228c40",
448
+ captchaContentId: "0xa45af7caacd6a2c19219f0a733c8febf453ef62258f6afa22f7f830f6125d9f2",
449
+ solved: true,
450
+ salt: "0x01010101010101010101010101010101",
451
+ items: [
452
+ {
453
+ hash: "0x6e0784791bf2edbb348ed69fb8080f69f4c38d3a8169f9204b5600a44bdaa600",
454
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_4.png",
455
+ type: "image",
456
+ },
457
+ {
458
+ hash: "0x15671b7ab4c6d575d51bb0c6c2a5dd05427a2938e9cbcaca1de07c23eaced17f",
459
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_15.png",
460
+ type: "image",
461
+ },
462
+ {
463
+ hash: "0x777ec78a400afa334f16d283803461cbbf814601aea9755b8350683567208172",
464
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_26.png",
465
+ type: "image",
466
+ },
467
+ {
468
+ hash: "0x51fd7b3ae31b6141b37cc063626abd5e1823c40d5da988f087bb3fce4a58d05e",
469
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_94.png",
470
+ type: "image",
471
+ },
472
+ {
473
+ hash: "0xbafe726567fc5b1b67468f77298e80fcee7c7499c499742328aa025b832bf192",
474
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_95.png",
475
+ type: "image",
476
+ },
477
+ {
478
+ hash: "0xe3166f5e1e6e4445e3dce0e69f9d82306e4727019fde875b94a7a6c617eee119",
479
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_20.png",
480
+ type: "image",
481
+ },
482
+ {
483
+ hash: "0x4900a1b4ca395af1c4ea13c52358c8a98d89494ca0a20b251ac9ac16a4fd5377",
484
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_79.png",
485
+ type: "image",
486
+ },
487
+ {
488
+ hash: "0x2040f9ce95c6efba06556a3c9a49538a23f0e1d8ace67d06e1bd7a4538fbc014",
489
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_85.png",
490
+ type: "image",
491
+ },
492
+ {
493
+ hash: "0x5c7b92f11474f9e2f945652eac2e1a603b81adc470480c49e63bb109e62f6624",
494
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_90.png",
495
+ type: "image",
496
+ },
497
+ ],
498
+ target: "plane",
499
+ solution: [
500
+ "0x2040f9ce95c6efba06556a3c9a49538a23f0e1d8ace67d06e1bd7a4538fbc014",
501
+ "0x6e0784791bf2edbb348ed69fb8080f69f4c38d3a8169f9204b5600a44bdaa600",
502
+ ],
503
+ },
504
+ {
505
+ captchaId: "0x3bacf645655004bd36c56d3215ff0e1925fdc4241a41fdbb711d4222d3b56af3",
506
+ captchaContentId: "0xf4416f464d8df14718f0f1dac447d8b7403c9c8eaa3c5da8cf0019a06197b5f3",
507
+ solved: true,
508
+ salt: "0x02020202020202020202020202020202",
509
+ items: [
510
+ {
511
+ hash: "0x6e0784791bf2edbb348ed69fb8080f69f4c38d3a8169f9204b5600a44bdaa600",
512
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_4.png",
513
+ type: "image",
514
+ },
515
+ {
516
+ hash: "0x15671b7ab4c6d575d51bb0c6c2a5dd05427a2938e9cbcaca1de07c23eaced17f",
517
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_15.png",
518
+ type: "image",
519
+ },
520
+ {
521
+ hash: "0x777ec78a400afa334f16d283803461cbbf814601aea9755b8350683567208172",
522
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_26.png",
523
+ type: "image",
524
+ },
525
+ {
526
+ hash: "0x51fd7b3ae31b6141b37cc063626abd5e1823c40d5da988f087bb3fce4a58d05e",
527
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_94.png",
528
+ type: "image",
529
+ },
530
+ {
531
+ hash: "0xbafe726567fc5b1b67468f77298e80fcee7c7499c499742328aa025b832bf192",
532
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_95.png",
533
+ type: "image",
534
+ },
535
+ {
536
+ hash: "0xe3166f5e1e6e4445e3dce0e69f9d82306e4727019fde875b94a7a6c617eee119",
537
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_20.png",
538
+ type: "image",
539
+ },
540
+ {
541
+ hash: "0x4900a1b4ca395af1c4ea13c52358c8a98d89494ca0a20b251ac9ac16a4fd5377",
542
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_79.png",
543
+ type: "image",
544
+ },
545
+ {
546
+ hash: "0x2040f9ce95c6efba06556a3c9a49538a23f0e1d8ace67d06e1bd7a4538fbc014",
547
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_85.png",
548
+ type: "image",
549
+ },
550
+ {
551
+ hash: "0x5c7b92f11474f9e2f945652eac2e1a603b81adc470480c49e63bb109e62f6624",
552
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_90.png",
553
+ type: "image",
554
+ },
555
+ ],
556
+ target: "dog",
557
+ solution: [
558
+ "0x4900a1b4ca395af1c4ea13c52358c8a98d89494ca0a20b251ac9ac16a4fd5377",
559
+ "0x5c7b92f11474f9e2f945652eac2e1a603b81adc470480c49e63bb109e62f6624",
560
+ "0xbafe726567fc5b1b67468f77298e80fcee7c7499c499742328aa025b832bf192",
561
+ ],
562
+ },
563
+ {
564
+ captchaId: "0x723e7c158ce1621dafd2785996fce297ead3bcf6efb2e3f77a090bd83c8b9362",
565
+ captchaContentId: "0x89916d3a386b0dd3942aa659245bca778467d14ebe509312779c56b8a003f4bc",
566
+ solved: true,
567
+ salt: "0x03030303030303030303030303030303",
568
+ items: [
569
+ {
570
+ hash: "0x6e0784791bf2edbb348ed69fb8080f69f4c38d3a8169f9204b5600a44bdaa600",
571
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_4.png",
572
+ type: "image",
573
+ },
574
+ {
575
+ hash: "0x15671b7ab4c6d575d51bb0c6c2a5dd05427a2938e9cbcaca1de07c23eaced17f",
576
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_15.png",
577
+ type: "image",
578
+ },
579
+ {
580
+ hash: "0x777ec78a400afa334f16d283803461cbbf814601aea9755b8350683567208172",
581
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_26.png",
582
+ type: "image",
583
+ },
584
+ {
585
+ hash: "0x51fd7b3ae31b6141b37cc063626abd5e1823c40d5da988f087bb3fce4a58d05e",
586
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_94.png",
587
+ type: "image",
588
+ },
589
+ {
590
+ hash: "0xbafe726567fc5b1b67468f77298e80fcee7c7499c499742328aa025b832bf192",
591
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_95.png",
592
+ type: "image",
593
+ },
594
+ {
595
+ hash: "0xe3166f5e1e6e4445e3dce0e69f9d82306e4727019fde875b94a7a6c617eee119",
596
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_20.png",
597
+ type: "image",
598
+ },
599
+ {
600
+ hash: "0x4900a1b4ca395af1c4ea13c52358c8a98d89494ca0a20b251ac9ac16a4fd5377",
601
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_79.png",
602
+ type: "image",
603
+ },
604
+ {
605
+ hash: "0x2040f9ce95c6efba06556a3c9a49538a23f0e1d8ace67d06e1bd7a4538fbc014",
606
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_85.png",
607
+ type: "image",
608
+ },
609
+ {
610
+ hash: "0x5c7b92f11474f9e2f945652eac2e1a603b81adc470480c49e63bb109e62f6624",
611
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_90.png",
612
+ type: "image",
613
+ },
614
+ ],
615
+ target: "horse",
616
+ solution: [
617
+ "0x51fd7b3ae31b6141b37cc063626abd5e1823c40d5da988f087bb3fce4a58d05e",
618
+ "0x777ec78a400afa334f16d283803461cbbf814601aea9755b8350683567208172",
619
+ "0xe3166f5e1e6e4445e3dce0e69f9d82306e4727019fde875b94a7a6c617eee119",
620
+ ],
621
+ },
622
+ {
623
+ captchaId: "0xf8d0abb371ec9a6984492cb7444bfaef848f7d13cb65b8058d479ab1b1e6c932",
624
+ captchaContentId: "0xe36eb6b306154f44fcdbe793a60257c474401e8bd8e63da15f9654e831c08eb2",
625
+ solved: true,
626
+ salt: "0x04040404040404040404040404040404",
627
+ items: [
628
+ {
629
+ hash: "0x6e0784791bf2edbb348ed69fb8080f69f4c38d3a8169f9204b5600a44bdaa600",
630
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_4.png",
631
+ type: "image",
632
+ },
633
+ {
634
+ hash: "0x15671b7ab4c6d575d51bb0c6c2a5dd05427a2938e9cbcaca1de07c23eaced17f",
635
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_15.png",
636
+ type: "image",
637
+ },
638
+ {
639
+ hash: "0x777ec78a400afa334f16d283803461cbbf814601aea9755b8350683567208172",
640
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_26.png",
641
+ type: "image",
642
+ },
643
+ {
644
+ hash: "0x51fd7b3ae31b6141b37cc063626abd5e1823c40d5da988f087bb3fce4a58d05e",
645
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_94.png",
646
+ type: "image",
647
+ },
648
+ {
649
+ hash: "0xbafe726567fc5b1b67468f77298e80fcee7c7499c499742328aa025b832bf192",
650
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_95.png",
651
+ type: "image",
652
+ },
653
+ {
654
+ hash: "0xe3166f5e1e6e4445e3dce0e69f9d82306e4727019fde875b94a7a6c617eee119",
655
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_20.png",
656
+ type: "image",
657
+ },
658
+ {
659
+ hash: "0x4900a1b4ca395af1c4ea13c52358c8a98d89494ca0a20b251ac9ac16a4fd5377",
660
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_79.png",
661
+ type: "image",
662
+ },
663
+ {
664
+ hash: "0x2040f9ce95c6efba06556a3c9a49538a23f0e1d8ace67d06e1bd7a4538fbc014",
665
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_85.png",
666
+ type: "image",
667
+ },
668
+ {
669
+ hash: "0x5c7b92f11474f9e2f945652eac2e1a603b81adc470480c49e63bb109e62f6624",
670
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_90.png",
671
+ type: "image",
672
+ },
673
+ ],
674
+ target: "bird",
675
+ solution: [
676
+ "0x15671b7ab4c6d575d51bb0c6c2a5dd05427a2938e9cbcaca1de07c23eaced17f",
677
+ ],
678
+ },
679
+ {
680
+ captchaId: "0xc9d80c281e124d55441b394bec7d6a64e35c4409d57e37bcb9b9748066b095d6",
681
+ captchaContentId: "0x7c08a0e5636efa5dff2f8815095ec4390e844e50bfbe63d8e1e1c75ec6540592",
682
+ solved: true,
683
+ salt: "0x01010101010101010101010101010101",
684
+ items: [
685
+ {
686
+ hash: "0x3d2b4cbb43eb98df71bc9ee3d7665e7937b17771718dd096342ccf9e199596e5",
687
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_82.png",
688
+ type: "image",
689
+ },
690
+ {
691
+ hash: "0xc0d85d32dffcbf5803e198c30f8fb09fdc9483d799a37383e89011da233744e0",
692
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_78.png",
693
+ type: "image",
694
+ },
695
+ {
696
+ hash: "0xc74ef4ec7a5f3d63fca003c0cc687540bf224450c4bc6cd8767b6eff4a4d8ab3",
697
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_89.png",
698
+ type: "image",
699
+ },
700
+ {
701
+ hash: "0x61c761e6d4ddd18a685ff1e807f0e078817c09ba1342c2f6621feabb0a1c8c42",
702
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_61.png",
703
+ type: "image",
704
+ },
705
+ {
706
+ hash: "0x2b2f347f9ab0799ee4c2f771c7b7e31489fbb03ba14ad609e23cc9ce87ebc40e",
707
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_69.png",
708
+ type: "image",
709
+ },
710
+ {
711
+ hash: "0x1bd28987173b26558d5a6abb3bbb7d411eebfdf5a54ff579b2720677883b7538",
712
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_71.png",
713
+ type: "image",
714
+ },
715
+ {
716
+ hash: "0x15a422800b166cde2e9d5ac4ab76bf06909737d7896246a5662f341b8b4f02dc",
717
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_33.png",
718
+ type: "image",
719
+ },
720
+ {
721
+ hash: "0x5b1b6833cf2f199e8eacbdd8dd9058de59758ba87e9f3f05e273ad290313d42b",
722
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_25.png",
723
+ type: "image",
724
+ },
725
+ {
726
+ hash: "0x69a472be6e13e4a9b0308b676e4611d45612c684e544758a926b680d74f2a845",
727
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_21.png",
728
+ type: "image",
729
+ },
730
+ ],
731
+ target: "cat",
732
+ solution: [
733
+ "0x15a422800b166cde2e9d5ac4ab76bf06909737d7896246a5662f341b8b4f02dc",
734
+ "0x69a472be6e13e4a9b0308b676e4611d45612c684e544758a926b680d74f2a845",
735
+ "0xc0d85d32dffcbf5803e198c30f8fb09fdc9483d799a37383e89011da233744e0",
736
+ ],
737
+ },
738
+ {
739
+ captchaId: "0xd0d357d973f3971fa5431d6bcec9819cb2363b1e6d5d585d5bf97f4f18ac76a5",
740
+ captchaContentId: "0x2089b6232685100ad4318d75f9cc2d5909a0cd2ef49e7b3e314726b25a71c807",
741
+ solved: true,
742
+ salt: "0x01010101010101010101010101010101",
743
+ items: [
744
+ {
745
+ hash: "0x3d2b4cbb43eb98df71bc9ee3d7665e7937b17771718dd096342ccf9e199596e5",
746
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_82.png",
747
+ type: "image",
748
+ },
749
+ {
750
+ hash: "0xc0d85d32dffcbf5803e198c30f8fb09fdc9483d799a37383e89011da233744e0",
751
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_78.png",
752
+ type: "image",
753
+ },
754
+ {
755
+ hash: "0xc74ef4ec7a5f3d63fca003c0cc687540bf224450c4bc6cd8767b6eff4a4d8ab3",
756
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_89.png",
757
+ type: "image",
758
+ },
759
+ {
760
+ hash: "0x61c761e6d4ddd18a685ff1e807f0e078817c09ba1342c2f6621feabb0a1c8c42",
761
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_61.png",
762
+ type: "image",
763
+ },
764
+ {
765
+ hash: "0x2b2f347f9ab0799ee4c2f771c7b7e31489fbb03ba14ad609e23cc9ce87ebc40e",
766
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_69.png",
767
+ type: "image",
768
+ },
769
+ {
770
+ hash: "0x1bd28987173b26558d5a6abb3bbb7d411eebfdf5a54ff579b2720677883b7538",
771
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_71.png",
772
+ type: "image",
773
+ },
774
+ {
775
+ hash: "0x15a422800b166cde2e9d5ac4ab76bf06909737d7896246a5662f341b8b4f02dc",
776
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_33.png",
777
+ type: "image",
778
+ },
779
+ {
780
+ hash: "0x5b1b6833cf2f199e8eacbdd8dd9058de59758ba87e9f3f05e273ad290313d42b",
781
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_25.png",
782
+ type: "image",
783
+ },
784
+ {
785
+ hash: "0x69a472be6e13e4a9b0308b676e4611d45612c684e544758a926b680d74f2a845",
786
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_21.png",
787
+ type: "image",
788
+ },
789
+ ],
790
+ target: "plane",
791
+ solution: [
792
+ "0x2b2f347f9ab0799ee4c2f771c7b7e31489fbb03ba14ad609e23cc9ce87ebc40e",
793
+ "0x3d2b4cbb43eb98df71bc9ee3d7665e7937b17771718dd096342ccf9e199596e5",
794
+ "0x61c761e6d4ddd18a685ff1e807f0e078817c09ba1342c2f6621feabb0a1c8c42",
795
+ ],
796
+ },
797
+ {
798
+ captchaId: "0x8683a18e05a9eefb959ba41374f2ef208484079405e9c098910f9d9a4cf60ddf",
799
+ captchaContentId: "0x466dcd81d4e1d271cf3b5b0cdacb7417119ce11b2843aea517eb3dda847392a9",
800
+ solved: true,
801
+ salt: "0x01010101010101010101010101010101",
802
+ items: [
803
+ {
804
+ hash: "0x3d2b4cbb43eb98df71bc9ee3d7665e7937b17771718dd096342ccf9e199596e5",
805
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_82.png",
806
+ type: "image",
807
+ },
808
+ {
809
+ hash: "0xc0d85d32dffcbf5803e198c30f8fb09fdc9483d799a37383e89011da233744e0",
810
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_78.png",
811
+ type: "image",
812
+ },
813
+ {
814
+ hash: "0xc74ef4ec7a5f3d63fca003c0cc687540bf224450c4bc6cd8767b6eff4a4d8ab3",
815
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_89.png",
816
+ type: "image",
817
+ },
818
+ {
819
+ hash: "0x61c761e6d4ddd18a685ff1e807f0e078817c09ba1342c2f6621feabb0a1c8c42",
820
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_61.png",
821
+ type: "image",
822
+ },
823
+ {
824
+ hash: "0x2b2f347f9ab0799ee4c2f771c7b7e31489fbb03ba14ad609e23cc9ce87ebc40e",
825
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_69.png",
826
+ type: "image",
827
+ },
828
+ {
829
+ hash: "0x1bd28987173b26558d5a6abb3bbb7d411eebfdf5a54ff579b2720677883b7538",
830
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_71.png",
831
+ type: "image",
832
+ },
833
+ {
834
+ hash: "0x15a422800b166cde2e9d5ac4ab76bf06909737d7896246a5662f341b8b4f02dc",
835
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_33.png",
836
+ type: "image",
837
+ },
838
+ {
839
+ hash: "0x5b1b6833cf2f199e8eacbdd8dd9058de59758ba87e9f3f05e273ad290313d42b",
840
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_25.png",
841
+ type: "image",
842
+ },
843
+ {
844
+ hash: "0x69a472be6e13e4a9b0308b676e4611d45612c684e544758a926b680d74f2a845",
845
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_21.png",
846
+ type: "image",
847
+ },
848
+ ],
849
+ target: "car",
850
+ solution: [
851
+ "0x1bd28987173b26558d5a6abb3bbb7d411eebfdf5a54ff579b2720677883b7538",
852
+ "0x5b1b6833cf2f199e8eacbdd8dd9058de59758ba87e9f3f05e273ad290313d42b",
853
+ "0xc74ef4ec7a5f3d63fca003c0cc687540bf224450c4bc6cd8767b6eff4a4d8ab3",
854
+ ],
855
+ },
856
+ {
857
+ captchaId: "0x43828174c4c62e82cd7be31465df33f10c6de4301d02feeff8ca15cc26ecd3bb",
858
+ captchaContentId: "0xe286bba23407a9036b9e60eec7ea41ebfe7f2b1452443da1e9561909534c719d",
859
+ solved: true,
860
+ salt: "0x01010101010101010101010101010101",
861
+ items: [
862
+ {
863
+ hash: "0xeba2c2c032639c02627f28c6fb77bdd48de56d7a7260f4898a2cfbaa916aa488",
864
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_16.png",
865
+ type: "image",
866
+ },
867
+ {
868
+ hash: "0xd0b4b9447604200567c67f635d19a1702c7392a42264e90b7f63816eb15adf8a",
869
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_17.png",
870
+ type: "image",
871
+ },
872
+ {
873
+ hash: "0xef306d5ae594772d9d5bb0729ff7f9ecdff016c21cd07ea9008856b16698dd06",
874
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_27.png",
875
+ type: "image",
876
+ },
877
+ {
878
+ hash: "0x15a422800b166cde2e9d5ac4ab76bf06909737d7896246a5662f341b8b4f02dc",
879
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_33.png",
880
+ type: "image",
881
+ },
882
+ {
883
+ hash: "0x68a2e06743e929bcfc69a298ed1222d4e098aa19850ef0a3d758136aa3862de6",
884
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_40.png",
885
+ type: "image",
886
+ },
887
+ {
888
+ hash: "0x0ff5e407e8964bc59be44e7c69e36ae4bec27e7b2cc4c9145f0d578ac81d2a70",
889
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_52.png",
890
+ type: "image",
891
+ },
892
+ {
893
+ hash: "0xc0d85d32dffcbf5803e198c30f8fb09fdc9483d799a37383e89011da233744e0",
894
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_78.png",
895
+ type: "image",
896
+ },
897
+ {
898
+ hash: "0x020202020202020202020202020202021a8d88f76f5f01251695a8e488f676dc970f1e2f7ab8af43b12d2b03b5ae54",
899
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_93.png",
900
+ type: "image",
901
+ },
902
+ {
903
+ hash: "0xacac4785d2d7e298af5479c771f3e3035207a47c814901a8c1c788ebee2c73e6",
904
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_70.png",
905
+ type: "image",
906
+ },
907
+ ],
908
+ target: "cat",
909
+ solution: [
910
+ "0x020202020202020202020202020202021a8d88f76f5f01251695a8e488f676dc970f1e2f7ab8af43b12d2b03b5ae54",
911
+ "0x15a422800b166cde2e9d5ac4ab76bf06909737d7896246a5662f341b8b4f02dc",
912
+ "0xc0d85d32dffcbf5803e198c30f8fb09fdc9483d799a37383e89011da233744e0",
913
+ ],
914
+ },
915
+ {
916
+ captchaId: "0xfbc6d9acb0bc751f3a63682e1a960b74f97fd30b20b633b0acd39e2a4aba1a9c",
917
+ captchaContentId: "0x452063fa194844cf1f8f622aa7de46b7c948b1fc38fe87426b3443487a5104ce",
918
+ solved: true,
919
+ salt: "0x02020202020202020202020202020202",
920
+ items: [
921
+ {
922
+ hash: "0xeba2c2c032639c02627f28c6fb77bdd48de56d7a7260f4898a2cfbaa916aa488",
923
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_16.png",
924
+ type: "image",
925
+ },
926
+ {
927
+ hash: "0xd0b4b9447604200567c67f635d19a1702c7392a42264e90b7f63816eb15adf8a",
928
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_17.png",
929
+ type: "image",
930
+ },
931
+ {
932
+ hash: "0xef306d5ae594772d9d5bb0729ff7f9ecdff016c21cd07ea9008856b16698dd06",
933
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_27.png",
934
+ type: "image",
935
+ },
936
+ {
937
+ hash: "0x15a422800b166cde2e9d5ac4ab76bf06909737d7896246a5662f341b8b4f02dc",
938
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_33.png",
939
+ type: "image",
940
+ },
941
+ {
942
+ hash: "0x68a2e06743e929bcfc69a298ed1222d4e098aa19850ef0a3d758136aa3862de6",
943
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_40.png",
944
+ type: "image",
945
+ },
946
+ {
947
+ hash: "0x0ff5e407e8964bc59be44e7c69e36ae4bec27e7b2cc4c9145f0d578ac81d2a70",
948
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_52.png",
949
+ type: "image",
950
+ },
951
+ {
952
+ hash: "0xc0d85d32dffcbf5803e198c30f8fb09fdc9483d799a37383e89011da233744e0",
953
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_78.png",
954
+ type: "image",
955
+ },
956
+ {
957
+ hash: "0x020202020202020202020202020202021a8d88f76f5f01251695a8e488f676dc970f1e2f7ab8af43b12d2b03b5ae54",
958
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_93.png",
959
+ type: "image",
960
+ },
961
+ {
962
+ hash: "0xacac4785d2d7e298af5479c771f3e3035207a47c814901a8c1c788ebee2c73e6",
963
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_70.png",
964
+ type: "image",
965
+ },
966
+ ],
967
+ target: "deer",
968
+ solution: [
969
+ "0x0ff5e407e8964bc59be44e7c69e36ae4bec27e7b2cc4c9145f0d578ac81d2a70",
970
+ "0xacac4785d2d7e298af5479c771f3e3035207a47c814901a8c1c788ebee2c73e6",
971
+ "0xd0b4b9447604200567c67f635d19a1702c7392a42264e90b7f63816eb15adf8a",
972
+ ],
973
+ },
974
+ {
975
+ captchaId: "0x59466eea239ed267b0a60ce0f28ec617834b6fbe41f5f38047f50de6539e659c",
976
+ captchaContentId: "0x78374f5795a85c1ff01fc13e60da3992b7054bcc16945a0820e4a58ba881b9ed",
977
+ solved: true,
978
+ salt: "0x03030303030303030303030303030303",
979
+ items: [
980
+ {
981
+ hash: "0xeba2c2c032639c02627f28c6fb77bdd48de56d7a7260f4898a2cfbaa916aa488",
982
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_16.png",
983
+ type: "image",
984
+ },
985
+ {
986
+ hash: "0xd0b4b9447604200567c67f635d19a1702c7392a42264e90b7f63816eb15adf8a",
987
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_17.png",
988
+ type: "image",
989
+ },
990
+ {
991
+ hash: "0xef306d5ae594772d9d5bb0729ff7f9ecdff016c21cd07ea9008856b16698dd06",
992
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_27.png",
993
+ type: "image",
994
+ },
995
+ {
996
+ hash: "0x15a422800b166cde2e9d5ac4ab76bf06909737d7896246a5662f341b8b4f02dc",
997
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_33.png",
998
+ type: "image",
999
+ },
1000
+ {
1001
+ hash: "0x68a2e06743e929bcfc69a298ed1222d4e098aa19850ef0a3d758136aa3862de6",
1002
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_40.png",
1003
+ type: "image",
1004
+ },
1005
+ {
1006
+ hash: "0x0ff5e407e8964bc59be44e7c69e36ae4bec27e7b2cc4c9145f0d578ac81d2a70",
1007
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_52.png",
1008
+ type: "image",
1009
+ },
1010
+ {
1011
+ hash: "0xc0d85d32dffcbf5803e198c30f8fb09fdc9483d799a37383e89011da233744e0",
1012
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_78.png",
1013
+ type: "image",
1014
+ },
1015
+ {
1016
+ hash: "0x020202020202020202020202020202021a8d88f76f5f01251695a8e488f676dc970f1e2f7ab8af43b12d2b03b5ae54",
1017
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_93.png",
1018
+ type: "image",
1019
+ },
1020
+ {
1021
+ hash: "0xacac4785d2d7e298af5479c771f3e3035207a47c814901a8c1c788ebee2c73e6",
1022
+ data: "https://prosopo.github.io/demo-datasets/img/test_image_png_70.png",
1023
+ type: "image",
1024
+ },
1025
+ ],
1026
+ target: "dog",
1027
+ solution: [
1028
+ "0x68a2e06743e929bcfc69a298ed1222d4e098aa19850ef0a3d758136aa3862de6",
1029
+ "0xeba2c2c032639c02627f28c6fb77bdd48de56d7a7260f4898a2cfbaa916aa488",
1030
+ "0xef306d5ae594772d9d5bb0729ff7f9ecdff016c21cd07ea9008856b16698dd06",
1031
+ ],
1032
+ },
1033
+ ],
1034
+ };
1035
+ export const datasetWithIndexSolutions = {
1036
+ ...datasetWithSolutionHashes,
1037
+ captchas: datasetWithSolutionHashes.captchas.map((captcha, index) => ({
1038
+ ...captcha,
1039
+ solution: captcha.solution?.map((solution) => captcha.items.findIndex((item) => item.hash === solution)),
1040
+ })),
1041
+ };
1042
+ //# sourceMappingURL=solvedTestCaptchas.js.map