@protontech/autofill 0.0.22991789 → 0.0.33690782

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/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 +17 -0
  16. package/features/feature.js +72 -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 +4427 -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 +5 -2
  38. package/index.js +10 -3
  39. package/models/perceptron/index.d.ts +2 -0
  40. package/models/perceptron/index.js +27 -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/prod_20240829/index.d.ts +2 -0
  52. package/models/prod_20240829/index.js +27 -0
  53. package/models/prod_20240829/params/email-model.json +45 -0
  54. package/models/prod_20240829/params/login-model.json +421 -0
  55. package/models/prod_20240829/params/new-password-model.json +125 -0
  56. package/models/prod_20240829/params/otp-model.json +153 -0
  57. package/models/prod_20240829/params/password-change-model.json +421 -0
  58. package/models/prod_20240829/params/password-model.json +125 -0
  59. package/models/prod_20240829/params/recovery-model.json +421 -0
  60. package/models/prod_20240829/params/register-model.json +421 -0
  61. package/models/prod_20240829/params/username-hidden-model.json +41 -0
  62. package/models/prod_20240829/params/username-model.json +45 -0
  63. package/models/random_forest/index.d.ts +2 -0
  64. package/models/random_forest/index.js +27 -0
  65. package/models/random_forest/params/email-model.json +1456 -0
  66. package/models/random_forest/params/login-model.json +4194 -0
  67. package/models/random_forest/params/new-password-model.json +1448 -0
  68. package/models/random_forest/params/otp-model.json +2004 -0
  69. package/models/random_forest/params/password-change-model.json +1422 -0
  70. package/models/random_forest/params/password-model.json +1292 -0
  71. package/models/random_forest/params/recovery-model.json +2754 -0
  72. package/models/random_forest/params/register-model.json +3678 -0
  73. package/models/random_forest/params/username-hidden-model.json +1108 -0
  74. package/models/random_forest/params/username-model.json +1052 -0
  75. package/models/v1/index.d.ts +2 -0
  76. package/models/v1/index.js +35 -0
  77. package/package.json +14 -15
  78. package/rules/v1/index.d.ts +3 -0
  79. package/rules/v1/index.js +69 -0
  80. package/rulesets.d.ts +2 -2
  81. package/rulesets.js +11 -10
  82. package/types/index.d.ts +72 -17
  83. package/types/index.js +35 -2
  84. package/utils/attributes.js +1 -1
  85. package/utils/clustering.js +18 -5
  86. package/utils/credit-card.d.ts +32 -0
  87. package/utils/credit-card.js +259 -0
  88. package/utils/credit-card.samples.spec.d.ts +1 -0
  89. package/utils/credit-card.samples.spec.js +452 -0
  90. package/utils/credit-card.spec.d.ts +1 -0
  91. package/utils/credit-card.spec.js +296 -0
  92. package/utils/dom.d.ts +3 -2
  93. package/utils/dom.js +12 -7
  94. package/utils/exclusion.d.ts +1 -0
  95. package/utils/exclusion.js +22 -10
  96. package/utils/extract.d.ts +1 -0
  97. package/utils/extract.js +26 -7
  98. package/utils/fathom.d.ts +10 -23
  99. package/utils/fathom.js +7 -12
  100. package/utils/field.d.ts +12 -4
  101. package/utils/field.js +25 -14
  102. package/utils/flags.d.ts +9 -3
  103. package/utils/flags.js +27 -9
  104. package/utils/form.d.ts +16 -5
  105. package/utils/form.js +35 -14
  106. package/utils/identity.d.ts +12 -21
  107. package/utils/identity.js +66 -41
  108. package/utils/identity.samples.spec.d.ts +1 -0
  109. package/utils/identity.samples.spec.js +28 -0
  110. package/utils/iframe.d.ts +2 -0
  111. package/utils/iframe.js +22 -0
  112. package/utils/overrides.d.ts +19 -0
  113. package/utils/overrides.js +40 -0
  114. package/utils/prepass.js +6 -4
  115. package/utils/re.d.ts +19 -4
  116. package/utils/re.js +22 -7
  117. package/utils/re.spec.d.ts +1 -0
  118. package/utils/re.spec.js +62 -0
  119. package/utils/shadow-dom.d.ts +8 -0
  120. package/utils/shadow-dom.js +53 -0
  121. package/utils/shadow-dom.spec.d.ts +1 -0
  122. package/utils/shadow-dom.spec.js +215 -0
  123. package/utils/visible.d.ts +3 -2
  124. package/utils/visible.js +42 -22
  125. package/cli.d.ts +0 -2
  126. package/cli.js +0 -128
  127. package/features/abstract.field.d.ts +0 -123
  128. package/features/abstract.field.js +0 -63
  129. package/features/abstract.form.d.ts +0 -98
  130. package/features/abstract.form.js +0 -281
  131. package/features/field.email.d.ts +0 -18
  132. package/features/field.email.js +0 -43
  133. package/features/field.otp.d.ts +0 -36
  134. package/features/field.otp.js +0 -116
  135. package/features/field.password.d.ts +0 -35
  136. package/features/field.password.js +0 -104
  137. package/features/field.username-hidden.d.ts +0 -15
  138. package/features/field.username-hidden.js +0 -40
  139. package/features/field.username.d.ts +0 -16
  140. package/features/field.username.js +0 -41
  141. package/features/form.combined.d.ts +0 -1
  142. package/features/form.combined.js +0 -6
  143. package/trainees/field.email.d.ts +0 -2
  144. package/trainees/field.email.js +0 -16
  145. package/trainees/field.identity.d.ts +0 -2
  146. package/trainees/field.identity.js +0 -9
  147. package/trainees/field.otp.d.ts +0 -2
  148. package/trainees/field.otp.js +0 -16
  149. package/trainees/field.password.current.d.ts +0 -2
  150. package/trainees/field.password.current.js +0 -16
  151. package/trainees/field.password.new.d.ts +0 -2
  152. package/trainees/field.password.new.js +0 -16
  153. package/trainees/field.username-hidden.d.ts +0 -2
  154. package/trainees/field.username-hidden.js +0 -22
  155. package/trainees/field.username.d.ts +0 -2
  156. package/trainees/field.username.js +0 -16
  157. package/trainees/form.login.d.ts +0 -2
  158. package/trainees/form.login.js +0 -16
  159. package/trainees/form.noop.d.ts +0 -1
  160. package/trainees/form.noop.js +0 -7
  161. package/trainees/form.password-change.d.ts +0 -2
  162. package/trainees/form.password-change.js +0 -16
  163. package/trainees/form.recovery.d.ts +0 -2
  164. package/trainees/form.recovery.js +0 -16
  165. package/trainees/form.register.d.ts +0 -2
  166. package/trainees/form.register.js +0 -16
  167. package/trainees/index.d.ts +0 -9
  168. package/trainees/index.js +0 -72
  169. package/trainees/results/result.email.d.ts +0 -2
  170. package/trainees/results/result.email.js +0 -17
  171. package/trainees/results/result.login.d.ts +0 -2
  172. package/trainees/results/result.login.js +0 -110
  173. package/trainees/results/result.new-password.d.ts +0 -2
  174. package/trainees/results/result.new-password.js +0 -36
  175. package/trainees/results/result.otp.d.ts +0 -2
  176. package/trainees/results/result.otp.js +0 -43
  177. package/trainees/results/result.password-change.d.ts +0 -2
  178. package/trainees/results/result.password-change.js +0 -110
  179. package/trainees/results/result.password.d.ts +0 -2
  180. package/trainees/results/result.password.js +0 -36
  181. package/trainees/results/result.recovery.d.ts +0 -2
  182. package/trainees/results/result.recovery.js +0 -110
  183. package/trainees/results/result.register.d.ts +0 -2
  184. package/trainees/results/result.register.js +0 -110
  185. package/trainees/results/result.username-hidden.d.ts +0 -2
  186. package/trainees/results/result.username-hidden.js +0 -15
  187. package/trainees/results/result.username.d.ts +0 -2
  188. package/trainees/results/result.username.js +0 -16
  189. package/utils/memoize.d.ts +0 -5
  190. package/utils/memoize.js +0 -12
@@ -0,0 +1,133 @@
1
+ {
2
+ "bias": -0.5452854037284851,
3
+ "coeffs": [
4
+ [
5
+ "new-password--attrConfirm",
6
+ 2.14520525932312
7
+ ],
8
+ [
9
+ "new-password--attrCreate",
10
+ 0.5778965353965759
11
+ ],
12
+ [
13
+ "new-password--attrCurrent",
14
+ -1.5488977432250977
15
+ ],
16
+ [
17
+ "new-password--attrReset",
18
+ -0.08878538012504578
19
+ ],
20
+ [
21
+ "new-password--autocompleteCurrent",
22
+ -1.7373243570327759
23
+ ],
24
+ [
25
+ "new-password--autocompleteNew",
26
+ 4.349790096282959
27
+ ],
28
+ [
29
+ "new-password--autocompleteOTP",
30
+ -6.412292957305908
31
+ ],
32
+ [
33
+ "new-password--autocompleteOff",
34
+ -0.1778380125761032
35
+ ],
36
+ [
37
+ "new-password--fieldCC",
38
+ -7.749661922454834
39
+ ],
40
+ [
41
+ "new-password--fieldExotic",
42
+ 3.3193359375
43
+ ],
44
+ [
45
+ "new-password--fieldIdentity",
46
+ 1.1720734785904023e-35
47
+ ],
48
+ [
49
+ "new-password--fieldLogin",
50
+ -7.551734447479248
51
+ ],
52
+ [
53
+ "new-password--fieldRegister",
54
+ 7.078352928161621
55
+ ],
56
+ [
57
+ "new-password--labelConfirm",
58
+ 1.469581961631775
59
+ ],
60
+ [
61
+ "new-password--labelCreate",
62
+ 4.805655479431152
63
+ ],
64
+ [
65
+ "new-password--labelCurrent",
66
+ -2.71753191947937
67
+ ],
68
+ [
69
+ "new-password--nextPwConfirm",
70
+ 6.150905609130859
71
+ ],
72
+ [
73
+ "new-password--nextPwCurrent",
74
+ 0.015807265415787697
75
+ ],
76
+ [
77
+ "new-password--nextPwField",
78
+ -1.271667242050171
79
+ ],
80
+ [
81
+ "new-password--nextPwNew",
82
+ -2.0590856075286865
83
+ ],
84
+ [
85
+ "new-password--passwordOutlier",
86
+ -14.307415008544922
87
+ ],
88
+ [
89
+ "new-password--prevPwCurrent",
90
+ 1.8218131065368652
91
+ ],
92
+ [
93
+ "new-password--prevPwField",
94
+ 4.477715969085693
95
+ ],
96
+ [
97
+ "new-password--prevPwNew",
98
+ 2.3683602809906006
99
+ ],
100
+ [
101
+ "new-password--textConfirm",
102
+ 0.6882922053337097
103
+ ],
104
+ [
105
+ "new-password--textCreate",
106
+ 5.218682765960693
107
+ ],
108
+ [
109
+ "new-password--textCurrent",
110
+ -0.6788100004196167
111
+ ],
112
+ [
113
+ "new-password--fieldLogin,autocompleteNew",
114
+ -2.155626058578491
115
+ ],
116
+ [
117
+ "new-password--fieldLogin,maybeNew",
118
+ -2.9041571617126465
119
+ ],
120
+ [
121
+ "new-password--fieldRegister,autocompleteCurrent",
122
+ 2.1240363121032715
123
+ ],
124
+ [
125
+ "new-password--fieldRegister,maybeCurrent",
126
+ 0.02828003279864788
127
+ ],
128
+ [
129
+ "new-password--prevPwCurrent,nextPwNew",
130
+ 1.8885729312896729
131
+ ]
132
+ ]
133
+ }
@@ -0,0 +1,117 @@
1
+ {
2
+ "bias": -4.739845275878906,
3
+ "coeffs": [
4
+ [
5
+ "otp--attrMFA",
6
+ 6.6613945960998535
7
+ ],
8
+ [
9
+ "otp--attrOTP",
10
+ 1.1755400896072388
11
+ ],
12
+ [
13
+ "otp--autocompleteOTC",
14
+ 6.435840129852295
15
+ ],
16
+ [
17
+ "otp--fieldCC",
18
+ -1.972305178642273
19
+ ],
20
+ [
21
+ "otp--fieldIdentity",
22
+ -2.935760498046875
23
+ ],
24
+ [
25
+ "otp--formAuthenticator",
26
+ 9.9347505569458
27
+ ],
28
+ [
29
+ "otp--formComplexity",
30
+ -4.342885971069336
31
+ ],
32
+ [
33
+ "otp--formMFA",
34
+ 0.8631628751754761
35
+ ],
36
+ [
37
+ "otp--idMatch",
38
+ 6.620510101318359
39
+ ],
40
+ [
41
+ "otp--labelAuthenticator",
42
+ 3.1492226123809814
43
+ ],
44
+ [
45
+ "otp--labelMFA",
46
+ 9.53038501739502
47
+ ],
48
+ [
49
+ "otp--labelOTP",
50
+ 0.4257601499557495
51
+ ],
52
+ [
53
+ "otp--nameMatch",
54
+ -0.19211307168006897
55
+ ],
56
+ [
57
+ "otp--numericMode",
58
+ -1.71993088722229
59
+ ],
60
+ [
61
+ "otp--outlierAutocomplete",
62
+ -6.185847282409668
63
+ ],
64
+ [
65
+ "otp--outlierEmailMatchScaled",
66
+ -5.495481967926025
67
+ ],
68
+ [
69
+ "otp--outlierField",
70
+ -7.451329231262207
71
+ ],
72
+ [
73
+ "otp--outlierForm",
74
+ 1.8781681060791016
75
+ ],
76
+ [
77
+ "otp--outlierHeadings",
78
+ -9.156466484069824
79
+ ],
80
+ [
81
+ "otp--outlierInputCount",
82
+ -5.805527210235596
83
+ ],
84
+ [
85
+ "otp--outlierLink",
86
+ -3.2309865951538086
87
+ ],
88
+ [
89
+ "otp--outlierMaxLength",
90
+ -11.209508895874023
91
+ ],
92
+ [
93
+ "otp--outlierSearch",
94
+ -8.073559761047363
95
+ ],
96
+ [
97
+ "otp--patternOTP",
98
+ -1.613316491431442e-36
99
+ ],
100
+ [
101
+ "otp--siblingOfInterest",
102
+ 2.612290859222412
103
+ ],
104
+ [
105
+ "otp--singleInput",
106
+ 0.5003520250320435
107
+ ],
108
+ [
109
+ "otp--textAuthenticator",
110
+ 0.31326133012771606
111
+ ],
112
+ [
113
+ "otp--textMFA",
114
+ -0.23756170272827148
115
+ ]
116
+ ]
117
+ }
@@ -0,0 +1,465 @@
1
+ {
2
+ "bias": -1.3177257776260376,
3
+ "coeffs": [
4
+ [
5
+ "password-change--visibleFieldsCountScaled",
6
+ -0.2108052670955658
7
+ ],
8
+ [
9
+ "password-change--visibleInputsCountScaled",
10
+ -0.3794768750667572
11
+ ],
12
+ [
13
+ "password-change--fieldsetsCountScaled",
14
+ 0.34059521555900574
15
+ ],
16
+ [
17
+ "password-change--textsCountScaled",
18
+ -1.3821334838867188
19
+ ],
20
+ [
21
+ "password-change--textareasCountScaled",
22
+ -0.6031239628791809
23
+ ],
24
+ [
25
+ "password-change--selectsCountScaled",
26
+ -0.41383591294288635
27
+ ],
28
+ [
29
+ "password-change--disabledCountScaled",
30
+ -1.2835951565648429e-05
31
+ ],
32
+ [
33
+ "password-change--radiosCountScaled",
34
+ -2.568479537963867
35
+ ],
36
+ [
37
+ "password-change--readOnlyCountScaled",
38
+ -2.1948537826538086
39
+ ],
40
+ [
41
+ "password-change--formComplexityScaled",
42
+ -0.4295071065425873
43
+ ],
44
+ [
45
+ "password-change--visibleIdentifiersCountScaled",
46
+ -1.1606924533843994
47
+ ],
48
+ [
49
+ "password-change--hiddenIdentifiersCountScaled",
50
+ -1.3011548519134521
51
+ ],
52
+ [
53
+ "password-change--usernamesCountScaled",
54
+ -1.5563488006591797
55
+ ],
56
+ [
57
+ "password-change--emailsCountScaled",
58
+ -1.2611478567123413
59
+ ],
60
+ [
61
+ "password-change--hiddenCountScaled",
62
+ 0.13291537761688232
63
+ ],
64
+ [
65
+ "password-change--hiddenPasswordsCountScaled",
66
+ -0.5678786039352417
67
+ ],
68
+ [
69
+ "password-change--submitsCountScaled",
70
+ 0.20100559294223785
71
+ ],
72
+ [
73
+ "password-change--identitiesCountScaled",
74
+ -0.6344181299209595
75
+ ],
76
+ [
77
+ "password-change--ccsCountScaled",
78
+ -0.5090060234069824
79
+ ],
80
+ [
81
+ "password-change--hasTels",
82
+ -1.1284915208816528
83
+ ],
84
+ [
85
+ "password-change--hasOAuth",
86
+ -1.138687014579773
87
+ ],
88
+ [
89
+ "password-change--hasCaptchas",
90
+ -0.8732292652130127
91
+ ],
92
+ [
93
+ "password-change--hasFiles",
94
+ -0.009154298342764378
95
+ ],
96
+ [
97
+ "password-change--hasDate",
98
+ -4.108321081730537e-05
99
+ ],
100
+ [
101
+ "password-change--hasNumber",
102
+ -0.4862828850746155
103
+ ],
104
+ [
105
+ "password-change--oneVisibleField",
106
+ -1.3703187704086304
107
+ ],
108
+ [
109
+ "password-change--twoVisibleFields",
110
+ -0.5263842344284058
111
+ ],
112
+ [
113
+ "password-change--threeOrMoreVisibleFields",
114
+ -0.0987958312034607
115
+ ],
116
+ [
117
+ "password-change--noPasswords",
118
+ -2.220906972885132
119
+ ],
120
+ [
121
+ "password-change--onePassword",
122
+ -1.0874866247177124
123
+ ],
124
+ [
125
+ "password-change--twoPasswords",
126
+ 0.43684446811676025
127
+ ],
128
+ [
129
+ "password-change--threeOrMorePasswords",
130
+ 3.738687038421631
131
+ ],
132
+ [
133
+ "password-change--noIdentifiers",
134
+ -0.10996012389659882
135
+ ],
136
+ [
137
+ "password-change--oneIdentifier",
138
+ -1.452770709991455
139
+ ],
140
+ [
141
+ "password-change--twoIdentifiers",
142
+ -1.3164931535720825
143
+ ],
144
+ [
145
+ "password-change--threeOrMoreIdentifiers",
146
+ -0.5995723605155945
147
+ ],
148
+ [
149
+ "password-change--autofocusedIsIdentifier",
150
+ -1.201790690422058
151
+ ],
152
+ [
153
+ "password-change--autofocusedIsPassword",
154
+ -1.5753828287124634
155
+ ],
156
+ [
157
+ "password-change--visibleRatio",
158
+ -1.5839312076568604
159
+ ],
160
+ [
161
+ "password-change--inputRatio",
162
+ -1.3549721240997314
163
+ ],
164
+ [
165
+ "password-change--hiddenRatio",
166
+ 1.2318017482757568
167
+ ],
168
+ [
169
+ "password-change--identifierRatio",
170
+ -1.2064765691757202
171
+ ],
172
+ [
173
+ "password-change--emailRatio",
174
+ -1.0367227792739868
175
+ ],
176
+ [
177
+ "password-change--usernameRatio",
178
+ -1.1688358783721924
179
+ ],
180
+ [
181
+ "password-change--passwordRatio",
182
+ 2.048884391784668
183
+ ],
184
+ [
185
+ "password-change--disabledRatio",
186
+ -3.544040009728633e-05
187
+ ],
188
+ [
189
+ "password-change--requiredRatio",
190
+ 0.28192782402038574
191
+ ],
192
+ [
193
+ "password-change--checkboxRatio",
194
+ 0.3580681383609772
195
+ ],
196
+ [
197
+ "password-change--hiddenIdentifierRatio",
198
+ -1.4996641874313354
199
+ ],
200
+ [
201
+ "password-change--hiddenPasswordRatio",
202
+ -0.5603636503219604
203
+ ],
204
+ [
205
+ "password-change--pageLogin",
206
+ -2.0787875652313232
207
+ ],
208
+ [
209
+ "password-change--formTextLogin",
210
+ -0.00028074291185475886
211
+ ],
212
+ [
213
+ "password-change--formAttrsLogin",
214
+ -1.0774983167648315
215
+ ],
216
+ [
217
+ "password-change--headingsLogin",
218
+ -1.3089661598205566
219
+ ],
220
+ [
221
+ "password-change--layoutLogin",
222
+ -1.316753625869751
223
+ ],
224
+ [
225
+ "password-change--rememberMeCheckbox",
226
+ -0.49536675214767456
227
+ ],
228
+ [
229
+ "password-change--troubleLink",
230
+ -0.5059223175048828
231
+ ],
232
+ [
233
+ "password-change--submitLogin",
234
+ -1.538442850112915
235
+ ],
236
+ [
237
+ "password-change--pageRegister",
238
+ -0.4322483539581299
239
+ ],
240
+ [
241
+ "password-change--formTextRegister",
242
+ -2.7674755642692617e-07
243
+ ],
244
+ [
245
+ "password-change--formAttrsRegister",
246
+ -3.545875072479248
247
+ ],
248
+ [
249
+ "password-change--headingsRegister",
250
+ -4.550984859466553
251
+ ],
252
+ [
253
+ "password-change--layoutRegister",
254
+ -0.48621928691864014
255
+ ],
256
+ [
257
+ "password-change--pwNewRegister",
258
+ 6.575067520141602
259
+ ],
260
+ [
261
+ "password-change--pwConfirmRegister",
262
+ 0.18275953829288483
263
+ ],
264
+ [
265
+ "password-change--submitRegister",
266
+ -2.4953694343566895
267
+ ],
268
+ [
269
+ "password-change--TOSRef",
270
+ -0.08693794906139374
271
+ ],
272
+ [
273
+ "password-change--pagePwReset",
274
+ 0.8516339063644409
275
+ ],
276
+ [
277
+ "password-change--formTextPwReset",
278
+ 0.11514020711183548
279
+ ],
280
+ [
281
+ "password-change--formAttrsPwReset",
282
+ 3.0300827026367188
283
+ ],
284
+ [
285
+ "password-change--headingsPwReset",
286
+ 0.8395712375640869
287
+ ],
288
+ [
289
+ "password-change--layoutPwReset",
290
+ 3.9594013690948486
291
+ ],
292
+ [
293
+ "password-change--pageRecovery",
294
+ -1.040789008140564
295
+ ],
296
+ [
297
+ "password-change--formTextRecovery",
298
+ 1.1768496418554316e-35
299
+ ],
300
+ [
301
+ "password-change--formAttrsRecovery",
302
+ -0.571295440196991
303
+ ],
304
+ [
305
+ "password-change--headingsRecovery",
306
+ -0.4508116543292999
307
+ ],
308
+ [
309
+ "password-change--layoutRecovery",
310
+ -0.31461575627326965
311
+ ],
312
+ [
313
+ "password-change--identifierRecovery",
314
+ -0.29010623693466187
315
+ ],
316
+ [
317
+ "password-change--submitRecovery",
318
+ 1.8364183902740479
319
+ ],
320
+ [
321
+ "password-change--formTextMFA",
322
+ -0.8908454775810242
323
+ ],
324
+ [
325
+ "password-change--formAttrsMFA",
326
+ -0.45810991525650024
327
+ ],
328
+ [
329
+ "password-change--inputsMFA",
330
+ -0.7224538326263428
331
+ ],
332
+ [
333
+ "password-change--newsletterForm",
334
+ -0.025377895683050156
335
+ ],
336
+ [
337
+ "password-change--searchForm",
338
+ -1.184194803237915
339
+ ],
340
+ [
341
+ "password-change--multistepForm",
342
+ -0.8734708428382874
343
+ ],
344
+ [
345
+ "password-change--multiAuthForm",
346
+ -0.564978301525116
347
+ ],
348
+ [
349
+ "password-change--multistepForm,multiAuthForm",
350
+ -0.252063512802124
351
+ ],
352
+ [
353
+ "password-change--visibleRatio,visibleFieldsCountScaled",
354
+ -0.7013123035430908
355
+ ],
356
+ [
357
+ "password-change--visibleRatio,visibleIdentifiersCountScaled",
358
+ -1.2151151895523071
359
+ ],
360
+ [
361
+ "password-change--visibleRatio,visiblePasswordsCountScaled",
362
+ -0.13744966685771942
363
+ ],
364
+ [
365
+ "password-change--visibleRatio,hiddenIdentifiersCountScaled",
366
+ -0.18700900673866272
367
+ ],
368
+ [
369
+ "password-change--visibleRatio,hiddenPasswordsCountScaled",
370
+ -0.31140273809432983
371
+ ],
372
+ [
373
+ "password-change--visibleRatio,multiAuthForm",
374
+ -0.3962595462799072
375
+ ],
376
+ [
377
+ "password-change--visibleRatio,multistepForm",
378
+ -2.3316564559936523
379
+ ],
380
+ [
381
+ "password-change--identifierRatio,visibleFieldsCountScaled",
382
+ -1.1532371044158936
383
+ ],
384
+ [
385
+ "password-change--identifierRatio,visibleIdentifiersCountScaled",
386
+ -1.0779577493667603
387
+ ],
388
+ [
389
+ "password-change--identifierRatio,visiblePasswordsCountScaled",
390
+ -1.6363348960876465
391
+ ],
392
+ [
393
+ "password-change--identifierRatio,hiddenIdentifiersCountScaled",
394
+ -0.34702029824256897
395
+ ],
396
+ [
397
+ "password-change--identifierRatio,hiddenPasswordsCountScaled",
398
+ -0.5297760367393494
399
+ ],
400
+ [
401
+ "password-change--identifierRatio,multiAuthForm",
402
+ -0.4264456629753113
403
+ ],
404
+ [
405
+ "password-change--identifierRatio,multistepForm",
406
+ -0.6745024919509888
407
+ ],
408
+ [
409
+ "password-change--passwordRatio,visibleFieldsCountScaled",
410
+ 1.7638394832611084
411
+ ],
412
+ [
413
+ "password-change--passwordRatio,visibleIdentifiersCountScaled",
414
+ -1.4547810554504395
415
+ ],
416
+ [
417
+ "password-change--passwordRatio,visiblePasswordsCountScaled",
418
+ 2.538695812225342
419
+ ],
420
+ [
421
+ "password-change--passwordRatio,hiddenIdentifiersCountScaled",
422
+ -1.5068111419677734
423
+ ],
424
+ [
425
+ "password-change--passwordRatio,hiddenPasswordsCountScaled",
426
+ -0.17282022535800934
427
+ ],
428
+ [
429
+ "password-change--passwordRatio,multiAuthForm",
430
+ -0.23705655336380005
431
+ ],
432
+ [
433
+ "password-change--passwordRatio,multistepForm",
434
+ -0.6057162880897522
435
+ ],
436
+ [
437
+ "password-change--requiredRatio,visibleFieldsCountScaled",
438
+ -0.6770942211151123
439
+ ],
440
+ [
441
+ "password-change--requiredRatio,visibleIdentifiersCountScaled",
442
+ -1.3246948719024658
443
+ ],
444
+ [
445
+ "password-change--requiredRatio,visiblePasswordsCountScaled",
446
+ 0.9341357350349426
447
+ ],
448
+ [
449
+ "password-change--requiredRatio,hiddenIdentifiersCountScaled",
450
+ -0.966589629650116
451
+ ],
452
+ [
453
+ "password-change--requiredRatio,hiddenPasswordsCountScaled",
454
+ -0.9109418392181396
455
+ ],
456
+ [
457
+ "password-change--requiredRatio,multiAuthForm",
458
+ -0.23184752464294434
459
+ ],
460
+ [
461
+ "password-change--requiredRatio,multistepForm",
462
+ -0.024571210145950317
463
+ ]
464
+ ]
465
+ }