@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,1456 @@
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
+ 0,
21
+ 0
22
+ ],
23
+ "id": 0,
24
+ "left_children": [
25
+ 1,
26
+ 3,
27
+ 5,
28
+ 7,
29
+ -1,
30
+ -1,
31
+ -1,
32
+ 9,
33
+ 11,
34
+ -1,
35
+ -1,
36
+ -1,
37
+ -1
38
+ ],
39
+ "right_children": [
40
+ 2,
41
+ 4,
42
+ 6,
43
+ 8,
44
+ -1,
45
+ -1,
46
+ -1,
47
+ 10,
48
+ 12,
49
+ -1,
50
+ -1,
51
+ -1,
52
+ -1
53
+ ],
54
+ "split_conditions": [
55
+ 1,
56
+ 1,
57
+ 1,
58
+ 1,
59
+ 0.6279956,
60
+ 0.6282606,
61
+ -0.45295605,
62
+ 1,
63
+ 1,
64
+ -0.765426,
65
+ 0.4115614,
66
+ 0.56506383,
67
+ -0.45295605
68
+ ],
69
+ "split_indices": [
70
+ 1,
71
+ 7,
72
+ 5,
73
+ 10,
74
+ 0,
75
+ 0,
76
+ 0,
77
+ 11,
78
+ 8,
79
+ 0,
80
+ 0,
81
+ 0,
82
+ 0
83
+ ],
84
+ "split_type": [
85
+ 0,
86
+ 0,
87
+ 0,
88
+ 0,
89
+ 0,
90
+ 0,
91
+ 0,
92
+ 0,
93
+ 0,
94
+ 0,
95
+ 0,
96
+ 0,
97
+ 0
98
+ ]
99
+ },
100
+ {
101
+ "categories_nodes": [],
102
+ "categories_segments": [],
103
+ "categories_sizes": [],
104
+ "categories": [],
105
+ "default_left": [
106
+ 0,
107
+ 0,
108
+ 0,
109
+ 0,
110
+ 0,
111
+ 0,
112
+ 0,
113
+ 0,
114
+ 0,
115
+ 0,
116
+ 0
117
+ ],
118
+ "id": 1,
119
+ "left_children": [
120
+ 1,
121
+ 3,
122
+ -1,
123
+ 5,
124
+ 7,
125
+ 9,
126
+ -1,
127
+ -1,
128
+ -1,
129
+ -1,
130
+ -1
131
+ ],
132
+ "right_children": [
133
+ 2,
134
+ 4,
135
+ -1,
136
+ 6,
137
+ 8,
138
+ 10,
139
+ -1,
140
+ -1,
141
+ -1,
142
+ -1,
143
+ -1
144
+ ],
145
+ "split_conditions": [
146
+ 1,
147
+ 1,
148
+ 0.49847573,
149
+ 1,
150
+ 1,
151
+ 1,
152
+ 0.43484777,
153
+ 0.4760943,
154
+ -0.36005902,
155
+ -0.5450193,
156
+ 0.30453774
157
+ ],
158
+ "split_indices": [
159
+ 7,
160
+ 10,
161
+ 0,
162
+ 11,
163
+ 8,
164
+ 0,
165
+ 0,
166
+ 0,
167
+ 0,
168
+ 0,
169
+ 0
170
+ ],
171
+ "split_type": [
172
+ 0,
173
+ 0,
174
+ 0,
175
+ 0,
176
+ 0,
177
+ 0,
178
+ 0,
179
+ 0,
180
+ 0,
181
+ 0,
182
+ 0
183
+ ]
184
+ },
185
+ {
186
+ "categories_nodes": [],
187
+ "categories_segments": [],
188
+ "categories_sizes": [],
189
+ "categories": [],
190
+ "default_left": [
191
+ 0,
192
+ 0,
193
+ 0,
194
+ 0,
195
+ 0,
196
+ 0,
197
+ 0,
198
+ 0,
199
+ 0,
200
+ 0,
201
+ 0
202
+ ],
203
+ "id": 2,
204
+ "left_children": [
205
+ 1,
206
+ 3,
207
+ -1,
208
+ 5,
209
+ 7,
210
+ 9,
211
+ -1,
212
+ -1,
213
+ -1,
214
+ -1,
215
+ -1
216
+ ],
217
+ "right_children": [
218
+ 2,
219
+ 4,
220
+ -1,
221
+ 6,
222
+ 8,
223
+ 10,
224
+ -1,
225
+ -1,
226
+ -1,
227
+ -1,
228
+ -1
229
+ ],
230
+ "split_conditions": [
231
+ 1,
232
+ 1,
233
+ 0.435725,
234
+ 1,
235
+ 1,
236
+ 1,
237
+ 0.37218967,
238
+ 0.40815982,
239
+ -0.30134422,
240
+ -0.4623622,
241
+ 0.26362088
242
+ ],
243
+ "split_indices": [
244
+ 7,
245
+ 10,
246
+ 0,
247
+ 11,
248
+ 8,
249
+ 0,
250
+ 0,
251
+ 0,
252
+ 0,
253
+ 0,
254
+ 0
255
+ ],
256
+ "split_type": [
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
+ 0,
288
+ 0
289
+ ],
290
+ "id": 3,
291
+ "left_children": [
292
+ 1,
293
+ 3,
294
+ -1,
295
+ 5,
296
+ 7,
297
+ 9,
298
+ -1,
299
+ 11,
300
+ -1,
301
+ -1,
302
+ -1,
303
+ -1,
304
+ -1
305
+ ],
306
+ "right_children": [
307
+ 2,
308
+ 4,
309
+ -1,
310
+ 6,
311
+ 8,
312
+ 10,
313
+ -1,
314
+ 12,
315
+ -1,
316
+ -1,
317
+ -1,
318
+ -1,
319
+ -1
320
+ ],
321
+ "split_conditions": [
322
+ 1,
323
+ 1,
324
+ 0.39973986,
325
+ 1,
326
+ 1,
327
+ 1,
328
+ 0.3291401,
329
+ 1,
330
+ -0.25953963,
331
+ -0.4194922,
332
+ 0.23178919,
333
+ 0.19147989,
334
+ 0.37832677
335
+ ],
336
+ "split_indices": [
337
+ 7,
338
+ 10,
339
+ 0,
340
+ 11,
341
+ 8,
342
+ 0,
343
+ 0,
344
+ 9,
345
+ 0,
346
+ 0,
347
+ 0,
348
+ 0,
349
+ 0
350
+ ],
351
+ "split_type": [
352
+ 0,
353
+ 0,
354
+ 0,
355
+ 0,
356
+ 0,
357
+ 0,
358
+ 0,
359
+ 0,
360
+ 0,
361
+ 0,
362
+ 0,
363
+ 0,
364
+ 0
365
+ ]
366
+ },
367
+ {
368
+ "categories_nodes": [],
369
+ "categories_segments": [],
370
+ "categories_sizes": [],
371
+ "categories": [],
372
+ "default_left": [
373
+ 0,
374
+ 0,
375
+ 0,
376
+ 0,
377
+ 0,
378
+ 0,
379
+ 0,
380
+ 0,
381
+ 0,
382
+ 0,
383
+ 0,
384
+ 0,
385
+ 0,
386
+ 0,
387
+ 0,
388
+ 0,
389
+ 0,
390
+ 0,
391
+ 0
392
+ ],
393
+ "id": 4,
394
+ "left_children": [
395
+ 1,
396
+ 3,
397
+ 5,
398
+ 7,
399
+ -1,
400
+ 9,
401
+ -1,
402
+ -1,
403
+ 11,
404
+ 13,
405
+ -1,
406
+ 15,
407
+ -1,
408
+ 17,
409
+ -1,
410
+ -1,
411
+ -1,
412
+ -1,
413
+ -1
414
+ ],
415
+ "right_children": [
416
+ 2,
417
+ 4,
418
+ 6,
419
+ 8,
420
+ -1,
421
+ 10,
422
+ -1,
423
+ -1,
424
+ 12,
425
+ 14,
426
+ -1,
427
+ 16,
428
+ -1,
429
+ 18,
430
+ -1,
431
+ -1,
432
+ -1,
433
+ -1,
434
+ -1
435
+ ],
436
+ "split_conditions": [
437
+ 1,
438
+ 1,
439
+ 1,
440
+ 1,
441
+ 0.36858696,
442
+ 1,
443
+ 0.38449332,
444
+ -0.38359073,
445
+ 1,
446
+ 1,
447
+ 0.36679152,
448
+ 1,
449
+ -0.2274186,
450
+ 1,
451
+ 0.270293,
452
+ 0.3329295,
453
+ 0.001822921,
454
+ -0.33597496,
455
+ 0.2563634
456
+ ],
457
+ "split_indices": [
458
+ 1,
459
+ 7,
460
+ 11,
461
+ 10,
462
+ 0,
463
+ 0,
464
+ 0,
465
+ 0,
466
+ 8,
467
+ 7,
468
+ 0,
469
+ 3,
470
+ 0,
471
+ 9,
472
+ 0,
473
+ 0,
474
+ 0,
475
+ 0,
476
+ 0
477
+ ],
478
+ "split_type": [
479
+ 0,
480
+ 0,
481
+ 0,
482
+ 0,
483
+ 0,
484
+ 0,
485
+ 0,
486
+ 0,
487
+ 0,
488
+ 0,
489
+ 0,
490
+ 0,
491
+ 0,
492
+ 0,
493
+ 0,
494
+ 0,
495
+ 0,
496
+ 0,
497
+ 0
498
+ ]
499
+ },
500
+ {
501
+ "categories_nodes": [],
502
+ "categories_segments": [],
503
+ "categories_sizes": [],
504
+ "categories": [],
505
+ "default_left": [
506
+ 0,
507
+ 0,
508
+ 0,
509
+ 0,
510
+ 0,
511
+ 0,
512
+ 0,
513
+ 0,
514
+ 0,
515
+ 0,
516
+ 0,
517
+ 0,
518
+ 0
519
+ ],
520
+ "id": 5,
521
+ "left_children": [
522
+ 1,
523
+ 3,
524
+ -1,
525
+ 5,
526
+ 7,
527
+ 9,
528
+ -1,
529
+ -1,
530
+ 11,
531
+ -1,
532
+ -1,
533
+ -1,
534
+ -1
535
+ ],
536
+ "right_children": [
537
+ 2,
538
+ 4,
539
+ -1,
540
+ 6,
541
+ 8,
542
+ 10,
543
+ -1,
544
+ -1,
545
+ 12,
546
+ -1,
547
+ -1,
548
+ -1,
549
+ -1
550
+ ],
551
+ "split_conditions": [
552
+ 1,
553
+ 1,
554
+ 0.35834226,
555
+ 1,
556
+ 1,
557
+ 1,
558
+ 0.31709152,
559
+ 0.3540772,
560
+ 1,
561
+ -0.37665626,
562
+ -0.12744606,
563
+ 0.021637218,
564
+ 0.25855684
565
+ ],
566
+ "split_indices": [
567
+ 7,
568
+ 9,
569
+ 0,
570
+ 11,
571
+ 3,
572
+ 1,
573
+ 0,
574
+ 0,
575
+ 1,
576
+ 0,
577
+ 0,
578
+ 0,
579
+ 0
580
+ ],
581
+ "split_type": [
582
+ 0,
583
+ 0,
584
+ 0,
585
+ 0,
586
+ 0,
587
+ 0,
588
+ 0,
589
+ 0,
590
+ 0,
591
+ 0,
592
+ 0,
593
+ 0,
594
+ 0
595
+ ]
596
+ },
597
+ {
598
+ "categories_nodes": [],
599
+ "categories_segments": [],
600
+ "categories_sizes": [],
601
+ "categories": [],
602
+ "default_left": [
603
+ 0,
604
+ 0,
605
+ 0,
606
+ 0,
607
+ 0,
608
+ 0,
609
+ 0,
610
+ 0,
611
+ 0,
612
+ 0,
613
+ 0,
614
+ 0,
615
+ 0,
616
+ 0,
617
+ 0,
618
+ 0,
619
+ 0
620
+ ],
621
+ "id": 6,
622
+ "left_children": [
623
+ 1,
624
+ 3,
625
+ 5,
626
+ 7,
627
+ 9,
628
+ -1,
629
+ 11,
630
+ 13,
631
+ -1,
632
+ -1,
633
+ 15,
634
+ -1,
635
+ -1,
636
+ -1,
637
+ -1,
638
+ -1,
639
+ -1
640
+ ],
641
+ "right_children": [
642
+ 2,
643
+ 4,
644
+ 6,
645
+ 8,
646
+ 10,
647
+ -1,
648
+ 12,
649
+ 14,
650
+ -1,
651
+ -1,
652
+ 16,
653
+ -1,
654
+ -1,
655
+ -1,
656
+ -1,
657
+ -1,
658
+ -1
659
+ ],
660
+ "split_conditions": [
661
+ 1,
662
+ 1,
663
+ 1,
664
+ 1,
665
+ 1,
666
+ 0.35896024,
667
+ 1,
668
+ 1,
669
+ 0.28960901,
670
+ 0.33670735,
671
+ 1,
672
+ -0.009205004,
673
+ 0.27296194,
674
+ -0.36442822,
675
+ -0.093328886,
676
+ 0.016868994,
677
+ 0.23447122
678
+ ],
679
+ "split_indices": [
680
+ 7,
681
+ 9,
682
+ 3,
683
+ 11,
684
+ 3,
685
+ 0,
686
+ 11,
687
+ 1,
688
+ 0,
689
+ 0,
690
+ 1,
691
+ 0,
692
+ 0,
693
+ 0,
694
+ 0,
695
+ 0,
696
+ 0
697
+ ],
698
+ "split_type": [
699
+ 0,
700
+ 0,
701
+ 0,
702
+ 0,
703
+ 0,
704
+ 0,
705
+ 0,
706
+ 0,
707
+ 0,
708
+ 0,
709
+ 0,
710
+ 0,
711
+ 0,
712
+ 0,
713
+ 0,
714
+ 0,
715
+ 0
716
+ ]
717
+ },
718
+ {
719
+ "categories_nodes": [],
720
+ "categories_segments": [],
721
+ "categories_sizes": [],
722
+ "categories": [],
723
+ "default_left": [
724
+ 0,
725
+ 0,
726
+ 0,
727
+ 0,
728
+ 0,
729
+ 0,
730
+ 0,
731
+ 0,
732
+ 0,
733
+ 0,
734
+ 0,
735
+ 0,
736
+ 0,
737
+ 0,
738
+ 0,
739
+ 0,
740
+ 0
741
+ ],
742
+ "id": 7,
743
+ "left_children": [
744
+ 1,
745
+ 3,
746
+ 5,
747
+ 7,
748
+ 9,
749
+ -1,
750
+ 11,
751
+ 13,
752
+ -1,
753
+ -1,
754
+ 15,
755
+ -1,
756
+ -1,
757
+ -1,
758
+ -1,
759
+ -1,
760
+ -1
761
+ ],
762
+ "right_children": [
763
+ 2,
764
+ 4,
765
+ 6,
766
+ 8,
767
+ 10,
768
+ -1,
769
+ 12,
770
+ 14,
771
+ -1,
772
+ -1,
773
+ 16,
774
+ -1,
775
+ -1,
776
+ -1,
777
+ -1,
778
+ -1,
779
+ -1
780
+ ],
781
+ "split_conditions": [
782
+ 1,
783
+ 1,
784
+ 1,
785
+ 1,
786
+ 1,
787
+ 0.3490894,
788
+ 1,
789
+ 1,
790
+ 0.26440325,
791
+ 0.32014644,
792
+ 1,
793
+ -0.007098558,
794
+ 0.25066143,
795
+ -0.35477605,
796
+ -0.06845682,
797
+ 0.013136316,
798
+ 0.21234496
799
+ ],
800
+ "split_indices": [
801
+ 7,
802
+ 9,
803
+ 3,
804
+ 11,
805
+ 3,
806
+ 0,
807
+ 11,
808
+ 1,
809
+ 0,
810
+ 0,
811
+ 1,
812
+ 0,
813
+ 0,
814
+ 0,
815
+ 0,
816
+ 0,
817
+ 0
818
+ ],
819
+ "split_type": [
820
+ 0,
821
+ 0,
822
+ 0,
823
+ 0,
824
+ 0,
825
+ 0,
826
+ 0,
827
+ 0,
828
+ 0,
829
+ 0,
830
+ 0,
831
+ 0,
832
+ 0,
833
+ 0,
834
+ 0,
835
+ 0,
836
+ 0
837
+ ]
838
+ },
839
+ {
840
+ "categories_nodes": [],
841
+ "categories_segments": [],
842
+ "categories_sizes": [],
843
+ "categories": [],
844
+ "default_left": [
845
+ 0,
846
+ 0,
847
+ 0,
848
+ 0,
849
+ 0,
850
+ 0,
851
+ 0,
852
+ 0,
853
+ 0,
854
+ 0,
855
+ 0,
856
+ 0,
857
+ 0
858
+ ],
859
+ "id": 8,
860
+ "left_children": [
861
+ 1,
862
+ 3,
863
+ -1,
864
+ 5,
865
+ 7,
866
+ 9,
867
+ 11,
868
+ -1,
869
+ -1,
870
+ -1,
871
+ -1,
872
+ -1,
873
+ -1
874
+ ],
875
+ "right_children": [
876
+ 2,
877
+ 4,
878
+ -1,
879
+ 6,
880
+ 8,
881
+ 10,
882
+ 12,
883
+ -1,
884
+ -1,
885
+ -1,
886
+ -1,
887
+ -1,
888
+ -1
889
+ ],
890
+ "split_conditions": [
891
+ 1,
892
+ 1,
893
+ 0.34380475,
894
+ 1,
895
+ 1,
896
+ 1,
897
+ 1,
898
+ 0.31308103,
899
+ -0.005477127,
900
+ -0.3462502,
901
+ -0.0502811,
902
+ 0.25335923,
903
+ 0.016284773
904
+ ],
905
+ "split_indices": [
906
+ 11,
907
+ 7,
908
+ 0,
909
+ 9,
910
+ 3,
911
+ 1,
912
+ 3,
913
+ 0,
914
+ 0,
915
+ 0,
916
+ 0,
917
+ 0,
918
+ 0
919
+ ],
920
+ "split_type": [
921
+ 0,
922
+ 0,
923
+ 0,
924
+ 0,
925
+ 0,
926
+ 0,
927
+ 0,
928
+ 0,
929
+ 0,
930
+ 0,
931
+ 0,
932
+ 0,
933
+ 0
934
+ ]
935
+ },
936
+ {
937
+ "categories_nodes": [],
938
+ "categories_segments": [],
939
+ "categories_sizes": [],
940
+ "categories": [],
941
+ "default_left": [
942
+ 0,
943
+ 0,
944
+ 0,
945
+ 0,
946
+ 0,
947
+ 0,
948
+ 0,
949
+ 0,
950
+ 0,
951
+ 0,
952
+ 0
953
+ ],
954
+ "id": 9,
955
+ "left_children": [
956
+ 1,
957
+ 3,
958
+ -1,
959
+ 5,
960
+ 7,
961
+ 9,
962
+ -1,
963
+ -1,
964
+ -1,
965
+ -1,
966
+ -1
967
+ ],
968
+ "right_children": [
969
+ 2,
970
+ 4,
971
+ -1,
972
+ 6,
973
+ 8,
974
+ 10,
975
+ -1,
976
+ -1,
977
+ -1,
978
+ -1,
979
+ -1
980
+ ],
981
+ "split_conditions": [
982
+ 1,
983
+ 1,
984
+ 0.3335203,
985
+ 1,
986
+ 1,
987
+ 1,
988
+ 0.26104283,
989
+ 0.29709503,
990
+ -0.0042284136,
991
+ -0.33493313,
992
+ 0.08446507
993
+ ],
994
+ "split_indices": [
995
+ 11,
996
+ 7,
997
+ 0,
998
+ 0,
999
+ 3,
1000
+ 9,
1001
+ 0,
1002
+ 0,
1003
+ 0,
1004
+ 0,
1005
+ 0
1006
+ ],
1007
+ "split_type": [
1008
+ 0,
1009
+ 0,
1010
+ 0,
1011
+ 0,
1012
+ 0,
1013
+ 0,
1014
+ 0,
1015
+ 0,
1016
+ 0,
1017
+ 0,
1018
+ 0
1019
+ ]
1020
+ },
1021
+ {
1022
+ "categories_nodes": [],
1023
+ "categories_segments": [],
1024
+ "categories_sizes": [],
1025
+ "categories": [],
1026
+ "default_left": [
1027
+ 0,
1028
+ 0,
1029
+ 0,
1030
+ 0,
1031
+ 0,
1032
+ 0,
1033
+ 0,
1034
+ 0,
1035
+ 0,
1036
+ 0,
1037
+ 0,
1038
+ 0,
1039
+ 0
1040
+ ],
1041
+ "id": 10,
1042
+ "left_children": [
1043
+ 1,
1044
+ 3,
1045
+ -1,
1046
+ 5,
1047
+ 7,
1048
+ 9,
1049
+ -1,
1050
+ -1,
1051
+ -1,
1052
+ -1,
1053
+ 11,
1054
+ -1,
1055
+ -1
1056
+ ],
1057
+ "right_children": [
1058
+ 2,
1059
+ 4,
1060
+ -1,
1061
+ 6,
1062
+ 8,
1063
+ 10,
1064
+ -1,
1065
+ -1,
1066
+ -1,
1067
+ -1,
1068
+ 12,
1069
+ -1,
1070
+ -1
1071
+ ],
1072
+ "split_conditions": [
1073
+ 1,
1074
+ 1,
1075
+ 0.32232478,
1076
+ 1,
1077
+ 1,
1078
+ 1,
1079
+ 0.23644498,
1080
+ 0.27964386,
1081
+ -0.003265477,
1082
+ -0.33229145,
1083
+ 1,
1084
+ -0.054057013,
1085
+ 0.06702688
1086
+ ],
1087
+ "split_indices": [
1088
+ 11,
1089
+ 7,
1090
+ 0,
1091
+ 0,
1092
+ 3,
1093
+ 10,
1094
+ 0,
1095
+ 0,
1096
+ 0,
1097
+ 0,
1098
+ 9,
1099
+ 0,
1100
+ 0
1101
+ ],
1102
+ "split_type": [
1103
+ 0,
1104
+ 0,
1105
+ 0,
1106
+ 0,
1107
+ 0,
1108
+ 0,
1109
+ 0,
1110
+ 0,
1111
+ 0,
1112
+ 0,
1113
+ 0,
1114
+ 0,
1115
+ 0
1116
+ ]
1117
+ },
1118
+ {
1119
+ "categories_nodes": [],
1120
+ "categories_segments": [],
1121
+ "categories_sizes": [],
1122
+ "categories": [],
1123
+ "default_left": [
1124
+ 0,
1125
+ 0,
1126
+ 0,
1127
+ 0,
1128
+ 0,
1129
+ 0,
1130
+ 0,
1131
+ 0,
1132
+ 0,
1133
+ 0,
1134
+ 0,
1135
+ 0,
1136
+ 0,
1137
+ 0,
1138
+ 0
1139
+ ],
1140
+ "id": 11,
1141
+ "left_children": [
1142
+ 1,
1143
+ 3,
1144
+ -1,
1145
+ 5,
1146
+ -1,
1147
+ 7,
1148
+ 9,
1149
+ -1,
1150
+ 11,
1151
+ 13,
1152
+ -1,
1153
+ -1,
1154
+ -1,
1155
+ -1,
1156
+ -1
1157
+ ],
1158
+ "right_children": [
1159
+ 2,
1160
+ 4,
1161
+ -1,
1162
+ 6,
1163
+ -1,
1164
+ 8,
1165
+ 10,
1166
+ -1,
1167
+ 12,
1168
+ 14,
1169
+ -1,
1170
+ -1,
1171
+ -1,
1172
+ -1,
1173
+ -1
1174
+ ],
1175
+ "split_conditions": [
1176
+ 1,
1177
+ 1,
1178
+ 0.30961385,
1179
+ 1,
1180
+ 0.2697098,
1181
+ 1,
1182
+ 1,
1183
+ -0.32143724,
1184
+ 1,
1185
+ 1,
1186
+ -0.014289478,
1187
+ 0.19769453,
1188
+ -0.14585403,
1189
+ -0.006141806,
1190
+ 0.19901527
1191
+ ],
1192
+ "split_indices": [
1193
+ 11,
1194
+ 0,
1195
+ 0,
1196
+ 10,
1197
+ 0,
1198
+ 7,
1199
+ 3,
1200
+ 0,
1201
+ 3,
1202
+ 9,
1203
+ 0,
1204
+ 0,
1205
+ 0,
1206
+ 0,
1207
+ 0
1208
+ ],
1209
+ "split_type": [
1210
+ 0,
1211
+ 0,
1212
+ 0,
1213
+ 0,
1214
+ 0,
1215
+ 0,
1216
+ 0,
1217
+ 0,
1218
+ 0,
1219
+ 0,
1220
+ 0,
1221
+ 0,
1222
+ 0,
1223
+ 0,
1224
+ 0
1225
+ ]
1226
+ },
1227
+ {
1228
+ "categories_nodes": [],
1229
+ "categories_segments": [],
1230
+ "categories_sizes": [],
1231
+ "categories": [],
1232
+ "default_left": [
1233
+ 0,
1234
+ 0,
1235
+ 0,
1236
+ 0,
1237
+ 0,
1238
+ 0,
1239
+ 0,
1240
+ 0,
1241
+ 0,
1242
+ 0,
1243
+ 0,
1244
+ 0,
1245
+ 0
1246
+ ],
1247
+ "id": 12,
1248
+ "left_children": [
1249
+ 1,
1250
+ 3,
1251
+ -1,
1252
+ 5,
1253
+ -1,
1254
+ 7,
1255
+ 9,
1256
+ -1,
1257
+ 11,
1258
+ -1,
1259
+ -1,
1260
+ -1,
1261
+ -1
1262
+ ],
1263
+ "right_children": [
1264
+ 2,
1265
+ 4,
1266
+ -1,
1267
+ 6,
1268
+ -1,
1269
+ 8,
1270
+ 10,
1271
+ -1,
1272
+ 12,
1273
+ -1,
1274
+ -1,
1275
+ -1,
1276
+ -1
1277
+ ],
1278
+ "split_conditions": [
1279
+ 1,
1280
+ 1,
1281
+ 0.29503098,
1282
+ 1,
1283
+ 0.24791515,
1284
+ 1,
1285
+ 1,
1286
+ -0.30890015,
1287
+ 1,
1288
+ 0.23543267,
1289
+ -0.12590045,
1290
+ -0.032550726,
1291
+ 0.053181283
1292
+ ],
1293
+ "split_indices": [
1294
+ 11,
1295
+ 0,
1296
+ 0,
1297
+ 7,
1298
+ 0,
1299
+ 10,
1300
+ 1,
1301
+ 0,
1302
+ 1,
1303
+ 0,
1304
+ 0,
1305
+ 0,
1306
+ 0
1307
+ ],
1308
+ "split_type": [
1309
+ 0,
1310
+ 0,
1311
+ 0,
1312
+ 0,
1313
+ 0,
1314
+ 0,
1315
+ 0,
1316
+ 0,
1317
+ 0,
1318
+ 0,
1319
+ 0,
1320
+ 0,
1321
+ 0
1322
+ ]
1323
+ },
1324
+ {
1325
+ "categories_nodes": [],
1326
+ "categories_segments": [],
1327
+ "categories_sizes": [],
1328
+ "categories": [],
1329
+ "default_left": [
1330
+ 0,
1331
+ 0,
1332
+ 0,
1333
+ 0,
1334
+ 0,
1335
+ 0,
1336
+ 0,
1337
+ 0,
1338
+ 0,
1339
+ 0,
1340
+ 0
1341
+ ],
1342
+ "id": 13,
1343
+ "left_children": [
1344
+ 1,
1345
+ 3,
1346
+ -1,
1347
+ 5,
1348
+ 7,
1349
+ 9,
1350
+ -1,
1351
+ -1,
1352
+ -1,
1353
+ -1,
1354
+ -1
1355
+ ],
1356
+ "right_children": [
1357
+ 2,
1358
+ 4,
1359
+ -1,
1360
+ 6,
1361
+ 8,
1362
+ 10,
1363
+ -1,
1364
+ -1,
1365
+ -1,
1366
+ -1,
1367
+ -1
1368
+ ],
1369
+ "split_conditions": [
1370
+ 1,
1371
+ 1,
1372
+ -0.28752795,
1373
+ 1,
1374
+ 1,
1375
+ 1,
1376
+ 0.23139681,
1377
+ 0.28416407,
1378
+ -0.029981904,
1379
+ -0.23408532,
1380
+ 0.016781397
1381
+ ],
1382
+ "split_indices": [
1383
+ 5,
1384
+ 1,
1385
+ 0,
1386
+ 7,
1387
+ 3,
1388
+ 9,
1389
+ 0,
1390
+ 0,
1391
+ 0,
1392
+ 0,
1393
+ 0
1394
+ ],
1395
+ "split_type": [
1396
+ 0,
1397
+ 0,
1398
+ 0,
1399
+ 0,
1400
+ 0,
1401
+ 0,
1402
+ 0,
1403
+ 0,
1404
+ 0,
1405
+ 0,
1406
+ 0
1407
+ ]
1408
+ }
1409
+ ],
1410
+ "feature_names": [
1411
+ "email--exactAttrEmail",
1412
+ "email--attrEmail",
1413
+ "email--autocompleteEmail",
1414
+ "email--autocompleteOff",
1415
+ "email--fieldCC",
1416
+ "email--fieldIdentity",
1417
+ "email--isSearchField",
1418
+ "email--labelEmail",
1419
+ "email--mfaOutlier",
1420
+ "email--placeholderEmail",
1421
+ "email--textEmail",
1422
+ "email--typeEmail"
1423
+ ],
1424
+ "feature_types": [
1425
+ "int",
1426
+ "int",
1427
+ "int",
1428
+ "int",
1429
+ "int",
1430
+ "int",
1431
+ "int",
1432
+ "int",
1433
+ "int",
1434
+ "int",
1435
+ "int",
1436
+ "int"
1437
+ ],
1438
+ "tree_info": [
1439
+ 0,
1440
+ 0,
1441
+ 0,
1442
+ 0,
1443
+ 0,
1444
+ 0,
1445
+ 0,
1446
+ 0,
1447
+ 0,
1448
+ 0,
1449
+ 0,
1450
+ 0,
1451
+ 0,
1452
+ 0
1453
+ ],
1454
+ "num_class": 0,
1455
+ "objective": "binary:logistic"
1456
+ }