not1mm 24.10.24.1__py3-none-any.whl → 24.10.26__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) hide show
  1. not1mm/__main__.py +9 -3
  2. not1mm/bandmap.py +6 -1
  3. not1mm/data/main.ui +23 -3
  4. not1mm/lib/version.py +1 -1
  5. not1mm/plugins/10_10_fall_cw.py +109 -82
  6. not1mm/plugins/10_10_spring_cw.py +109 -82
  7. not1mm/plugins/10_10_summer_phone.py +109 -82
  8. not1mm/plugins/10_10_winter_phone.py +109 -82
  9. not1mm/plugins/arrl_10m.py +109 -82
  10. not1mm/plugins/arrl_dx_cw.py +109 -82
  11. not1mm/plugins/arrl_dx_ssb.py +109 -82
  12. not1mm/plugins/arrl_field_day.py +109 -82
  13. not1mm/plugins/arrl_ss_cw.py +109 -82
  14. not1mm/plugins/arrl_ss_phone.py +109 -82
  15. not1mm/plugins/arrl_vhf_jan.py +109 -82
  16. not1mm/plugins/arrl_vhf_jun.py +109 -82
  17. not1mm/plugins/arrl_vhf_sep.py +109 -82
  18. not1mm/plugins/canada_day.py +109 -82
  19. not1mm/plugins/cq_160_cw.py +109 -74
  20. not1mm/plugins/cq_160_ssb.py +109 -74
  21. not1mm/plugins/cq_wpx_cw.py +109 -82
  22. not1mm/plugins/cq_wpx_rtty.py +109 -82
  23. not1mm/plugins/cq_wpx_ssb.py +109 -82
  24. not1mm/plugins/cq_ww_cw.py +115 -83
  25. not1mm/plugins/cq_ww_rtty.py +110 -73
  26. not1mm/plugins/cq_ww_ssb.py +109 -82
  27. not1mm/plugins/cwt.py +109 -82
  28. not1mm/plugins/general_logging.py +1 -1
  29. not1mm/plugins/helvetia.py +109 -82
  30. not1mm/plugins/iaru_fieldday_r1_cw.py +109 -82
  31. not1mm/plugins/iaru_fieldday_r1_ssb.py +109 -82
  32. not1mm/plugins/iaru_hf.py +109 -82
  33. not1mm/plugins/icwc_mst.py +109 -82
  34. not1mm/plugins/jidx_cw.py +74 -48
  35. not1mm/plugins/jidx_ph.py +74 -48
  36. not1mm/plugins/k1usn_sst.py +109 -82
  37. not1mm/plugins/naqp_cw.py +109 -82
  38. not1mm/plugins/naqp_rtty.py +109 -82
  39. not1mm/plugins/naqp_ssb.py +109 -82
  40. not1mm/plugins/phone_weekly_test.py +109 -82
  41. not1mm/plugins/ref_cw.py +109 -82
  42. not1mm/plugins/ref_ssb.py +109 -82
  43. not1mm/plugins/stew_perry_topband.py +109 -82
  44. not1mm/plugins/weekly_rtty.py +109 -82
  45. not1mm/plugins/winter_field_day.py +109 -82
  46. {not1mm-24.10.24.1.dist-info → not1mm-24.10.26.dist-info}/METADATA +3 -1
  47. {not1mm-24.10.24.1.dist-info → not1mm-24.10.26.dist-info}/RECORD +51 -51
  48. {not1mm-24.10.24.1.dist-info → not1mm-24.10.26.dist-info}/LICENSE +0 -0
  49. {not1mm-24.10.24.1.dist-info → not1mm-24.10.26.dist-info}/WHEEL +0 -0
  50. {not1mm-24.10.24.1.dist-info → not1mm-24.10.26.dist-info}/entry_points.txt +0 -0
  51. {not1mm-24.10.24.1.dist-info → not1mm-24.10.26.dist-info}/top_level.txt +0 -0
@@ -147,7 +147,16 @@ def adif(self):
147
147
  gen_adif(self, cabrillo_name, "WFD")
148
148
 
149
149
 
150
- def cabrillo(self):
150
+ def output_cabrillo_line(line_to_output, ending, file_descriptor, file_encoding):
151
+ """"""
152
+ print(
153
+ line_to_output.encode(file_encoding, errors="ignore").decode(),
154
+ end=ending,
155
+ file=file_descriptor,
156
+ )
157
+
158
+
159
+ def cabrillo(self, file_encoding):
151
160
  """Generates Cabrillo file. Maybe."""
152
161
  # https://www.cqwpx.com/cabrillo.htm
153
162
  logger.debug("******Cabrillo*****")
@@ -164,133 +173,150 @@ def cabrillo(self):
164
173
  log = self.database.fetch_all_contacts_asc()
165
174
  try:
166
175
  with open(filename, "w", encoding="utf-8") as file_descriptor:
167
- print("START-OF-LOG: 3.0", end="\r\n", file=file_descriptor)
168
- print(
176
+ output_cabrillo_line(
177
+ "START-OF-LOG: 3.0",
178
+ "\r\n",
179
+ file_descriptor,
180
+ file_encoding,
181
+ )
182
+ output_cabrillo_line(
169
183
  f"CREATED-BY: Not1MM v{__version__}",
170
- end="\r\n",
171
- file=file_descriptor,
184
+ "\r\n",
185
+ file_descriptor,
186
+ file_encoding,
172
187
  )
173
- print(
188
+ output_cabrillo_line(
174
189
  f"CONTEST: {cabrillo_name}",
175
- end="\r\n",
176
- file=file_descriptor,
190
+ "\r\n",
191
+ file_descriptor,
192
+ file_encoding,
177
193
  )
178
194
  if self.station.get("Club", ""):
179
- print(
195
+ output_cabrillo_line(
180
196
  f"CLUB: {self.station.get('Club', '').upper()}",
181
- end="\r\n",
182
- file=file_descriptor,
197
+ "\r\n",
198
+ file_descriptor,
199
+ file_encoding,
183
200
  )
184
- print(
201
+ output_cabrillo_line(
185
202
  f"CALLSIGN: {self.station.get('Call','')}",
186
- end="\r\n",
187
- file=file_descriptor,
203
+ "\r\n",
204
+ file_descriptor,
205
+ file_encoding,
188
206
  )
189
- print(
207
+ output_cabrillo_line(
190
208
  f"LOCATION: {self.station.get('ARRLSection', '')}",
191
- end="\r\n",
192
- file=file_descriptor,
209
+ "\r\n",
210
+ file_descriptor,
211
+ file_encoding,
193
212
  )
194
- # print(
195
- # f"ARRL-SECTION: {self.pref.get('section', '')}",
196
- # end="\r\n",
197
- # file=file_descriptor,
198
- # )
199
- print(
213
+ output_cabrillo_line(
200
214
  f"CATEGORY-OPERATOR: {self.contest_settings.get('OperatorCategory','')}",
201
- end="\r\n",
202
- file=file_descriptor,
215
+ "\r\n",
216
+ file_descriptor,
217
+ file_encoding,
203
218
  )
204
- print(
219
+ output_cabrillo_line(
205
220
  f"CATEGORY-ASSISTED: {self.contest_settings.get('AssistedCategory','')}",
206
- end="\r\n",
207
- file=file_descriptor,
221
+ "\r\n",
222
+ file_descriptor,
223
+ file_encoding,
208
224
  )
209
- print(
225
+ output_cabrillo_line(
210
226
  f"CATEGORY-BAND: {self.contest_settings.get('BandCategory','')}",
211
- end="\r\n",
212
- file=file_descriptor,
227
+ "\r\n",
228
+ file_descriptor,
229
+ file_encoding,
213
230
  )
214
- print(
231
+ output_cabrillo_line(
215
232
  f"CATEGORY-MODE: {self.contest_settings.get('ModeCategory','')}",
216
- end="\r\n",
217
- file=file_descriptor,
233
+ "\r\n",
234
+ file_descriptor,
235
+ file_encoding,
218
236
  )
219
- print(
237
+ output_cabrillo_line(
220
238
  f"CATEGORY-TRANSMITTER: {self.contest_settings.get('TransmitterCategory','')}",
221
- end="\r\n",
222
- file=file_descriptor,
239
+ "\r\n",
240
+ file_descriptor,
241
+ file_encoding,
223
242
  )
224
243
  if self.contest_settings.get("OverlayCategory", "") != "N/A":
225
- print(
244
+ output_cabrillo_line(
226
245
  f"CATEGORY-OVERLAY: {self.contest_settings.get('OverlayCategory','')}",
227
- end="\r\n",
228
- file=file_descriptor,
246
+ "\r\n",
247
+ file_descriptor,
248
+ file_encoding,
229
249
  )
230
- print(
250
+ output_cabrillo_line(
231
251
  f"GRID-LOCATOR: {self.station.get('GridSquare','')}",
232
- end="\r\n",
233
- file=file_descriptor,
252
+ "\r\n",
253
+ file_descriptor,
254
+ file_encoding,
234
255
  )
235
- # print(
236
- # f"CATEGORY: {None}",
237
- # end="\r\n",
238
- # file=file_descriptor,
239
- # )
240
- print(
256
+ output_cabrillo_line(
241
257
  f"CATEGORY-POWER: {self.contest_settings.get('PowerCategory','')}",
242
- end="\r\n",
243
- file=file_descriptor,
258
+ "\r\n",
259
+ file_descriptor,
260
+ file_encoding,
244
261
  )
245
262
 
246
- print(
263
+ output_cabrillo_line(
247
264
  f"CLAIMED-SCORE: {calc_score(self)}",
248
- end="\r\n",
249
- file=file_descriptor,
265
+ "\r\n",
266
+ file_descriptor,
267
+ file_encoding,
250
268
  )
251
269
  ops = f"@{self.station.get('Call','')}"
252
270
  list_of_ops = self.database.get_ops()
253
271
  for op in list_of_ops:
254
272
  ops += f", {op.get('Operator', '')}"
255
- print(
273
+ output_cabrillo_line(
256
274
  f"OPERATORS: {ops}",
257
- end="\r\n",
258
- file=file_descriptor,
275
+ "\r\n",
276
+ file_descriptor,
277
+ file_encoding,
259
278
  )
260
- print(
279
+ output_cabrillo_line(
261
280
  f"NAME: {self.station.get('Name', '')}",
262
- end="\r\n",
263
- file=file_descriptor,
281
+ "\r\n",
282
+ file_descriptor,
283
+ file_encoding,
264
284
  )
265
- print(
285
+ output_cabrillo_line(
266
286
  f"ADDRESS: {self.station.get('Street1', '')}",
267
- end="\r\n",
268
- file=file_descriptor,
287
+ "\r\n",
288
+ file_descriptor,
289
+ file_encoding,
269
290
  )
270
- print(
291
+ output_cabrillo_line(
271
292
  f"ADDRESS-CITY: {self.station.get('City', '')}",
272
- end="\r\n",
273
- file=file_descriptor,
293
+ "\r\n",
294
+ file_descriptor,
295
+ file_encoding,
274
296
  )
275
- print(
297
+ output_cabrillo_line(
276
298
  f"ADDRESS-STATE-PROVINCE: {self.station.get('State', '')}",
277
- end="\r\n",
278
- file=file_descriptor,
299
+ "\r\n",
300
+ file_descriptor,
301
+ file_encoding,
279
302
  )
280
- print(
303
+ output_cabrillo_line(
281
304
  f"ADDRESS-POSTALCODE: {self.station.get('Zip', '')}",
282
- end="\r\n",
283
- file=file_descriptor,
305
+ "\r\n",
306
+ file_descriptor,
307
+ file_encoding,
284
308
  )
285
- print(
309
+ output_cabrillo_line(
286
310
  f"ADDRESS-COUNTRY: {self.station.get('Country', '')}",
287
- end="\r\n",
288
- file=file_descriptor,
311
+ "\r\n",
312
+ file_descriptor,
313
+ file_encoding,
289
314
  )
290
- print(
315
+ output_cabrillo_line(
291
316
  f"EMAIL: {self.station.get('Email', '')}",
292
- end="\r\n",
293
- file=file_descriptor,
317
+ "\r\n",
318
+ file_descriptor,
319
+ file_encoding,
294
320
  )
295
321
  for contact in log:
296
322
  the_date_and_time = contact.get("TS", "")
@@ -301,17 +327,18 @@ def cabrillo(self):
301
327
 
302
328
  loggeddate = the_date_and_time[:10]
303
329
  loggedtime = the_date_and_time[11:13] + the_date_and_time[14:16]
304
- print(
330
+ output_cabrillo_line(
305
331
  f"QSO: {frequency} {themode} {loggeddate} {loggedtime} "
306
332
  f"{contact.get('StationPrefix', '').ljust(13)} "
307
333
  f"{self.contest_settings.get('SentExchange', '').ljust(9).upper()}"
308
334
  f"{contact.get('Call', '').ljust(13)} "
309
335
  f"{str(contact.get('Exchange1', '')).ljust(3)} "
310
336
  f"{str(contact.get('Sect', '')).ljust(6)}",
311
- end="\r\n",
312
- file=file_descriptor,
337
+ "\r\n",
338
+ file_descriptor,
339
+ file_encoding,
313
340
  )
314
- print("END-OF-LOG:", end="\r\n", file=file_descriptor)
341
+ output_cabrillo_line("END-OF-LOG:", "\r\n", file_descriptor, file_encoding)
315
342
  self.show_message_box(f"Cabrillo saved to: {filename}")
316
343
  except IOError as exception:
317
344
  logger.critical("cabrillo: IO error: %s, writing to %s", exception, filename)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: not1mm
3
- Version: 24.10.24.1
3
+ Version: 24.10.26
4
4
  Summary: NOT1MM Logger
5
5
  Author-email: Michael Bridak <michael.bridak@gmail.com>
6
6
  Project-URL: Homepage, https://github.com/mbridak/not1mm
@@ -232,6 +232,8 @@ generated, 'cause I'm lazy, list of those who've submitted PR's.
232
232
 
233
233
  ## Recent Changes (Polishing the Turd)
234
234
 
235
+ - [24-10-26] Clear inputs when seeking to a call from the bandmap via the arrow up and down. Fixed bandmap crash from bad telnet data. Drop beacons from bandmap.
236
+ - [24-10-25] Add File Menu option to create either an ASCII or UTF8 Cabrillo.
235
237
  - [24-10-24-1] Make all Cabrillo files with UTF-8.
236
238
  - [24-10-24] Forgot to convert the VFO dockwidget along with the rest. CQ WW CW, Dupes now score 0.
237
239
  - [24-10-23] Remove duplicate marked calls in the bandmap.
@@ -1,6 +1,6 @@
1
1
  not1mm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- not1mm/__main__.py,sha256=DaYuqX83hURHwL4fzQ40M8IcjUkiXd0Pi2h7Je077ks,135215
3
- not1mm/bandmap.py,sha256=uCaM07IWyC22LFO3R1_ViaW7SBXjIaoJ-ypglJIKddg,30670
2
+ not1mm/__main__.py,sha256=2TTyUNILQl6vIK_oVi8uzCiRv-fLC6l-S2kiU6cxTRk,135457
3
+ not1mm/bandmap.py,sha256=X6mMHXS1kXBbUPZCaKgiVJ6Dz6DE6LEQqtEXfT3telg,30811
4
4
  not1mm/checkwindow.py,sha256=F6hNCbVSLG2PPY2afgmwlBWeqr1Uj4-n__AivDLVQ_0,9670
5
5
  not1mm/fsutils.py,sha256=ukHKxKTeNKxKwqRaJjtzRShL4X5Xl0jRBbADyy3Ifp8,1701
6
6
  not1mm/logwindow.py,sha256=TvpzQTNB92hISlUO3iWBqtlPmlebdhOkAArx0DNGcOs,43966
@@ -30,7 +30,7 @@ not1mm/data/k6gte.not1mm-32.png,sha256=XdTsCa3xqwTfn26Ga7RwO_Vlbg_77RKkSc8bMxVcC
30
30
  not1mm/data/k6gte.not1mm-64.png,sha256=6ku45Gq1g5ezh04F07osoKRtanb3e4kbx5XdIEh3N90,2925
31
31
  not1mm/data/logwindow.ui,sha256=f7vULj96tHIQuR1nJMyvPHHcmVgzkhv9D1isyojsnFU,1458
32
32
  not1mm/data/logwindowx.ui,sha256=CwpI-h7cI1yqyldH9quKftsdHL5lTyL9ABOcf80nfqc,1632
33
- not1mm/data/main.ui,sha256=5dp8HYwhfD8H8WncRMChclY9E_JOCAPvsxzl9g9IMRc,61886
33
+ not1mm/data/main.ui,sha256=qX8IAGDP5oeky36GEzniWW0EoeJP5HaRTLUVlPG2Ug0,62449
34
34
  not1mm/data/new_contest.ui,sha256=CBvg-L_81Aftk9_cp88aHrFMLhpRsM80BmA6gOpaGa0,23429
35
35
  not1mm/data/not1mm.html,sha256=c9-mfjMwDt4f5pySUruz2gREW33CQ2_rCddM2z5CZQo,23273
36
36
  not1mm/data/opon.ui,sha256=QDicqAk2lORG2UWsHa6jHlsGn6uzrrI2R4HSAocpPes,2258
@@ -115,54 +115,54 @@ not1mm/lib/plugin_common.py,sha256=TbFUbftjELFt4QRdsjSHbqnXSngZOlSwlCTClqosDXA,9
115
115
  not1mm/lib/select_contest.py,sha256=WsptLuwkouIHeocJL3oZ6-eUfEnhpwdc-x7eMZ_TIVM,359
116
116
  not1mm/lib/settings.py,sha256=7_JFDSKPOd35Gwzqhrbed4EfrlYUm7AEnz2xBRioc-g,13280
117
117
  not1mm/lib/super_check_partial.py,sha256=hwT2NRwobu0PLDyw6ltmbmcAtGBD02CKGFbgGWjXMqA,2334
118
- not1mm/lib/version.py,sha256=E2uAq7owOVkkyinpjJtWA6clVS-qyLLdnrWv7W2tu_4,51
118
+ not1mm/lib/version.py,sha256=lhs-4aghoAhL_7sGfxxWp9xQs1uOCSFbmvOaZiGtKtk,49
119
119
  not1mm/lib/versiontest.py,sha256=8vDNptuBBunn-1IGkjNaquehqBYUJyjrPSF8Igmd4_Y,1286
120
- not1mm/plugins/10_10_fall_cw.py,sha256=GnqMFcALpIdPqeKtGPS0TlgCb-O_msK2ws6ULukjPpY,10953
121
- not1mm/plugins/10_10_spring_cw.py,sha256=XGxiJPESyG3NSwFlXPx5bhSSywSzo9q84nUXCpumVi4,10958
122
- not1mm/plugins/10_10_summer_phone.py,sha256=6We4gd_hnjb1Dku2NgExnye_MrmRBy_j5tcLz9hh-P8,10967
123
- not1mm/plugins/10_10_winter_phone.py,sha256=I6kSG7bxWUd1nSyuE4DW3TVobW-o5CFoCk-M0nIomDA,10970
120
+ not1mm/plugins/10_10_fall_cw.py,sha256=QQjEgWQRT35qG1bi87QhoUIOzGbN8C27WIUhhoFNsAI,11866
121
+ not1mm/plugins/10_10_spring_cw.py,sha256=nGznP9VLooaDnHi0JXttosqAtSRH32oXwWmMrXf95A0,11871
122
+ not1mm/plugins/10_10_summer_phone.py,sha256=z2W7eGdegD2fjL36vcEyQyKRueY9fBE5nLE3uAZYZxc,11880
123
+ not1mm/plugins/10_10_winter_phone.py,sha256=QUySORpo6TVXYwlD-DjjbaOS38WMjOtN5DaLd8nZvQ8,11883
124
124
  not1mm/plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
125
- not1mm/plugins/arrl_10m.py,sha256=V4mDFFwYzsry0CvJEvBjwTMOpZIl3IKwjvPYyZmacAU,13768
126
- not1mm/plugins/arrl_dx_cw.py,sha256=7wmHaSqN_5vtxH34nUxmUM7NjCv61cfgBf2jGVyWj3w,17095
127
- not1mm/plugins/arrl_dx_ssb.py,sha256=ey5AwN2j90RP7wRbGKzP7N-6ycDpDwjAwz3_bmgRqnI,17098
128
- not1mm/plugins/arrl_field_day.py,sha256=5u7miVLU0v3QVp4_9eaXAk1eXNN-mCtUKP-aI2JybbQ,16048
125
+ not1mm/plugins/arrl_10m.py,sha256=q8jIUC_b7tZeESKEYuDdoJmPR7ot33HcqVm5R8dVmvg,14681
126
+ not1mm/plugins/arrl_dx_cw.py,sha256=6CxLhewtceKCWY3jMyhdxknW4Eg1uFqTK0To-9sjZAc,18008
127
+ not1mm/plugins/arrl_dx_ssb.py,sha256=AqSiIRlC4UAVyc4S2MnUqT1-vFkxQStl0zjeXPThRCk,18011
128
+ not1mm/plugins/arrl_field_day.py,sha256=Jukp3TxYJojPVktA5hMaq272hiCqvl0V8A71F5mL--A,16961
129
129
  not1mm/plugins/arrl_rtty_ru.py,sha256=hKUS4isjdXo3EYxQrsqsDupPp2chW8fpoWj0T1pTgJ4,7994
130
- not1mm/plugins/arrl_ss_cw.py,sha256=JAPMcoXjc6gwHrAA6KnAZO3B7nWJxcRF7KtbM6z2mew,16339
131
- not1mm/plugins/arrl_ss_phone.py,sha256=x-ACptTNVqjjA0kumEiRaxhIYJiGUYbqIk5wMUhomgU,16327
132
- not1mm/plugins/arrl_vhf_jan.py,sha256=6lpHZ-B8V9n3IW1I3LLHIA_5BTw3Ku7w8krbmLJaGG8,15717
133
- not1mm/plugins/arrl_vhf_jun.py,sha256=WjNXhkTFnd2BXXg6d3ZNFIQFY2ad1ik_jzx5y2KIa_A,14809
134
- not1mm/plugins/arrl_vhf_sep.py,sha256=hAXiAcZW0Cx1pFIkEGofpmOy1e8IoFgnVBbYgrglY4U,14809
135
- not1mm/plugins/canada_day.py,sha256=yqqRrCKg-kRszZXXm7-wwafssp3Xx-FK7zlH0xU4kIM,15074
136
- not1mm/plugins/cq_160_cw.py,sha256=z_810J3cNX9D2aDUIB2WViGovYld33opkxiKNuJc2oc,14139
137
- not1mm/plugins/cq_160_ssb.py,sha256=LsFaP8bBTy_7oyWGgNfvwKSM1fR51C4nU94B1FmuAh0,14182
138
- not1mm/plugins/cq_wpx_cw.py,sha256=Mne60obSgQ1DwULwQIxpegbs1dd1NPJ7R3EXLz-ldO0,17589
139
- not1mm/plugins/cq_wpx_rtty.py,sha256=6acqQYYXSkcWhVF_F8weOLccVqW14YQPBixNHpa5anI,20408
140
- not1mm/plugins/cq_wpx_ssb.py,sha256=JGLZCpXSAPxbi_ATKZyeeQgtHIKwdXg53DxMQxE1Trs,16239
141
- not1mm/plugins/cq_ww_cw.py,sha256=fTt0aHYmSoXHKHKnXFc0NUJCLHRTNDJgHBVk_YuLzok,16408
142
- not1mm/plugins/cq_ww_rtty.py,sha256=LzdSTo_ANaBo6XCs0IsdBYS4RVlv8INbnV6ZDjIGkVE,20702
143
- not1mm/plugins/cq_ww_ssb.py,sha256=190h4JIfEqXTZMWtjBNPNYDJJqOJGX2kFwSNLkgFdMw,16086
144
- not1mm/plugins/cwt.py,sha256=U21E0vWNyxNZSNMrv2gKRIAu8FlVltlOMbCUi9X0D5A,16472
145
- not1mm/plugins/general_logging.py,sha256=n-2es7erqK1ptwq_wwIKIwktptKN7ra2eWjAQlpXUac,3479
146
- not1mm/plugins/helvetia.py,sha256=DKAfLhdnabc4WdiRjAJelZRb7y5dMyUglitIfXKPlUE,15432
147
- not1mm/plugins/iaru_fieldday_r1_cw.py,sha256=LfSjz0P46VhcvIV8hY1YpSS7-BLTYdj4hbvfENv9SCI,13301
148
- not1mm/plugins/iaru_fieldday_r1_ssb.py,sha256=GSso2rmPvku_ooy_O6xiyd1PrBbVZ4ONXbT27Omg-GM,13306
149
- not1mm/plugins/iaru_hf.py,sha256=EEo3ivyZ52NzRSMaXjJfgembS_uVY1OmGMpvaK0VwJE,11541
150
- not1mm/plugins/icwc_mst.py,sha256=kycjlidMudn063Wwpgv-lEBicCJosZ-qsbP_OHQFILQ,11831
151
- not1mm/plugins/jidx_cw.py,sha256=q1jhr22QuMlETBL_dFpJV7uKeMajGfzAIgq2pvZ1U_M,12153
152
- not1mm/plugins/jidx_ph.py,sha256=jOXdxKL2NieYfgzwTH8ZQnKWF_HYz6fXLrRHwPmj0kQ,11183
153
- not1mm/plugins/k1usn_sst.py,sha256=abJHM6edPlEsBUsG7E95bAQDF0pWrVR25vWwbLXPKSg,15369
154
- not1mm/plugins/naqp_cw.py,sha256=AFK6q9rrvoK5DHxuZwjpDPZ_Rj9d2bzYHaaWbm81uzA,17448
155
- not1mm/plugins/naqp_rtty.py,sha256=bGdtWH1UKks1vRcqv7E2wyqbj44Qyub1FBFG2i30fR8,21229
156
- not1mm/plugins/naqp_ssb.py,sha256=oEewvcbDK6YEA1zsv5DAEl9ysYqU9ZJQv9rmkHw6iVA,16365
157
- not1mm/plugins/phone_weekly_test.py,sha256=xCuEBKPnrSA6vZ4jN9xiCfOizzU0fcZ3g0kXKHd7DtU,12325
158
- not1mm/plugins/ref_cw.py,sha256=nnUUvWL1yZbJLQMSEtVSgiXskHKe3ZX_EFbf9I6arh4,19997
159
- not1mm/plugins/ref_ssb.py,sha256=BN8VzdOYb4jH8Ikn-tHMBWv-qTcOs66tnjE_0QLcNlI,20003
160
- not1mm/plugins/stew_perry_topband.py,sha256=2z92euK5UteSEGp8ahbtLe_X3A4fVtaPPpHw7jSDSvk,10668
161
- not1mm/plugins/weekly_rtty.py,sha256=fS-swasHbiwZ1rSP7DiXI8rxnaV6J_r8jKYR8qDf-Uc,18185
162
- not1mm/plugins/winter_field_day.py,sha256=VmXxndt7rs3bsQIXoi353jsUzz252ZEh5kxkQiYAK3s,13579
163
- not1mm-24.10.24.1.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
164
- not1mm-24.10.24.1.dist-info/METADATA,sha256=I0AAojC7vHbWZdKABO-_UgpG8_jls91fmuCuvJdFWy4,35197
165
- not1mm-24.10.24.1.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
166
- not1mm-24.10.24.1.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
167
- not1mm-24.10.24.1.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
168
- not1mm-24.10.24.1.dist-info/RECORD,,
130
+ not1mm/plugins/arrl_ss_cw.py,sha256=pi24xK7S8fve6U2rdcOATOmnG552i5oHXFXEIukpKB4,17252
131
+ not1mm/plugins/arrl_ss_phone.py,sha256=XnfNFwtjuAxu285DUsUQdDNC_mDtKut0CT2KVRDKZN8,17240
132
+ not1mm/plugins/arrl_vhf_jan.py,sha256=QonafOYBtrdwlvMSyu0SyroDLsyIqHvJ46Mx-QoaI4Q,16630
133
+ not1mm/plugins/arrl_vhf_jun.py,sha256=F8XhZvYEx-rwaeKbiOGQybQrusurzOkRtKMx5oHY1hE,15722
134
+ not1mm/plugins/arrl_vhf_sep.py,sha256=G7pSD7oNaQJx97380opAHgU6jySZ2LN8OVnI2vwxjS0,15722
135
+ not1mm/plugins/canada_day.py,sha256=3_Fi8Tvdcw3ZsDAg1uveMnSKxde2YaGHZoF1x89e4w8,15987
136
+ not1mm/plugins/cq_160_cw.py,sha256=FXLonVa_e70RQYwPrWlkTlGvAInw3Xihm9MyXXC3CHk,15370
137
+ not1mm/plugins/cq_160_ssb.py,sha256=XRpFRdVmWmd-iJDuUIkWwqY3hlxXORG4CGU0Sy-dcR4,15413
138
+ not1mm/plugins/cq_wpx_cw.py,sha256=-nBaCFp442qm3WItuqkFjLCxm9X0NjF1H62TlzMbGm4,18502
139
+ not1mm/plugins/cq_wpx_rtty.py,sha256=BkjiXal8ZuqGUiR0LW4ylfDIkIwH15KkSfbKrA-vaMs,21321
140
+ not1mm/plugins/cq_wpx_ssb.py,sha256=qrHz9MxKvkIvvXdogTwCrwXJaJ5SsdHjs2C5N2W_O-w,17152
141
+ not1mm/plugins/cq_ww_cw.py,sha256=tAVzA2EtjoRMVqxChZzwNYdPzhdfU23oOtIFDMf7af4,17406
142
+ not1mm/plugins/cq_ww_rtty.py,sha256=YxQO8jnb-LWJnwV7tSOWNEWUWgwoBJ605jyYui4P7Xk,21934
143
+ not1mm/plugins/cq_ww_ssb.py,sha256=1RPUz76Ijy9T4C14MhfTaf6fMC4Q6rgvbrkfO8fpFQ4,16999
144
+ not1mm/plugins/cwt.py,sha256=SDXamK8BZRm1O91AGLIul9Wpzk423EbHxuEd45GCd88,17377
145
+ not1mm/plugins/general_logging.py,sha256=IHcgZ1YJEEaxPUn7jyTIUpQAsa1jaHO5zfHvcaqbF34,3494
146
+ not1mm/plugins/helvetia.py,sha256=neRhkvBCdKJzz1ZbE3lisUPQ9sG8i0FAAqsfJBCaBcI,16345
147
+ not1mm/plugins/iaru_fieldday_r1_cw.py,sha256=EqajyS-hd7m6MEdIO5BZw_cQxmo61Yo6WB29sw_BP9U,14214
148
+ not1mm/plugins/iaru_fieldday_r1_ssb.py,sha256=tQd0i-fjUs47g5bMwFvkrH89KY6bW5cPCKwDTQbE6gE,14219
149
+ not1mm/plugins/iaru_hf.py,sha256=Re6EPy7LnhXhZoQd4zcsZ3hdJcpEsiewitL_oEMrq6w,12454
150
+ not1mm/plugins/icwc_mst.py,sha256=4UfkfsUrTpvGLjdD-6Ea-gX9gUTQrtfddt-M3e7Z1A4,12744
151
+ not1mm/plugins/jidx_cw.py,sha256=C5P9EiIO2iHEBv15IWknwr6f2Cr78ozY27Qxik8hm-A,13037
152
+ not1mm/plugins/jidx_ph.py,sha256=MBXQEmZvRlbtlG-ad5vbM-uq500SDdSPsm-kbOPt1LU,12067
153
+ not1mm/plugins/k1usn_sst.py,sha256=eLPv28T3ebHz0z9u5WaxrlKPAIOJkxOIVmpJbfDQbKY,16282
154
+ not1mm/plugins/naqp_cw.py,sha256=tlS7l8bF1zoNjJ-FJacOEht47HcFjv0zIHBNkfNIfTQ,18361
155
+ not1mm/plugins/naqp_rtty.py,sha256=JbluW-QNOyG47jlMBFmbV4UY5ABOFhd_YxYLtKPNP_4,22142
156
+ not1mm/plugins/naqp_ssb.py,sha256=Xkp_nfJziKJJTY0E2GO3szVWp21MogFp-q1rb-oWuTo,17278
157
+ not1mm/plugins/phone_weekly_test.py,sha256=4YuG-TfjX4FfDztuVlH0dB7TDMNB-pQ3KP07WL3AwKo,13238
158
+ not1mm/plugins/ref_cw.py,sha256=gEH1avPN5E5WG5VZcHKAZU2HxGn8RZ3tm1oR7TKmRgY,20910
159
+ not1mm/plugins/ref_ssb.py,sha256=UC8xwl4uRihTvlYsITCvfTCPVbNXpnO91T8qMDKaW8E,20916
160
+ not1mm/plugins/stew_perry_topband.py,sha256=UOK9M23eMkcEB83kL8NPHl6QDBJFCXKZpBRlhfuEH2c,11581
161
+ not1mm/plugins/weekly_rtty.py,sha256=WoMfQXJczvoHQB04i6TAvL6MF91uOOQ9ZmB9BpUkOfo,19098
162
+ not1mm/plugins/winter_field_day.py,sha256=wPxHKPPeyE2XlRT6Unnz09evFwd0ghWtXU5l-nMr3aI,14492
163
+ not1mm-24.10.26.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
164
+ not1mm-24.10.26.dist-info/METADATA,sha256=tznhgEgHqd1EpyO3HpktRkYk3bJ1Ho-dNcrHC34GXz8,35435
165
+ not1mm-24.10.26.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
166
+ not1mm-24.10.26.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
167
+ not1mm-24.10.26.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
168
+ not1mm-24.10.26.dist-info/RECORD,,