bson 4.1.1-java → 4.2.0-java

Sign up to get free protection for your applications and to get access to all the features.
Files changed (82) hide show
  1. checksums.yaml +4 -4
  2. checksums.yaml.gz.sig +0 -0
  3. data.tar.gz.sig +0 -0
  4. data/Rakefile +18 -3
  5. data/lib/bson-ruby.jar +0 -0
  6. data/lib/bson.rb +6 -4
  7. data/lib/bson/array.rb +1 -1
  8. data/lib/bson/binary.rb +4 -2
  9. data/lib/bson/code.rb +1 -1
  10. data/lib/bson/code_with_scope.rb +1 -1
  11. data/lib/bson/config.rb +1 -1
  12. data/lib/bson/date.rb +1 -1
  13. data/lib/bson/date_time.rb +1 -1
  14. data/lib/bson/decimal128.rb +318 -0
  15. data/lib/bson/decimal128/builder.rb +448 -0
  16. data/lib/bson/document.rb +2 -2
  17. data/lib/bson/environment.rb +13 -1
  18. data/lib/bson/false_class.rb +1 -1
  19. data/lib/bson/float.rb +1 -1
  20. data/lib/bson/hash.rb +1 -1
  21. data/lib/bson/int32.rb +46 -0
  22. data/lib/bson/int64.rb +46 -0
  23. data/lib/bson/integer.rb +1 -1
  24. data/lib/bson/max_key.rb +1 -1
  25. data/lib/bson/min_key.rb +1 -1
  26. data/lib/bson/object_id.rb +3 -2
  27. data/lib/bson/open_struct.rb +57 -0
  28. data/lib/bson/regexp.rb +87 -19
  29. data/lib/bson/registry.rb +1 -1
  30. data/lib/bson/specialized.rb +1 -1
  31. data/lib/bson/string.rb +1 -1
  32. data/lib/bson/symbol.rb +1 -1
  33. data/lib/bson/time.rb +1 -1
  34. data/lib/bson/timestamp.rb +2 -2
  35. data/lib/bson/true_class.rb +1 -1
  36. data/lib/bson/version.rb +2 -2
  37. data/spec/bson/array_spec.rb +1 -1
  38. data/spec/bson/binary_spec.rb +2 -1
  39. data/spec/bson/corpus_spec.rb +68 -0
  40. data/spec/bson/decimal128_spec.rb +1583 -0
  41. data/spec/bson/document_spec.rb +1 -1
  42. data/spec/bson/driver_bson_spec.rb +77 -0
  43. data/spec/bson/int32_spec.rb +58 -0
  44. data/spec/bson/int64_spec.rb +58 -0
  45. data/spec/bson/open_struct_spec.rb +144 -0
  46. data/spec/bson/raw_spec.rb +540 -0
  47. data/spec/bson/regexp_spec.rb +7 -7
  48. data/spec/bson/timestamp_spec.rb +1 -1
  49. data/spec/spec_helper.rb +5 -0
  50. data/spec/support/common_driver.rb +347 -0
  51. data/spec/support/corpus-tests/array.json +43 -0
  52. data/spec/support/corpus-tests/boolean.json +27 -0
  53. data/spec/support/corpus-tests/code.json +67 -0
  54. data/spec/support/corpus-tests/code_w_scope.json +78 -0
  55. data/spec/support/corpus-tests/document.json +36 -0
  56. data/spec/support/corpus-tests/double.json +69 -0
  57. data/spec/support/corpus-tests/failures/binary.json +69 -0
  58. data/spec/support/corpus-tests/failures/datetime.json +31 -0
  59. data/spec/support/corpus-tests/failures/dbpointer.json +42 -0
  60. data/spec/support/corpus-tests/failures/int64.json +38 -0
  61. data/spec/support/corpus-tests/failures/symbol.json +62 -0
  62. data/spec/support/corpus-tests/failures/undefined.json +13 -0
  63. data/spec/support/corpus-tests/int32.json +38 -0
  64. data/spec/support/corpus-tests/maxkey.json +12 -0
  65. data/spec/support/corpus-tests/minkey.json +12 -0
  66. data/spec/support/corpus-tests/null.json +12 -0
  67. data/spec/support/corpus-tests/oid.json +28 -0
  68. data/spec/support/corpus-tests/regex.json +37 -0
  69. data/spec/support/corpus-tests/string.json +67 -0
  70. data/spec/support/corpus-tests/timestamp.json +18 -0
  71. data/spec/support/corpus-tests/top.json +62 -0
  72. data/spec/support/corpus.rb +265 -0
  73. data/spec/support/driver-spec-tests/decimal128/decimal128-1.json +363 -0
  74. data/spec/support/driver-spec-tests/decimal128/decimal128-2.json +793 -0
  75. data/spec/support/driver-spec-tests/decimal128/decimal128-3.json +1771 -0
  76. data/spec/support/driver-spec-tests/decimal128/decimal128-4.json +165 -0
  77. data/spec/support/driver-spec-tests/decimal128/decimal128-5.json +402 -0
  78. data/spec/support/driver-spec-tests/decimal128/decimal128-6.json +131 -0
  79. data/spec/support/driver-spec-tests/decimal128/decimal128-7.json +327 -0
  80. data/spec/support/shared_examples.rb +1 -1
  81. metadata +77 -4
  82. metadata.gz.sig +0 -0
@@ -0,0 +1,165 @@
1
+ {
2
+ "description": "Decimal128",
3
+ "bson_type": "0x13",
4
+ "test_key": "d",
5
+ "valid": [
6
+ {
7
+ "description": "[basx023] conform to rules and exponent will be in permitted range).",
8
+ "subject": "1800000013640001000000000000000000000000003EB000",
9
+ "string": "-0.1"
10
+ },
11
+
12
+ {
13
+ "description": "[basx045] strings without E cannot generate E in result",
14
+ "subject": "1800000013640003000000000000000000000000003A3000",
15
+ "string": "+0.003",
16
+ "match_string": "0.003"
17
+ },
18
+ {
19
+ "description": "[basx610] Zeros",
20
+ "subject": "1800000013640000000000000000000000000000003E3000",
21
+ "string": ".0",
22
+ "match_string": "0.0"
23
+ },
24
+ {
25
+ "description": "[basx612] Zeros",
26
+ "subject": "1800000013640000000000000000000000000000003EB000",
27
+ "string": "-.0",
28
+ "match_string": "-0.0"
29
+ },
30
+ {
31
+ "description": "[basx043] strings without E cannot generate E in result",
32
+ "subject": "18000000136400FC040000000000000000000000003C3000",
33
+ "string": "+12.76",
34
+ "match_string": "12.76"
35
+ },
36
+ {
37
+ "description": "[basx055] strings without E cannot generate E in result",
38
+ "subject": "180000001364000500000000000000000000000000303000",
39
+ "string": "0.00000005",
40
+ "match_string": "5E-8"
41
+ },
42
+ {
43
+ "description": "[basx054] strings without E cannot generate E in result",
44
+ "subject": "180000001364000500000000000000000000000000323000",
45
+ "string": "0.0000005",
46
+ "match_string": "5E-7"
47
+ },
48
+ {
49
+ "description": "[basx052] strings without E cannot generate E in result",
50
+ "subject": "180000001364000500000000000000000000000000343000",
51
+ "string": "0.000005"
52
+ },
53
+ {
54
+ "description": "[basx051] strings without E cannot generate E in result",
55
+ "subject": "180000001364000500000000000000000000000000363000",
56
+ "string": "00.00005",
57
+ "match_string": "0.00005"
58
+ },
59
+ {
60
+ "description": "[basx050] strings without E cannot generate E in result",
61
+ "subject": "180000001364000500000000000000000000000000383000",
62
+ "string": "0.0005"
63
+ },
64
+ {
65
+ "description": "[basx047] strings without E cannot generate E in result",
66
+ "subject": "1800000013640005000000000000000000000000003E3000",
67
+ "string": ".5",
68
+ "match_string": "0.5"
69
+ },
70
+ {
71
+ "description": "[dqbsr431] check rounding modes heeded (Rounded)",
72
+ "subject": "1800000013640099761CC7B548F377DC80A131C836FE2F00",
73
+ "string": "1.1111111111111111111111111111123450",
74
+ "match_string": "1.111111111111111111111111111112345"
75
+ },
76
+ {
77
+ "description": "OK2",
78
+ "subject": "18000000136400000000000A5BC138938D44C64D31FC2F00",
79
+ "string": ".100000000000000000000000000000000000000000000000000000000000",
80
+ "match_string": "0.1000000000000000000000000000000000"
81
+ }
82
+ ],
83
+ "parseErrors": [
84
+ {
85
+ "description": "[basx564] Near-specials (Conversion_syntax)",
86
+ "subject": "Infi"
87
+ },
88
+ {
89
+ "description": "[basx565] Near-specials (Conversion_syntax)",
90
+ "subject": "Infin"
91
+ },
92
+ {
93
+ "description": "[basx566] Near-specials (Conversion_syntax)",
94
+ "subject": "Infini"
95
+ },
96
+ {
97
+ "description": "[basx567] Near-specials (Conversion_syntax)",
98
+ "subject": "Infinit"
99
+ },
100
+ {
101
+ "description": "[basx568] Near-specials (Conversion_syntax)",
102
+ "subject": "-Infinit"
103
+ },
104
+ {
105
+ "description": "[basx590] some baddies with dots and Es and dots and specials (Conversion_syntax)",
106
+ "subject": ".Infinity"
107
+ },
108
+ {
109
+ "description": "[basx562] Near-specials (Conversion_syntax)",
110
+ "subject": "NaNq"
111
+ },
112
+ {
113
+ "description": "[basx563] Near-specials (Conversion_syntax)",
114
+ "subject": "NaNs"
115
+ },
116
+ {
117
+ "description": "[dqbas939] overflow results at different rounding modes (Overflow & Inexact & Rounded)",
118
+ "subject": "-7e10000"
119
+ },
120
+ {
121
+ "description": "[dqbsr534] negatives (Rounded & Inexact)",
122
+ "subject": "-1.11111111111111111111111111111234650"
123
+ },
124
+ {
125
+ "description": "[dqbsr535] negatives (Rounded & Inexact)",
126
+ "subject": "-1.11111111111111111111111111111234551"
127
+ },
128
+ {
129
+ "description": "[dqbsr533] negatives (Rounded & Inexact)",
130
+ "subject": "-1.11111111111111111111111111111234550"
131
+ },
132
+ {
133
+ "description": "[dqbsr532] negatives (Rounded & Inexact)",
134
+ "subject": "-1.11111111111111111111111111111234549"
135
+ },
136
+ {
137
+ "description": "[dqbsr432] check rounding modes heeded (Rounded & Inexact)",
138
+ "subject": "1.11111111111111111111111111111234549"
139
+ },
140
+ {
141
+ "description": "[dqbsr433] check rounding modes heeded (Rounded & Inexact)",
142
+ "subject": "1.11111111111111111111111111111234550"
143
+ },
144
+ {
145
+ "description": "[dqbsr435] check rounding modes heeded (Rounded & Inexact)",
146
+ "subject": "1.11111111111111111111111111111234551"
147
+ },
148
+ {
149
+ "description": "[dqbsr434] check rounding modes heeded (Rounded & Inexact)",
150
+ "subject": "1.11111111111111111111111111111234650"
151
+ },
152
+ {
153
+ "description": "[dqbas938] overflow results at different rounding modes (Overflow & Inexact & Rounded)",
154
+ "subject": "7e10000"
155
+ },
156
+ {
157
+ "description": "Inexact rounding#1",
158
+ "subject": "100000000000000000000000000000000000000000000000000000000001"
159
+ },
160
+ {
161
+ "description": "Inexact rounding#2",
162
+ "subject": "1E-6177"
163
+ }
164
+ ]
165
+ }
@@ -0,0 +1,402 @@
1
+ {
2
+ "description": "Decimal128",
3
+ "bson_type": "0x13",
4
+ "test_key": "d",
5
+ "valid": [
6
+ {
7
+ "description": "[decq035] fold-downs (more below) (Clamped)",
8
+ "subject": "18000000136400000000807F1BCF85B27059C8A43CFE5F00",
9
+ "string": "1.23E+6144",
10
+ "match_string": "1.230000000000000000000000000000000E+6144"
11
+ },
12
+ {
13
+ "description": "[decq037] fold-downs (more below) (Clamped)",
14
+ "subject": "18000000136400000000000A5BC138938D44C64D31FE5F00",
15
+ "string": "1E+6144",
16
+ "match_string": "1.000000000000000000000000000000000E+6144"
17
+ },
18
+ {
19
+ "description": "[decq077] Nmin and below (Subnormal)",
20
+ "subject": "180000001364000000000081EFAC855B416D2DEE04000000",
21
+ "string": "0.100000000000000000000000000000000E-6143",
22
+ "match_string": "1.00000000000000000000000000000000E-6144"
23
+ },
24
+ {
25
+ "description": "[decq078] Nmin and below (Subnormal)",
26
+ "subject": "180000001364000000000081EFAC855B416D2DEE04000000",
27
+ "string": "1.00000000000000000000000000000000E-6144"
28
+ },
29
+ {
30
+ "description": "[decq079] Nmin and below (Subnormal)",
31
+ "subject": "180000001364000A00000000000000000000000000000000",
32
+ "string": "0.000000000000000000000000000000010E-6143",
33
+ "match_string": "1.0E-6175"
34
+ },
35
+ {
36
+ "description": "[decq080] Nmin and below (Subnormal)",
37
+ "subject": "180000001364000A00000000000000000000000000000000",
38
+ "string": "1.0E-6175"
39
+ },
40
+ {
41
+ "description": "[decq081] Nmin and below (Subnormal)",
42
+ "subject": "180000001364000100000000000000000000000000020000",
43
+ "string": "0.00000000000000000000000000000001E-6143",
44
+ "match_string": "1E-6175"
45
+ },
46
+ {
47
+ "description": "[decq082] Nmin and below (Subnormal)",
48
+ "subject": "180000001364000100000000000000000000000000020000",
49
+ "string": "1E-6175"
50
+ },
51
+ {
52
+ "description": "[decq083] Nmin and below (Subnormal)",
53
+ "subject": "180000001364000100000000000000000000000000000000",
54
+ "string": "0.000000000000000000000000000000001E-6143",
55
+ "match_string": "1E-6176"
56
+ },
57
+ {
58
+ "description": "[decq084] Nmin and below (Subnormal)",
59
+ "subject": "180000001364000100000000000000000000000000000000",
60
+ "string": "1E-6176"
61
+ },
62
+ {
63
+ "description": "[decq090] underflows cannot be tested for simple copies, check edge cases (Subnormal)",
64
+ "subject": "180000001364000100000000000000000000000000000000",
65
+ "string": "1e-6176",
66
+ "match_string": "1E-6176"
67
+ },
68
+ {
69
+ "description": "[decq100] underflows cannot be tested for simple copies, check edge cases (Subnormal)",
70
+ "subject": "18000000136400FFFFFFFF095BC138938D44C64D31000000",
71
+ "string": "999999999999999999999999999999999e-6176",
72
+ "match_string": "9.99999999999999999999999999999999E-6144"
73
+ },
74
+ {
75
+ "description": "[decq130] fold-downs (more below) (Clamped)",
76
+ "subject": "18000000136400000000807F1BCF85B27059C8A43CFEDF00",
77
+ "string": "-1.23E+6144",
78
+ "match_string": "-1.230000000000000000000000000000000E+6144"
79
+ },
80
+ {
81
+ "description": "[decq132] fold-downs (more below) (Clamped)",
82
+ "subject": "18000000136400000000000A5BC138938D44C64D31FEDF00",
83
+ "string": "-1E+6144",
84
+ "match_string": "-1.000000000000000000000000000000000E+6144"
85
+ },
86
+ {
87
+ "description": "[decq177] Nmin and below (Subnormal)",
88
+ "subject": "180000001364000000000081EFAC855B416D2DEE04008000",
89
+ "string": "-0.100000000000000000000000000000000E-6143",
90
+ "match_string": "-1.00000000000000000000000000000000E-6144"
91
+ },
92
+ {
93
+ "description": "[decq178] Nmin and below (Subnormal)",
94
+ "subject": "180000001364000000000081EFAC855B416D2DEE04008000",
95
+ "string": "-1.00000000000000000000000000000000E-6144"
96
+ },
97
+ {
98
+ "description": "[decq179] Nmin and below (Subnormal)",
99
+ "subject": "180000001364000A00000000000000000000000000008000",
100
+ "string": "-0.000000000000000000000000000000010E-6143",
101
+ "match_string": "-1.0E-6175"
102
+ },
103
+ {
104
+ "description": "[decq180] Nmin and below (Subnormal)",
105
+ "subject": "180000001364000A00000000000000000000000000008000",
106
+ "string": "-1.0E-6175"
107
+ },
108
+ {
109
+ "description": "[decq181] Nmin and below (Subnormal)",
110
+ "subject": "180000001364000100000000000000000000000000028000",
111
+ "string": "-0.00000000000000000000000000000001E-6143",
112
+ "match_string": "-1E-6175"
113
+ },
114
+ {
115
+ "description": "[decq182] Nmin and below (Subnormal)",
116
+ "subject": "180000001364000100000000000000000000000000028000",
117
+ "string": "-1E-6175"
118
+ },
119
+ {
120
+ "description": "[decq183] Nmin and below (Subnormal)",
121
+ "subject": "180000001364000100000000000000000000000000008000",
122
+ "string": "-0.000000000000000000000000000000001E-6143",
123
+ "match_string": "-1E-6176"
124
+ },
125
+ {
126
+ "description": "[decq184] Nmin and below (Subnormal)",
127
+ "subject": "180000001364000100000000000000000000000000008000",
128
+ "string": "-1E-6176"
129
+ },
130
+ {
131
+ "description": "[decq190] underflow edge cases (Subnormal)",
132
+ "subject": "180000001364000100000000000000000000000000008000",
133
+ "string": "-1e-6176",
134
+ "match_string": "-1E-6176"
135
+ },
136
+ {
137
+ "description": "[decq200] underflow edge cases (Subnormal)",
138
+ "subject": "18000000136400FFFFFFFF095BC138938D44C64D31008000",
139
+ "string": "-999999999999999999999999999999999e-6176",
140
+ "match_string": "-9.99999999999999999999999999999999E-6144"
141
+ },
142
+ {
143
+ "description": "[decq400] zeros (Clamped)",
144
+ "subject": "180000001364000000000000000000000000000000000000",
145
+ "string": "0E-8000",
146
+ "match_string": "0E-6176"
147
+ },
148
+ {
149
+ "description": "[decq401] zeros (Clamped)",
150
+ "subject": "180000001364000000000000000000000000000000000000",
151
+ "string": "0E-6177",
152
+ "match_string": "0E-6176"
153
+ },
154
+ {
155
+ "description": "[decq414] clamped zeros... (Clamped)",
156
+ "subject": "180000001364000000000000000000000000000000FE5F00",
157
+ "string": "0E+6112",
158
+ "match_string": "0E+6111"
159
+ },
160
+ {
161
+ "description": "[decq416] clamped zeros... (Clamped)",
162
+ "subject": "180000001364000000000000000000000000000000FE5F00",
163
+ "string": "0E+6144",
164
+ "match_string": "0E+6111"
165
+ },
166
+ {
167
+ "description": "[decq418] clamped zeros... (Clamped)",
168
+ "subject": "180000001364000000000000000000000000000000FE5F00",
169
+ "string": "0E+8000",
170
+ "match_string": "0E+6111"
171
+ },
172
+ {
173
+ "description": "[decq420] negative zeros (Clamped)",
174
+ "subject": "180000001364000000000000000000000000000000008000",
175
+ "string": "-0E-8000",
176
+ "match_string": "-0E-6176"
177
+ },
178
+ {
179
+ "description": "[decq421] negative zeros (Clamped)",
180
+ "subject": "180000001364000000000000000000000000000000008000",
181
+ "string": "-0E-6177",
182
+ "match_string": "-0E-6176"
183
+ },
184
+ {
185
+ "description": "[decq434] clamped zeros... (Clamped)",
186
+ "subject": "180000001364000000000000000000000000000000FEDF00",
187
+ "string": "-0E+6112",
188
+ "match_string": "-0E+6111"
189
+ },
190
+ {
191
+ "description": "[decq436] clamped zeros... (Clamped)",
192
+ "subject": "180000001364000000000000000000000000000000FEDF00",
193
+ "string": "-0E+6144",
194
+ "match_string": "-0E+6111"
195
+ },
196
+ {
197
+ "description": "[decq438] clamped zeros... (Clamped)",
198
+ "subject": "180000001364000000000000000000000000000000FEDF00",
199
+ "string": "-0E+8000",
200
+ "match_string": "-0E+6111"
201
+ },
202
+ {
203
+ "description": "[decq601] fold-down full sequence (Clamped)",
204
+ "subject": "18000000136400000000000A5BC138938D44C64D31FE5F00",
205
+ "string": "1E+6144",
206
+ "match_string": "1.000000000000000000000000000000000E+6144"
207
+ },
208
+ {
209
+ "description": "[decq603] fold-down full sequence (Clamped)",
210
+ "subject": "180000001364000000000081EFAC855B416D2DEE04FE5F00",
211
+ "string": "1E+6143",
212
+ "match_string": "1.00000000000000000000000000000000E+6143"
213
+ },
214
+ {
215
+ "description": "[decq605] fold-down full sequence (Clamped)",
216
+ "subject": "1800000013640000000080264B91C02220BE377E00FE5F00",
217
+ "string": "1E+6142",
218
+ "match_string": "1.0000000000000000000000000000000E+6142"
219
+ },
220
+ {
221
+ "description": "[decq607] fold-down full sequence (Clamped)",
222
+ "subject": "1800000013640000000040EAED7446D09C2C9F0C00FE5F00",
223
+ "string": "1E+6141",
224
+ "match_string": "1.000000000000000000000000000000E+6141"
225
+ },
226
+ {
227
+ "description": "[decq609] fold-down full sequence (Clamped)",
228
+ "subject": "18000000136400000000A0CA17726DAE0F1E430100FE5F00",
229
+ "string": "1E+6140",
230
+ "match_string": "1.00000000000000000000000000000E+6140"
231
+ },
232
+ {
233
+ "description": "[decq611] fold-down full sequence (Clamped)",
234
+ "subject": "18000000136400000000106102253E5ECE4F200000FE5F00",
235
+ "string": "1E+6139",
236
+ "match_string": "1.0000000000000000000000000000E+6139"
237
+ },
238
+ {
239
+ "description": "[decq613] fold-down full sequence (Clamped)",
240
+ "subject": "18000000136400000000E83C80D09F3C2E3B030000FE5F00",
241
+ "string": "1E+6138",
242
+ "match_string": "1.000000000000000000000000000E+6138"
243
+ },
244
+ {
245
+ "description": "[decq615] fold-down full sequence (Clamped)",
246
+ "subject": "18000000136400000000E4D20CC8DCD2B752000000FE5F00",
247
+ "string": "1E+6137",
248
+ "match_string": "1.00000000000000000000000000E+6137"
249
+ },
250
+ {
251
+ "description": "[decq617] fold-down full sequence (Clamped)",
252
+ "subject": "180000001364000000004A48011416954508000000FE5F00",
253
+ "string": "1E+6136",
254
+ "match_string": "1.0000000000000000000000000E+6136"
255
+ },
256
+ {
257
+ "description": "[decq619] fold-down full sequence (Clamped)",
258
+ "subject": "18000000136400000000A1EDCCCE1BC2D300000000FE5F00",
259
+ "string": "1E+6135",
260
+ "match_string": "1.000000000000000000000000E+6135"
261
+ },
262
+ {
263
+ "description": "[decq621] fold-down full sequence (Clamped)",
264
+ "subject": "18000000136400000080F64AE1C7022D1500000000FE5F00",
265
+ "string": "1E+6134",
266
+ "match_string": "1.00000000000000000000000E+6134"
267
+ },
268
+ {
269
+ "description": "[decq623] fold-down full sequence (Clamped)",
270
+ "subject": "18000000136400000040B2BAC9E0191E0200000000FE5F00",
271
+ "string": "1E+6133",
272
+ "match_string": "1.0000000000000000000000E+6133"
273
+ },
274
+ {
275
+ "description": "[decq625] fold-down full sequence (Clamped)",
276
+ "subject": "180000001364000000A0DEC5ADC935360000000000FE5F00",
277
+ "string": "1E+6132",
278
+ "match_string": "1.000000000000000000000E+6132"
279
+ },
280
+ {
281
+ "description": "[decq627] fold-down full sequence (Clamped)",
282
+ "subject": "18000000136400000010632D5EC76B050000000000FE5F00",
283
+ "string": "1E+6131",
284
+ "match_string": "1.00000000000000000000E+6131"
285
+ },
286
+ {
287
+ "description": "[decq629] fold-down full sequence (Clamped)",
288
+ "subject": "180000001364000000E8890423C78A000000000000FE5F00",
289
+ "string": "1E+6130",
290
+ "match_string": "1.0000000000000000000E+6130"
291
+ },
292
+ {
293
+ "description": "[decq631] fold-down full sequence (Clamped)",
294
+ "subject": "18000000136400000064A7B3B6E00D000000000000FE5F00",
295
+ "string": "1E+6129",
296
+ "match_string": "1.000000000000000000E+6129"
297
+ },
298
+ {
299
+ "description": "[decq633] fold-down full sequence (Clamped)",
300
+ "subject": "1800000013640000008A5D78456301000000000000FE5F00",
301
+ "string": "1E+6128",
302
+ "match_string": "1.00000000000000000E+6128"
303
+ },
304
+ {
305
+ "description": "[decq635] fold-down full sequence (Clamped)",
306
+ "subject": "180000001364000000C16FF2862300000000000000FE5F00",
307
+ "string": "1E+6127",
308
+ "match_string": "1.0000000000000000E+6127"
309
+ },
310
+ {
311
+ "description": "[decq637] fold-down full sequence (Clamped)",
312
+ "subject": "180000001364000080C6A47E8D0300000000000000FE5F00",
313
+ "string": "1E+6126",
314
+ "match_string": "1.000000000000000E+6126"
315
+ },
316
+ {
317
+ "description": "[decq639] fold-down full sequence (Clamped)",
318
+ "subject": "1800000013640000407A10F35A0000000000000000FE5F00",
319
+ "string": "1E+6125",
320
+ "match_string": "1.00000000000000E+6125"
321
+ },
322
+ {
323
+ "description": "[decq641] fold-down full sequence (Clamped)",
324
+ "subject": "1800000013640000A0724E18090000000000000000FE5F00",
325
+ "string": "1E+6124",
326
+ "match_string": "1.0000000000000E+6124"
327
+ },
328
+ {
329
+ "description": "[decq643] fold-down full sequence (Clamped)",
330
+ "subject": "180000001364000010A5D4E8000000000000000000FE5F00",
331
+ "string": "1E+6123",
332
+ "match_string": "1.000000000000E+6123"
333
+ },
334
+ {
335
+ "description": "[decq645] fold-down full sequence (Clamped)",
336
+ "subject": "1800000013640000E8764817000000000000000000FE5F00",
337
+ "string": "1E+6122",
338
+ "match_string": "1.00000000000E+6122"
339
+ },
340
+ {
341
+ "description": "[decq647] fold-down full sequence (Clamped)",
342
+ "subject": "1800000013640000E40B5402000000000000000000FE5F00",
343
+ "string": "1E+6121",
344
+ "match_string": "1.0000000000E+6121"
345
+ },
346
+ {
347
+ "description": "[decq649] fold-down full sequence (Clamped)",
348
+ "subject": "1800000013640000CA9A3B00000000000000000000FE5F00",
349
+ "string": "1E+6120",
350
+ "match_string": "1.000000000E+6120"
351
+ },
352
+ {
353
+ "description": "[decq651] fold-down full sequence (Clamped)",
354
+ "subject": "1800000013640000E1F50500000000000000000000FE5F00",
355
+ "string": "1E+6119",
356
+ "match_string": "1.00000000E+6119"
357
+ },
358
+ {
359
+ "description": "[decq653] fold-down full sequence (Clamped)",
360
+ "subject": "180000001364008096980000000000000000000000FE5F00",
361
+ "string": "1E+6118",
362
+ "match_string": "1.0000000E+6118"
363
+ },
364
+ {
365
+ "description": "[decq655] fold-down full sequence (Clamped)",
366
+ "subject": "1800000013640040420F0000000000000000000000FE5F00",
367
+ "string": "1E+6117",
368
+ "match_string": "1.000000E+6117"
369
+ },
370
+ {
371
+ "description": "[decq657] fold-down full sequence (Clamped)",
372
+ "subject": "18000000136400A086010000000000000000000000FE5F00",
373
+ "string": "1E+6116",
374
+ "match_string": "1.00000E+6116"
375
+ },
376
+ {
377
+ "description": "[decq659] fold-down full sequence (Clamped)",
378
+ "subject": "180000001364001027000000000000000000000000FE5F00",
379
+ "string": "1E+6115",
380
+ "match_string": "1.0000E+6115"
381
+ },
382
+ {
383
+ "description": "[decq661] fold-down full sequence (Clamped)",
384
+ "subject": "18000000136400E803000000000000000000000000FE5F00",
385
+ "string": "1E+6114",
386
+ "match_string": "1.000E+6114"
387
+ },
388
+ {
389
+ "description": "[decq663] fold-down full sequence (Clamped)",
390
+ "subject": "180000001364006400000000000000000000000000FE5F00",
391
+ "string": "1E+6113",
392
+ "match_string": "1.00E+6113"
393
+ },
394
+ {
395
+ "description": "[decq665] fold-down full sequence (Clamped)",
396
+ "subject": "180000001364000A00000000000000000000000000FE5F00",
397
+ "string": "1E+6112",
398
+ "match_string": "1.0E+6112"
399
+ }
400
+ ]
401
+ }
402
+