datafarming 2.3.0 → 2.3.2

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8d7589dc50c37a95f61fcd663202a51b54f5dcab18b40f06fd82a7ca6335a0ae
4
- data.tar.gz: be600740132b28b59ee3b0b11b45dffaa630023b2babc884bb732efdb0757d49
3
+ metadata.gz: 1ef168cea50204b80c99a99cf3f38f358a0d84ef06de0df706cf7e07f2a42a83
4
+ data.tar.gz: efd748c56269ff27569a943762ff2af940fc6b06efc7eac0a574c542ce1a7968
5
5
  SHA512:
6
- metadata.gz: 7d734fadf28fdef038fbb3f4cc9ee0b0d836d0c388345a005ecd3d9609396b411e527e7f408832a69dade7414ae01c1d016fc16a475be9b6a91045390c88fa44
7
- data.tar.gz: 51122d843649187c2e335244b532d1df783fb100c5f0588f9965e604d1570a4cd036b44694590d1368087e13f2eff4649261803d23943512ca9c8032a1afae7b
6
+ metadata.gz: 993ce76465c47dc73da8632e36e34dee5480bec25e69482d8204702e5ffae4762d631cce32f642c1a12eeb9f51f86697505762a97131387442cf5a665e0988a2
7
+ data.tar.gz: 12863b1bf2ec5f348666840257fadf42ec597bc4c1671db3d957d454f265a794a1db1600eb38df206a5cbd7004ff1a122e848b91aa22ea5a2f2a069fe19f9831
@@ -4,6 +4,7 @@
4
4
  # require 'colorize'
5
5
  # String.disable_colorization false
6
6
  # require 'datafarming/error_handling'
7
+ RubyVM::YJIT.enable if defined?(RubyVM::YJIT) && RubyVM::YJIT.respond_to?(:enable)
7
8
 
8
9
  require 'optparse'
9
10
  require 'yaml'
@@ -234,7 +235,7 @@ def parse_args
234
235
  'Number of factors',
235
236
  'Ignored if optional factor specs provided') do |k|
236
237
  options[:specs] = Array.new(k) do |i|
237
- {id: "X_#{format('%03d', (i + 1))}", :min => -1, :max => 1 }
238
+ {id: "X_#{format('%03d', (i + 1))}", :min => -1, :max => 1, :decimals => nil}
238
239
  end
239
240
  k
240
241
  end
data/exe/mser_nolbm.rb CHANGED
@@ -84,35 +84,31 @@ def nolbm(data)
84
84
  avg = best[1]
85
85
  index = best[2]
86
86
  length = data.length - index
87
- m = [length / 31, index].max
88
- b = length / m
89
- m = length / b
90
- index += length - m * b
91
-
92
- mean_stats = QuickStats.new
93
- batch_means = Array.new(b) do
94
- mean_stats.reset
95
- m.times do
96
- mean_stats.new_obs(data[index])
97
- index += 1
98
- end
99
- mean_stats.avg
87
+ b = [length / 30, length / index].min
88
+ m, excess = length.divmod b
89
+ incr, discard = excess.divmod b
90
+ m += incr
91
+ index += discard
92
+ usable = data.drop(index).each_slice(m).to_a
93
+ batch_means = Array.new(b) do |i|
94
+ QuickStats.new.add_set(usable[i]).avg
100
95
  end
101
- sum_squared_deviations = batch_means.
102
- map { |y| square(y - avg)}.
103
- inject(&:+)
104
- var_hat = sum_squared_deviations / (b - 1)
96
+ sum_squared_deviations = batch_means
97
+ .map { |y| square(y - avg)}
98
+ .inject(&:+)
105
99
  df = (b - 1)
100
+ var_hat = sum_squared_deviations / df
101
+ std_dev = Math.sqrt(var_hat)
106
102
  std_err = Math.sqrt(var_hat / b)
107
103
  half_width = T_VALUE[df] * std_err
108
104
  lower = avg - half_width
109
105
  upper = avg + half_width
110
- printf "%f,%f,%d,%f,%f\n", avg, std_err, df, lower, upper
106
+ printf "%f,%f,%f,%d,%f,%f\n", avg, std_dev, std_err, df, lower, upper
111
107
  end
112
108
 
113
- puts "sample_mean,std_err,df,lower95_bound,upper95_bound"
114
- if ARGF.filename == "-"
115
- data = STDIN.readlines
109
+ puts "sample_mean,std_dev,std_err,df,lower95_bound,upper95_bound"
110
+ if ARGV.empty?
111
+ data = ARGF.readlines
116
112
  nolbm(data)
117
113
  else
118
114
  ARGV.each do |fname|
data/exe/mser_olbm.rb CHANGED
@@ -100,16 +100,18 @@ def olbm(data)
100
100
  inject(&:+)
101
101
 
102
102
  se_sqr = (m.to_f / ((length - m) * (length - m + 1))) * sum_squared_deviations
103
+ std_err = Math.sqrt(se_sqr)
103
104
  df = (3 * (b - 1) * (1 + (b - 1.0)**(-0.5 - 0.6 * b))).to_i / 2
104
- half_width = T_VALUE[df] * Math.sqrt(se_sqr)
105
+ std_dev = Math.sqrt(se_sqr * (df + 1))
106
+ half_width = T_VALUE[df] * std_err
105
107
  lower = avg - half_width
106
108
  upper = avg + half_width
107
- printf "%f,%f,%d,%f,%f\n", avg, Math.sqrt(se_sqr), df, lower, upper
109
+ printf "%f,%f,%f,%d,%f,%f\n", avg, std_dev, std_err, df, lower, upper
108
110
  end
109
111
 
110
- puts "sample_mean,std_err,df,lower95_bound,upper95_bound"
111
- if ARGF.filename == "-"
112
- data = STDIN.readlines
112
+ puts "sample_mean,std_dev,std_err,df,lower95_bound,upper95_bound"
113
+ if ARGV.empty?
114
+ data = ARGF.readlines
113
115
  olbm(data)
114
116
  else
115
117
  ARGV.each do |fname|
@@ -23,8 +23,7 @@ module FBD
23
23
  ),
24
24
  5 => DesignSet.new(
25
25
  nyq: 59, freqs: [
26
- [1, 2, 8, 13, 21],
27
- [1, 4, 10, 14, 26]
26
+ [1, 2, 8, 13, 21]
28
27
  ]
29
28
  ),
30
29
  6 => DesignSet.new(
@@ -49,79 +48,458 @@ module FBD
49
48
  ),
50
49
  10 => DesignSet.new(
51
50
  nyq: 251, freqs: [
52
- [1, 2, 8, 13, 37, 54, 67, 86, 94, 114],
53
- [1, 2, 9, 14, 35, 44, 73, 92, 98, 112],
54
- [1, 2, 12, 19, 27, 46, 62, 68, 98, 121],
55
- [1, 7, 8, 12, 37, 49, 59, 77, 80, 112]
51
+ [1, 2, 8, 13, 37, 54, 67, 86, 94, 114]
56
52
  ]
57
53
  ),
58
54
  11 => DesignSet.new(
59
55
  nyq: 317, freqs: [
60
- [1, 2, 7, 42, 59, 78, 88, 101, 112, 133, 151],
61
- [1, 2, 11, 41, 57, 89, 104, 118, 124, 142, 149]
56
+ [1, 2, 7, 42, 59, 78, 88, 101, 112, 133, 151]
62
57
  ]
63
58
  ),
64
59
  12 => DesignSet.new(
65
60
  nyq: 359, freqs: [
66
- [1, 2, 17, 22, 28, 60, 68, 96, 109, 144, 151, 161],
67
- [1, 2, 24, 51, 59, 66, 79, 95, 113, 125, 158, 164]
61
+ [1, 2, 17, 22, 28, 60, 68, 96, 109, 144, 151, 161]
68
62
  ]
69
63
  ),
70
64
  13 => DesignSet.new(
71
- nyq: 499, freqs: [
72
- [1, 2, 7, 36, 51, 63, 82, 102, 142, 149, 159, 170, 218]
65
+ nyq: 457, freqs: [
66
+ [1, 23, 38, 55, 58, 59, 71, 89, 100, 138, 144, 163, 191]
73
67
  ]
74
68
  ),
75
69
  14 => DesignSet.new(
76
- nyq: 607, freqs: [
77
- [1, 2, 7, 14, 46, 75, 111, 146, 166, 197, 216, 254, 272, 295]
70
+ nyq: 503, freqs: [
71
+ [1, 11, 18, 22, 38, 53, 56, 81, 122, 146, 194, 199, 207, 208]
78
72
  ]
79
73
  ),
80
74
  15 => DesignSet.new(
81
- nyq: 701, freqs: [
82
- [1, 2, 7, 14, 25, 68, 106, 147, 184, 194, 230, 247, 281, 303, 336]
75
+ nyq: 571, freqs: [
76
+ [1, 15, 25, 34, 63, 78, 105, 109, 110, 117, 130, 191, 257, 263, 280]
83
77
  ]
84
78
  ),
85
79
  16 => DesignSet.new(
86
- nyq: 877, freqs: [
87
- [1, 2, 7, 14, 24, 43, 61, 133, 176, 229, 253, 287, 322, 342, 374, 425]
80
+ nyq: 673, freqs: [
81
+ [1, 5, 10, 13, 55, 76, 77, 101, 117, 134, 170, 214, 243, 262, 275, 313]
88
82
  ]
89
83
  ),
90
84
  17 => DesignSet.new(
91
- nyq: 1007, freqs: [
92
- [1, 2, 7, 14, 24, 43, 54, 86, 144, 168, 203, 249, 324, 351, 388, 442, 462]
85
+ nyq: 727, freqs: [
86
+ [1, 8, 16, 21, 39, 60, 64, 130, 156, 166, 201, 207, 235, 289, 308, 319, 322]
93
87
  ]
94
88
  ),
95
89
  18 => DesignSet.new(
96
- nyq: 1279, freqs: [
97
- [37, 38, 40, 44, 49, 57, 67, 83, 216, 241, 274, 386, 427, 449, 496, 517, 568, 632]
90
+ nyq: 889, freqs: [
91
+ [1, 23, 41, 44, 50, 51, 76, 110, 130, 186, 200, 233, 244, 248, 305, 376, 388, 417]
98
92
  ]
99
93
  ),
100
94
  19 => DesignSet.new(
101
- nyq: 1433, freqs: [
102
- [37, 38, 40, 44, 49, 57, 67, 83, 108, 220, 251, 323, 389, 413, 449, 568, 590, 622, 637],
103
- [37, 38, 40, 44, 49, 57, 67, 83, 108, 239, 272, 330, 351, 382, 481, 536, 596, 649, 699]
95
+ nyq: 1019, freqs: [
96
+ [1, 8, 14, 32, 46, 85, 89, 90, 155, 185, 197, 205, 222, 323, 349, 417, 468, 478, 489]
104
97
  ]
105
98
  ),
106
99
  20 => DesignSet.new(
107
- nyq: 1583, freqs: [
108
- [1, 2, 7, 14, 24, 43, 54, 78, 105, 137, 195, 238, 310, 430, 450, 496, 561, 595, 683, 772]
100
+ nyq: 1339, freqs: [
101
+ [1, 16, 23, 43, 44, 56, 79, 93, 97, 204, 207, 272, 310, 336, 361, 469, 479, 531, 562, 635]
109
102
  ]
110
103
  ),
111
104
  21 => DesignSet.new(
112
- nyq: 1871, freqs: [
113
- [1, 4, 10, 17, 29, 52, 67, 89, 132, 164, 218, 242, 312, 343, 425, 498, 598, 700, 755, 795, 882]
105
+ nyq: 1613, freqs: [
106
+ [1, 7, 17, 22, 26, 72, 98, 129, 130, 191, 255, 283, 324, 394, 441, 490, 528, 591, 628, 734, 769]
107
+ ]
108
+ ),
109
+ 22 => DesignSet.new(
110
+ nyq: 1867, freqs: [
111
+ [1, 10, 13, 17, 41, 54, 60, 117, 134, 156, 166, 228, 253, 318, 356, 431, 520, 603, 611, 751, 807, 836]
112
+ ]
113
+ ),
114
+ 23 => DesignSet.new(
115
+ nyq: 2083, freqs: [
116
+ [1, 9, 55, 58, 71, 80, 86, 91, 103, 194, 272, 301, 315, 322, 341, 506, 548, 623, 670, 775, 802, 843, 942]
117
+ ]
118
+ ),
119
+ 24 => DesignSet.new(
120
+ nyq: 2341, freqs: [
121
+ [1, 8, 13, 19, 41, 54, 58, 77, 158, 192, 221, 305, 348, 399, 501, 531, 622, 637, 725, 786, 858, 895, 1018, 1158]
122
+ ]
123
+ ),
124
+ 25 => DesignSet.new(
125
+ nyq: 2543, freqs: [
126
+ [1, 8, 18, 41, 42, 45, 53, 109, 134, 182, 237, 258, 362, 392, 467, 506, 606, 626, 728, 779, 794, 808, 1005, 1083, 1206]
127
+ ]
128
+ ),
129
+ 26 => DesignSet.new(
130
+ nyq: 2837, freqs: [
131
+ [1, 6, 24, 27, 38, 51, 110, 118, 119, 159, 165, 225, 295, 364, 380, 400, 490, 612, 712, 796, 800, 963, 978, 1107, 1258, 1332]
132
+ ]
133
+ ),
134
+ 27 => DesignSet.new(
135
+ nyq: 3119, freqs: [
136
+ [1, 6, 29, 30, 39, 47, 91, 94, 113, 195, 222, 297, 303, 376, 413, 516, 550, 648, 761, 765, 815, 914, 1001, 1201, 1215, 1377, 1388]
114
137
  ]
115
138
  ),
116
139
  28 => DesignSet.new(
117
- nyq: 3931, freqs: [
118
- [1, 4, 10, 17, 29, 52, 67, 89, 132, 164, 205, 259, 303, 350, 405, 505, 529, 588, 757, 1046, 1072, 1270, 1377, 1490, 1535, 1702, 1738, 1915]
140
+ nyq: 3413, freqs: [
141
+ [1, 5, 10, 23, 26, 63, 64, 71, 114, 148, 171, 215, 310, 327, 402, 441, 473, 571, 694, 754, 942, 984, 1102, 1149, 1282, 1308, 1418, 1651]
142
+ ]
143
+ ),
144
+ 29 => DesignSet.new(
145
+ nyq: 3761, freqs: [
146
+ [1, 4, 10, 22, 56, 63, 87, 91, 159, 197, 222, 267, 315, 431, 453, 529, 542, 558, 682, 796, 839, 921, 1100, 1242, 1252, 1447, 1580, 1748, 1797]
119
147
  ]
120
148
  ),
121
149
  30 => DesignSet.new(
122
- nyq: 4493, freqs: [
123
- [1, 2, 7, 14, 24, 43, 54, 78, 105, 137, 171, 236, 282, 325, 345, 415, 487, 602, 703, 791, 1008, 1057, 1171, 1397, 1591, 1716, 1790, 1900, 2141, 2228]
150
+ nyq: 4177, freqs: [
151
+ [1, 15, 22, 40, 46, 51, 78, 86, 145, 160, 217, 220, 353, 372, 437, 586, 587, 690, 699, 815, 903, 1073, 1106, 1154, 1295, 1384, 1406, 1482, 1801, 1911]
152
+ ]
153
+ ),
154
+ 31 => DesignSet.new(
155
+ nyq: 4643, freqs: [
156
+ [1, 5, 13, 16, 43, 56, 92, 114, 138, 145, 208, 255, 376, 410, 426, 451, 490, 593, 717, 782, 783, 1052, 1097, 1266, 1275, 1485, 1605, 1665, 2007, 2085, 2232]
157
+ ]
158
+ ),
159
+ 32 => DesignSet.new(
160
+ nyq: 4967, freqs: [
161
+ [1, 8, 32, 38, 42, 43, 97, 105, 158, 206, 224, 318, 331, 389, 409, 511, 530, 558, 686, 831, 848, 965, 1001, 1156, 1314, 1498, 1621, 1860, 1916, 2077, 2169, 2201]
162
+ ]
163
+ ),
164
+ 33 => DesignSet.new(
165
+ nyq: 5347, freqs: [
166
+ [1, 2, 10, 27, 32, 48, 67, 110, 120, 134, 205, 223, 275, 348, 403, 439, 454, 639, 699, 740, 950, 957, 1096, 1159, 1285, 1457, 1638, 1754, 1877, 2071, 2152, 2231, 2381]
167
+ ]
168
+ ),
169
+ 34 => DesignSet.new(
170
+ nyq: 5821, freqs: [
171
+ [1, 7, 11, 18, 49, 50, 73, 125, 152, 165, 210, 238, 292, 307, 400, 504, 539, 629, 734, 862, 865, 974, 995, 1130, 1250, 1399, 1570, 1691, 1975, 2058, 2367, 2620, 2777, 2906]
172
+ ]
173
+ ),
174
+ 35 => DesignSet.new(
175
+ nyq: 6317, freqs: [
176
+ [1, 6, 9, 23, 29, 66, 79, 106, 145, 199, 200, 263, 325, 366, 442, 467, 573, 677, 722, 775, 958, 1088, 1114, 1228, 1261, 1517, 1568, 1677, 1829, 2015, 2111, 2649, 2836, 2845, 2998]
177
+ ]
178
+ ),
179
+ 36 => DesignSet.new(
180
+ nyq: 6763, freqs: [
181
+ [1, 17, 18, 21, 28, 61, 75, 87, 112, 184, 232, 247, 255, 322, 374, 424, 565, 691, 712, 822, 846, 997, 1149, 1204, 1210, 1427, 1678, 1799, 1987, 2019, 2151, 2367, 2589, 2879, 3003, 3016]
182
+ ]
183
+ ),
184
+ 37 => DesignSet.new(
185
+ nyq: 7211, freqs: [
186
+ [1, 2, 7, 19, 34, 53, 64, 95, 123, 172, 179, 222, 246, 389, 414, 551, 651, 698, 746, 756, 859, 1005, 1044, 1180, 1364, 1527, 1645, 1849, 2106, 2247, 2430, 2516, 2744, 2813, 3128, 3141, 3563]
187
+ ]
188
+ ),
189
+ 38 => DesignSet.new(
190
+ nyq: 7817, freqs: [
191
+ [1, 6, 7, 28, 38, 58, 81, 100, 136, 184, 254, 304, 337, 377, 395, 544, 547, 695, 710, 822, 860, 1074, 1273, 1420, 1461, 1522, 1647, 1693, 1747, 1891, 2217, 2455, 2502, 2717, 2956, 3089, 3370, 3437]
192
+ ]
193
+ ),
194
+ 39 => DesignSet.new(
195
+ nyq: 8419, freqs: [
196
+ [1, 8, 16, 21, 22, 49, 68, 108, 142, 153, 221, 233, 315, 427, 430, 466, 529, 625, 730, 796, 982, 992, 1100, 1131, 1496, 1631, 1684, 1899, 1903, 2086, 2174, 2432, 2610, 2659, 2685, 3030, 3335, 3412, 3971]
197
+ ]
198
+ ),
199
+ 40 => DesignSet.new(
200
+ nyq: 8887, freqs: [
201
+ 8887,[1, 8, 14, 32, 35, 55, 80, 90, 141, 193, 201, 258, 329, 355, 430, 546, 654, 756, 798, 897, 1020, 1144, 1224, 1262, 1274, 1405, 1525, 1632, 1964, 2090, 2397, 2536, 2700, 2912, 3120, 3197, 3429, 3615, 3826, 4159]
202
+ ]
203
+ ),
204
+ 41 => DesignSet.new(
205
+ nyq: 10193, freqs: [
206
+ [1,90,91,94,99,111,118,141,147,157,226,294,371,446,522,605,701,719,733,1002,1072,1127,1179,1333,1446,1505,1540,1900,2190,2227,2376,2619,2905,2965,3402,3475,3540,4056,4105,4216,4607]
207
+ ]
208
+ ),
209
+ 42 => DesignSet.new(
210
+ nyq: 11071, freqs: [
211
+ [1,21,29,32,44,53,91,130,137,208,252,307,347,373,487,500,501,611,759,908,1094,1173,1198,1370,1640,1712,1864,1927,2229,2362,2553,2609,2660,2922,3256,3337,3686,3827,3861,4249,4532,4832]
212
+ ]
213
+ ),
214
+ 43 => DesignSet.new(
215
+ nyq: 11681, freqs: [
216
+ [1,2,12,30,35,52,91,98,110,118,153,247,277,325,469,564,616,721,857,914,988,1113,1157,1198,1499,1690,1892,2038,2177,2319,2400,2576,2829,2995,3371,3448,3532,3983,4277,4541,4725,4956,5027]
217
+ ]
218
+ ),
219
+ 44 => DesignSet.new(
220
+ nyq: 11897, freqs: [
221
+ [1,16,21,27,34,50,103,112,115,142,247,292,306,404,527,558,616,725,899,903,1078,1185,1260,1378,1563,1642,1893,2033,2189,2362,2425,2629,2825,2872,3141,3313,3607,3693,3854,4042,4312,4796,5372,5703]
222
+ ]
223
+ ),
224
+ 45 => DesignSet.new(
225
+ nyq: 12589, freqs: [
226
+ [1,11,19,32,36,43,72,121,130,178,254,255,354,393,463,591,618,721,866,922,989,1069,1282,1394,1487,1510,1682,1944,2040,2447,2461,2741,2848,3079,3231,3265,3653,3807,3992,4113,4460,4561,5098,5382,5477]
227
+ ]
228
+ ),
229
+ 46 => DesignSet.new(
230
+ nyq: 13577, freqs: [
231
+ [1,18,22,27,47,69,77,133,149,186,247,261,380,470,501,631,644,702,847,930,954,1059,1317,1398,1475,1619,1622,1860,2149,2156,2337,2844,2896,3103,3429,3578,3686,3704,4218,4284,4604,5041,5263,5449,5614,5985]
232
+ ]
233
+ ),
234
+ 47 => DesignSet.new(
235
+ nyq: 14327, freqs: [
236
+ [1,8,9,22,46,61,94,128,160,203,209,307,326,439,450,585,635,769,825,995,1139,1166,1319,1344,1408,1817,1878,1890,2093,2164,2515,2572,2690,3032,3073,3423,3427,3660,4081,4175,4382,4573,5056,5421,5860,6570,6883]
237
+ ]
238
+ ),
239
+ 48 => DesignSet.new(
240
+ nyq: 15461, freqs: [
241
+ [1,4,10,23,33,58,97,118,133,183,200,292,318,431,472,530,698,809,879,1044,1116,1264,1344,1475,1627,1667,1917,2011,2238,2549,2633,2805,2945,3307,3383,3390,3660,3757,3965,4170,4497,4803,5528,5802,6144,6436,7195,7366]
242
+ ]
243
+ ),
244
+ 49 => DesignSet.new(
245
+ nyq: 16217, freqs: [
246
+ [1,37,44,53,57,68,74,97,129,139,242,261,377,460,461,524,538,705,754,805,813,993,1355,1367,1435,1595,1786,1832,2038,2182,2456,2607,2756,3145,3301,3820,3886,4045,4292,4694,4823,5301,5390,5812,6206,6376,6864,7212,7364]
247
+ ]
248
+ ),
249
+ 50 => DesignSet.new(
250
+ nyq: 16843, freqs: [
251
+ [1,27,32,33,42,71,79,124,160,173,180,259,369,442,469,499,636,703,798,924,1109,1192,1389,1403,1645,1696,1767,1953,2218,2335,2584,2609,2785,2862,3022,3371,3510,3642,4016,4123,4288,4864,5134,5459,5593,5880,6185,6480,7471,7662]
252
+ ]
253
+ ),
254
+ 51 => DesignSet.new(
255
+ nyq: 17737, freqs: [
256
+ [1,10,11,14,41,58,64,99,128,166,211,243,277,369,425,560,641,734,807,957,994,1153,1249,1498,1704,1709,1943,2034,2105,2394,2420,2700,2937,3031,3199,3345,3640,3964,4043,4260,4718,5225,5559,5645,5790,6242,6490,6983,7643,7946,8617]
257
+ ]
258
+ ),
259
+ 52 => DesignSet.new(
260
+ nyq: 19213, freqs: [
261
+ [1,12,21,26,38,44,101,111,152,180,273,281,379,488,504,548,645,752,885,943,1061,1227,1362,1424,1582,1747,1793,2009,2195,2454,2604,2659,2848,3174,3246,3608,3811,3939,4126,4527,4561,5085,5106,5635,5892,6885,6889,6938,7514,7515,8026,8448]
262
+ ]
263
+ ),
264
+ 53 => DesignSet.new(
265
+ nyq: 19553, freqs: [
266
+ [1,7,12,22,34,38,74,81,99,129,178,263,283,346,412,496,550,666,805,919,1065,1097,1262,1419,1561,1651,1859,1897,2042,2238,2369,2685,2878,2948,3349,3484,3839,4205,4307,4364,4670,4920,5231,5583,5958,6411,6630,6806,7382,7780,8212,8620,8923]
267
+ ]
268
+ ),
269
+ 54 => DesignSet.new(
270
+ nyq: 21089, freqs: [
271
+ [1,22,28,42,47,54,101,137,153,168,234,326,371,431,448,535,565,781,951,1000,1022,1198,1359,1489,1667,1675,1912,2111,2172,2396,2506,2638,2867,2947,3298,3386,3672,3898,4289,4582,4830,4904,5558,5873,6155,6321,6952,6985,7575,7747,8382,8940,9586,9950]
272
+ ]
273
+ ),
274
+ 55 => DesignSet.new(
275
+ nyq: 22111, freqs: [
276
+ [1,36,37,44,53,57,63,86,104,165,199,316,330,369,513,537,671,693,888,932,1082,1128,1214,1474,1485,1749,1902,2062,2133,2564,2621,2780,3061,3089,3165,3411,3685,3951,4156,4327,4819,4988,5053,5477,5891,6543,6652,7091,7759,8066,8286,8413,8772,9410,10060]
277
+ ]
278
+ ),
279
+ 56 => DesignSet.new(
280
+ nyq: 23173, freqs: [
281
+ [1,6,9,23,36,59,87,103,143,174,222,288,299,351,457,542,568,756,830,960,961,1179,1185,1234,1388,1445,1764,1888,2048,2386,2518,2671,2897,3038,3138,3389,3546,3722,4244,4277,4548,4746,5155,5539,5939,6186,6545,6738,7308,8152,8285,8588,9117,9564,10416,10559]
282
+ ]
283
+ ),
284
+ 57 => DesignSet.new(
285
+ nyq: 23671, freqs: [
286
+ [1,13,24,33,46,63,84,128,164,206,216,222,322,378,447,476,642,809,813,955,1009,1187,1262,1504,1544,1728,1971,1989,2252,2470,2594,2867,2874,2958,3331,3417,3618,4069,4181,4727,5117,5219,5493,5546,6066,6300,7016,7206,7283,7587,7889,8416,8443,9117,9829,10311,10642]
287
+ ]
288
+ ),
289
+ 58 => DesignSet.new(
290
+ nyq: 24923, freqs: [
291
+ [1,23,27,30,41,46,97,124,130,223,260,272,304,362,470,598,632,704,784,921,1012,1209,1331,1475,1476,1679,1687,1874,2094,2285,2404,2576,2898,3227,3360,3544,3816,3997,4253,4454,4621,5094,5310,5914,6403,6420,6608,6660,7099,7644,8434,8770,8959,9931,10081,10663,10881,11410]
292
+ ]
293
+ ),
294
+ 59 => DesignSet.new(
295
+ nyq: 26237, freqs: [
296
+ [1,5,14,28,49,50,89,96,121,155,208,273,284,310,446,503,612,693,858,861,986,1212,1386,1500,1518,1700,1844,1929,2306,2364,2543,2843,2976,3124,3323,3476,3946,4217,4601,4914,4976,4988,5386,6134,6469,6963,7154,7284,7834,8364,8913,9121,9502,10008,10024,10523,10695,11013,11608]
297
+ ]
298
+ ),
299
+ 60 => DesignSet.new(
300
+ nyq: 27967, freqs: [
301
+ [1,30,35,42,57,63,67,81,116,199,216,270,355,410,458,537,662,775,906,1001,1002,1178,1225,1368,1443,1456,1584,1860,1966,2267,2527,2739,2923,3014,3251,3567,3917,4201,4221,4779,5042,5287,5574,5935,6134,6212,6595,6891,6917,7322,7709,8194,8705,8809,8866,9531,10015,10537,11411,11830]
302
+ ]
303
+ ),
304
+ 61 => DesignSet.new(
305
+ nyq: 29363, freqs: [
306
+ [1,40,46,49,64,72,83,100,110,140,207,315,418,505,540,619,700,721,817,891,1045,1175,1233,1490,1543,1565,1609,1782,2159,2228,2547,2731,2960,3181,3384,3642,3827,3979,4094,4353,4601,5128,5304,5567,6082,6574,6679,6680,7623,7817,8026,8731,9194,9889,10042,10624,11149,11954,12442,12644,13004]
307
+ ]
308
+ ),
309
+ 62 => DesignSet.new(
310
+ nyq: 30427, freqs: [
311
+ [1,14,26,32,35,36,77,101,109,191,198,309,348,402,440,488,593,754,853,970,1017,1177,1297,1480,1576,1724,1747,2011,2357,2481,2597,2834,2940,3149,3277,3407,3539,3596,3994,4596,4694,5086,5115,5337,5613,6310,6957,7213,7454,7649,8515,8930,9049,9262,9852,10733,10998,11315,11870,12382,13019,13380]
124
312
  ]
125
- )
313
+ ),
314
+ 63 => DesignSet.new(
315
+ nyq: 31771, freqs: [
316
+ [1,40,41,44,54,60,77,92,127,233,251,277,305,416,428,535,591,657,725,817,987,1092,1250,1477,1733,1812,1886,1957,2327,2351,2582,2790,2932,3029,3232,3502,3682,3843,4206,4269,4780,4883,5443,5712,5995,6191,6614,7351,7563,7659,8081,8279,8756,9272,9686,10540,11131,11275,11377,12215,12262,12839,13675]
317
+ ]
318
+ ),
319
+ 64 => DesignSet.new(
320
+ nyq: 33181, freqs: [
321
+ [1,18,21,22,28,73,82,106,120,243,256,274,382,414,451,563,631,696,890,1047,1055,1114,1346,1381,1629,1682,1807,2048,2277,2468,2786,2895,2961,3040,3489,3722,3770,4055,4244,4359,4760,4970,5307,5489,5728,6086,6392,6591,6965,7289,7969,8792,8924,9109,10030,10609,10805,11148,11463,11525,12339,12840,13616,14569]
322
+ ]
323
+ ),
324
+ 65 => DesignSet.new(
325
+ nyq: 35059, freqs: [
326
+ [1,9,14,15,26,48,68,106,113,132,192,258,301,347,466,514,615,651,785,990,1125,1176,1348,1477,1527,1637,1821,2068,2158,2231,2455,2676,2732,2880,3263,3434,3977,4134,4528,4845,5141,5271,5554,5649,6112,6205,6523,7027,7320,7809,8477,8955,9216,9427,9833,10754,10835,11781,11852,12421,13166,13915,14180,14426,14751]
327
+ ]
328
+ ),
329
+ 66 => DesignSet.new(
330
+ nyq: 35839, freqs: [
331
+ [1,20,26,29,33,43,44,123,128,179,239,296,304,416,497,558,595,733,824,907,1039,1114,1312,1394,1557,1675,1925,1961,2164,2353,2544,2654,2728,3056,3402,3549,3864,3935,4320,4651,4766,4906,5098,5398,5855,6264,6924,7165,7473,7808,8119,8996,9196,9927,10089,10635,10666,11387,11605,12109,12493,13469,13894,14352,15062,15168]
332
+ ]
333
+ ),
334
+ 67 => DesignSet.new(
335
+ nyq: 37217, freqs: [
336
+ [1,20,27,28,32,64,78,89,131,165,203,277,322,404,424,548,578,748,861,910,976,1126,1340,1483,1601,1624,1841,1949,2160,2235,2459,2476,2657,3119,3457,3591,3768,3838,4276,4779,4873,4966,5034,5930,6176,6486,6641,6856,7610,7885,7901,8690,8953,9546,9619,9958,10690,10850,11677,12169,13040,13229,13763,14023,14106,14580,15354]
337
+ ]
338
+ ),
339
+ 68 => DesignSet.new(
340
+ nyq: 39667, freqs: [
341
+ [1,22,23,31,34,48,82,89,162,167,204,254,362,401,465,508,682,710,782,834,1042,1263,1339,1432,1607,1728,1814,2077,2168,2178,2372,2581,2817,3140,3470,3735,3748,4339,4631,4785,5049,5479,5622,5628,6104,6214,6650,7054,7214,7906,8333,8727,8833,9640,9775,10308,11029,11186,11468,12389,12868,13638,14416,14663,14699,14788,15473,16365]
342
+ ]
343
+ ),
344
+ 69 => DesignSet.new(
345
+ nyq: 41887, freqs: [
346
+ [1,17,25,26,30,36,95,115,143,206,238,252,335,410,544,608,694,761,841,1006,1023,1111,1325,1477,1633,1800,1807,1946,2131,2342,2539,2810,2972,3229,3311,3488,3510,3882,4543,4721,4854,5257,5682,5740,6027,6210,6901,7151,7477,7749,8572,8876,8909,9584,9779,10096,10716,11104,11934,12897,12971,13520,13796,14124,14689,15417,15890,16531,17295]
347
+ ]
348
+ ),
349
+ 70 => DesignSet.new(
350
+ nyq: 43313, freqs: [
351
+ [1,22,25,36,42,64,82,91,95,203,257,265,290,391,506,562,664,702,902,1025,1105,1120,1311,1455,1564,1615,1649,1929,2139,2140,2401,2483,3004,3240,3582,3692,3919,4313,4435,4465,4510,4968,5527,5707,6146,6578,6962,7363,7681,7838,8415,8778,9140,9395,9719,10440,10902,11574,11974,12773,13764,13780,14169,15081,15498,16087,16932,17649,18166,18319]
352
+ ]
353
+ ),
354
+ 71 => DesignSet.new(
355
+ nyq: 44203, freqs: [
356
+ [1,9,16,25,30,36,58,105,148,167,230,307,337,385,511,523,596,718,813,900,1036,1184,1248,1598,1638,1826,1839,1923,2180,2295,2400,2626,2896,3025,3279,3450,3790,4058,4129,4363,4985,5138,5452,5696,6083,6403,7072,7590,7666,7833,8197,8473,8527,9154,10078,10494,11239,12047,13046,13159,13999,14381,14808,15137,15903,16478,16915,17354,18260,18487,18490]
357
+ ]
358
+ ),
359
+ 72 => DesignSet.new(
360
+ nyq: 46049, freqs: [
361
+ [1,29,42,54,61,77,115,141,187,190,339,340,396,503,543,654,699,827,906,948,1065,1133,1202,1441,1455,1686,1903,2023,2118,2273,2539,2714,2832,3245,3327,3338,3796,4070,4117,4488,4759,5144,5148,6065,6071,6477,6810,6875,7335,7771,8039,8185,8535,9366,9886,10762,11031,11191,11574,12071,12745,13719,13778,14334,15157,16014,16254,16959,17889,18596,19250,19709]
362
+ ]
363
+ ),
364
+ 73 => DesignSet.new(
365
+ nyq: 48649, freqs: [
366
+ [1,70,74,75,83,94,104,131,153,191,216,230,401,429,493,519,682,737,864,978,1066,1109,1175,1535,1710,1810,1914,1930,2163,2282,2336,2659,2699,3169,3481,3616,3684,4095,4201,4811,4913,5553,5691,5933,6172,6422,6838,7496,7954,8223,8614,8995,9956,10139,10487,11045,11842,12135,12467,12861,13144,13700,14378,15129,16098,16901,17265,17441,17696,18343,18825,19805,19918]
367
+ ]
368
+ ),
369
+ 74 => DesignSet.new(
370
+ nyq: 50593, freqs: [
371
+ [1,19,22,28,32,33,91,116,162,169,184,258,270,430,456,563,679,777,785,825,998,1043,1120,1169,1468,1579,1885,2044,2300,2474,2550,2859,3171,3351,3370,3578,3953,4131,4365,4444,4942,5308,5573,5777,6131,6956,7461,7844,7969,8233,8699,8736,9135,9649,10252,10492,10960,11572,11677,12531,13168,13504,14171,14529,15133,16012,16468,17020,17598,18131,19084,19237,20012,20902]
372
+ ]
373
+ ),
374
+ 75 => DesignSet.new(
375
+ nyq: 53077, freqs: [
376
+ [1,4,8,19,43,56,86,112,140,157,186,274,337,377,396,585,664,801,834,1035,1096,1270,1271,1396,1575,1738,1871,1924,2225,2420,2708,2740,2892,3311,3392,3596,3927,4004,4226,4561,4828,4869,5487,6174,6464,6770,7216,7462,7988,8358,8917,8923,9242,9653,9981,10331,10950,11493,12299,13102,13725,13775,14349,15279,15352,15978,16727,17436,18072,18616,19296,20274,20618,20975,21182]
377
+ ]
378
+ ),
379
+ 76 => DesignSet.new(
380
+ nyq: 54323, freqs: [
381
+ [1,36,40,48,54,59,84,104,111,173,215,282,356,399,421,575,657,703,837,910,923,1127,1248,1479,1507,1689,1704,1885,2132,2238,2361,2641,2798,2948,3141,3331,3568,3976,4136,4337,4555,4968,5453,5731,5829,6115,6910,7055,7423,7886,8097,8851,8883,9458,9902,10400,10712,11389,12336,12521,12786,13603,14368,14854,15417,16351,17147,17349,17839,18692,19416,20321,20352,20551,21155,21692]
382
+ ]
383
+ ),
384
+ 77 => DesignSet.new(
385
+ nyq: 57847, freqs: [
386
+ [1,9,15,18,38,60,72,115,163,164,189,230,282,423,481,485,525,681,788,901,1040,1183,1265,1415,1623,1734,1842,1870,2254,2391,2660,2706,2999,3210,3241,3526,3627,3803,4108,4373,4438,4763,5489,5870,6164,6531,6959,7288,7636,8368,8703,8843,9132,9416,10177,10841,11181,11990,12299,12851,13398,14146,14847,15161,15891,16201,16790,17172,17941,18919,19195,20109,20622,21459,21739,22573,22920]
387
+ ]
388
+ ),
389
+ 78 => DesignSet.new(
390
+ nyq: 60091, freqs: [
391
+ [1,15,25,34,38,63,85,90,167,175,246,289,292,423,478,558,594,651,895,1008,1111,1180,1289,1307,1529,1650,1691,1970,2057,2280,2346,2504,2828,2882,3201,3428,3593,3756,4270,4328,4543,4757,5595,5776,6120,6554,6929,7407,8149,8296,8402,8546,8969,9867,10471,10986,11425,11731,12377,13151,13369,13888,14755,15124,15278,15761,16708,17633,18249,19141,20078,20399,20805,21185,21982,22725,23011,23966]
392
+ ]
393
+ ),
394
+ 79 => DesignSet.new(
395
+ nyq: 62969, freqs: [
396
+ [1,17,18,28,40,48,100,121,191,250,312,336,414,498,592,595,853,986,1030,1283,1373,1482,1700,1871,2025,2058,2172,2544,2789,2798,2987,3266,3436,3615,3739,3865,4399,4476,4571,5032,5336,5621,5695,5861,6184,6621,6675,7478,7899,8344,9026,9283,9653,10646,10979,11446,11921,12621,12646,13380,13941,14060,14445,15175,15491,15871,16331,16914,17893,18352,18912,19390,19583,20518,21308,21442,21724,22263,23082]
397
+ ]
398
+ ),
399
+ 80 => DesignSet.new(
400
+ nyq: 66377, freqs: [
401
+ [1,27,38,48,51,56,83,143,173,189,211,325,356,368,465,553,614,634,761,864,1062,1121,1251,1314,1506,1686,1851,2083,2087,2406,2657,2699,2750,3217,3451,3666,3699,4159,4382,4497,4621,5140,5290,5641,5888,6169,6626,7353,7461,7724,8116,8659,8782,9113,9138,10007,10409,10480,11397,12100,12662,13516,14121,14770,14977,15666,16289,16991,17566,17956,18585,19558,20465,21086,21770,22444,23139,23864,24807,25266]
402
+ ]
403
+ ),
404
+ 81 => DesignSet.new(
405
+ nyq: 67883, freqs: [
406
+ [1,15,39,43,54,66,76,126,211,240,285,388,464,554,625,698,881,961,1062,1262,1354,1379,1552,1614,1863,1922,1929,2195,2334,2382,2689,2826,2986,3461,3907,4056,4448,4752,4852,5178,5541,5611,5887,6410,6786,7142,7296,7787,8076,8117,8931,9741,9903,10109,10483,11480,11839,12197,12895,13479,13947,14042,14586,14690,15195,16132,16871,17825,18314,18903,19834,20783,21640,22458,22840,23136,23953,24678,25110,25549,26195]
407
+ ]
408
+ ),
409
+ 82 => DesignSet.new(
410
+ nyq: 69991, freqs: [
411
+ [1,22,29,30,33,39,72,86,113,192,210,280,305,408,427,508,553,694,798,954,1036,1211,1301,1455,1479,1809,1932,2068,2133,2396,2728,2804,3028,3095,3299,3519,3935,4188,4398,4785,4917,5054,5487,5741,5946,6021,6431,7141,7377,8126,8570,8688,9323,9585,10201,10607,10655,11160,11946,11983,12916,13351,14190,14351,15202,15894,16090,16511,17149,17833,18753,19527,20412,20912,21608,22454,23259,23419,23792,24563,24837,25806]
412
+ ]
413
+ ),
414
+ 83 => DesignSet.new(
415
+ nyq: 71551, freqs: [
416
+ [1,10,22,44,57,118,156,170,274,396,471,502,521,741,835,1076,1214,1309,1379,1508,1685,1897,2126,2132,2393,2434,2554,2775,2847,3062,3422,3481,3776,4008,4192,4794,5194,5296,5484,5620,5997,6024,6514,6871,7131,7486,8259,8693,9178,9852,10444,10587,10617,11558,12254,12799,13315,14020,14325,14378,15059,15341,15711,16099,16896,17371,18225,18318,18685,19388,20087,21054,21956,22491,23058,24034,24490,25176,25680,26584,27197,27428,27735]
417
+ ]
418
+ ),
419
+ 84 => DesignSet.new(
420
+ nyq: 71551, freqs: [
421
+ [1,10,22,44,57,118,156,170,274,396,471,502,521,741,835,1076,1214,1309,1379,1508,1685,1897,2126,2132,2393,2434,2554,2775,2847,3062,3422,3481,3776,4008,4192,4794,5194,5296,5484,5620,5997,6024,6514,6871,7131,7486,8259,8693,9178,9852,10444,10587,10617,11558,12254,12799,13315,14020,14325,14378,15059,15341,15711,16099,16896,17371,18225,18318,18685,19388,20087,21054,21956,22491,23058,24034,24490,25176,25680,26584,27197,27428,27735,27938]
422
+ ]
423
+ ),
424
+ 85 => DesignSet.new(
425
+ nyq: 78809, freqs: [
426
+ [1,6,9,10,23,44,50,75,105,133,180,251,277,367,403,445,567,676,788,836,908,987,1207,1368,1527,1656,1693,1834,1902,2056,2307,2428,2763,2911,2988,3402,3503,3747,4049,4397,4837,4984,5322,5539,6271,6562,7124,7427,7769,8176,8429,8847,8933,9793,9975,10306,10964,11429,11935,12070,12268,13440,14061,14791,15766,16519,16650,17478,18077,18822,19624,20082,20630,20995,21998,23286,24231,25104,25339,26670,26866,27894,29315,29621,30825]
427
+ ]
428
+ ),
429
+ 86 => DesignSet.new(
430
+ nyq: 82919, freqs: [
431
+ [1,2,9,14,28,34,74,83,105,144,203,237,282,303,418,496,543,601,652,775,825,842,986,1208,1388,1580,1643,1838,2082,2176,2289,2545,2821,3071,3410,3538,3838,4008,4358,4520,4736,4932,5739,5792,6160,6450,6868,7242,7527,8223,8839,9036,9350,9784,10129,10381,10748,10834,12120,12581,12767,13747,14399,15094,15221,15756,17209,17570,17791,19252,20305,20452,21451,22317,22675,23119,23250,24354,24455,26383,27390,27940,28281,29275,30785,30950]
432
+ ]
433
+ ),
434
+ 87 => DesignSet.new(
435
+ nyq: 82919, freqs: [
436
+ [1,2,9,14,28,34,74,83,105,144,203,237,282,303,418,496,543,601,652,775,825,842,986,1208,1388,1580,1643,1838,2082,2176,2289,2545,2821,3071,3410,3538,3838,4008,4358,4520,4736,4932,5739,5792,6160,6450,6868,7242,7527,8223,8839,9036,9350,9784,10129,10381,10748,10834,12120,12581,12767,13747,14399,15094,15221,15756,17209,17570,17791,19252,20305,20452,21451,22317,22675,23119,23250,24354,24455,26383,27390,27940,28281,29275,30785,30950,31156]
437
+ ]
438
+ ),
439
+ 88 => DesignSet.new(
440
+ nyq: 83903, freqs: [
441
+ [1,6,9,10,23,44,50,75,105,133,180,251,277,367,403,445,567,676,788,836,908,987,1207,1368,1527,1656,1693,1834,1902,2056,2307,2428,2763,2911,2988,3402,3503,3747,4049,4397,4837,4984,5322,5539,6271,6562,7124,7427,7769,8176,8429,8847,8933,9793,9975,10306,10964,11429,11935,12070,12268,13440,14061,14791,15766,16519,16650,17478,18077,18822,19624,20082,20630,20995,21998,23286,24231,25104,25339,26670,26866,27894,29315,29621,30825,31776,31921,32941]
442
+ ]
443
+ ),
444
+ 89 => DesignSet.new(
445
+ nyq: 83903, freqs: [
446
+ [1,6,9,10,23,44,50,75,105,133,180,251,277,367,403,445,567,676,788,836,908,987,1207,1368,1527,1656,1693,1834,1902,2056,2307,2428,2763,2911,2988,3402,3503,3747,4049,4397,4837,4984,5322,5539,6271,6562,7124,7427,7769,8176,8429,8847,8933,9793,9975,10306,10964,11429,11935,12070,12268,13440,14061,14791,15766,16519,16650,17478,18077,18822,19624,20082,20630,20995,21998,23286,24231,25104,25339,26670,26866,27894,29315,29621,30825,31776,31921,32941,33712]
447
+ ]
448
+ ),
449
+ 90 => DesignSet.new(
450
+ nyq: 83903, freqs: [
451
+ [1,6,9,10,23,44,50,75,105,133,180,251,277,367,403,445,567,676,788,836,908,987,1207,1368,1527,1656,1693,1834,1902,2056,2307,2428,2763,2911,2988,3402,3503,3747,4049,4397,4837,4984,5322,5539,6271,6562,7124,7427,7769,8176,8429,8847,8933,9793,9975,10306,10964,11429,11935,12070,12268,13440,14061,14791,15766,16519,16650,17478,18077,18822,19624,20082,20630,20995,21998,23286,24231,25104,25339,26670,26866,27894,29315,29621,30825,31776,31921,32941,33712,36272]
452
+ ]
453
+ ),
454
+ 91 => DesignSet.new(
455
+ nyq: 94447, freqs: [
456
+ [1,2,9,14,28,34,74,83,105,144,203,237,282,303,418,496,543,601,652,775,825,842,986,1208,1388,1580,1643,1838,2082,2176,2289,2545,2821,3071,3410,3538,3838,4008,4358,4520,4736,4932,5739,5792,6160,6450,6868,7242,7527,8223,8839,9036,9350,9784,10129,10381,10748,10834,12120,12581,12767,13747,14399,15094,15221,15756,17209,17570,17791,19252,20305,20452,21451,22317,22675,23119,23250,24354,24455,26383,27390,27940,28281,29275,30785,30950,31156,31509,32158,33469,34132]
457
+ ]
458
+ ),
459
+ 92 => DesignSet.new(
460
+ nyq: 95861, freqs: [
461
+ [1,2,9,14,28,34,74,83,105,144,203,237,282,303,418,496,543,601,652,775,825,842,986,1208,1388,1580,1643,1838,2082,2176,2289,2545,2821,3071,3410,3538,3838,4008,4358,4520,4736,4932,5739,5792,6160,6450,6868,7242,7527,8223,8839,9036,9350,9784,10129,10381,10748,10834,12120,12581,12767,13747,14399,15094,15221,15756,17209,17570,17791,19252,20305,20452,21451,22317,22675,23119,23250,24354,24455,26383,27390,27940,28281,29275,30785,30950,31156,31509,32158,33469,34132,37482]
462
+ ]
463
+ ),
464
+ 93 => DesignSet.new(
465
+ nyq: 100979, freqs: [
466
+ [1,2,9,14,28,34,74,83,105,144,203,237,282,303,418,496,543,601,652,775,825,842,986,1208,1388,1580,1643,1838,2082,2176,2289,2545,2821,3071,3410,3538,3838,4008,4358,4520,4736,4932,5739,5792,6160,6450,6868,7242,7527,8223,8839,9036,9350,9784,10129,10381,10748,10834,12120,12581,12767,13747,14399,15094,15221,15756,17209,17570,17791,19252,20305,20452,21451,22317,22675,23119,23250,24354,24455,26383,27390,27940,28281,29275,30785,30950,31156,31509,32158,33469,34132,37482,38526]
467
+ ]
468
+ ),
469
+ 94 => DesignSet.new(
470
+ nyq: 100979, freqs: [
471
+ [1,2,9,14,28,34,74,83,105,144,203,237,282,303,418,496,543,601,652,775,825,842,986,1208,1388,1580,1643,1838,2082,2176,2289,2545,2821,3071,3410,3538,3838,4008,4358,4520,4736,4932,5739,5792,6160,6450,6868,7242,7527,8223,8839,9036,9350,9784,10129,10381,10748,10834,12120,12581,12767,13747,14399,15094,15221,15756,17209,17570,17791,19252,20305,20452,21451,22317,22675,23119,23250,24354,24455,26383,27390,27940,28281,29275,30785,30950,31156,31509,32158,33469,34132,37482,38526,39130]
472
+ ]
473
+ ),
474
+ 95 => DesignSet.new(
475
+ nyq: 106187, freqs: [
476
+ [1,2,9,14,28,34,74,83,105,144,203,237,282,303,418,496,543,601,652,775,825,842,986,1208,1388,1580,1643,1838,2082,2176,2289,2545,2821,3071,3410,3538,3838,4008,4358,4520,4736,4932,5739,5792,6160,6450,6868,7242,7527,8223,8839,9036,9350,9784,10129,10381,10748,10834,12120,12581,12767,13747,14399,15094,15221,15756,17209,17570,17791,19252,20305,20452,21451,22317,22675,23119,23250,24354,24455,26383,27390,27940,28281,29275,30785,30950,31156,31509,32158,33469,34132,37482,38526,39130,40321]
477
+ ]
478
+ ),
479
+ 96 => DesignSet.new(
480
+ nyq: 107857, freqs: [
481
+ [1,2,9,14,28,34,74,83,105,144,203,237,282,303,418,496,543,601,652,775,825,842,986,1208,1388,1580,1643,1838,2082,2176,2289,2545,2821,3071,3410,3538,3838,4008,4358,4520,4736,4932,5739,5792,6160,6450,6868,7242,7527,8223,8839,9036,9350,9784,10129,10381,10748,10834,12120,12581,12767,13747,14399,15094,15221,15756,17209,17570,17791,19252,20305,20452,21451,22317,22675,23119,23250,24354,24455,26383,27390,27940,28281,29275,30785,30950,31156,31509,32158,33469,34132,37482,38526,39130,40321,40476]
482
+ ]
483
+ ),
484
+ 97 => DesignSet.new(
485
+ nyq: 109331, freqs: [
486
+ [1,2,9,14,28,34,74,83,105,144,203,237,282,303,418,496,543,601,652,775,825,842,986,1208,1388,1580,1643,1838,2082,2176,2289,2545,2821,3071,3410,3538,3838,4008,4358,4520,4736,4932,5739,5792,6160,6450,6868,7242,7527,8223,8839,9036,9350,9784,10129,10381,10748,10834,12120,12581,12767,13747,14399,15094,15221,15756,17209,17570,17791,19252,20305,20452,21451,22317,22675,23119,23250,24354,24455,26383,27390,27940,28281,29275,30785,30950,31156,31509,32158,33469,34132,37482,38526,39130,40321,40476,42002]
487
+ ]
488
+ ),
489
+ 98 => DesignSet.new(
490
+ nyq: 109331, freqs: [
491
+ [1,2,9,14,28,34,74,83,105,144,203,237,282,303,418,496,543,601,652,775,825,842,986,1208,1388,1580,1643,1838,2082,2176,2289,2545,2821,3071,3410,3538,3838,4008,4358,4520,4736,4932,5739,5792,6160,6450,6868,7242,7527,8223,8839,9036,9350,9784,10129,10381,10748,10834,12120,12581,12767,13747,14399,15094,15221,15756,17209,17570,17791,19252,20305,20452,21451,22317,22675,23119,23250,24354,24455,26383,27390,27940,28281,29275,30785,30950,31156,31509,32158,33469,34132,37482,38526,39130,40321,40476,42002,44501]
492
+ ]
493
+ ),
494
+ 99 => DesignSet.new(
495
+ nyq: 109873, freqs: [
496
+ [1,2,9,14,28,34,74,83,105,144,203,237,282,303,418,496,543,601,652,775,825,842,986,1208,1388,1580,1643,1838,2082,2176,2289,2545,2821,3071,3410,3538,3838,4008,4358,4520,4736,4932,5739,5792,6160,6450,6868,7242,7527,8223,8839,9036,9350,9784,10129,10381,10748,10834,12120,12581,12767,13747,14399,15094,15221,15756,17209,17570,17791,19252,20305,20452,21451,22317,22675,23119,23250,24354,24455,26383,27390,27940,28281,29275,30785,30950,31156,31509,32158,33469,34132,37482,38526,39130,40321,40476,42002,44501,45775]
497
+ ]
498
+ ),
499
+ 100 => DesignSet.new(
500
+ nyq: 109873, freqs: [
501
+ [1,2,9,14,28,34,74,83,105,144,203,237,282,303,418,496,543,601,652,775,825,842,986,1208,1388,1580,1643,1838,2082,2176,2289,2545,2821,3071,3410,3538,3838,4008,4358,4520,4736,4932,5739,5792,6160,6450,6868,7242,7527,8223,8839,9036,9350,9784,10129,10381,10748,10834,12120,12581,12767,13747,14399,15094,15221,15756,17209,17570,17791,19252,20305,20452,21451,22317,22675,23119,23250,24354,24455,26383,27390,27940,28281,29275,30785,30950,31156,31509,32158,33469,34132,37482,38526,39130,40321,40476,42002,44501,45775,47516]
502
+ ]
503
+ ),
126
504
  }.freeze
127
505
  end
@@ -7,137 +7,499 @@ module FBS
7
7
 
8
8
  DESIGN_SETS = {
9
9
  2 => DesignSet.new(
10
- nyq: 11, freqs: [
11
- [1, 3],
12
- [1, 4],
13
- [1, 5]
10
+ nyq: 7, freqs: [
11
+ [1,2]
14
12
  ]
15
13
  ),
16
14
  3 => DesignSet.new(
17
- nyq: 19, freqs: [
18
- [1, 3, 7],
19
- [1, 7, 8],
20
- [2, 3, 5],
21
- [4, 6, 9]
15
+ nyq: 13, freqs: [
16
+ [1,4,10]
22
17
  ]
23
18
  ),
24
19
  4 => DesignSet.new(
25
- nyq: 29, freqs: [
26
- [1, 4, 5, 11]
20
+ nyq: 21, freqs: [
21
+ [1,2,10,25]
27
22
  ]
28
23
  ),
29
24
  5 => DesignSet.new(
30
- nyq: 43, freqs: [
31
- [1, 5, 6, 8, 20],
32
- [1, 8, 9, 11, 14],
33
- [3, 4, 7, 9, 19]
25
+ nyq: 31, freqs: [
26
+ [1,2,11,43,48]
34
27
  ]
35
28
  ),
36
29
  6 => DesignSet.new(
37
- nyq: 59, freqs: [
38
- [1, 6, 10, 16, 24, 28],
39
- [1, 7, 11, 16, 19, 23],
40
- [2, 8, 20, 23, 25, 29]
30
+ nyq: 43, freqs: [
31
+ [1,2,7,14,31,49]
41
32
  ]
42
33
  ),
43
34
  7 => DesignSet.new(
44
- nyq: 79, freqs: [
45
- [1, 3, 8, 11, 26, 29, 33],
46
- [1, 4, 11, 12, 29, 30, 35],
47
- [1, 5, 6, 14, 15, 17, 38],
48
- [1, 10, 11, 16, 17, 24, 25],
49
- [2, 3, 5, 11, 20, 21, 25],
50
- [2, 3, 17, 22, 25, 33, 36],
51
- [2, 5, 7, 13, 15, 16, 39],
52
- [2, 7, 9, 10, 15, 19, 33],
53
- [2, 20, 22, 29, 31, 32, 34],
54
- [3, 8, 15, 17, 18, 24, 28]
35
+ nyq: 59, freqs: [
36
+ [1,2,9,14,28,34,95]
55
37
  ]
56
38
  ),
57
39
  8 => DesignSet.new(
58
- nyq: 101, freqs: [
59
- [1, 4, 5, 17, 21, 27, 41, 45],
60
- [1, 5, 6, 14, 15, 17, 38, 41],
61
- [2, 8, 10, 11, 19, 34, 42, 47],
62
- [2, 14, 29, 31, 38, 40, 48, 50],
63
- [3, 5, 8, 24, 28, 33, 42, 47],
64
- [3, 13, 15, 18, 22, 42, 45, 50],
65
- [4, 7, 16, 17, 20, 22, 26, 45],
66
- [5, 7, 13, 25, 29, 31, 40, 42],
67
- [5, 8, 12, 20, 26, 34, 43, 45]
40
+ nyq: 73, freqs: [
41
+ [1,2,19,31,41,47,55,66]
68
42
  ]
69
43
  ),
70
44
  9 => DesignSet.new(
71
- nyq: 127, freqs: [
72
- [1, 3, 10, 11, 15, 33, 38, 49, 57],
73
- [1, 7, 8, 18, 19, 24, 39, 52, 53],
74
- [1, 7, 8, 18, 19, 24, 52, 53, 62],
75
- [1, 9, 13, 22, 28, 37, 42, 51, 58],
76
- [1, 13, 14, 22, 23, 54, 55, 61, 62],
77
- [1, 29, 38, 39, 41, 54, 55, 61, 62],
78
- [2, 3, 5, 11, 15, 31, 38, 50, 52],
79
- [2, 5, 20, 26, 28, 39, 41, 55, 63],
80
- [3, 4, 7, 12, 27, 29, 38, 47, 52],
81
- [4, 5, 9, 11, 15, 23, 36, 48, 62],
82
- [5, 7, 16, 20, 22, 28, 45, 46, 48],
83
- [5, 7, 16, 20, 22, 28, 46, 48, 62],
84
- [7, 13, 16, 18, 24, 28, 34, 51, 54],
85
- [7, 17, 20, 24, 26, 30, 38, 42, 53]
45
+ nyq: 93, freqs: [
46
+ [1,19,32,41,47,64,68,71,76]
86
47
  ]
87
48
  ),
88
49
  10 => DesignSet.new(
89
- nyq: 149, freqs: [
90
- [3, 15, 18, 25, 40, 41, 49, 56, 60, 61]
50
+ nyq: 113, freqs: [
51
+ [1,19,22,34,51,59,65,70,166,196]
91
52
  ]
92
53
  ),
93
54
  11 => DesignSet.new(
94
- nyq: 191, freqs: [
95
- [1, 8, 9, 12, 19, 34, 41, 46, 62, 85, 93],
96
- [1, 9, 22, 29, 41, 46, 52, 56, 59, 61, 94],
97
- [1, 15, 16, 19, 20, 26, 27, 62, 75, 79, 84],
98
- [1, 19, 25, 26, 35, 36, 40, 41, 48, 64, 94],
99
- [2, 3, 10, 13, 19, 33, 44, 54, 58, 72, 82],
100
- [2, 3, 11, 12, 31, 34, 44, 47, 61, 82, 87],
101
- [2, 5, 7, 13, 18, 35, 38, 48, 67, 82, 85],
102
- [2, 7, 15, 20, 31, 36, 48, 54, 57, 69, 73],
103
- [3, 16, 19, 36, 39, 44, 47, 62, 65, 92, 95],
104
- [4, 7, 11, 16, 20, 37, 41, 49, 55, 83, 84],
105
- [4, 18, 19, 21, 22, 28, 31, 51, 60, 65, 76],
106
- [5, 7, 13, 15, 16, 34, 35, 59, 67, 71, 79],
107
- [6, 10, 16, 19, 25, 33, 39, 40, 46, 51, 93],
108
- [8, 9, 17, 21, 28, 29, 31, 32, 70, 76, 88],
109
- [9, 35, 38, 39, 47, 59, 65, 75, 84, 90, 92],
110
- [12, 15, 16, 22, 34, 51, 53, 54, 65, 74, 79],
111
- [16, 25, 30, 31, 33, 39, 43, 49, 77, 84, 85]
55
+ nyq: 137, freqs: [
56
+ [1,2,20,31,37,47,62,127,150,208,258]
112
57
  ]
113
58
  ),
114
59
  12 => DesignSet.new(
115
- nyq: 223, freqs: [
116
- [1, 15, 16, 19, 20, 27, 28, 61, 62, 64, 86, 87],
117
- [2, 8, 17, 19, 41, 43, 47, 48, 50, 61, 70, 73],
118
- [2, 11, 13, 19, 21, 31, 33, 37, 82, 84, 109, 111],
119
- [2, 19, 21, 39, 41, 47, 49, 50, 52, 64, 74, 108]
60
+ nyq: 163, freqs: [
61
+ [1,4,19,25,35,47,60,77,134,203,235,321]
120
62
  ]
121
63
  ),
122
64
  13 => DesignSet.new(
123
- nyq: 263, freqs: [
124
- [1, 4, 5, 22, 23, 35, 36, 55, 56, 84, 98, 99, 126]
65
+ nyq: 191, freqs: [
66
+ [1,19,25,34,48,55,56,59,156,197,243,291,389]
125
67
  ]
126
68
  ),
127
69
  14 => DesignSet.new(
128
- nyq: 331, freqs: [
129
- [1, 3, 7, 19, 26, 36, 47, 60, 70, 79, 128, 148, 153, 161]
70
+ nyq: 227, freqs: [
71
+ [1,19,34,46,62,75,92,98,106,117,262,286,312,374]
130
72
  ]
131
73
  ),
132
74
  15 => DesignSet.new(
133
- nyq: 389, freqs: [
134
- [1, 3, 7, 12, 29, 40, 49, 65, 91, 100, 125, 131, 148, 154, 172]
75
+ nyq: 271, freqs: [
76
+ [1,19,29,51,63,70,78,163,168,194,236,281,372,531,540]
77
+ ]
78
+ ),
79
+ 16 => DesignSet.new(
80
+ nyq: 337, freqs: [
81
+ [1,8,21,29,33,48,96,127,166,201,279,315,379,417,461,526]
82
+ ]
83
+ ),
84
+ 17 => DesignSet.new(
85
+ nyq: 383, freqs: [
86
+ [1,6,17,21,31,66,74,121,124,130,232,258,286,412,425,494,600]
87
+ ]
88
+ ),
89
+ 18 => DesignSet.new(
90
+ nyq: 409, freqs: [
91
+ [1,2,9,15,30,56,68,91,147,195,231,258,336,361,470,479,512,614]
92
+ ]
93
+ ),
94
+ 19 => DesignSet.new(
95
+ nyq: 479, freqs: [
96
+ [1,32,33,55,74,81,118,131,148,158,220,226,422,436,440,483,491,733,786]
135
97
  ]
136
98
  ),
137
99
  20 => DesignSet.new(
138
- nyq: 853, freqs: [
139
- [1, 3, 7, 12, 15, 25, 41, 58, 60, 80, 107, 154, 161, 193, 232, 249, 284, 291, 377, 412]
100
+ nyq: 521, freqs: [
101
+ [1,7,26,42,46,57,64,74,150,153,204,227,248,282,404,416,417,446,486,661]
102
+ ]
103
+ ),
104
+ 21 => DesignSet.new(
105
+ nyq: 593, freqs: [
106
+ [1,15,21,25,38,53,82,87,94,169,204,269,327,354,397,468,487,564,685,814,822]
107
+ ]
108
+ ),
109
+ 22 => DesignSet.new(
110
+ nyq: 617, freqs: [
111
+ [1,10,13,14,20,52,87,104,133,151,212,220,305,375,400,416,471,551,661,710,972,1040]
112
+ ]
113
+ ),
114
+ 23 => DesignSet.new(
115
+ nyq: 703, freqs: [
116
+ [1,5,22,27,46,62,75,165,173,204,287,321,358,436,505,541,685,830,923,943,995,1082,1329]
117
+ ]
118
+ ),
119
+ 24 => DesignSet.new(
120
+ nyq: 719, freqs: [
121
+ [1,6,14,17,41,63,73,82,111,148,174,272,289,325,375,491,497,542,635,765,892,944,1062,1220]
122
+ ]
123
+ ),
124
+ 25 => DesignSet.new(
125
+ nyq: 821, freqs: [
126
+ [1,6,20,23,73,103,139,150,159,198,208,250,339,532,533,596,647,704,902,967,1117,1154,1466,1553,1578]
127
+ ]
128
+ ),
129
+ 26 => DesignSet.new(
130
+ nyq: 907, freqs: [
131
+ [1,12,17,20,69,112,134,140,160,185,224,239,270,452,469,573,647,729,784,837,999,1209,1275,1316,1394,1417]
132
+ ]
133
+ ),
134
+ 27 => DesignSet.new(
135
+ nyq: 991, freqs: [
136
+ [1,18,40,48,72,73,86,115,150,242,304,307,357,364,446,457,576,637,707,816,977,1036,1120,1203,1419,1498,1514]
137
+ ]
138
+ ),
139
+ 28 => DesignSet.new(
140
+ nyq: 1081, freqs: [
141
+ [1,6,39,42,56,74,93,102,108,179,244,270,334,387,493,518,540,730,740,751,905,964,1145,1203,1433,1494,1713,1755]
142
+ ]
143
+ ),
144
+ 29 => DesignSet.new(
145
+ nyq: 1171, freqs: [
146
+ [1,6,17,21,31,66,74,121,124,130,232,258,286,412,425,494,600,644,760,821,872,1021,1197,1226,1340,1562,1681,1838,1878]
147
+ ]
148
+ ),
149
+ 30 => DesignSet.new(
150
+ nyq: 1277, freqs: [
151
+ [1,4,16,20,29,64,71,105,152,178,235,249,348,422,444,475,481,583,635,782,925,1070,1196,1207,1468,1469,1586,1814,2006,2109]
152
+ ]
153
+ ),
154
+ 31 => DesignSet.new(
155
+ nyq: 1321, freqs: [
156
+ [1,7,14,19,23,62,91,136,200,203,256,297,307,372,403,502,664,734,821,1079,1150,1269,1326,1380,1592,1767,1816,1856,1916,2064,2284]
157
+ ]
158
+ ),
159
+ 32 => DesignSet.new(
160
+ nyq: 1439, freqs: [
161
+ [1,17,29,34,44,55,58,158,164,189,241,306,359,399,421,470,624,731,767,904,1005,1173,1255,1305,1325,1749,1756,1877,2082,2439,2478,2776]
162
+ ]
163
+ ),
164
+ 33 => DesignSet.new(
165
+ nyq: 1553, freqs: [
166
+ [1,2,13,19,35,44,74,79,102,126,210,295,305,369,425,519,638,691,760,787,954,1125,1132,1237,1410,1598,1669,1846,1908,2052,2209,2453,2585]
167
+ ]
168
+ ),
169
+ 34 => DesignSet.new(
170
+ nyq: 1597, freqs: [
171
+ [1,17,18,21,28,61,75,87,112,184,232,247,255,322,374,424,565,691,712,822,846,997,1149,1204,1210,1427,1678,1799,1987,2019,2151,2367,2589,2879]
172
+ ]
173
+ ),
174
+ 35 => DesignSet.new(
175
+ nyq: 1699, freqs: [
176
+ [1,2,85,93,102,116,122,161,174,221,287,328,485,492,536,684,719,753,909,964,989,1230,1245,1273,1383,1748,1769,1914,2179,2205,2419,2480,2498,3108,3238]
177
+ ]
178
+ ),
179
+ 36 => DesignSet.new(
180
+ nyq: 1879, freqs: [
181
+ [1,6,7,28,38,58,81,100,136,184,254,304,337,377,395,544,547,695,710,822,860,1074,1273,1420,1461,1522,1647,1693,1747,1891,2217,2455,2502,2717,2956,3089]
182
+ ]
183
+ ),
184
+ 37 => DesignSet.new(
185
+ nyq: 1951, freqs: [
186
+ [1,15,27,35,42,48,137,142,188,223,267,291,383,449,450,522,620,827,909,962,994,1074,1290,1351,1563,1637,1992,2166,2277,2386,2786,3037,3136,3340,3719,3759,4029]
187
+ ]
188
+ ),
189
+ 38 => DesignSet.new(
190
+ nyq: 2099, freqs: [
191
+ [1,10,15,22,39,72,94,139,142,219,225,261,321,395,396,588,596,639,703,744,1018,1065,1255,1273,1523,1550,1569,1835,2031,2041,2334,2460,2606,2805,2893,3197,3352,3537]
192
+ ]
193
+ ),
194
+ 39 => DesignSet.new(
195
+ nyq: 2203, freqs: [
196
+ [1,17,29,34,44,55,58,158,164,189,241,306,359,399,421,470,624,731,767,904,1005,1173,1255,1305,1325,1749,1756,1877,2082,2439,2478,2776,2990,3128,3194,3430,3657,3661,3721]
197
+ ]
198
+ ),
199
+ 40 => DesignSet.new(
200
+ nyq: 2339, freqs: [
201
+ [1,2,8,20,47,64,72,98,151,186,227,318,351,375,464,478,532,615,657,750,832,972,1098,1239,1477,1687,1795,1810,1870,2083,2288,2584,2779,3021,3080,3222,3412,3449,4003,4237]
202
+ ]
203
+ ),
204
+ 41 => DesignSet.new(
205
+ nyq: 2549, freqs: [
206
+ [1,4,13,23,44,57,85,86,136,140,151,211,246,397,446,565,603,721,727,932,1090,1115,1236,1456,1530,1635,1867,1983,2059,2272,2490,2744,2791,3057,3287,3580,3897,4205,4503,4581,4961]
207
+ ]
208
+ ),
209
+ 42 => DesignSet.new(
210
+ nyq: 2659, freqs: [
211
+ [1,10,13,14,46,68,76,107,117,155,246,303,346,418,458,523,541,745,787,997,1085,1223,1325,1420,1599,1787,1808,1936,2142,2555,2745,2870,2921,3308,3651,3715,4111,4475,4626,4678,4996,5158]
212
+ ]
213
+ ),
214
+ 43 => DesignSet.new(
215
+ nyq: 2693, freqs: [
216
+ [1,25,26,30,43,64,100,130,183,206,241,368,408,485,587,603,682,719,741,1056,1105,1159,1342,1493,1681,1692,2013,2127,2271,2514,2517,2734,3031,3223,3447,3754,3966,4242,4638,4650,4927,5179,5407]
217
+ ]
218
+ ),
219
+ 44 => DesignSet.new(
220
+ nyq: 2887, freqs: [
221
+ [1,6,9,26,30,49,102,113,159,175,208,222,296,444,457,535,632,676,698,1004,1072,1117,1323,1425,1479,1579,1837,1838,2263,2340,2349,2593,2663,3091,3356,3647,3909,3990,4356,4946,5086,5331,5899,6174]
222
+ ]
223
+ ),
224
+ 45 => DesignSet.new(
225
+ nyq: 3083, freqs: [
226
+ [1,2,24,35,40,75,92,107,135,153,260,309,329,356,473,561,611,802,884,973,1152,1208,1312,1474,1527,1675,1746,1962,2134,2543,2738,2903,3217,3282,3482,3585,3594,4187,4309,4317,5001,5015,5562,5833,6111]
227
+ ]
228
+ ),
229
+ 46 => DesignSet.new(
230
+ nyq: 3169, freqs: [
231
+ [1,10,50,68,69,85,132,170,193,197,243,273,369,546,553,559,777,851,883,1097,1141,1229,1393,1418,1620,1674,1727,1842,1890,2522,2605,2615,2728,3022,3454,3468,3850,4272,4429,4905,4960,5303,5355,5868,6360,6458]
232
+ ]
233
+ ),
234
+ 47 => DesignSet.new(
235
+ nyq: 3169, freqs: [
236
+ [1,10,50,68,69,85,132,170,193,197,243,273,369,546,553,559,777,851,883,1097,1141,1229,1393,1418,1620,1674,1727,1842,1890,2522,2605,2615,2728,3022,3454,3468,3850,4272,4429,4905,4960,5303,5355,5868,6360,6458,6557]
237
+ ]
238
+ ),
239
+ 48 => DesignSet.new(
240
+ nyq: 3463, freqs: [
241
+ [1,6,9,10,23,44,50,75,105,133,180,251,277,367,403,445,567,676,788,836,908,987,1207,1368,1527,1656,1693,1834,1902,2056,2307,2428,2763,2911,2988,3402,3503,3747,4049,4397,4837,4984,5322,5539,6271,6562,7124,7427]
242
+ ]
243
+ ),
244
+ 49 => DesignSet.new(
245
+ nyq: 3659, freqs: [
246
+ [1,2,9,14,28,34,74,83,105,144,203,237,282,303,418,496,543,601,652,775,825,842,986,1208,1388,1580,1643,1838,2082,2176,2289,2545,2821,3071,3410,3538,3838,4008,4358,4520,4736,4932,5739,5792,6160,6450,6868,7242,7527]
247
+ ]
248
+ ),
249
+ 50 => DesignSet.new(
250
+ nyq: 3931, freqs: [
251
+ [1,30,57,82,92,95,104,112,118,233,309,310,343,359,380,592,762,777,861,893,1139,1301,1376,1496,1585,1633,1675,2106,2241,2284,2571,2611,2744,3093,3457,3793,4087,4606,4750,5004,5299,5537,5605,6016,6166,6670,6842,7508,8129,8236]
252
+ ]
253
+ ),
254
+ 51 => DesignSet.new(
255
+ nyq: 4021, freqs: [
256
+ [1,19,23,67,68,94,119,125,172,233,331,352,393,408,482,536,717,753,968,1040,1051,1090,1150,1223,1368,1664,1761,2163,2674,2697,2702,2950,2967,3227,3429,3798,3929,4129,4475,4918,5081,5266,5535,5827,6363,6793,7201,7365,7568,8204,8316]
257
+ ]
258
+ ),
259
+ 52 => DesignSet.new(
260
+ nyq: 4133, freqs: [
261
+ [1,25,26,30,43,64,100,130,183,206,241,368,408,485,587,603,682,719,741,1056,1105,1159,1342,1493,1681,1692,2013,2127,2271,2514,2517,2734,3031,3223,3447,3754,3966,4242,4638,4650,4927,5179,5407,5881,6082,6434,6732,7602,7698,8246,8743,9237]
262
+ ]
263
+ ),
264
+ 53 => DesignSet.new(
265
+ nyq: 4397, freqs: [
266
+ [1,7,19,36,49,59,98,103,149,210,214,238,285,414,478,611,632,720,803,934,1057,1185,1201,1277,1423,1426,1500,1822,1967,2297,2306,2832,2857,2891,3218,3387,3473,3764,4289,4516,4787,5064,5388,5600,5726,6361,6733,7104,7339,8094,8101,9209,9742]
267
+ ]
268
+ ),
269
+ 54 => DesignSet.new(
270
+ nyq: 4397, freqs: [
271
+ [1,7,19,36,49,59,98,103,149,210,214,238,285,414,478,611,632,720,803,934,1057,1185,1201,1277,1423,1426,1500,1822,1967,2297,2306,2832,2857,2891,3218,3387,3473,3764,4289,4516,4787,5064,5388,5600,5726,6361,6733,7104,7339,8094,8101,9209,9742,9926]
272
+ ]
273
+ ),
274
+ 55 => DesignSet.new(
275
+ nyq: 4783, freqs: [
276
+ [1,9,12,40,59,65,113,143,148,157,250,254,283,450,486,487,529,614,837,864,1058,1153,1343,1552,1572,1695,1947,2006,2028,2326,2352,2625,2972,3137,3200,3600,3801,4159,4269,4736,4851,5280,5491,6221,6282,6469,7016,7208,7577,8544,8784,8816,9340,9785,9967]
277
+ ]
278
+ ),
279
+ 56 => DesignSet.new(
280
+ nyq: 4831, freqs: [
281
+ [1,4,25,34,52,53,66,97,137,258,262,301,414,478,488,595,602,748,875,1054,1247,1283,1431,1468,1743,1871,1968,2041,2135,2606,2845,2857,3110,3307,3638,4068,4227,4372,5030,5120,5196,5838,5927,6259,6543,6785,7364,7493,7889,8259,8399,9226,9337,9806,10191,10249]
282
+ ]
283
+ ),
284
+ 57 => DesignSet.new(
285
+ nyq: 5147, freqs: [
286
+ [1,33,42,46,49,61,79,118,135,208,234,248,259,379,479,480,532,670,796,864,982,1171,1364,1427,1538,1646,1675,1914,2191,2213,2548,2683,2766,3147,3536,3708,3739,4112,4387,4514,4569,4793,5410,5720,6092,6543,6597,6992,7350,7356,7678,7811,8033,8814,8858,8881,10036]
140
287
  ]
141
- )
288
+ ),
289
+ 58 => DesignSet.new(
290
+ nyq: 5351, freqs: [
291
+ [1,25,26,30,43,64,100,130,183,206,241,368,408,485,587,603,682,719,741,1056,1105,1159,1342,1493,1681,1692,2013,2127,2271,2514,2517,2734,3031,3223,3447,3754,3966,4242,4638,4650,4927,5179,5407,5881,6082,6434,6732,7602,7698,8246,8743,9237,9252,9942,10301,10552,10817,11703]
292
+ ]
293
+ ),
294
+ 59 => DesignSet.new(
295
+ nyq: 5519, freqs: [
296
+ [1,2,9,14,28,34,74,83,105,144,203,237,282,303,418,496,543,601,652,775,825,842,986,1208,1388,1580,1643,1838,2082,2176,2289,2545,2821,3071,3410,3538,3838,4008,4358,4520,4736,4932,5739,5792,6160,6450,6868,7242,7527,8223,8839,9036,9350,9784,10129,10381,10748,10834,12120]
297
+ ]
298
+ ),
299
+ 60 => DesignSet.new(
300
+ nyq: 5767, freqs: [
301
+ [1,15,20,49,58,75,76,86,196,204,293,360,373,405,473,531,615,696,807,943,997,1128,1180,1359,1558,1623,1740,1764,2225,2266,2493,2734,2857,3083,3089,3741,3992,4285,4444,4756,4861,5318,5381,5896,5900,6291,6732,7488,7745,7975,8187,8563,9148,9479,9804,9944,10538,10589,11106,11627]
302
+ ]
303
+ ),
304
+ 61 => DesignSet.new(
305
+ nyq: 5969, freqs: [
306
+ [1,7,22,33,57,60,70,82,158,189,205,299,410,452,461,506,684,749,754,790,948,1162,1300,1477,1576,1800,1900,2113,2130,2235,2602,2675,2928,3104,3365,3809,4025,4275,4446,4665,4751,5262,5449,5558,5744,6117,6524,7001,7553,8134,8271,8550,9842,10419,10487,10756,11131,11817,12191,13249,13529]
307
+ ]
308
+ ),
309
+ 62 => DesignSet.new(
310
+ nyq: 5969, freqs: [
311
+ [1,7,22,33,57,60,70,82,158,189,205,299,410,452,461,506,684,749,754,790,948,1162,1300,1477,1576,1800,1900,2113,2130,2235,2602,2675,2928,3104,3365,3809,4025,4275,4446,4665,4751,5262,5449,5558,5744,6117,6524,7001,7553,8134,8271,8550,9842,10419,10487,10756,11131,11817,12191,13249,13529,13820]
312
+ ]
313
+ ),
314
+ 63 => DesignSet.new(
315
+ nyq: 6277, freqs: [
316
+ [1,9,10,32,48,62,121,150,157,227,242,342,388,487,492,712,749,846,925,1152,1155,1307,1477,1570,1741,1925,2116,2197,2518,2592,2980,2997,3203,3649,3733,3957,4451,4499,4662,4797,5019,5535,5569,6058,6532,6991,7238,7551,8087,8532,8599,8668,9429,9637,10104,10860,11818,12692,12834,12950,13493,13804,14497]
317
+ ]
318
+ ),
319
+ 64 => DesignSet.new(
320
+ nyq: 6551, freqs: [
321
+ [1,7,17,20,24,53,75,114,163,178,198,210,289,351,514,592,679,883,892,958,1025,1197,1311,1480,1648,1720,1965,2224,2266,2518,2712,2974,3082,3222,3442,3780,4034,4363,4613,4698,5005,5627,5751,6242,6295,6866,7067,7480,8151,8412,9134,9523,9845,10476,10683,10819,11409,11749,11972,12688,13301,14628,15044,15391]
322
+ ]
323
+ ),
324
+ 65 => DesignSet.new(
325
+ nyq: 6623, freqs: [
326
+ [1,6,9,10,23,44,50,75,105,133,180,251,277,367,403,445,567,676,788,836,908,987,1207,1368,1527,1656,1693,1834,1902,2056,2307,2428,2763,2911,2988,3402,3503,3747,4049,4397,4837,4984,5322,5539,6271,6562,7124,7427,7769,8176,8429,8847,8933,9793,9975,10306,10964,11429,11935,12070,12268,13440,14061,14791,15766]
327
+ ]
328
+ ),
329
+ 66 => DesignSet.new(
330
+ nyq: 7229, freqs: [
331
+ [1,2,9,14,28,34,74,83,105,144,203,237,282,303,418,496,543,601,652,775,825,842,986,1208,1388,1580,1643,1838,2082,2176,2289,2545,2821,3071,3410,3538,3838,4008,4358,4520,4736,4932,5739,5792,6160,6450,6868,7242,7527,8223,8839,9036,9350,9784,10129,10381,10748,10834,12120,12581,12767,13747,14399,15094,15221,15756]
332
+ ]
333
+ ),
334
+ 67 => DesignSet.new(
335
+ nyq: 7387, freqs: [
336
+ [1,10,13,14,46,68,76,107,117,155,246,303,346,418,458,523,541,745,787,997,1085,1223,1325,1420,1599,1787,1808,1936,2142,2555,2745,2870,2921,3308,3651,3715,4111,4475,4626,4678,4996,5158,5371,5670,5928,6357,6809,7153,7734,7951,7988,8700,9416,9907,10722,10798,11119,11918,12749,12943,13103,13386,14021,14301,15404,15883,16633]
337
+ ]
338
+ ),
339
+ 68 => DesignSet.new(
340
+ nyq: 7519, freqs: [
341
+ [1,2,9,14,28,34,74,83,105,144,203,237,282,303,418,496,543,601,652,775,825,842,986,1208,1388,1580,1643,1838,2082,2176,2289,2545,2821,3071,3410,3538,3838,4008,4358,4520,4736,4932,5739,5792,6160,6450,6868,7242,7527,8223,8839,9036,9350,9784,10129,10381,10748,10834,12120,12581,12767,13747,14399,15094,15221,15756,17209,17570]
342
+ ]
343
+ ),
344
+ 69 => DesignSet.new(
345
+ nyq: 8011, freqs: [
346
+ [1,10,27,43,57,91,95,140,214,215,238,317,380,508,511,540,704,710,1002,1067,1246,1354,1489,1508,1584,1645,2011,2324,2485,2638,2850,2941,3034,3374,3763,4166,4277,4417,4802,4838,4848,5284,5929,6516,6537,6737,6971,7887,7975,8475,8848,9199,9217,9944,10765,11521,11877,12132,12620,12689,13352,13926,14176,15417,16118,17281,17603,18487,18567]
347
+ ]
348
+ ),
349
+ 70 => DesignSet.new(
350
+ nyq: 8401, freqs: [
351
+ [1,10,27,43,57,91,95,140,214,215,238,317,380,508,511,540,704,710,1002,1067,1246,1354,1489,1508,1584,1645,2011,2324,2485,2638,2850,2941,3034,3374,3763,4166,4277,4417,4802,4838,4848,5284,5929,6516,6537,6737,6971,7887,7975,8475,8848,9199,9217,9944,10765,11521,11877,12132,12620,12689,13352,13926,14176,15417,16118,17281,17603,18487,18567,19139]
352
+ ]
353
+ ),
354
+ 71 => DesignSet.new(
355
+ nyq: 8627, freqs: [
356
+ [1,2,9,14,28,34,74,83,105,144,203,237,282,303,418,496,543,601,652,775,825,842,986,1208,1388,1580,1643,1838,2082,2176,2289,2545,2821,3071,3410,3538,3838,4008,4358,4520,4736,4932,5739,5792,6160,6450,6868,7242,7527,8223,8839,9036,9350,9784,10129,10381,10748,10834,12120,12581,12767,13747,14399,15094,15221,15756,17209,17570,17791,19252,20305]
357
+ ]
358
+ ),
359
+ 72 => DesignSet.new(
360
+ nyq: 8627, freqs: [
361
+ [1,2,9,14,28,34,74,83,105,144,203,237,282,303,418,496,543,601,652,775,825,842,986,1208,1388,1580,1643,1838,2082,2176,2289,2545,2821,3071,3410,3538,3838,4008,4358,4520,4736,4932,5739,5792,6160,6450,6868,7242,7527,8223,8839,9036,9350,9784,10129,10381,10748,10834,12120,12581,12767,13747,14399,15094,15221,15756,17209,17570,17791,19252,20305,20452]
362
+ ]
363
+ ),
364
+ 73 => DesignSet.new(
365
+ nyq: 8627, freqs: [
366
+ [1,2,9,14,28,34,74,83,105,144,203,237,282,303,418,496,543,601,652,775,825,842,986,1208,1388,1580,1643,1838,2082,2176,2289,2545,2821,3071,3410,3538,3838,4008,4358,4520,4736,4932,5739,5792,6160,6450,6868,7242,7527,8223,8839,9036,9350,9784,10129,10381,10748,10834,12120,12581,12767,13747,14399,15094,15221,15756,17209,17570,17791,19252,20305,20452,21451]
367
+ ]
368
+ ),
369
+ 74 => DesignSet.new(
370
+ nyq: 9001, freqs: [
371
+ [1,9,28,34,39,91,115,130,146,180,257,303,350,372,408,525,604,765,769,878,901,1088,1185,1286,1754,1805,2043,2075,2276,2290,2466,2507,2966,3332,3454,3859,3999,4162,4742,4976,5353,5515,5990,6089,6187,7051,7126,7754,8226,9096,9394,9777,9872,10484,10846,11306,12115,12576,13109,13599,13798,14808,15366,16586,16825,17134,18162,18452,19315,19893,20655,21368,21611,22215]
372
+ ]
373
+ ),
374
+ 75 => DesignSet.new(
375
+ nyq: 9497, freqs: [
376
+ [1,9,28,34,39,91,115,130,146,180,257,303,350,372,408,525,604,765,769,878,901,1088,1185,1286,1754,1805,2043,2075,2276,2290,2466,2507,2966,3332,3454,3859,3999,4162,4742,4976,5353,5515,5990,6089,6187,7051,7126,7754,8226,9096,9394,9777,9872,10484,10846,11306,12115,12576,13109,13599,13798,14808,15366,16586,16825,17134,18162,18452,19315,19893,20655,21368,21611,22215,22783]
377
+ ]
378
+ ),
379
+ 76 => DesignSet.new(
380
+ nyq: 9991, freqs: [
381
+ [1,6,9,10,23,44,50,75,105,133,180,251,277,367,403,445,567,676,788,836,908,987,1207,1368,1527,1656,1693,1834,1902,2056,2307,2428,2763,2911,2988,3402,3503,3747,4049,4397,4837,4984,5322,5539,6271,6562,7124,7427,7769,8176,8429,8847,8933,9793,9975,10306,10964,11429,11935,12070,12268,13440,14061,14791,15766,16519,16650,17478,18077,18822,19624,20082,20630,20995,21998,23286]
382
+ ]
383
+ ),
384
+ 77 => DesignSet.new(
385
+ nyq: 10337, freqs: [
386
+ [1,9,28,34,39,91,115,130,146,180,257,303,350,372,408,525,604,765,769,878,901,1088,1185,1286,1754,1805,2043,2075,2276,2290,2466,2507,2966,3332,3454,3859,3999,4162,4742,4976,5353,5515,5990,6089,6187,7051,7126,7754,8226,9096,9394,9777,9872,10484,10846,11306,12115,12576,13109,13599,13798,14808,15366,16586,16825,17134,18162,18452,19315,19893,20655,21368,21611,22215,22783,23831,24338]
387
+ ]
388
+ ),
389
+ 78 => DesignSet.new(
390
+ nyq: 10609, freqs: [
391
+ [1,9,28,34,39,91,115,130,146,180,257,303,350,372,408,525,604,765,769,878,901,1088,1185,1286,1754,1805,2043,2075,2276,2290,2466,2507,2966,3332,3454,3859,3999,4162,4742,4976,5353,5515,5990,6089,6187,7051,7126,7754,8226,9096,9394,9777,9872,10484,10846,11306,12115,12576,13109,13599,13798,14808,15366,16586,16825,17134,18162,18452,19315,19893,20655,21368,21611,22215,22783,23831,24338,25128]
392
+ ]
393
+ ),
394
+ 79 => DesignSet.new(
395
+ nyq: 10609, freqs: [
396
+ [1,9,28,34,39,91,115,130,146,180,257,303,350,372,408,525,604,765,769,878,901,1088,1185,1286,1754,1805,2043,2075,2276,2290,2466,2507,2966,3332,3454,3859,3999,4162,4742,4976,5353,5515,5990,6089,6187,7051,7126,7754,8226,9096,9394,9777,9872,10484,10846,11306,12115,12576,13109,13599,13798,14808,15366,16586,16825,17134,18162,18452,19315,19893,20655,21368,21611,22215,22783,23831,24338,25128,25583]
397
+ ]
398
+ ),
399
+ 80 => DesignSet.new(
400
+ nyq: 11657, freqs: [
401
+ [1,6,9,10,23,44,50,75,105,133,180,251,277,367,403,445,567,676,788,836,908,987,1207,1368,1527,1656,1693,1834,1902,2056,2307,2428,2763,2911,2988,3402,3503,3747,4049,4397,4837,4984,5322,5539,6271,6562,7124,7427,7769,8176,8429,8847,8933,9793,9975,10306,10964,11429,11935,12070,12268,13440,14061,14791,15766,16519,16650,17478,18077,18822,19624,20082,20630,20995,21998,23286,24231,25104,25339,26670]
402
+ ]
403
+ ),
404
+ 81 => DesignSet.new(
405
+ nyq: 12239, freqs: [
406
+ [1,6,9,10,23,44,50,75,105,133,180,251,277,367,403,445,567,676,788,836,908,987,1207,1368,1527,1656,1693,1834,1902,2056,2307,2428,2763,2911,2988,3402,3503,3747,4049,4397,4837,4984,5322,5539,6271,6562,7124,7427,7769,8176,8429,8847,8933,9793,9975,10306,10964,11429,11935,12070,12268,13440,14061,14791,15766,16519,16650,17478,18077,18822,19624,20082,20630,20995,21998,23286,24231,25104,25339,26670,26866]
407
+ ]
408
+ ),
409
+ 82 => DesignSet.new(
410
+ nyq: 12421, freqs: [
411
+ [1,6,9,10,23,44,50,75,105,133,180,251,277,367,403,445,567,676,788,836,908,987,1207,1368,1527,1656,1693,1834,1902,2056,2307,2428,2763,2911,2988,3402,3503,3747,4049,4397,4837,4984,5322,5539,6271,6562,7124,7427,7769,8176,8429,8847,8933,9793,9975,10306,10964,11429,11935,12070,12268,13440,14061,14791,15766,16519,16650,17478,18077,18822,19624,20082,20630,20995,21998,23286,24231,25104,25339,26670,26866,27894]
412
+ ]
413
+ ),
414
+ 83 => DesignSet.new(
415
+ nyq: 12841, freqs: [
416
+ [1,6,9,10,23,44,50,75,105,133,180,251,277,367,403,445,567,676,788,836,908,987,1207,1368,1527,1656,1693,1834,1902,2056,2307,2428,2763,2911,2988,3402,3503,3747,4049,4397,4837,4984,5322,5539,6271,6562,7124,7427,7769,8176,8429,8847,8933,9793,9975,10306,10964,11429,11935,12070,12268,13440,14061,14791,15766,16519,16650,17478,18077,18822,19624,20082,20630,20995,21998,23286,24231,25104,25339,26670,26866,27894,29315]
417
+ ]
418
+ ),
419
+ 84 => DesignSet.new(
420
+ nyq: 13099, freqs: [
421
+ [1,6,9,10,23,44,50,75,105,133,180,251,277,367,403,445,567,676,788,836,908,987,1207,1368,1527,1656,1693,1834,1902,2056,2307,2428,2763,2911,2988,3402,3503,3747,4049,4397,4837,4984,5322,5539,6271,6562,7124,7427,7769,8176,8429,8847,8933,9793,9975,10306,10964,11429,11935,12070,12268,13440,14061,14791,15766,16519,16650,17478,18077,18822,19624,20082,20630,20995,21998,23286,24231,25104,25339,26670,26866,27894,29315,29621]
422
+ ]
423
+ ),
424
+ 85 => DesignSet.new(
425
+ nyq: 13099, freqs: [
426
+ [1,6,9,10,23,44,50,75,105,133,180,251,277,367,403,445,567,676,788,836,908,987,1207,1368,1527,1656,1693,1834,1902,2056,2307,2428,2763,2911,2988,3402,3503,3747,4049,4397,4837,4984,5322,5539,6271,6562,7124,7427,7769,8176,8429,8847,8933,9793,9975,10306,10964,11429,11935,12070,12268,13440,14061,14791,15766,16519,16650,17478,18077,18822,19624,20082,20630,20995,21998,23286,24231,25104,25339,26670,26866,27894,29315,29621,30825]
427
+ ]
428
+ ),
429
+ 86 => DesignSet.new(
430
+ nyq: 13669, freqs: [
431
+ [1,6,9,10,23,44,50,75,105,133,180,251,277,367,403,445,567,676,788,836,908,987,1207,1368,1527,1656,1693,1834,1902,2056,2307,2428,2763,2911,2988,3402,3503,3747,4049,4397,4837,4984,5322,5539,6271,6562,7124,7427,7769,8176,8429,8847,8933,9793,9975,10306,10964,11429,11935,12070,12268,13440,14061,14791,15766,16519,16650,17478,18077,18822,19624,20082,20630,20995,21998,23286,24231,25104,25339,26670,26866,27894,29315,29621,30825,31776]
432
+ ]
433
+ ),
434
+ 87 => DesignSet.new(
435
+ nyq: 14029, freqs: [
436
+ [1,6,9,10,23,44,50,75,105,133,180,251,277,367,403,445,567,676,788,836,908,987,1207,1368,1527,1656,1693,1834,1902,2056,2307,2428,2763,2911,2988,3402,3503,3747,4049,4397,4837,4984,5322,5539,6271,6562,7124,7427,7769,8176,8429,8847,8933,9793,9975,10306,10964,11429,11935,12070,12268,13440,14061,14791,15766,16519,16650,17478,18077,18822,19624,20082,20630,20995,21998,23286,24231,25104,25339,26670,26866,27894,29315,29621,30825,31776,31921]
437
+ ]
438
+ ),
439
+ 88 => DesignSet.new(
440
+ nyq: 14713, freqs: [
441
+ [1,6,9,10,23,44,50,75,105,133,180,251,277,367,403,445,567,676,788,836,908,987,1207,1368,1527,1656,1693,1834,1902,2056,2307,2428,2763,2911,2988,3402,3503,3747,4049,4397,4837,4984,5322,5539,6271,6562,7124,7427,7769,8176,8429,8847,8933,9793,9975,10306,10964,11429,11935,12070,12268,13440,14061,14791,15766,16519,16650,17478,18077,18822,19624,20082,20630,20995,21998,23286,24231,25104,25339,26670,26866,27894,29315,29621,30825,31776,31921,32941]
442
+ ]
443
+ ),
444
+ 89 => DesignSet.new(
445
+ nyq: 14767, freqs: [
446
+ [1,6,9,10,23,44,50,75,105,133,180,251,277,367,403,445,567,676,788,836,908,987,1207,1368,1527,1656,1693,1834,1902,2056,2307,2428,2763,2911,2988,3402,3503,3747,4049,4397,4837,4984,5322,5539,6271,6562,7124,7427,7769,8176,8429,8847,8933,9793,9975,10306,10964,11429,11935,12070,12268,13440,14061,14791,15766,16519,16650,17478,18077,18822,19624,20082,20630,20995,21998,23286,24231,25104,25339,26670,26866,27894,29315,29621,30825,31776,31921,32941,33712]
447
+ ]
448
+ ),
449
+ 90 => DesignSet.new(
450
+ nyq: 14947, freqs: [
451
+ [1,6,9,10,23,44,50,75,105,133,180,251,277,367,403,445,567,676,788,836,908,987,1207,1368,1527,1656,1693,1834,1902,2056,2307,2428,2763,2911,2988,3402,3503,3747,4049,4397,4837,4984,5322,5539,6271,6562,7124,7427,7769,8176,8429,8847,8933,9793,9975,10306,10964,11429,11935,12070,12268,13440,14061,14791,15766,16519,16650,17478,18077,18822,19624,20082,20630,20995,21998,23286,24231,25104,25339,26670,26866,27894,29315,29621,30825,31776,31921,32941,33712,36272]
452
+ ]
453
+ ),
454
+ 91 => DesignSet.new(
455
+ nyq: 15269, freqs: [
456
+ [1,2,9,14,28,34,74,83,105,144,203,237,282,303,418,496,543,601,652,775,825,842,986,1208,1388,1580,1643,1838,2082,2176,2289,2545,2821,3071,3410,3538,3838,4008,4358,4520,4736,4932,5739,5792,6160,6450,6868,7242,7527,8223,8839,9036,9350,9784,10129,10381,10748,10834,12120,12581,12767,13747,14399,15094,15221,15756,17209,17570,17791,19252,20305,20452,21451,22317,22675,23119,23250,24354,24455,26383,27390,27940,28281,29275,30785,30950,31156,31509,32158,33469,34132]
457
+ ]
458
+ ),
459
+ 92 => DesignSet.new(
460
+ nyq: 15377, freqs: [
461
+ [1,2,9,14,28,34,74,83,105,144,203,237,282,303,418,496,543,601,652,775,825,842,986,1208,1388,1580,1643,1838,2082,2176,2289,2545,2821,3071,3410,3538,3838,4008,4358,4520,4736,4932,5739,5792,6160,6450,6868,7242,7527,8223,8839,9036,9350,9784,10129,10381,10748,10834,12120,12581,12767,13747,14399,15094,15221,15756,17209,17570,17791,19252,20305,20452,21451,22317,22675,23119,23250,24354,24455,26383,27390,27940,28281,29275,30785,30950,31156,31509,32158,33469,34132,37482]
462
+ ]
463
+ ),
464
+ 93 => DesignSet.new(
465
+ nyq: 15377, freqs: [
466
+ [1,2,9,14,28,34,74,83,105,144,203,237,282,303,418,496,543,601,652,775,825,842,986,1208,1388,1580,1643,1838,2082,2176,2289,2545,2821,3071,3410,3538,3838,4008,4358,4520,4736,4932,5739,5792,6160,6450,6868,7242,7527,8223,8839,9036,9350,9784,10129,10381,10748,10834,12120,12581,12767,13747,14399,15094,15221,15756,17209,17570,17791,19252,20305,20452,21451,22317,22675,23119,23250,24354,24455,26383,27390,27940,28281,29275,30785,30950,31156,31509,32158,33469,34132,37482,38526]
467
+ ]
468
+ ),
469
+ 94 => DesignSet.new(
470
+ nyq: 15727, freqs: [
471
+ [1,2,9,14,28,34,74,83,105,144,203,237,282,303,418,496,543,601,652,775,825,842,986,1208,1388,1580,1643,1838,2082,2176,2289,2545,2821,3071,3410,3538,3838,4008,4358,4520,4736,4932,5739,5792,6160,6450,6868,7242,7527,8223,8839,9036,9350,9784,10129,10381,10748,10834,12120,12581,12767,13747,14399,15094,15221,15756,17209,17570,17791,19252,20305,20452,21451,22317,22675,23119,23250,24354,24455,26383,27390,27940,28281,29275,30785,30950,31156,31509,32158,33469,34132,37482,38526,39130]
472
+ ]
473
+ ),
474
+ 95 => DesignSet.new(
475
+ nyq: 15973, freqs: [
476
+ [1,2,9,14,28,34,74,83,105,144,203,237,282,303,418,496,543,601,652,775,825,842,986,1208,1388,1580,1643,1838,2082,2176,2289,2545,2821,3071,3410,3538,3838,4008,4358,4520,4736,4932,5739,5792,6160,6450,6868,7242,7527,8223,8839,9036,9350,9784,10129,10381,10748,10834,12120,12581,12767,13747,14399,15094,15221,15756,17209,17570,17791,19252,20305,20452,21451,22317,22675,23119,23250,24354,24455,26383,27390,27940,28281,29275,30785,30950,31156,31509,32158,33469,34132,37482,38526,39130,40321]
477
+ ]
478
+ ),
479
+ 96 => DesignSet.new(
480
+ nyq: 16603, freqs: [
481
+ [1,2,9,14,28,34,74,83,105,144,203,237,282,303,418,496,543,601,652,775,825,842,986,1208,1388,1580,1643,1838,2082,2176,2289,2545,2821,3071,3410,3538,3838,4008,4358,4520,4736,4932,5739,5792,6160,6450,6868,7242,7527,8223,8839,9036,9350,9784,10129,10381,10748,10834,12120,12581,12767,13747,14399,15094,15221,15756,17209,17570,17791,19252,20305,20452,21451,22317,22675,23119,23250,24354,24455,26383,27390,27940,28281,29275,30785,30950,31156,31509,32158,33469,34132,37482,38526,39130,40321,40476]
482
+ ]
483
+ ),
484
+ 97 => DesignSet.new(
485
+ nyq: 16607, freqs: [
486
+ [1,2,9,14,28,34,74,83,105,144,203,237,282,303,418,496,543,601,652,775,825,842,986,1208,1388,1580,1643,1838,2082,2176,2289,2545,2821,3071,3410,3538,3838,4008,4358,4520,4736,4932,5739,5792,6160,6450,6868,7242,7527,8223,8839,9036,9350,9784,10129,10381,10748,10834,12120,12581,12767,13747,14399,15094,15221,15756,17209,17570,17791,19252,20305,20452,21451,22317,22675,23119,23250,24354,24455,26383,27390,27940,28281,29275,30785,30950,31156,31509,32158,33469,34132,37482,38526,39130,40321,40476,42002]
487
+ ]
488
+ ),
489
+ 98 => DesignSet.new(
490
+ nyq: 17387, freqs: [
491
+ [1,2,9,14,28,34,74,83,105,144,203,237,282,303,418,496,543,601,652,775,825,842,986,1208,1388,1580,1643,1838,2082,2176,2289,2545,2821,3071,3410,3538,3838,4008,4358,4520,4736,4932,5739,5792,6160,6450,6868,7242,7527,8223,8839,9036,9350,9784,10129,10381,10748,10834,12120,12581,12767,13747,14399,15094,15221,15756,17209,17570,17791,19252,20305,20452,21451,22317,22675,23119,23250,24354,24455,26383,27390,27940,28281,29275,30785,30950,31156,31509,32158,33469,34132,37482,38526,39130,40321,40476,42002,44501]
492
+ ]
493
+ ),
494
+ 99 => DesignSet.new(
495
+ nyq: 17477, freqs: [
496
+ [1,2,9,14,28,34,74,83,105,144,203,237,282,303,418,496,543,601,652,775,825,842,986,1208,1388,1580,1643,1838,2082,2176,2289,2545,2821,3071,3410,3538,3838,4008,4358,4520,4736,4932,5739,5792,6160,6450,6868,7242,7527,8223,8839,9036,9350,9784,10129,10381,10748,10834,12120,12581,12767,13747,14399,15094,15221,15756,17209,17570,17791,19252,20305,20452,21451,22317,22675,23119,23250,24354,24455,26383,27390,27940,28281,29275,30785,30950,31156,31509,32158,33469,34132,37482,38526,39130,40321,40476,42002,44501,45775]
497
+ ]
498
+ ),
499
+ 100 => DesignSet.new(
500
+ nyq: 17851, freqs: [
501
+ [1,2,9,14,28,34,74,83,105,144,203,237,282,303,418,496,543,601,652,775,825,842,986,1208,1388,1580,1643,1838,2082,2176,2289,2545,2821,3071,3410,3538,3838,4008,4358,4520,4736,4932,5739,5792,6160,6450,6868,7242,7527,8223,8839,9036,9350,9784,10129,10381,10748,10834,12120,12581,12767,13747,14399,15094,15221,15756,17209,17570,17791,19252,20305,20452,21451,22317,22675,23119,23250,24354,24455,26383,27390,27940,28281,29275,30785,30950,31156,31509,32158,33469,34132,37482,38526,39130,40321,40476,42002,44501,45775,47516]
502
+ ]
503
+ ),
142
504
  }.freeze
143
505
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module DataFarming
4
- VERSION = "2.3.0"
4
+ VERSION = "2.3.2"
5
5
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: datafarming
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.0
4
+ version: 2.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Paul J Sanchez
8
8
  bindir: exe
9
9
  cert_chain: []
10
- date: 2025-01-26 00:00:00.000000000 Z
10
+ date: 2026-07-31 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: fwt
@@ -149,7 +149,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
149
149
  - !ruby/object:Gem::Version
150
150
  version: '0'
151
151
  requirements: []
152
- rubygems_version: 3.6.2
152
+ rubygems_version: 4.0.17
153
153
  specification_version: 4
154
154
  summary: Useful scripts for data farming.
155
155
  test_files: []