@protontech/autofill 0.0.22991789 → 0.0.33835493

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 (176) hide show
  1. package/constants/features.d.ts +1 -0
  2. package/constants/features.js +1 -0
  3. package/constants/heuristics.d.ts +5 -4
  4. package/constants/heuristics.js +5 -10
  5. package/constants/selectors.d.ts +13 -7
  6. package/constants/selectors.js +29 -17
  7. package/debug.d.ts +24 -1
  8. package/debug.js +15 -13
  9. package/dictionary/generate.js +30 -21
  10. package/dictionary/generated/dictionary.d.ts +18 -4
  11. package/dictionary/generated/dictionary.js +31 -17
  12. package/dictionary/source/dictionary.d.ts +4 -3
  13. package/dictionary/source/dictionary.js +155 -89
  14. package/dictionary/source/patterns.js +2 -2
  15. package/features/feature.d.ts +18 -0
  16. package/features/feature.js +79 -0
  17. package/features/feature.spec.d.ts +1 -0
  18. package/features/feature.spec.js +55 -0
  19. package/features/v1/abstract.field.d.ts +20401 -0
  20. package/features/v1/abstract.field.js +95 -0
  21. package/features/v1/abstract.form.d.ts +1226 -0
  22. package/features/v1/abstract.form.js +336 -0
  23. package/features/v1/field.email.d.ts +62 -0
  24. package/features/v1/field.email.js +27 -0
  25. package/features/v1/field.otp.d.ts +142 -0
  26. package/features/v1/field.otp.js +105 -0
  27. package/features/v1/field.password.d.ts +162 -0
  28. package/features/v1/field.password.js +81 -0
  29. package/features/v1/field.username-hidden.d.ts +62 -0
  30. package/features/v1/field.username-hidden.js +25 -0
  31. package/features/v1/field.username.d.ts +72 -0
  32. package/features/v1/field.username.js +31 -0
  33. package/features/v1/index.d.ts +4428 -0
  34. package/features/v1/index.js +22 -0
  35. package/features/v1/index.spec.d.ts +1 -0
  36. package/features/v1/index.spec.js +30 -0
  37. package/index.d.ts +7 -2
  38. package/index.js +11 -3
  39. package/models/perceptron/index.d.ts +2 -0
  40. package/models/perceptron/index.js +42 -0
  41. package/models/perceptron/params/email-model.json +53 -0
  42. package/models/perceptron/params/login-model.json +465 -0
  43. package/models/perceptron/params/new-password-model.json +133 -0
  44. package/models/perceptron/params/otp-model.json +117 -0
  45. package/models/perceptron/params/password-change-model.json +465 -0
  46. package/models/perceptron/params/password-model.json +133 -0
  47. package/models/perceptron/params/recovery-model.json +465 -0
  48. package/models/perceptron/params/register-model.json +465 -0
  49. package/models/perceptron/params/username-hidden-model.json +53 -0
  50. package/models/perceptron/params/username-model.json +61 -0
  51. package/models/random_forest/index.d.ts +2 -0
  52. package/models/random_forest/index.js +42 -0
  53. package/models/random_forest/params/email-model.json +1456 -0
  54. package/models/random_forest/params/login-model.json +4194 -0
  55. package/models/random_forest/params/new-password-model.json +1448 -0
  56. package/models/random_forest/params/otp-model.json +2004 -0
  57. package/models/random_forest/params/password-change-model.json +1422 -0
  58. package/models/random_forest/params/password-model.json +1292 -0
  59. package/models/random_forest/params/recovery-model.json +2754 -0
  60. package/models/random_forest/params/register-model.json +3678 -0
  61. package/models/random_forest/params/username-hidden-model.json +1108 -0
  62. package/models/random_forest/params/username-model.json +1052 -0
  63. package/package.json +17 -15
  64. package/rules/v1/index.d.ts +4 -0
  65. package/rules/v1/index.js +66 -0
  66. package/rulesets.d.ts +9 -2
  67. package/rulesets.js +14 -9
  68. package/types/index.d.ts +70 -17
  69. package/types/index.js +34 -1
  70. package/utils/attributes.js +1 -1
  71. package/utils/clustering.js +18 -5
  72. package/utils/credit-card.d.ts +32 -0
  73. package/utils/credit-card.js +259 -0
  74. package/utils/credit-card.samples.spec.d.ts +1 -0
  75. package/utils/credit-card.samples.spec.js +452 -0
  76. package/utils/credit-card.spec.d.ts +1 -0
  77. package/utils/credit-card.spec.js +296 -0
  78. package/utils/dom.d.ts +3 -2
  79. package/utils/dom.js +12 -7
  80. package/utils/exclusion.d.ts +1 -0
  81. package/utils/exclusion.js +22 -10
  82. package/utils/extract.d.ts +1 -0
  83. package/utils/extract.js +26 -7
  84. package/utils/fathom.d.ts +10 -23
  85. package/utils/fathom.js +7 -12
  86. package/utils/field.d.ts +12 -4
  87. package/utils/field.js +25 -14
  88. package/utils/flags.d.ts +9 -3
  89. package/utils/flags.js +27 -9
  90. package/utils/form.d.ts +16 -5
  91. package/utils/form.js +35 -14
  92. package/utils/identity.d.ts +12 -21
  93. package/utils/identity.js +66 -41
  94. package/utils/identity.samples.spec.d.ts +1 -0
  95. package/utils/identity.samples.spec.js +28 -0
  96. package/utils/iframe.d.ts +2 -0
  97. package/utils/iframe.js +22 -0
  98. package/utils/overrides.d.ts +19 -0
  99. package/utils/overrides.js +40 -0
  100. package/utils/prepass.js +6 -4
  101. package/utils/re.d.ts +19 -4
  102. package/utils/re.js +22 -7
  103. package/utils/re.spec.d.ts +1 -0
  104. package/utils/re.spec.js +62 -0
  105. package/utils/shadow-dom.d.ts +8 -0
  106. package/utils/shadow-dom.js +53 -0
  107. package/utils/shadow-dom.spec.d.ts +1 -0
  108. package/utils/shadow-dom.spec.js +215 -0
  109. package/utils/visible.d.ts +3 -2
  110. package/utils/visible.js +42 -22
  111. package/cli.d.ts +0 -2
  112. package/cli.js +0 -128
  113. package/features/abstract.field.d.ts +0 -123
  114. package/features/abstract.field.js +0 -63
  115. package/features/abstract.form.d.ts +0 -98
  116. package/features/abstract.form.js +0 -281
  117. package/features/field.email.d.ts +0 -18
  118. package/features/field.email.js +0 -43
  119. package/features/field.otp.d.ts +0 -36
  120. package/features/field.otp.js +0 -116
  121. package/features/field.password.d.ts +0 -35
  122. package/features/field.password.js +0 -104
  123. package/features/field.username-hidden.d.ts +0 -15
  124. package/features/field.username-hidden.js +0 -40
  125. package/features/field.username.d.ts +0 -16
  126. package/features/field.username.js +0 -41
  127. package/features/form.combined.d.ts +0 -1
  128. package/features/form.combined.js +0 -6
  129. package/trainees/field.email.d.ts +0 -2
  130. package/trainees/field.email.js +0 -16
  131. package/trainees/field.identity.d.ts +0 -2
  132. package/trainees/field.identity.js +0 -9
  133. package/trainees/field.otp.d.ts +0 -2
  134. package/trainees/field.otp.js +0 -16
  135. package/trainees/field.password.current.d.ts +0 -2
  136. package/trainees/field.password.current.js +0 -16
  137. package/trainees/field.password.new.d.ts +0 -2
  138. package/trainees/field.password.new.js +0 -16
  139. package/trainees/field.username-hidden.d.ts +0 -2
  140. package/trainees/field.username-hidden.js +0 -22
  141. package/trainees/field.username.d.ts +0 -2
  142. package/trainees/field.username.js +0 -16
  143. package/trainees/form.login.d.ts +0 -2
  144. package/trainees/form.login.js +0 -16
  145. package/trainees/form.noop.d.ts +0 -1
  146. package/trainees/form.noop.js +0 -7
  147. package/trainees/form.password-change.d.ts +0 -2
  148. package/trainees/form.password-change.js +0 -16
  149. package/trainees/form.recovery.d.ts +0 -2
  150. package/trainees/form.recovery.js +0 -16
  151. package/trainees/form.register.d.ts +0 -2
  152. package/trainees/form.register.js +0 -16
  153. package/trainees/index.d.ts +0 -9
  154. package/trainees/index.js +0 -72
  155. package/trainees/results/result.email.d.ts +0 -2
  156. package/trainees/results/result.email.js +0 -17
  157. package/trainees/results/result.login.d.ts +0 -2
  158. package/trainees/results/result.login.js +0 -110
  159. package/trainees/results/result.new-password.d.ts +0 -2
  160. package/trainees/results/result.new-password.js +0 -36
  161. package/trainees/results/result.otp.d.ts +0 -2
  162. package/trainees/results/result.otp.js +0 -43
  163. package/trainees/results/result.password-change.d.ts +0 -2
  164. package/trainees/results/result.password-change.js +0 -110
  165. package/trainees/results/result.password.d.ts +0 -2
  166. package/trainees/results/result.password.js +0 -36
  167. package/trainees/results/result.recovery.d.ts +0 -2
  168. package/trainees/results/result.recovery.js +0 -110
  169. package/trainees/results/result.register.d.ts +0 -2
  170. package/trainees/results/result.register.js +0 -110
  171. package/trainees/results/result.username-hidden.d.ts +0 -2
  172. package/trainees/results/result.username-hidden.js +0 -15
  173. package/trainees/results/result.username.d.ts +0 -2
  174. package/trainees/results/result.username.js +0 -16
  175. package/utils/memoize.d.ts +0 -5
  176. package/utils/memoize.js +0 -12
@@ -0,0 +1,1422 @@
1
+ {
2
+ "trees": [
3
+ {
4
+ "categories_nodes": [],
5
+ "categories_segments": [],
6
+ "categories_sizes": [],
7
+ "categories": [],
8
+ "default_left": [
9
+ 0,
10
+ 0,
11
+ 0,
12
+ 0,
13
+ 0,
14
+ 0,
15
+ 0,
16
+ 0,
17
+ 0,
18
+ 0,
19
+ 0
20
+ ],
21
+ "id": 0,
22
+ "left_children": [
23
+ 1,
24
+ 3,
25
+ 5,
26
+ -1,
27
+ 7,
28
+ -1,
29
+ -1,
30
+ 9,
31
+ -1,
32
+ -1,
33
+ -1
34
+ ],
35
+ "right_children": [
36
+ 2,
37
+ 4,
38
+ 6,
39
+ -1,
40
+ 8,
41
+ -1,
42
+ -1,
43
+ 10,
44
+ -1,
45
+ -1,
46
+ -1
47
+ ],
48
+ "split_conditions": [
49
+ 0.6,
50
+ 0.5,
51
+ 1,
52
+ -0.41613257,
53
+ 1,
54
+ 0.48090932,
55
+ 1.8056939,
56
+ 0.168,
57
+ 0.9051558,
58
+ -0.3435788,
59
+ 0.20562685
60
+ ],
61
+ "split_indices": [
62
+ 103,
63
+ 103,
64
+ 63,
65
+ 0,
66
+ 63,
67
+ 0,
68
+ 0,
69
+ 9,
70
+ 0,
71
+ 0,
72
+ 0
73
+ ],
74
+ "split_type": [
75
+ 0,
76
+ 0,
77
+ 0,
78
+ 0,
79
+ 0,
80
+ 0,
81
+ 0,
82
+ 0,
83
+ 0,
84
+ 0,
85
+ 0
86
+ ]
87
+ },
88
+ {
89
+ "categories_nodes": [],
90
+ "categories_segments": [],
91
+ "categories_sizes": [],
92
+ "categories": [],
93
+ "default_left": [
94
+ 0,
95
+ 0,
96
+ 0,
97
+ 0,
98
+ 0,
99
+ 0,
100
+ 0,
101
+ 0,
102
+ 0,
103
+ 0,
104
+ 0
105
+ ],
106
+ "id": 1,
107
+ "left_children": [
108
+ 1,
109
+ -1,
110
+ 3,
111
+ 5,
112
+ -1,
113
+ 7,
114
+ -1,
115
+ 9,
116
+ -1,
117
+ -1,
118
+ -1
119
+ ],
120
+ "right_children": [
121
+ 2,
122
+ -1,
123
+ 4,
124
+ 6,
125
+ -1,
126
+ 8,
127
+ -1,
128
+ 10,
129
+ -1,
130
+ -1,
131
+ -1
132
+ ],
133
+ "split_conditions": [
134
+ 0.5,
135
+ -0.39123917,
136
+ 1,
137
+ 1,
138
+ -0.3930242,
139
+ 0.125,
140
+ -0.2670044,
141
+ 1,
142
+ -0.06497324,
143
+ 0.6773922,
144
+ 0.046789795
145
+ ],
146
+ "split_indices": [
147
+ 103,
148
+ 0,
149
+ 65,
150
+ 57,
151
+ 0,
152
+ 43,
153
+ 0,
154
+ 84,
155
+ 0,
156
+ 0,
157
+ 0
158
+ ],
159
+ "split_type": [
160
+ 0,
161
+ 0,
162
+ 0,
163
+ 0,
164
+ 0,
165
+ 0,
166
+ 0,
167
+ 0,
168
+ 0,
169
+ 0,
170
+ 0
171
+ ]
172
+ },
173
+ {
174
+ "categories_nodes": [],
175
+ "categories_segments": [],
176
+ "categories_sizes": [],
177
+ "categories": [],
178
+ "default_left": [
179
+ 0,
180
+ 0,
181
+ 0,
182
+ 0,
183
+ 0,
184
+ 0,
185
+ 0,
186
+ 0,
187
+ 0,
188
+ 0,
189
+ 0,
190
+ 0,
191
+ 0
192
+ ],
193
+ "id": 2,
194
+ "left_children": [
195
+ 1,
196
+ -1,
197
+ 3,
198
+ 5,
199
+ -1,
200
+ 7,
201
+ -1,
202
+ 9,
203
+ -1,
204
+ 11,
205
+ -1,
206
+ -1,
207
+ -1
208
+ ],
209
+ "right_children": [
210
+ 2,
211
+ -1,
212
+ 4,
213
+ 6,
214
+ -1,
215
+ 8,
216
+ -1,
217
+ 10,
218
+ -1,
219
+ 12,
220
+ -1,
221
+ -1,
222
+ -1
223
+ ],
224
+ "split_conditions": [
225
+ 0.5,
226
+ -0.3747307,
227
+ 1,
228
+ 1,
229
+ -0.3377203,
230
+ 0.125,
231
+ -0.23952697,
232
+ 1,
233
+ -0.050898924,
234
+ 0.084,
235
+ 0.03653083,
236
+ 0.091969386,
237
+ 0.5249026
238
+ ],
239
+ "split_indices": [
240
+ 103,
241
+ 0,
242
+ 65,
243
+ 57,
244
+ 0,
245
+ 43,
246
+ 0,
247
+ 84,
248
+ 0,
249
+ 9,
250
+ 0,
251
+ 0,
252
+ 0
253
+ ],
254
+ "split_type": [
255
+ 0,
256
+ 0,
257
+ 0,
258
+ 0,
259
+ 0,
260
+ 0,
261
+ 0,
262
+ 0,
263
+ 0,
264
+ 0,
265
+ 0,
266
+ 0,
267
+ 0
268
+ ]
269
+ },
270
+ {
271
+ "categories_nodes": [],
272
+ "categories_segments": [],
273
+ "categories_sizes": [],
274
+ "categories": [],
275
+ "default_left": [
276
+ 0,
277
+ 0,
278
+ 0,
279
+ 0,
280
+ 0,
281
+ 0,
282
+ 0,
283
+ 0,
284
+ 0,
285
+ 0,
286
+ 0
287
+ ],
288
+ "id": 3,
289
+ "left_children": [
290
+ 1,
291
+ -1,
292
+ 3,
293
+ 5,
294
+ -1,
295
+ 7,
296
+ 9,
297
+ -1,
298
+ -1,
299
+ -1,
300
+ -1
301
+ ],
302
+ "right_children": [
303
+ 2,
304
+ -1,
305
+ 4,
306
+ 6,
307
+ -1,
308
+ 8,
309
+ 10,
310
+ -1,
311
+ -1,
312
+ -1,
313
+ -1
314
+ ],
315
+ "split_conditions": [
316
+ 0.5,
317
+ -0.36276573,
318
+ 1,
319
+ 1,
320
+ -0.2952039,
321
+ 0.19607843,
322
+ 0.125,
323
+ -0.304005,
324
+ 0.38330117,
325
+ 0.4271386,
326
+ 0.091910824
327
+ ],
328
+ "split_indices": [
329
+ 103,
330
+ 0,
331
+ 65,
332
+ 63,
333
+ 0,
334
+ 87,
335
+ 43,
336
+ 0,
337
+ 0,
338
+ 0,
339
+ 0
340
+ ],
341
+ "split_type": [
342
+ 0,
343
+ 0,
344
+ 0,
345
+ 0,
346
+ 0,
347
+ 0,
348
+ 0,
349
+ 0,
350
+ 0,
351
+ 0,
352
+ 0
353
+ ]
354
+ },
355
+ {
356
+ "categories_nodes": [],
357
+ "categories_segments": [],
358
+ "categories_sizes": [],
359
+ "categories": [],
360
+ "default_left": [
361
+ 0,
362
+ 0,
363
+ 0,
364
+ 0,
365
+ 0,
366
+ 0,
367
+ 0,
368
+ 0,
369
+ 0,
370
+ 0,
371
+ 0,
372
+ 0,
373
+ 0
374
+ ],
375
+ "id": 4,
376
+ "left_children": [
377
+ 1,
378
+ -1,
379
+ 3,
380
+ 5,
381
+ -1,
382
+ 7,
383
+ 9,
384
+ -1,
385
+ 11,
386
+ -1,
387
+ -1,
388
+ -1,
389
+ -1
390
+ ],
391
+ "right_children": [
392
+ 2,
393
+ -1,
394
+ 4,
395
+ 6,
396
+ -1,
397
+ 8,
398
+ 10,
399
+ -1,
400
+ 12,
401
+ -1,
402
+ -1,
403
+ -1,
404
+ -1
405
+ ],
406
+ "split_conditions": [
407
+ 0.5,
408
+ -0.35316682,
409
+ 1,
410
+ 1,
411
+ -0.30499092,
412
+ 0.1875,
413
+ 0.125,
414
+ -0.27686834,
415
+ 0.083333336,
416
+ 0.40473548,
417
+ 0.021153986,
418
+ 0.06828041,
419
+ 0.3250481
420
+ ],
421
+ "split_indices": [
422
+ 103,
423
+ 0,
424
+ 61,
425
+ 63,
426
+ 0,
427
+ 87,
428
+ 43,
429
+ 0,
430
+ 46,
431
+ 0,
432
+ 0,
433
+ 0,
434
+ 0
435
+ ],
436
+ "split_type": [
437
+ 0,
438
+ 0,
439
+ 0,
440
+ 0,
441
+ 0,
442
+ 0,
443
+ 0,
444
+ 0,
445
+ 0,
446
+ 0,
447
+ 0,
448
+ 0,
449
+ 0
450
+ ]
451
+ },
452
+ {
453
+ "categories_nodes": [],
454
+ "categories_segments": [],
455
+ "categories_sizes": [],
456
+ "categories": [],
457
+ "default_left": [
458
+ 0,
459
+ 0,
460
+ 0,
461
+ 0,
462
+ 0,
463
+ 0,
464
+ 0,
465
+ 0,
466
+ 0,
467
+ 0,
468
+ 0,
469
+ 0,
470
+ 0
471
+ ],
472
+ "id": 5,
473
+ "left_children": [
474
+ 1,
475
+ -1,
476
+ 3,
477
+ 5,
478
+ -1,
479
+ 7,
480
+ 9,
481
+ -1,
482
+ -1,
483
+ 11,
484
+ -1,
485
+ -1,
486
+ -1
487
+ ],
488
+ "right_children": [
489
+ 2,
490
+ -1,
491
+ 4,
492
+ 6,
493
+ -1,
494
+ 8,
495
+ 10,
496
+ -1,
497
+ -1,
498
+ 12,
499
+ -1,
500
+ -1,
501
+ -1
502
+ ],
503
+ "split_conditions": [
504
+ 0.5,
505
+ -0.3445226,
506
+ 0.33333334,
507
+ 0.25,
508
+ -0.24939829,
509
+ 1,
510
+ 1,
511
+ -0.24825862,
512
+ 0.25106817,
513
+ 0.134,
514
+ 0.05243814,
515
+ 0.08243425,
516
+ 0.37288678
517
+ ],
518
+ "split_indices": [
519
+ 103,
520
+ 0,
521
+ 10,
522
+ 0,
523
+ 0,
524
+ 63,
525
+ 66,
526
+ 0,
527
+ 0,
528
+ 9,
529
+ 0,
530
+ 0,
531
+ 0
532
+ ],
533
+ "split_type": [
534
+ 0,
535
+ 0,
536
+ 0,
537
+ 0,
538
+ 0,
539
+ 0,
540
+ 0,
541
+ 0,
542
+ 0,
543
+ 0,
544
+ 0,
545
+ 0,
546
+ 0
547
+ ]
548
+ },
549
+ {
550
+ "categories_nodes": [],
551
+ "categories_segments": [],
552
+ "categories_sizes": [],
553
+ "categories": [],
554
+ "default_left": [
555
+ 0,
556
+ 0,
557
+ 0,
558
+ 0,
559
+ 0,
560
+ 0,
561
+ 0,
562
+ 0,
563
+ 0,
564
+ 0,
565
+ 0
566
+ ],
567
+ "id": 6,
568
+ "left_children": [
569
+ 1,
570
+ -1,
571
+ 3,
572
+ 5,
573
+ -1,
574
+ 7,
575
+ -1,
576
+ 9,
577
+ -1,
578
+ -1,
579
+ -1
580
+ ],
581
+ "right_children": [
582
+ 2,
583
+ -1,
584
+ 4,
585
+ 6,
586
+ -1,
587
+ 8,
588
+ -1,
589
+ 10,
590
+ -1,
591
+ -1,
592
+ -1
593
+ ],
594
+ "split_conditions": [
595
+ 0.5,
596
+ -0.33580908,
597
+ 1,
598
+ 0.125,
599
+ -0.2572661,
600
+ 1,
601
+ -0.09139964,
602
+ 0.1875,
603
+ 0.34818995,
604
+ -0.1995362,
605
+ 0.24985348
606
+ ],
607
+ "split_indices": [
608
+ 103,
609
+ 0,
610
+ 61,
611
+ 43,
612
+ 0,
613
+ 63,
614
+ 0,
615
+ 87,
616
+ 0,
617
+ 0,
618
+ 0
619
+ ],
620
+ "split_type": [
621
+ 0,
622
+ 0,
623
+ 0,
624
+ 0,
625
+ 0,
626
+ 0,
627
+ 0,
628
+ 0,
629
+ 0,
630
+ 0,
631
+ 0
632
+ ]
633
+ },
634
+ {
635
+ "categories_nodes": [],
636
+ "categories_segments": [],
637
+ "categories_sizes": [],
638
+ "categories": [],
639
+ "default_left": [
640
+ 0,
641
+ 0,
642
+ 0,
643
+ 0,
644
+ 0,
645
+ 0,
646
+ 0,
647
+ 0,
648
+ 0,
649
+ 0,
650
+ 0
651
+ ],
652
+ "id": 7,
653
+ "left_children": [
654
+ 1,
655
+ -1,
656
+ 3,
657
+ 5,
658
+ -1,
659
+ 7,
660
+ -1,
661
+ 9,
662
+ -1,
663
+ -1,
664
+ -1
665
+ ],
666
+ "right_children": [
667
+ 2,
668
+ -1,
669
+ 4,
670
+ 6,
671
+ -1,
672
+ 8,
673
+ -1,
674
+ 10,
675
+ -1,
676
+ -1,
677
+ -1
678
+ ],
679
+ "split_conditions": [
680
+ 0.5,
681
+ -0.32622653,
682
+ 1,
683
+ 0.33333334,
684
+ 0.3231683,
685
+ 0.27272728,
686
+ -0.26607943,
687
+ 0.75,
688
+ 0.23922387,
689
+ -0.13599826,
690
+ 0.104243115
691
+ ],
692
+ "split_indices": [
693
+ 103,
694
+ 0,
695
+ 31,
696
+ 3,
697
+ 0,
698
+ 40,
699
+ 0,
700
+ 103,
701
+ 0,
702
+ 0,
703
+ 0
704
+ ],
705
+ "split_type": [
706
+ 0,
707
+ 0,
708
+ 0,
709
+ 0,
710
+ 0,
711
+ 0,
712
+ 0,
713
+ 0,
714
+ 0,
715
+ 0,
716
+ 0
717
+ ]
718
+ },
719
+ {
720
+ "categories_nodes": [],
721
+ "categories_segments": [],
722
+ "categories_sizes": [],
723
+ "categories": [],
724
+ "default_left": [
725
+ 0,
726
+ 0,
727
+ 0,
728
+ 0,
729
+ 0,
730
+ 0,
731
+ 0,
732
+ 0,
733
+ 0
734
+ ],
735
+ "id": 8,
736
+ "left_children": [
737
+ 1,
738
+ 3,
739
+ -1,
740
+ 5,
741
+ 7,
742
+ -1,
743
+ -1,
744
+ -1,
745
+ -1
746
+ ],
747
+ "right_children": [
748
+ 2,
749
+ 4,
750
+ -1,
751
+ 6,
752
+ 8,
753
+ -1,
754
+ -1,
755
+ -1,
756
+ -1
757
+ ],
758
+ "split_conditions": [
759
+ 0.33333334,
760
+ 0.18181819,
761
+ -0.31971788,
762
+ 1,
763
+ 0.134,
764
+ -0.24341749,
765
+ 0.14973769,
766
+ 0.026534952,
767
+ 0.26256904
768
+ ],
769
+ "split_indices": [
770
+ 10,
771
+ 101,
772
+ 0,
773
+ 63,
774
+ 9,
775
+ 0,
776
+ 0,
777
+ 0,
778
+ 0
779
+ ],
780
+ "split_type": [
781
+ 0,
782
+ 0,
783
+ 0,
784
+ 0,
785
+ 0,
786
+ 0,
787
+ 0,
788
+ 0,
789
+ 0
790
+ ]
791
+ },
792
+ {
793
+ "categories_nodes": [],
794
+ "categories_segments": [],
795
+ "categories_sizes": [],
796
+ "categories": [],
797
+ "default_left": [
798
+ 0,
799
+ 0,
800
+ 0,
801
+ 0,
802
+ 0,
803
+ 0,
804
+ 0,
805
+ 0,
806
+ 0
807
+ ],
808
+ "id": 9,
809
+ "left_children": [
810
+ 1,
811
+ 3,
812
+ -1,
813
+ -1,
814
+ 5,
815
+ 7,
816
+ -1,
817
+ -1,
818
+ -1
819
+ ],
820
+ "right_children": [
821
+ 2,
822
+ 4,
823
+ -1,
824
+ -1,
825
+ 6,
826
+ 8,
827
+ -1,
828
+ -1,
829
+ -1
830
+ ],
831
+ "split_conditions": [
832
+ 0.33333334,
833
+ 0.11111111,
834
+ -0.30560705,
835
+ -0.1927086,
836
+ 1,
837
+ 0.13235295,
838
+ -0.06073243,
839
+ 0,
840
+ 0.26816332
841
+ ],
842
+ "split_indices": [
843
+ 10,
844
+ 89,
845
+ 0,
846
+ 0,
847
+ 84,
848
+ 87,
849
+ 0,
850
+ 0,
851
+ 0
852
+ ],
853
+ "split_type": [
854
+ 0,
855
+ 0,
856
+ 0,
857
+ 0,
858
+ 0,
859
+ 0,
860
+ 0,
861
+ 0,
862
+ 0
863
+ ]
864
+ },
865
+ {
866
+ "categories_nodes": [],
867
+ "categories_segments": [],
868
+ "categories_sizes": [],
869
+ "categories": [],
870
+ "default_left": [
871
+ 0,
872
+ 0,
873
+ 0,
874
+ 0,
875
+ 0,
876
+ 0,
877
+ 0,
878
+ 0,
879
+ 0,
880
+ 0,
881
+ 0
882
+ ],
883
+ "id": 10,
884
+ "left_children": [
885
+ 1,
886
+ -1,
887
+ 3,
888
+ 5,
889
+ -1,
890
+ 7,
891
+ -1,
892
+ 9,
893
+ -1,
894
+ -1,
895
+ -1
896
+ ],
897
+ "right_children": [
898
+ 2,
899
+ -1,
900
+ 4,
901
+ 6,
902
+ -1,
903
+ 8,
904
+ -1,
905
+ 10,
906
+ -1,
907
+ -1,
908
+ -1
909
+ ],
910
+ "split_conditions": [
911
+ 0.5,
912
+ -0.2881869,
913
+ 1,
914
+ 0.33333334,
915
+ 0.24120332,
916
+ 0.4,
917
+ -0.21186484,
918
+ 0.75,
919
+ 0.19190979,
920
+ -0.11822016,
921
+ 0.053053785
922
+ ],
923
+ "split_indices": [
924
+ 103,
925
+ 0,
926
+ 31,
927
+ 3,
928
+ 0,
929
+ 14,
930
+ 0,
931
+ 103,
932
+ 0,
933
+ 0,
934
+ 0
935
+ ],
936
+ "split_type": [
937
+ 0,
938
+ 0,
939
+ 0,
940
+ 0,
941
+ 0,
942
+ 0,
943
+ 0,
944
+ 0,
945
+ 0,
946
+ 0,
947
+ 0
948
+ ]
949
+ },
950
+ {
951
+ "categories_nodes": [],
952
+ "categories_segments": [],
953
+ "categories_sizes": [],
954
+ "categories": [],
955
+ "default_left": [
956
+ 0,
957
+ 0,
958
+ 0,
959
+ 0,
960
+ 0,
961
+ 0,
962
+ 0,
963
+ 0,
964
+ 0
965
+ ],
966
+ "id": 11,
967
+ "left_children": [
968
+ 1,
969
+ 3,
970
+ 5,
971
+ -1,
972
+ -1,
973
+ 7,
974
+ -1,
975
+ -1,
976
+ -1
977
+ ],
978
+ "right_children": [
979
+ 2,
980
+ 4,
981
+ 6,
982
+ -1,
983
+ -1,
984
+ 8,
985
+ -1,
986
+ -1,
987
+ -1
988
+ ],
989
+ "split_conditions": [
990
+ 0.75,
991
+ 1,
992
+ 1,
993
+ -0.27955824,
994
+ -0.018277703,
995
+ 0.13235295,
996
+ -0.09879252,
997
+ 0,
998
+ 0.25688955
999
+ ],
1000
+ "split_indices": [
1001
+ 44,
1002
+ 64,
1003
+ 84,
1004
+ 0,
1005
+ 0,
1006
+ 87,
1007
+ 0,
1008
+ 0,
1009
+ 0
1010
+ ],
1011
+ "split_type": [
1012
+ 0,
1013
+ 0,
1014
+ 0,
1015
+ 0,
1016
+ 0,
1017
+ 0,
1018
+ 0,
1019
+ 0,
1020
+ 0
1021
+ ]
1022
+ },
1023
+ {
1024
+ "categories_nodes": [],
1025
+ "categories_segments": [],
1026
+ "categories_sizes": [],
1027
+ "categories": [],
1028
+ "default_left": [
1029
+ 0,
1030
+ 0,
1031
+ 0,
1032
+ 0,
1033
+ 0,
1034
+ 0,
1035
+ 0,
1036
+ 0,
1037
+ 0
1038
+ ],
1039
+ "id": 12,
1040
+ "left_children": [
1041
+ 1,
1042
+ 3,
1043
+ -1,
1044
+ 5,
1045
+ 7,
1046
+ -1,
1047
+ -1,
1048
+ -1,
1049
+ -1
1050
+ ],
1051
+ "right_children": [
1052
+ 2,
1053
+ 4,
1054
+ -1,
1055
+ 6,
1056
+ 8,
1057
+ -1,
1058
+ -1,
1059
+ -1,
1060
+ -1
1061
+ ],
1062
+ "split_conditions": [
1063
+ 0.33333334,
1064
+ 1,
1065
+ -0.2587278,
1066
+ 0.1875,
1067
+ 1,
1068
+ -0.19591075,
1069
+ 0.08953657,
1070
+ 0.21395993,
1071
+ -0.0076399418
1072
+ ],
1073
+ "split_indices": [
1074
+ 10,
1075
+ 63,
1076
+ 0,
1077
+ 87,
1078
+ 26,
1079
+ 0,
1080
+ 0,
1081
+ 0,
1082
+ 0
1083
+ ],
1084
+ "split_type": [
1085
+ 0,
1086
+ 0,
1087
+ 0,
1088
+ 0,
1089
+ 0,
1090
+ 0,
1091
+ 0,
1092
+ 0,
1093
+ 0
1094
+ ]
1095
+ },
1096
+ {
1097
+ "categories_nodes": [],
1098
+ "categories_segments": [],
1099
+ "categories_sizes": [],
1100
+ "categories": [],
1101
+ "default_left": [
1102
+ 0,
1103
+ 0,
1104
+ 0,
1105
+ 0,
1106
+ 0,
1107
+ 0,
1108
+ 0,
1109
+ 0,
1110
+ 0
1111
+ ],
1112
+ "id": 13,
1113
+ "left_children": [
1114
+ 1,
1115
+ 3,
1116
+ -1,
1117
+ 5,
1118
+ -1,
1119
+ 7,
1120
+ -1,
1121
+ -1,
1122
+ -1
1123
+ ],
1124
+ "right_children": [
1125
+ 2,
1126
+ 4,
1127
+ -1,
1128
+ 6,
1129
+ -1,
1130
+ 8,
1131
+ -1,
1132
+ -1,
1133
+ -1
1134
+ ],
1135
+ "split_conditions": [
1136
+ 0.33333334,
1137
+ 1,
1138
+ -0.23884425,
1139
+ 0.33333334,
1140
+ 0.19359711,
1141
+ 0.109,
1142
+ 0.108261466,
1143
+ 0.02553643,
1144
+ -0.19575344
1145
+ ],
1146
+ "split_indices": [
1147
+ 10,
1148
+ 69,
1149
+ 0,
1150
+ 101,
1151
+ 0,
1152
+ 9,
1153
+ 0,
1154
+ 0,
1155
+ 0
1156
+ ],
1157
+ "split_type": [
1158
+ 0,
1159
+ 0,
1160
+ 0,
1161
+ 0,
1162
+ 0,
1163
+ 0,
1164
+ 0,
1165
+ 0,
1166
+ 0
1167
+ ]
1168
+ }
1169
+ ],
1170
+ "feature_names": [
1171
+ "password-change--visibleFieldsCountScaled",
1172
+ "password-change--visibleInputsCountScaled",
1173
+ "password-change--fieldsetsCountScaled",
1174
+ "password-change--textsCountScaled",
1175
+ "password-change--textareasCountScaled",
1176
+ "password-change--selectsCountScaled",
1177
+ "password-change--disabledCountScaled",
1178
+ "password-change--radiosCountScaled",
1179
+ "password-change--readOnlyCountScaled",
1180
+ "password-change--formComplexityScaled",
1181
+ "password-change--visibleIdentifiersCountScaled",
1182
+ "password-change--hiddenIdentifiersCountScaled",
1183
+ "password-change--usernamesCountScaled",
1184
+ "password-change--emailsCountScaled",
1185
+ "password-change--hiddenCountScaled",
1186
+ "password-change--hiddenPasswordsCountScaled",
1187
+ "password-change--submitsCountScaled",
1188
+ "password-change--identitiesCountScaled",
1189
+ "password-change--ccsCountScaled",
1190
+ "password-change--hasTels",
1191
+ "password-change--hasOAuth",
1192
+ "password-change--hasCaptchas",
1193
+ "password-change--hasFiles",
1194
+ "password-change--hasDate",
1195
+ "password-change--hasNumber",
1196
+ "password-change--oneVisibleField",
1197
+ "password-change--twoVisibleFields",
1198
+ "password-change--threeOrMoreVisibleFields",
1199
+ "password-change--noPasswords",
1200
+ "password-change--onePassword",
1201
+ "password-change--twoPasswords",
1202
+ "password-change--threeOrMorePasswords",
1203
+ "password-change--noIdentifiers",
1204
+ "password-change--oneIdentifier",
1205
+ "password-change--twoIdentifiers",
1206
+ "password-change--threeOrMoreIdentifiers",
1207
+ "password-change--autofocusedIsIdentifier",
1208
+ "password-change--autofocusedIsPassword",
1209
+ "password-change--visibleRatio",
1210
+ "password-change--inputRatio",
1211
+ "password-change--hiddenRatio",
1212
+ "password-change--identifierRatio",
1213
+ "password-change--emailRatio",
1214
+ "password-change--usernameRatio",
1215
+ "password-change--passwordRatio",
1216
+ "password-change--disabledRatio",
1217
+ "password-change--requiredRatio",
1218
+ "password-change--checkboxRatio",
1219
+ "password-change--hiddenIdentifierRatio",
1220
+ "password-change--hiddenPasswordRatio",
1221
+ "password-change--pageLogin",
1222
+ "password-change--formTextLogin",
1223
+ "password-change--formAttrsLogin",
1224
+ "password-change--headingsLogin",
1225
+ "password-change--layoutLogin",
1226
+ "password-change--rememberMeCheckbox",
1227
+ "password-change--troubleLink",
1228
+ "password-change--submitLogin",
1229
+ "password-change--pageRegister",
1230
+ "password-change--formTextRegister",
1231
+ "password-change--formAttrsRegister",
1232
+ "password-change--headingsRegister",
1233
+ "password-change--layoutRegister",
1234
+ "password-change--pwNewRegister",
1235
+ "password-change--pwConfirmRegister",
1236
+ "password-change--submitRegister",
1237
+ "password-change--TOSRef",
1238
+ "password-change--pagePwReset",
1239
+ "password-change--formTextPwReset",
1240
+ "password-change--formAttrsPwReset",
1241
+ "password-change--headingsPwReset",
1242
+ "password-change--layoutPwReset",
1243
+ "password-change--pageRecovery",
1244
+ "password-change--formTextRecovery",
1245
+ "password-change--formAttrsRecovery",
1246
+ "password-change--headingsRecovery",
1247
+ "password-change--layoutRecovery",
1248
+ "password-change--identifierRecovery",
1249
+ "password-change--submitRecovery",
1250
+ "password-change--formTextMFA",
1251
+ "password-change--formAttrsMFA",
1252
+ "password-change--inputsMFA",
1253
+ "password-change--newsletterForm",
1254
+ "password-change--searchForm",
1255
+ "password-change--multistepForm",
1256
+ "password-change--multiAuthForm",
1257
+ "password-change--multistepForm,multiAuthForm",
1258
+ "password-change--visibleRatio,visibleFieldsCountScaled",
1259
+ "password-change--visibleRatio,visibleIdentifiersCountScaled",
1260
+ "password-change--visibleRatio,visiblePasswordsCountScaled",
1261
+ "password-change--visibleRatio,hiddenIdentifiersCountScaled",
1262
+ "password-change--visibleRatio,hiddenPasswordsCountScaled",
1263
+ "password-change--visibleRatio,multiAuthForm",
1264
+ "password-change--visibleRatio,multistepForm",
1265
+ "password-change--identifierRatio,visibleFieldsCountScaled",
1266
+ "password-change--identifierRatio,visibleIdentifiersCountScaled",
1267
+ "password-change--identifierRatio,visiblePasswordsCountScaled",
1268
+ "password-change--identifierRatio,hiddenIdentifiersCountScaled",
1269
+ "password-change--identifierRatio,hiddenPasswordsCountScaled",
1270
+ "password-change--identifierRatio,multiAuthForm",
1271
+ "password-change--identifierRatio,multistepForm",
1272
+ "password-change--passwordRatio,visibleFieldsCountScaled",
1273
+ "password-change--passwordRatio,visibleIdentifiersCountScaled",
1274
+ "password-change--passwordRatio,visiblePasswordsCountScaled",
1275
+ "password-change--passwordRatio,hiddenIdentifiersCountScaled",
1276
+ "password-change--passwordRatio,hiddenPasswordsCountScaled",
1277
+ "password-change--passwordRatio,multiAuthForm",
1278
+ "password-change--passwordRatio,multistepForm",
1279
+ "password-change--requiredRatio,visibleFieldsCountScaled",
1280
+ "password-change--requiredRatio,visibleIdentifiersCountScaled",
1281
+ "password-change--requiredRatio,visiblePasswordsCountScaled",
1282
+ "password-change--requiredRatio,hiddenIdentifiersCountScaled",
1283
+ "password-change--requiredRatio,hiddenPasswordsCountScaled",
1284
+ "password-change--requiredRatio,multiAuthForm",
1285
+ "password-change--requiredRatio,multistepForm"
1286
+ ],
1287
+ "feature_types": [
1288
+ "float",
1289
+ "float",
1290
+ "float",
1291
+ "float",
1292
+ "float",
1293
+ "float",
1294
+ "float",
1295
+ "float",
1296
+ "float",
1297
+ "float",
1298
+ "float",
1299
+ "float",
1300
+ "float",
1301
+ "float",
1302
+ "float",
1303
+ "float",
1304
+ "float",
1305
+ "float",
1306
+ "float",
1307
+ "int",
1308
+ "int",
1309
+ "int",
1310
+ "int",
1311
+ "int",
1312
+ "int",
1313
+ "int",
1314
+ "int",
1315
+ "int",
1316
+ "int",
1317
+ "int",
1318
+ "int",
1319
+ "int",
1320
+ "int",
1321
+ "int",
1322
+ "int",
1323
+ "int",
1324
+ "int",
1325
+ "int",
1326
+ "float",
1327
+ "float",
1328
+ "float",
1329
+ "float",
1330
+ "float",
1331
+ "float",
1332
+ "float",
1333
+ "float",
1334
+ "float",
1335
+ "float",
1336
+ "float",
1337
+ "float",
1338
+ "int",
1339
+ "int",
1340
+ "int",
1341
+ "int",
1342
+ "int",
1343
+ "int",
1344
+ "int",
1345
+ "int",
1346
+ "int",
1347
+ "int",
1348
+ "int",
1349
+ "int",
1350
+ "int",
1351
+ "int",
1352
+ "int",
1353
+ "int",
1354
+ "int",
1355
+ "int",
1356
+ "int",
1357
+ "int",
1358
+ "int",
1359
+ "int",
1360
+ "int",
1361
+ "int",
1362
+ "int",
1363
+ "int",
1364
+ "int",
1365
+ "int",
1366
+ "int",
1367
+ "int",
1368
+ "int",
1369
+ "int",
1370
+ "int",
1371
+ "int",
1372
+ "int",
1373
+ "int",
1374
+ "int",
1375
+ "float",
1376
+ "float",
1377
+ "float",
1378
+ "float",
1379
+ "float",
1380
+ "float",
1381
+ "float",
1382
+ "float",
1383
+ "float",
1384
+ "float",
1385
+ "float",
1386
+ "float",
1387
+ "float",
1388
+ "float",
1389
+ "float",
1390
+ "float",
1391
+ "float",
1392
+ "float",
1393
+ "float",
1394
+ "float",
1395
+ "float",
1396
+ "float",
1397
+ "float",
1398
+ "float",
1399
+ "float",
1400
+ "float",
1401
+ "float",
1402
+ "float"
1403
+ ],
1404
+ "tree_info": [
1405
+ 0,
1406
+ 0,
1407
+ 0,
1408
+ 0,
1409
+ 0,
1410
+ 0,
1411
+ 0,
1412
+ 0,
1413
+ 0,
1414
+ 0,
1415
+ 0,
1416
+ 0,
1417
+ 0,
1418
+ 0
1419
+ ],
1420
+ "num_class": 0,
1421
+ "objective": "binary:logistic"
1422
+ }