diff --git a/bptc.py b/bptc.py
index 5b5b43f..2dcd88c 100755
--- a/bptc.py
+++ b/bptc.py
@@ -120,16 +120,16 @@ def encode_terminator_lc(_lc):
# BPTC Embedded LC Decoding Routines
#------------------------------------------------------------------------------
-def decode_emblc(_elc_b, _elc_c, _elc_d, _elc_e):
+def decode_emblc(_elc):
_binlc = bitarray(endian='big')
- _binlc.extend([_elc_b[0],_elc_b[8], _elc_b[16],_elc_b[24],_elc_c[0],_elc_c[8], _elc_c[16],_elc_c[24],_elc_d[0],_elc_d[8] ,_elc_d[16]])
- _binlc.extend([_elc_b[1],_elc_b[9], _elc_b[17],_elc_b[25],_elc_c[1],_elc_c[9], _elc_c[17],_elc_c[25],_elc_d[1],_elc_d[9] ,_elc_d[17]])
- _binlc.extend([_elc_b[2],_elc_b[10],_elc_b[18],_elc_b[26],_elc_c[2],_elc_c[10],_elc_c[18],_elc_c[26],_elc_d[2],_elc_d[10]])
- _binlc.extend([_elc_b[3],_elc_b[11],_elc_b[19],_elc_b[27],_elc_c[3],_elc_c[11],_elc_c[19],_elc_c[27],_elc_d[3],_elc_d[11]])
- _binlc.extend([_elc_b[4],_elc_b[12],_elc_b[20],_elc_b[28],_elc_c[4],_elc_c[12],_elc_c[20],_elc_c[28],_elc_d[4],_elc_d[12]])
- _binlc.extend([_elc_b[5],_elc_b[13],_elc_b[21],_elc_b[29],_elc_c[5],_elc_c[13],_elc_c[21],_elc_c[29],_elc_d[5],_elc_d[13]])
- _binlc.extend([_elc_b[6],_elc_b[14],_elc_b[22],_elc_b[30],_elc_c[6],_elc_c[14],_elc_c[22],_elc_c[30],_elc_d[6],_elc_d[14]])
+ _binlc.extend([_elc[0],_elc[8], _elc[16],_elc[24],_elc[32],_elc[40],_elc[48],_elc[56],_elc[64],_elc[72] ,_elc[80]])
+ _binlc.extend([_elc[1],_elc[9], _elc[17],_elc[25],_elc[33],_elc[41],_elc[49],_elc[57],_elc[65],_elc[73] ,_elc[81]])
+ _binlc.extend([_elc[2],_elc[10],_elc[18],_elc[26],_elc[34],_elc[42],_elc[50],_elc[58],_elc[66],_elc[74]])
+ _binlc.extend([_elc[3],_elc[11],_elc[19],_elc[27],_elc[35],_elc[43],_elc[51],_elc[59],_elc[67],_elc[75]])
+ _binlc.extend([_elc[4],_elc[12],_elc[20],_elc[28],_elc[36],_elc[44],_elc[52],_elc[60],_elc[68],_elc[76]])
+ _binlc.extend([_elc[5],_elc[13],_elc[21],_elc[29],_elc[37],_elc[45],_elc[53],_elc[61],_elc[69],_elc[77]])
+ _binlc.extend([_elc[6],_elc[14],_elc[22],_elc[30],_elc[38],_elc[46],_elc[54],_elc[62],_elc[70],_elc[78]])
return(_binlc.tobytes())
@@ -202,6 +202,10 @@ if __name__ == '__main__':
# Validation Example
+ voice_h = '\x2b\x60\x04\x10\x1f\x84\x2d\xd0\x0d\xf0\x7d\x41\x04\x6d\xff\x57\xd7\x5d\xf5\xde\x30\x15\x2e\x20\x70\xb2\x0f\x80\x3f\x88\xc6\x95\xe2'
+ voice_hb = bitarray(endian='big')
+ voice_hb.frombytes(voice_h)
+ voice_hb = voice_hb[0:98] + voice_hb[166:264]
# Header LC -- Terminator similar
lc = '\x00\x10\x20\x00\x0c\x30\x2f\x9b\xe5' # \xda\xd4\x5a
@@ -213,16 +217,17 @@ if __name__ == '__main__':
t0 = time()
full_lc_dec = decode_full_lc(full_lc_encode)
t1 = time()
- lc_decode_time = t1-t0
+ decode_time = t1-t0
print('VALIDATION ROUTINES:')
- print('Original Data: {}, {} bytes'.format(h(lc), len(lc)))
+ print('Orig Data: {}, {} bytes'.format(h(lc), len(lc)))
+ print('Orig Encoded: {}, {} bytes'.format(h(voice_hb), len(voice_hb.tobytes())))
print()
print('BPTC(196,96):')
print('Encoded data: {}, {} bytes'.format(h(full_lc_encode.tobytes()), len(full_lc_encode.tobytes())))
print('Encoding time: {} seconds'.format(encode_time))
- print('Fast Decode: {}'.format(h(full_lc_dec)))
- print('Fast Decode Time: {} seconds'.format(lc_decode_time))
+ print('Decoded data: {}'.format(h(full_lc_dec)))
+ print('Decode Time: {} seconds'.format(decode_time))
# Embedded LC
t0 = time()
@@ -231,15 +236,12 @@ if __name__ == '__main__':
encode_time = t1 -t0
t0 = time()
- decemblc = decode_emblc(emblc[0], emblc[1], emblc[2], emblc[3])
+ decemblc = decode_emblc(emblc[0] + emblc[1] + emblc[2] + emblc[3])
t1 = time()
decode_time = t1 -t0
print('\nEMBEDDED LC:')
- print('Encoded Embedded LC: Burst B:{}, Burst C:{}, Burst D:{}, Burst E:{}'.format(h(emblc[0].tobytes()), h(emblc[1].tobytes()), h(emblc[2].tobytes()), h(emblc[3].tobytes())))
- print('Endoder Time:', encode_time)
- print('Decoded Embedded LC:', h(decemblc))
- print('Decoder Time:', decode_time)
-
-
-
\ No newline at end of file
+ print('Encoded Data: Burst B:{} Burst C:{} Burst D:{} Burst E:{}'.format(h(emblc[0].tobytes()), h(emblc[1].tobytes()), h(emblc[2].tobytes()), h(emblc[3].tobytes())))
+ print('Endoding Time: {}'.format(encode_time))
+ print('Decoded data: {}'.format(h(decemblc)))
+ print('Decoding Time: {}'.format(decode_time))
\ No newline at end of file
diff --git a/dmr_decon.py b/dmr_decon.py
index 33396fe..52cfece 100755
--- a/dmr_decon.py
+++ b/dmr_decon.py
@@ -10,7 +10,7 @@ from __future__ import print_function
from bitarray import bitarray
import bptc
-import constants as const
+#import constants as const
# Does anybody read this stuff? There's a PEP somewhere that says I should do this.
__author__ = 'Cortney T. Buffington, N0MJS'
@@ -42,7 +42,8 @@ def voice_sync(_string):
ambe[0] = burst[0:72]
ambe[1] = burst[72:108] + burst[156:192]
ambe[2] = burst[192:264]
- return (ambe)
+ sync = burst[108:156]
+ return (ambe, sync)
def voice(_string):
@@ -52,11 +53,10 @@ def voice(_string):
ambe[1] = burst[72:108] + burst[156:192]
ambe[2] = burst[192:264]
emb = burst[108:116] + burst[148:156]
- embeded = burst[116:148]
- cc = (emb[0:4])
- # pi = (emb[4:5])
- lcss = (emb[5:7])
- return (ambe, cc, lcss, embeded)
+ embedded = burst[116:148]
+ cc = (to_bytes(emb[0:4]))
+ lcss = (to_bytes(emb[5:7]))
+ return (ambe, cc, lcss, embedded)
def to_bytes(_bits):
@@ -88,59 +88,67 @@ if __name__ == '__main__':
voice_f = '\xee\xe7\x81\x75\x74\x61\x4d\xf2\xff\xcc\xf4\xa0\x55\x11\x10\x00\x00\x00\x0e\x24\x30\x59\xe7\xf9\xe9\x08\xa0\x75\x62\x02\xcc\xd6\x22'
voice_term = '\x2b\x0f\x04\xc4\x1f\x34\x2d\xa8\x0d\x80\x7d\xe1\x04\xad\xff\x57\xd7\x5d\xf5\xd9\x65\x01\x2d\x18\x77\xd2\x03\xc0\x37\x88\xdf\x95\xd1'
+ embedded_lc = bitarray()
- print('Header Validation:')
+ print('DMR PACKET DECODER VALIDATION\n')
+ print('Header:')
t0 = time()
lc = voice_head_term(data_head)
t1 = time()
- print(h(lc[0]), h(lc[1]), h(lc[2]))
- print(t1-t0, '\n')
+ print('LC: OPT-{} SRC-{} DST-{}, SLOT TYPE: CC-{} DTYPE-{}'.format(h(lc[0][0:3]),h(lc[0][3:6]),h(lc[0][6:9]),h(lc[1]),h(lc[2])))
+ print('Decode Time: {}\n'.format(t1-t0))
- print('Voice Burst A Validation:')
+ print('Voice Burst A:')
t0 = time()
lc = voice_sync(voice_a)
t1 = time()
- print(lc[0])
+ print('VOICE SYNC: {}'.format(h(lc[1])))
print(t1-t0, '\n')
- print('Voice Burst B Validation:')
+ print('Voice Burst B:')
t0 = time()
lc = voice(voice_b)
+ embedded_lc += lc[3]
t1 = time()
- print(lc[0], h(lc[1]), h(lc[2]), h(lc[3].tobytes()))
+ print('EMB: CC-{} LCSS-{}, EMBEDDED LC: {}'.format(h(lc[1]), h(lc[2]), h(lc[3].tobytes())))
print(t1-t0, '\n')
- print('Voice Burst C Validation:')
+ print('Voice Burst C:')
t0 = time()
lc = voice(voice_c)
+ embedded_lc += lc[3]
t1 = time()
- print(lc[0], h(lc[1]), h(lc[2]), h(lc[3].tobytes()))
+ print('EMB: CC-{} LCSS-{}, EMBEDDED LC: {}'.format(h(lc[1]), h(lc[2]), h(lc[3].tobytes())))
print(t1-t0, '\n')
- print('Voice Burst D Validation:')
+ print('Voice Burst D:')
t0 = time()
lc = voice(voice_d)
+ embedded_lc += lc[3]
t1 = time()
- print(lc[0], h(lc[1]), h(lc[2]), h(lc[3].tobytes()))
+ print('EMB: CC-{} LCSS-{}, EMBEDDED LC: {}'.format(h(lc[1]), h(lc[2]), h(lc[3].tobytes())))
print(t1-t0, '\n')
- print('Voice Burst E Validation:')
+ print('Voice Burst E:')
t0 = time()
lc = voice(voice_e)
+ embedded_lc += lc[3]
+ embedded_lc = bptc.decode_emblc(embedded_lc)
t1 = time()
- print(lc[0], h(lc[1]), h(lc[2]), h(lc[3].tobytes()))
+ print('EMB: CC-{} LCSS-{}, EMBEDDED LC: {}'.format(h(lc[1]), h(lc[2]), h(lc[3].tobytes())))
+ print('COMPLETE EMBEDDED LC: {}'.format(h(embedded_lc)))
print(t1-t0, '\n')
- print('Voice Burst F Validation:')
+ print('Voice Burst F:')
t0 = time()
lc = voice(voice_f)
t1 = time()
- print(lc[0], h(lc[1]), h(lc[2]), h(lc[3].tobytes()))
+ print('EMB: CC-{} LCSS-{}, EMBEDDED LC: {}'.format(h(lc[1]), h(lc[2]), h(lc[3].tobytes())))
print(t1-t0, '\n')
- print('Terminator Validation:')
+ print('Terminator:')
t0 = time()
lc = voice_head_term(voice_term)
t1 = time()
- print(h(lc[0]), h(lc[1]), h(lc[2]))
- print(t1-t0)
\ No newline at end of file
+ print('LC: OPT-{} SRC-{} DST-{} SLOT TYPE: CC-{} DTYPE-{}'.format(h(lc[0][0:3]),h(lc[0][3:6]),h(lc[0][6:9]),h(lc[1]),h(lc[2])))
+ print('Decode Time: {}\n'.format(t1-t0))
\ No newline at end of file
diff --git a/hamming.py b/hamming.py
index 5bfb54f..2d3f7e6 100755
--- a/hamming.py
+++ b/hamming.py
@@ -31,40 +31,6 @@ def enc_15113(_data):
csum[3] = _data[0] ^ _data[1] ^ _data[2] ^ _data[4] ^ _data[6] ^ _data[7] ^ _data[10]
return csum
-# DECODER - Returns a tuple of (decoded data, True if an error was corrected)
-def dec_15113(_data):
- chk0 = _data[0] ^ _data[1] ^ _data[2] ^ _data[3] ^ _data[5] ^ _data[7] ^ _data[8]
- chk1 = _data[1] ^ _data[2] ^ _data[3] ^ _data[4] ^ _data[6] ^ _data[8] ^ _data[9]
- chk2 = _data[2] ^ _data[3] ^ _data[4] ^ _data[5] ^ _data[7] ^ _data[9] ^ _data[10]
- chk3 = _data[0] ^ _data[1] ^ _data[2] ^ _data[4] ^ _data[6] ^ _data[7] ^ _data[10]
-
- n = 0
- error = False
-
- n |= 0x01 if chk0 != _data[11] else 0x00
- n |= 0x02 if chk1 != _data[12] else 0x00
- n |= 0x04 if chk2 != _data[13] else 0x00
- n |= 0x08 if chk3 != _data[14] else 0x00
-
- if n == 0x01: _data[11] = not _data[11]; return (_data, True)
- if n == 0x02: _data[12] = not _data[12]; return (_data, True)
- if n == 0x04: _data[13] = not _data[13]; return (_data, True)
- if n == 0x08: _data[14] = not _data[14]; return (_data, True)
-
- if n == 0x09: _data[0] = not _data[0]; return (_data, True)
- if n == 0x0b: _data[1] = not _data[1]; return (_data, True)
- if n == 0x0f: _data[2] = not _data[2]; return (_data, True)
- if n == 0x07: _data[3] = not _data[3]; return (_data, True)
- if n == 0x0e: _data[4] = not _data[4]; return (_data, True)
- if n == 0x05: _data[5] = not _data[5]; return (_data, True)
- if n == 0x0a: _data[6] = not _data[6]; return (_data, True)
- if n == 0x0d: _data[7] = not _data[7]; return (_data, True)
- if n == 0x03: _data[8] = not _data[8]; return (_data, True)
- if n == 0x06: _data[9] = not _data[9]; return (_data, True)
- if n == 0x0c: _data[10] = not _data[10]; return (_data, True)
-
- return (_data, False)
-
#------------------------------------------------------------------------------
# Hamming 13,9,3 routines
@@ -79,38 +45,7 @@ def enc_1393(_data):
csum[3] = _data[0] ^ _data[2] ^ _data[4] ^ _data[5] ^ _data[8]
return csum
-# DECODER - Returns a tuple of (decoded data, True if an error was corrected)
-def dec_1393(_data):
- chk0 = _data[0] ^ _data[1] ^ _data[3] ^ _data[5] ^ _data[6]
- chk1 = _data[0] ^ _data[1] ^ _data[2] ^ _data[4] ^ _data[6] ^ _data[7]
- chk2 = _data[0] ^ _data[1] ^ _data[2] ^ _data[3] ^ _data[5] ^ _data[7] ^ _data[8]
- chk3 = _data[0] ^ _data[2] ^ _data[4] ^ _data[5] ^ _data[8]
-
- n = 0
- error = False
-
- n |= 0x01 if chk0 != _data[9] else 0x00
- n |= 0x02 if chk1 != _data[10] else 0x00
- n |= 0x04 if chk2 != _data[11] else 0x00
- n |= 0x08 if chk3 != _data[12] else 0x00
-
- if n == 0x01: _data[9] = not _data[9]; return (_data, True)
- if n == 0x02: _data[10] = not _data[10]; return (_data, True)
- if n == 0x04: _data[11] = not _data[11]; return (_data, True)
- if n == 0x08: _data[12] = not _data[12]; return (_data, True)
-
- if n == 0x0f: _data[0] = not _data[0]; return (_data, True)
- if n == 0x07: _data[1] = not _data[1]; return (_data, True)
- if n == 0x0e: _data[2] = not _data[2]; return (_data, True)
- if n == 0x05: _data[3] = not _data[3]; return (_data, True)
- if n == 0x0a: _data[4] = not _data[4]; return (_data, True)
- if n == 0x0d: _data[5] = not _data[5]; return (_data, True)
- if n == 0x03: _data[6] = not _data[6]; return (_data, True)
- if n == 0x06: _data[7] = not _data[7]; return (_data, True)
- if n == 0x0c: _data[8] = not _data[8]; return (_data, True)
-
- return (_data, False)
-
+
#------------------------------------------------------------------------------
# Hamming 16,11,4 routines
#------------------------------------------------------------------------------
@@ -124,69 +59,4 @@ def enc_16114(_data):
csum[2] = _data[2] ^ _data[3] ^ _data[4] ^ _data[5] ^ _data[7] ^ _data[9] ^ _data[10]
csum[3] = _data[0] ^ _data[1] ^ _data[2] ^ _data[4] ^ _data[6] ^ _data[7] ^ _data[10]
csum[4] = _data[0] ^ _data[2] ^ _data[5] ^ _data[6] ^ _data[8] ^ _data[9] ^ _data[10]
- return csum
-
-# DECODER - Returns a tuple of (decoded data, True if an error was corrected)
-def dec_16114(_data):
- chk0 = _data[0] ^ _data[1] ^ _data[2] ^ _data[3] ^ _data[5] ^ _data[7] ^ _data[8]
- chk1 = _data[1] ^ _data[2] ^ _data[3] ^ _data[4] ^ _data[6] ^ _data[8] ^ _data[9]
- chk2 = _data[2] ^ _data[3] ^ _data[4] ^ _data[5] ^ _data[7] ^ _data[9] ^ _data[10]
- chk3 = _data[0] ^ _data[1] ^ _data[2] ^ _data[4] ^ _data[6] ^ _data[7] ^ _data[10]
- chk4 = _data[0] ^ _data[2] ^ _data[5] ^ _data[6] ^ _data[8] ^ _data[9] ^ _data[10]
-
- n = 0
- error = False
-
- n |= 0x01 if chk0 != _data[11] else 0x00
- n |= 0x02 if chk1 != _data[12] else 0x00
- n |= 0x04 if chk2 != _data[13] else 0x00
- n |= 0x08 if chk3 != _data[14] else 0x00
- n |= 0x10 if chk4 != _data[15] else 0x00
-
- if n == 0x01: _data[11] = not _data[11]; return (_data, True)
- if n == 0x02: _data[12] = not _data[12]; return (_data, True)
- if n == 0x04: _data[13] = not _data[13]; return (_data, True)
- if n == 0x08: _data[14] = not _data[14]; return (_data, True)
- if n == 0x10: _data[15] = not _data[15]; return (_data, True)
-
- if n == 0x19: _data[0] = not _data[0]; return (_data, True)
- if n == 0x0b: _data[1] = not _data[1]; return (_data, True)
- if n == 0x1f: _data[2] = not _data[2]; return (_data, True)
- if n == 0x07: _data[3] = not _data[3]; return (_data, True)
- if n == 0x0e: _data[4] = not _data[4]; return (_data, True)
- if n == 0x15: _data[5] = not _data[5]; return (_data, True)
- if n == 0x1a: _data[6] = not _data[6]; return (_data, True)
- if n == 0x0d: _data[7] = not _data[7]; return (_data, True)
- if n == 0x13: _data[8] = not _data[8]; return (_data, True)
- if n == 0x16: _data[9] = not _data[9]; return (_data, True)
- if n == 0x1c: _data[10] = not _data[10]; return (_data, True)
-
- return (_data, False)
-
-
-#------------------------------------------------------------------------------
-# Used to execute the module directly to run built-in tests
-#------------------------------------------------------------------------------
-
-if __name__ == '__main__':
-
- # Validation Example
- good_data_15113 = bitarray('0000000000000000000100000011101000000000000000000000110001110011000000100100111110011010110111100101111001011010110101101100010110100110000110000111100111010011101101000010101001110000100101010100')
- bad_data_15113 = bitarray('0000000000000000000110000011101000000000000000000000110001110011000000100100111110011010110111100101111001011010110101101100010110100110000110000111100111010011101101000010101001110000100101010100')
-
- def check_15113(_data):
- rows = (_data[1:16],_data[16:31],_data[31:46],_data[46:61],_data[61:76],_data[76:91],_data[91:106],_data[106:121],_data[121:136])
- print('Processing New Integrity Check')
- for row in rows:
- print('original data:', row[0:11], 'original parity:', row[11:15])
-
- hamming_dec = dec_15113(row[0:15])
- code = hamming_dec[0]
- error = hamming_dec[1]
-
- print('\tDECODE: data: ', code[0:11], 'parity: ', code[11:15], 'error:', error)
- print('\tENCODE: calculated parity:', enc_15113(row[0:11]))
- print()
-
- check_15113(good_data_15113)
- check_15113(bad_data_15113)
\ No newline at end of file
+ return csum
\ No newline at end of file
diff --git a/hb_router.py b/hb_router.py
index cd92bf0..c728d32 100755
--- a/hb_router.py
+++ b/hb_router.py
@@ -72,7 +72,8 @@ class routerMASTER(HBMASTER):
def __init__(self, *args, **kwargs):
HBMASTER.__init__(self, *args, **kwargs)
- self.lc_fragments = {'B': '', 'C': '', 'D': '', 'E': '', 'F': ''}
+ self.embeddec_lc_rx = {'B': '', 'C': '', 'D': '', 'E': '', 'F': ''}
+ self.embeddec_lc_tx = {'B': '', 'C': '', 'D': '', 'E': '', 'F': ''}
def dmrd_received(self, _radio_id, _rf_src, _dst_id, _seq, _slot, _call_type, _frame_type, _dtype_vseq, _stream_id, _data):
_bits = int_id(_data[15])
@@ -114,7 +115,8 @@ class routerCLIENT(HBCLIENT):
def __init__(self, *args, **kwargs):
HBCLIENT.__init__(self, *args, **kwargs)
- self.lc_fragments = {'B': '', 'C': '', 'D': '', 'E': '', 'F': ''}
+ self.embeddec_lc_rx = {'B': '', 'C': '', 'D': '', 'E': '', 'F': ''}
+ self.embeddec_lc_tx = {'B': '', 'C': '', 'D': '', 'E': '', 'F': ''}
def dmrd_received(self, _radio_id, _rf_src, _dst_id, _seq, _slot, _call_type, _frame_type, _dtype_vseq, _stream_id, _data):
_bits = int_id(_data[15])
diff --git a/peer_ids.csv b/peer_ids.csv
index 1a6f0fc..e1b2777 100644
--- a/peer_ids.csv
+++ b/peer_ids.csv
@@ -21,431 +21,533 @@
113615,K2JRC,oakland gardens,New York,United States,438.58750,3,-5.000,Peer,TS1 TS2,K2JRC,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 3 = U.S. / English Speaking Countries
Time Slot #1 - Group Call 3172 = Northeast
Time Slot #2 - Group Call 2 = NY-NJ Metro
You Must Have [ARS] Disabled Within Your Radi
Coverage Area:
Contact Name: Jerry, K2JRC
Email: jerrycudmore@pobox.com,1,NJ TRBO
113616,K2JRC,Brooklyn NY,New York,United States,443.70000,3,+5.000,Master,TS1 TS2,K2JRC,,1,Bronx Trbo
113618,KB2LFH,York Town Hts,New York,United States,441.56250,3,+5.000,Peer,TS1 TS2,KB2LFH,,0,BrandMeister
-113619,K2ATY,Newburgh,New York,United States,448.37500,10,-5.000,Peer,TS1 TS2,K2ATY,,0,NE-TRBO
+113619,K2ATY,Newburgh,New York,United States,441.01875,10,-5.000,Peer,TS1 TS2,K2ATY,,0,NE-TRBO
113620,K2JRC,Glen Oaks,New York,United States,438.61250,3,-5.000,Master,TS1 TS2,K2JRC,,1,Bronx Trbo
113621,NY4Z,Manhattan,New York,United States,445.62500,1,-5.000,Peer,TS1 TS2,NY4Z,,1,Bronx TRBO
113622,W2WCR,North Creek,New York,United States,442.25000,1,+5.000,Peer,TS1 TS2,N2LBT,,0,BrandMeister
+113623,NY4Z,Briarcliff Manor,New York,United States,443.80000,3,+5.000,Master,TS1 TS2,NY4Z,,0,Bronx TRBO
113702,W4GG,Greensboro,North Carolina,United States,444.22500,1,+5.000,Peer,TS1 TS2,W4JLH,,0,PRN
+200001,IPSC_EU1,,,Europe,,1,,,,DL5DI,,0,DMR-plus
+200002,IPSC_EU2,,,Europe,,1,,,,DL5DI,,0,DMR-plus
+200003,IPSC_EU3,,,Europe,,1,,,,DL5DI,,0,DMR-plus
+200004,IPSC_EU4,,,Europe,,1,,,,DL5DI,,0,DMR-plus
+200005,IPSC_EU5,,,Europe,,1,,,,DL5DI,,0,DMR-plus
202100,SV1U,Athens,Attica,Greece,439.00000,1,-7.600,Master,None,SV1NZP,,0,
-202101,SW1F,Moschato / Athens,Attica,Greece,438.81250,1,-7.600,Peer,TS1 TS2,SV1GFH,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot#1 - Group Call 2 = Europe
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local
You must DISABLE ARS on all time slots
Contact: Dimitris, SV1EDZ
Email: sv1edz@gmail.com,1,DMR-MARC
+202101,SW1F,Moschato / Athens,Attica,Greece,438.81250,1,-7.600,Peer,TS1 TS2,SV1GFH,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot#1 - Group Call 2 = Europe
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local
You must DISABLE ARS on all time slots
Contact: Dimitris, SV1EDZ
Email: sv1edz@gmail.com,1,BM
202102,SV1I,Penteli,Pennsylvania,Greece,439.32500,1,-7.600,Peer,TS1 TS2,SZ1GRC,,0,None
202103,SV1M,KM17VW / Athen,Attiki,Greece,439.17500,1,-7.600,Peer,TS1 TS2,SZ1GRC,,0,None
-204101,PI1AMS,Amsterdam,,Netherlands,438.40000,1,-7.600,PEER,TS1 TS2,PA3PM,,0,N/A
-204103,PI1WFR,Obdam,Noord-Holland,Netherlands,438.01250,1,-7.600,PEER,TS1 TS2,PE1BMM,,0,N/A
+202601,SV6G,Ioannina,Ipeiros,Greece,438.75000,1,-7.600,,,SV6DBG,,0,BrandMeister
+204101,PI1AMS,Amsterdam,,Netherlands,438.40000,1,-7.600,PEER,TS1 TS2,PA3PM,,0,BM
+204103,PI1WFR,Obdam,Noord-Holland,Netherlands,438.01250,1,-7.600,PEER,TS1 TS2,PE1BMM,,0,BM
204200,PI1RTD,Rotterdam,,Netherlands,438.20000,1,-7.600,PEER,TS1 TS2,PA0HTW,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 22 = NL Speaking
Time Slot #1 - Group Call 204 = PA 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 204 = PA 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Henk Post,PA0HTW Email:
Web:,1,DMR-MARC
-204204,PI1DFT,Delft,Zuid-Holland,Netherlands,438.37500,1,-7.600,PEER,TS1 TS2,PD4TH,,0,N/A
-204300,PI1UTR,Ijsselstein,Utrecht,Netherlands,438.35000,1,-7.600,PEER,TS1 TS2,PE1RJV,,0,N/A
+204204,PI1DFT,Delft,Zuid-Holland,Netherlands,438.37500,1,-7.600,PEER,TS1 TS2,PD4TH,,0,BM
+204300,PI1UTR,Ijsselstein,Utrecht,Netherlands,438.35000,1,-7.600,PEER,TS1 TS2,PE1RJV,,0,BM
204311,PI1AMF,Amersfoort,,Netherlands,438.33750,1,-7.600,PEER,TS1 TS2,PA1GF,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 22 = NL Speaking
Time Slot #1 - Group Call 204 = PA 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 204 = PA 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Gerjan Faber,PA1GF Email: pa1gf@amsat.org
Web: http://www.d-star.nu,1,DMR-MARC
-204342,PI1SPA,Spakenburg,Utrecht,Netherlands,438.30000,1,-7.600,PEER,TS1 TS2,PD0RAF,,0,N/A
-204400,PI1HRL,Heerlen,,Netherlands,438.26250,2,-7.600,PEER,TS1 TS2,PD4RS,,0,N/A
-204401,PI1ZLD,Zierikzee,Zeeland,Netherlands,438.40000,2,-7.600,PEER,TS1 TS2,PA9KM,,0,N/A
-204402,PI1ZLB,Maastricht,,Netherlands,438.15000,3,-7.600,PEER,TS1 TS2,PD3R,,0,N/A
-204403,PI1NLB,Gennep,Limburg,Netherlands,438.02500,1,-7.600,PEER,TS1 TS2,PA3ETC,,0,N/A
-204500,PI1ZOB,Eindhoven,,Netherlands,438.25000,3,-7.600,PEER,TS1 TS2,PE1DGW,,0,N/A
+204342,PI1SPA,Spakenburg,Utrecht,Netherlands,438.30000,1,-7.600,PEER,TS1 TS2,PD0RAF,,0,BM
+204400,PI1HRL,Heerlen,,Netherlands,438.26250,2,-7.600,PEER,TS1 TS2,PD4RS,,0,BM
+204401,PI1ZLD,Zierikzee,Zeeland,Netherlands,438.40000,2,-7.600,PEER,TS1 TS2,PA9KM,,0,BM
+204402,PI1ZLB,Maastricht,,Netherlands,438.15000,3,-7.600,PEER,TS1 TS2,PD3R,,0,BM
+204403,PI1NLB,Gennep,Limburg,Netherlands,438.02500,1,-7.600,PEER,TS1 TS2,PA3ETC,,0,BM
+204500,PI1ZOB,Eindhoven,,Netherlands,438.10000,1,-7.600,PEER,TS1 TS2,PE1DGW,,0,BM
204501,PI1TBG,Tilburg,Noord-Brabant,Netherlands,438.23750,1,-7.600,PEER,TS1 TS2,PE1RJV,,0,N/A
-204555,PI1TDT,Not fixed / various,Noord-Brabant,Netherlands,438.00000,2,-7.600,PEER,TS1 TS2,PE1DGW,,0,N/A
-204600,PI1APD,Apeldoorn,,Netherlands,438.38750,1,-7.600,PEER,TS1 TS2,PE1RJV,,0,N/A
-204601,PI1ZHM,Zelhem,Gelderland,Netherlands,438.28750,1,-7.600,PEER,TS1 TS2,PA3ANB,,0,N/A
-204602,PI1ANH,Oosterbeek,Gelderland,Netherlands,438.06250,1,-7.600,PEER,TS1 TS2,PA1PAS,,0,N/A
+204555,PI1TDT,Not fixed / various,Noord-Brabant,Netherlands,0.00000,2,0.000,PEER,TS1 TS2,PE1DGW,,0,BM
+204600,PI1APD,Apeldoorn,,Netherlands,438.38750,1,-7.600,PEER,TS1 TS2,PE1RJV,,0,BM
+204601,PI1ZHM,Zelhem,Gelderland,Netherlands,438.28750,1,-7.600,PEER,TS1 TS2,PA3ANB,,0,BM
+204602,PI1ANH,Oosterbeek,Gelderland,Netherlands,438.06250,1,-7.600,PEER,TS1 TS2,PA1PAS,,0,BM
204612,PD0JAC,Arnhem,Gelderland,Netherlands,430.06250,1,7.600,PEER,TS1 TS2,PD0JAC,,0,N/A
204666,PI1GRL,Groenlo,Gelderland,Netherlands,438.32500,1,-7.600,Peer,TS1 TS2,PC2KY,,0,BM
204700,PI1DAF,Almere,,Netherlands,438.96250,1,-7.600,PEER,TS1 TS2,PD0POH,,0,N/A
-204701,PI1KMP,Kampen,Overijssel,Netherlands,438.28750,2,-7.600,PEER,TS1 TS2,PD0HF,,0,N/A
-204702,PI1SHA,Almere,Flevoland,Netherlands,438.31250,1,-7.600,PEER,TS1 TS2,PA2SHA,,0,N/A
+204701,PI1KMP,Kampen,Overijssel,Netherlands,438.28750,2,-7.600,PEER,TS1 TS2,PD0HF,,0,BM
+204702,PI1SHA,Almere,Flevoland,Netherlands,438.13750,1,-7.600,PEER,TS1 TS2,PA2SHA,,0,BM
204710,PI1ZWL,Zwolle,Overijssel,Netherlands,438.16250,1,-7.600,PEER,TS1 TS2,PD0ZWL,,0,Motorola
-204711,PI1TWE,Hengelo,Overijssel,Netherlands,438.27500,1,-7.600,PEER,TS1 TS2,PE1SCX,,0,N/A
-204720,PI1NIJ,Nijverdal,Overijssel,Netherlands,438.03750,1,-7.600,PEER,TS1 TS2,PI1NIJ,,0,N/A
+204711,PI1TWE,Hengelo,Overijssel,Netherlands,438.27500,1,-7.600,PEER,TS1 TS2,PE1SCX,,0,BM
+204720,PI1NIJ,Nijverdal,Overijssel,Netherlands,438.03750,1,-7.600,PEER,TS1 TS2,PI1NIJ,,0,BM
204777,PI1KPH,Zwolle,Overijssel,Netherlands,438.15000,2,-7.600,PEER,TS1 TS2,PA4DEN,,0,DMR-MARC
-204778,PI1KPH,Zwolle,Overijssel,Netherlands,438.15000,4,-7.600,PEER,TS1 TS2,PA4DEN,,0,N/A
+204778,PI1KPH,Zwolle,Overijssel,Netherlands,438.15000,4,-7.600,PEER,TS1 TS2,PA4DEN,,0,BM
204800,PI1NOG,Delfzijl,,Netherlands,438.15000,1,-7.600,PEER,TS1 TS2,PA3GAZ,,0,DMR-MARC
-204801,PI1DRA,Drachten,,Netherlands,438.00000,1,-7.600,PEER,TS1 TS2,PD0SDO,,0,N/A
-204802,PI1CVD,Coevorden,Drenthe,Netherlands,438.25000,1,-7.600,PEER,TS1 TS2,PD0ADC,,0,N/A
-204844,PI1FRL,Burgwerd,Friesland,Netherlands,438.36250,1,-7.600,PEER,TS1 TS2,PA3GFY,,0,N/A
-206001,ON0CK,Kortrijk,West-Vlaanderen,Belgium,439.16250,1,-7.600,PEER,TS1 TS2,ON4TOP,,0,DMR-plus
-206002,ON0SEA,Knokke-Heist,West-Vlaanderen,Belgium,438.93750,1,-7.600,Peer,TS1 TS2,ON4UK,,0,DMR-plus
-206003,ON0VRN,Veurne,West-Vlaanderen,Belgium,439.45000,1,-7.600,Peer,TS1 TS2,ON8SD,,0,DMR-plus
-206004,ON0MSD,Moorslede,West-Vlaanderen,Belgium,439.18750,1,-7.600,PEER,TS1 TS2,ON4AIM,,0,DMR-plus
+204801,PI1DRA,Drachten,,Netherlands,438.00000,1,-7.600,PEER,TS1 TS2,PD0SDO,,0,BM
+204802,PI1CVD,Coevorden,Drenthe,Netherlands,438.25000,2,-7.600,PEER,TS1 TS2,PD0ADC,,0,BM
+204844,PI1FRL,Burgwerd,Friesland,Netherlands,438.36250,1,-7.600,PEER,TS1 TS2,PA3GFY,,0,BM
+206001,ON0CK,Kortrijk,West-Vlaanderen,Belgium,439.16250,1,-7.600,PEER,TS1 TS2,ON4TOP,,0,BM
+206002,ON0SEA,Knokke-Heist,West-Vlaanderen,Belgium,438.93750,1,-7.600,Peer,TS1 TS2,ON4UK,,0,BM
+206003,ON0VRN,Veurne,West-Vlaanderen,Belgium,439.21250,1,-7.600,Peer,TS1 TS2,ON8SD,,0,BM
+206004,ON0MSD,Moorslede,West-Vlaanderen,Belgium,439.18750,1,-7.600,PEER,TS1 TS2,ON4AIM,,0,BM
+206005,ON3DHC,Brugge,West-Vlaanderen,Belgium,439.00000,1,-7.600,,,ON3DHC,,0,BM
+206006,ON4TOP,Bavikhove,West-Vlaanderen,Belgium,438.07500,1,-7.600,,,ON4TOP,,0,Hytera
+206007,ON0DXK,Kortrijk,West-Vlaanderen,Belgium,439.00000,1,-7.600,,,ON4TOP,,0,Hytera
206008,ON0AIM,Oostende,West-Vlaanderen,Belgium,439.56250,1,-7.600,Peer,TS1 TS2,ON4AIM,,0,Hytera
-206010,ON0OST,Oostende,West-Vlaanderen,Belgium,439.41250,1,-7.600,Peer,None,ON4AIM,,0,DMR-plus
+206010,ON0OST,Oostende,West-Vlaanderen,Belgium,439.41250,1,-7.600,Peer,None,ON4AIM,,0,BM
206011,ON0OS,Oostende,West-Vlaanderen,Belgium,439.36250,1,-7.600,Peer,TS1 TS2,ON4AIM,,0,HYTERA
-206012,ON0WV,Brugge,West-Vlaanderen,Belgium,439.58750,1,-7.600,Peer,TS1 TS2,ON3DHC,,0,DMR-plus
+206012,ON0WV,Brugge,West-Vlaanderen,Belgium,439.58750,1,-7.600,Peer,TS1 TS2,ON3DHC,,0,BM
206100,ON0VA,Zulzeke,Oost-Vlaanderen,Belgium,438.22500,1,-7.600,Peer,TS1 TS2,ON4PN,,0,HYTERA
-206101,ON0GRC,Gent,Oost-Vlaanderen,Belgium,439.08750,1,-7.6,Peer,TS2,ON4AKH,,0,DMR-plus
-206102,ON0DEN,Dendermonde,Oost-Vlaanderen,Belgium,439.03750,1,-7.6,Peer,TS1 TS2,ON1DGR,,0,DMR-plus
-206103,ON0WRA,Oudenaarde,Oost-Vlaanderen,Belgium,438.81250,1,-7.600,Peer,TS1 TS2,ON4RW,,0,DMR-plus
-206104,ON0LED,LEDE,Oost-Vlaanderen,Belgium,438.73750,1,-7.6,Peer,TS1 TS2,ON1DGR,,0,DMR-plus
-206105,ON0APS,Appels ,Oost-Vlaanderen ,Belgium ,438.36250,1,-7.6,PEER,TS1 TS2,ON1DGR,,0,DMR-plus
-206106,ON0HAM,Hamme ,Oost-Vlaanderen ,Belgium ,438.33750,1,-7.600,Peer,TS1 TS2,ON1DGR,,0,DMR-plus
-206200,ON0DP,Boom,Antwerp,Belgium,439.46250,1,-7.600,Master,TS1 TS2,ON7DS,,0,DMR-plus
-206201,ON7FQ,Antwerp,Antwerp,Belgium,438.36250,1,-7.6,Peer,TS1 TS2,EA7IYR,,0,DMR-plus
-206202,ON0KB,Bornem,Antwerp,Belgium,438.92500,1,-7.6,PEER,TS1 TS2,ON1DGR,,0,Hytera
-206210,ON0AND,Antwerp,Antwerp,Belgium,438.98750,1,-7.6,Master,TS1 TS2,ON7FQ,,0,DMR-plus
-206300,ON0ESB,Essenbeek,Vlaams Brabant,Belgium,438.91250,1,-7.6,Master,TS1 TS2,ON1DGR,,0,DMR-plus
-206301,ON0DIL,Dilbeek,Vlaams Brabant,Belgium,439.26250,1,-7.6,Peer,TS1 ,ON1DGR,,0,DMR-plus
-206302,ON0NWR,Nieuwrode,Vlaams Brabant,Belgium,438.88750,1,-7.6,Peer,TS1 TS2,ON9CJX,,0,DMR-plus
+206101,ON0GRC,Gent,Oost-Vlaanderen,Belgium,439.08750,1,-7.600,Peer,TS2,ON4AKH,,0,BM
+206102,ON0DEN,Dendermonde,Oost-Vlaanderen,Belgium,438.33750,1,-7.600,Peer,TS1 TS2,ON1DGR,,0,BM
+206103,ON0WRA,Oudenaarde,Oost-Vlaanderen,Belgium,438.81250,1,-7.600,Peer,TS1 TS2,ON4RW,,0,BM
+206104,ON0LED,LEDE,Oost-Vlaanderen,Belgium,438.73750,1,-7.600,Peer,TS1 TS2,ON1DGR,,0,BM
+206105,ON0APS,Appels,Oost-Vlaanderen,Belgium,438.36250,1,-7.600,PEER,TS1 TS2,ON1DGR,,0,BM
+206106,ON0HAM,Hamme,Oost-Vlaanderen,Belgium,438.33750,1,-7.600,Peer,TS1 TS2,ON1DGR,,0,BM
+206200,ON0DP,Boom,Antwerp,Belgium,439.46250,1,-7.600,Master,TS1 TS2,ON7DS,,0,BM
+206201,ON7FQ,Antwerp,Antwerp,Belgium,438.36250,1,-7.600,Peer,TS1 TS2,EA7IYR,,0,DMR-plus
+206202,ON0KB,Bornem,Antwerp,Belgium,438.92500,1,-7.600,PEER,TS1 TS2,ON1DGR,,0,BM
+206210,ON0AND,Antwerp,Antwerp,Belgium,438.98750,1,-7.600,Master,TS1 TS2,ON7FQ,,0,DMR-plus
+206300,ON0ESB,Essenbeek,Vlaams Brabant,Belgium,438.91250,1,-7.600,Master,TS1 TS2,ON1DGR,,0,DMR-plus
+206301,ON0DIL,Dilbeek,Vlaams Brabant,Belgium,439.26250,1,-7.600,Peer,TS1 ,ON1DGR,,0,BM
+206302,ON0NWR,Nieuwrode,Vlaams Brabant,Belgium,438.88750,1,-7.600,Peer,TS1 TS2,ON9CJX,,0,DMR-plus
206303,ON0EPN,Lummen,Vlaams Brabant,Belgium,439.38750,1,-7.600,Peer,TS1 TS2,ON4VRT,,0,Hytera
-206310,ON0GAL,Galmaarden,Vlaams Brabant,Belgium,438.83750,1,-7.6,Master,TS1 TS2,ON1DGR,,0,DMR-plus
+206310,ON0GAL,Galmaarden,Vlaams Brabant,Belgium,438.83750,1,-7.600,Master,TS1 TS2,ON1DGR,,0,BM
206320,ON0TLW,Tielt-Winge,Vlaams Brabant,Belgium,438.88750,1,-7.600,Peer,TS1 TS2,ON1DGR,,0,DMR-plus
-206401,ON4BAF,Sint-Truiden,Limburg,Belgium,439.00000,1,-7.600,Peer,TS1 TS2,ON5ARE,,0,DMR-plus
-206402,ON0MLB,Genk,Limburg,Belgium,438.96250,1,-7.600,Peer,TS1 TS2,ON3MID,,0,DMR-plus
-206404,ON0BAF,Sint-Truiden,Limburg,Belgium,145.58850,1,-0.600,Peer,TS1 TS2,ON5ARE,,0,Hytera
+206401,ON4BAF,Sint-Truiden,Limburg,Belgium,439.00000,1,-7.600,Peer,TS1 TS2,ON5ARE,,0,BM
+206402,ON0MLB,Genk,Limburg,Belgium,438.96250,1,-7.600,Peer,TS1 TS2,ON3MID,,0,BM
+206403,ON2HB,Leopoldsburg-Heppen,Limburg,Belgium,439.50000,1,-7.600,,,ON7FQ,,0,None
+206404,ON0BAF,Sint-Truiden,Limburg,Belgium,145.58750,1,-0.600,Peer,TS1 TS2,ON5ARE,,0,BM
206405,ON0LN,Gruitrode,Limburg,Belgium,439.18750,1,-7.600,PEER,TS1 TS2,ON6ZG,,0,Hytera
-206410,ON0BAF,Sint-Truiden,Limburg,Belgium,439.06250,1,-7.600,Peer,TS1 TS2,ON5ARE,,0,DMR-plus
+206410,ON0BAF,Sint-Truiden,Limburg,Belgium,439.06250,1,-7.600,Peer,TS1 TS2,ON5ARE,,0,BM
+206501,ON0HOP,Vloesberg-Flobecq,Wal. Brabant,Belgium,438.91250,1,-7.600,PEER,TS1 TS2,ON1DGR,,0,BM
+206601,ON0MON,Rouveroy,Hainaut,Belgium,439.20000,2,-7.600,,,ON8CB,,0,None
206602,ON0LLV,La Hestre,Hainaut,Belgium,438.87500,2,-7.600,PEER,TS1 TS2,ON7FI,,0,None
-206700,ON0NR,Wepion,Namur,Belgium,439.53750,1,-7.600,Peer,TS1 TS2,ON4PB,,0,DMR-plus
-206800,ON0LGE,Retinne,,Belgium,438.93750,1,-7.600,PEER,TS1 TS2,ON5VDK,,0,DMR-plus
-206801,ON0LRG,Clavier (Bois-et-Bor,Liege,Belgium,439.16250,1,-7.600,Peer,TS1 TS2,ON4LRG,,0,DMR-plus
+206700,ON0NR,Wepion,Namur,Belgium,439.53750,2,-7.600,Peer,TS1 TS2,ON4PB,,0,BM
+206800,ON0LGE,Retinne,,Belgium,438.93750,2,-7.600,PEER,TS1 TS2,ON5VDK,,0,BM
+206801,ON0LRG,Clavier (Bois-et-Bor,Liege,Belgium,439.16250,2,-7.600,Peer,TS1 TS2,ON4LRG,,0,BM
+206802,ON0TB,SignalBotrange,Liege,Belgium,439.01250,1,-7.600,,,ON6GPS,,0,Hytera
206901,ON0BXL,Brussels,Brussels,Belgium,439.33750,1,-7.600,Peer,Mixed Mode,ON7PC,,0,HYTERA
-206902,ON0PRX,Brussel,Brussels,Belgium,438.41250,1,-7.6,Peer,TS1 TS2,ON1DGR,,0,DMR-plus
-208000,F1ZEI,Les Lilas,,France,430.17500,1,9.400,PEER,TS1 TS2,F1TDI,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 9 = Local Secondary
Time Slot #1 - Group Call 11 = Worldwide French
Time Slot #1 - Group Call 21 = European French
Time Slot #2 - Group Call 9 = Local Primary
Time Slot #2 - Group Call 208 = France
You Must Have [ARS] Disabled Within Your Radio.
Contact: Daniel , F1TDI
Email: f1tdi@yahoo.com
WWW: http://f1zei.repeteur.com,1,DMR-MARC
+206902,ON0PRX,Brussel,Brussels,Belgium,438.41250,1,-7.600,Peer,TS1 TS2,ON1DGR,,0,BM
+208000,F1ZEI,Les Lilas,,France,430.17500,1,9.400,PEER,TS1 TS2,F1TDI,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 9 = Local Secondary
Time Slot #1 - Group Call 11 = Worldwide French
Time Slot #1 - Group Call 21 = European French
Time Slot #2 - Group Call 9 = Local Primary
Time Slot #2 - Group Call 208 = France
You Must Have [ARS] Disabled Within Your Radio.
Contact: Daniel , F1TDI
Email: f1tdi@yahoo.com
WWW: http://f1zei.repeteur.com,1,DMRF
208002,F1ZPL,Paris 10e,ÃŽle-de-France,France,430.26250,1,9.400,PEER,TS1 TS2,F1SHS,,0,DMR-France
-208003,F5ZDO,Fontenay-Tresigny,ÃŽle-de-France,France,430.35000,1,9.4,PEER,TS1 TS2,F4GQK,,0,DMR-plus
+208003,F5ZDO,Fontenay-Tresigny,ÃŽle-de-France,France,430.35000,1,9.400,PEER,TS1 TS2,F4GQK,,0,BM
208004,F1ZDW,Fontenay-Tresigny,Ile-de-France,France,430.35000,1,9.400,PEER,TS1 TS2,F4GQK,,0,DMR-plus
-208005,F5ZJV,PARIS ,ÃŽle-de-France ,France ,430.40000,3,9.400,PEER,TS1 TS2,F8FJH,,0,Hytera
+208005,F5ZJV,PARIS,ÃŽle-de-France,France,430.40000,3,9.400,PEER,TS1 TS2,F8FJH,,0,Hytera
208006,F5ZIW,BURES SUR YVETTE,le-de-France,France,430.20000,1,9.400,Peer,TS1 TS2,F6CNB,,0,None
-208007,F1ZGI,Rueil Malmaison,ÃŽle-de-France,France,430.57500,1,9.4,PEER,TS1 TS2,F1TUV,,0,DMR-plus
+208007,F1ZGI,Rueil Malmaison,ÃŽle-de-France,France,430.57500,1,9.400,PEER,TS1 TS2,F1TUV,,0,BM
208008,F1ZGO,Meudon,ÃŽle-de-France,France,430.05000,1,9.400,PEER,TS1 TS2,F1TDI,,0,DMRF
-208010,F1ZWD,Paris,ÃŽle-de-France,France,430.15000,1,9.400,PEER,TS1 TS2,F1HBG,,0,DMR-France
+208010,F1ZWD,Paris,ÃŽle-de-France,France,430.15000,1,9.400,PEER,TS1 TS2,F1HBG,,0,BM
208025,F1ZPQ,Parvis de la Defense,ÃŽle-de-France,France,430.23750,1,9.400,PEER,TS1 TS2,F1SHS,,0,Motorola
-208065,F1SHS,La Garenne Colombes,ÃŽle-de-France,France,430.23750,1,9.4,PEER,TS1 TS2,F1SHS,,0,DMR-France
-208075,F1ZTC,Paris,,France,145.72500,1,-0.600,Peer,TS1 TS2,F1HBG,,0,DMR-plus
+208065,F1SHS,,ÃŽle-de-France,France,430.23750,1,9.400,PEER,TS1 TS2,F1SHS,,0,DMR-plus
+208075,F1ZTC,Paris,,France,145.77500,1,-0.600,Peer,TS1 TS2,F1HBG,,0,BM
+208077,F1ZHK,NANGIS,le-de-France,France,145.76250,1,-0.600,PEER,TS1 TS2,F4DFJ,,0,BM
208078,F1ZPK,Magnanville,ÃŽle-de-France,France,430.27500,1,9.400,PEER,TS1 TS2,F1IKD,,0,DMR-France
208080,F5ZDR,Linas,,France,430.20000,1,9.400,PEER,TS1 TS2,F4CQA,,0,DMRF
208091,F5ZIP,La Ville-du-bois,ÃŽle-de-France,France,430.01250,1,9.400,PEER,TS1 TS2,F6MPN,,0,DMR-France
208092,F1ZOI,Puteaux,ÃŽle-de-France,France,430.28750,1,9.400,PEER,TS1 TS2,F1SHS,,0,DMR-France
208093,F5ZIO,Montreuil,ÃŽle-de-France,France,430.45000,1,9.400,Peer,TS1 TS2,F6MPN,,0,Motorola
-208099,F1ZHW,Montfermeil,le-de-France,France,430.58750,1,9.400,PEER,TS1 TS2,F1TUV,,0,DMR-plus
-208201,F1ZIC,Combe belle et cote,Rhne-Alpes,France,430.03750,1,9.4,PEER,TS1 TS2,F4AII,,0,DMR-plus
+208099,F1ZHW,Montfermeil,le-de-France,France,430.07500,1,1.600,PEER,TS1 TS2,F1TUV,,0,BM
+208102,F1ZDF,Briancon (05),Provence-Alpes-Cte d,France,439.35000,1,-7.600,PEER,TS1 TS2,F4EGG,,0,Hytera
+208103,F1ZYI,Col du Galibier,Provence-Alpes-Cte d,France,439.50000,1,-7.600,PEER,TS1 TS2,F4EGG,,0,Hytera
+208104,F1ZYH,Gap (05),Provence-Alpes-Cte d,France,439.35000,1,-7.600,PEER,TS1 TS2,F4EGG,,0,Hytera
+208105,F1ZDH,Forcalquier,Provence-Alpes-Cte d,France,439.35000,1,-7.600,PEER,TS1 TS2,F4EGG,,0,Hytera
+208201,F1ZIC,Combe belle et cote,Rhne-Alpes,France,430.03750,1,9.400,PEER,TS1 TS2,F4AII,,0,BM
+208202,F1ZJI,Villard st christoph,Rhne-Alpes,France,430.06250,1,9.400,PEER,TS1 TS2,F4AII,,0,Hytera
+208203,F1ZJJ,Villard st christoph,Rhne-Alpes,France,430.06750,1,9.400,PEER,TS1 TS2,F4AII,,0,Hytera
+208204,F1ZCK,Planfoy,Rhne-Alpes,France,430.28750,1,9.600,,,F4EED,,0,None
208205,F1ZJL,L esrre de chavas,Rhne-Alpes,France,439.40000,1,-7.600,Peer,TS1 TS2,F4FAA,,0,None
-208238,F4CZX,Saint Bernard,Rhône-Alpes,France,430.56250,1,9.4,PEER,TS1 TS2,F4CZX,,0,DMR-MARC-IPSC2
+208206,F1ZEM,VALENCE,Rhne-Alpes,France,433.15000,1,-1.600,,,F4FAA,,0,BrandMeister
+208208,F1ZDI,Lyon (69),Rhne-Alpes,France,439.35000,1,-7.600,PEER,TS1 TS2,F1JMN,,0,Hytera
+208209,F1ZJH,Les Andrieux (05),Rhne-Alpes,France,439.35000,1,-7.600,PEER,TS1 TS2,F1JMN,,0,Hytera
+208218,F1ZFG,Relais du Beaujolais,Rhône-Alpes,France,439.80000,1,-9.400,PEER,TS1 TS2,F4HIN,,0,BM
+208238,F4CZX,Saint Bernard,Rhône-Alpes,France,430.56250,1,9.400,PEER,TS1 TS2,F4CZX,,0,DMR-plus
+208248,F1ZJQ,Chartreuse,Rhne-Alpes,France,430.56250,1,9.400,,,F4CZX,,0,Motorola
208273,F1ZIQ,MERIBEL,Rhne-Alpes,France,431.70000,1,7.600,Peer,TS1 TS2,F1SLP,,0,BrandMeister
-208301,F1ZJD,La Tour du Crieu ,Midi-Pyrnes ,France ,439.77500,1,-9.4,Peer,TS1 TS2,F1IZL,,0,BrandMeister
+208301,F1ZJD,La Tour du Crieu,Midi-Pyrnes,France,439.77500,1,-9.400,Peer,TS1 TS2,F1IZL,,0,DMR-plus
208302,F1ZIM,L herm,Midi-Pyrénées,France,144.98750,1,0.000,Peer,TS1 TS2,F1ZIM,,0,None
208303,F5ZJP,CARBONNE,Midi-Pyrénées,France,145.03750,2,0.000,Peer,TS1 TS2,F5BYL,,0,None
-208304,F1ZHZ,TARASCON SUR ARIEGE ,Midi-Pyrnes ,France ,439.85000,1,-9.400,PEER,TS1 TS2,F1BBG,,0,None
-208401,F1ZGC,Mutzig,Alsace,France,430.26250,1,9.4,PEER,TS1 TS2,F4AVI,,0,DMRF
-208402,F5ZAV,Bischoffsheim,Alsace,France,430.26250,1,9.4,PEER,TS1 TS2,F4AVI,,0,DMR-plus
+208304,F1ZHZ,TARASCON SUR ARIEGE,Midi-Pyrnes,France,439.85000,1,-9.400,PEER,TS1 TS2,F1BBG,,0,None
+208401,F1ZGC,Mutzig,Alsace,France,430.26250,1,9.4,PEER,TS1 TS2,F4AVI,,0,DMR-plus
+208402,F5ZAV,Bischoffsheim,Alsace,France,430.26250,1,9.400,PEER,TS1 TS2,F4AVI,,0,DMR-plus
208403,F1ZDD,Dangolsheim,Alsace,France,430.23750,1,9.400,PEER,TS1 TS2,F4AVI,,0,DMRF
-208500,F1ZTD,Tours,,France,145.72500,1,-0.6,PEER,TS1 TS2,F1HBG,,0,DMRF
-208501,F5ZJH,NANTES ,Pays de la Loire ,France ,430.35000,1,9.400,PEER,TS1 TS2,F5BCB,,0,DMR-plus
+208405,F1ZDD,Dangolsheim,Alsace,France,430.28750,1,9.400,PEER,TS1 TS2,F4AVI,,0,BM
+208500,F1ZTD,Tours,,France,145.72500,1,-0.600,PEER,TS1 TS2,F1HBG,,0,BM
+208501,F5ZJH,NANTES,Pays de la Loire,France,430.35000,1,9.400,PEER,TS1 TS2,F5BCB,,0,DMR-plus
208617,F1ZIS,LA ROCHELLE,Aquitaine,France,430.40000,1,9.400,Peer,TS1 TS2,F1UGZ,,0,BM
-208766,F5ZJA,Pic Neulos,Languedoc-Roussillon,France,439.82500,1,-9.400,PEER,TS1 TS2,F8BSY,,0,DMR-plus
-208799,F5ZJT,Perpignan,Languedoc-Roussillon,France,439.95000,1,-9.4,PEER,TS1 TS2,F8BSY,,0,BM
+208766,F5ZJA,Pic Neulos,Languedoc-Roussillon,France,439.82500,1,-9.400,PEER,TS1 TS2,F8BSY,,0,BM
+208799,F5ZJT,Perpignan,Languedoc-Roussillon,France,439.95000,1,-9.400,PEER,TS1 TS2,F8BSY,,0,BM
208829,F5ZJK,Relais Dstar du Bout,Brittany,France,439.35000,1,-7.600,Peer,TS1 TS2,F8FKD,,0,None
-208835,F1ZHH,DINARD,Brittany,France,430.03750,1,9.4,Peer,TS1 TS2,F1TZO,,0,Motorola
+208835,F1ZHH,DINARD,Brittany,France,430.03750,1,9.4,Peer,TS1 TS2,F1TZO,,0,DMR-plus
+208849,F1ZJT,Laz,Brittany,France,439.50000,1,-9.400,,,F1NNI,,0,BrandMeister
208900,F1ZCY,Auneuil,Oise,France,430.27500,1,9.4,PEER,TS1 TS2,F1PRY,,0,DMR-plus
208902,F4EWI,LES FOURGS,All Others,France,439.95000,1,9.400,PEER,TS1 TS2,F4EWI,,0,Hytera
-208904,F1ZIY,SAINTE GENEVIEVE ,All Others ,France ,430.06250,1,9.4,PEER,TS1 TS2,F1SFY,,0,BM
+208903,F1ZDN,JO10VE,All Others,France,438.17500,1,-1.600,,,F1IWQ,,0,Motorola
+208904,F1ZIY,SAINTE GENEVIEVE,All Others,France,430.06250,1,9.4,PEER,TS1 TS2,F1SFY,,0,DMR-plus
208905,F1ZTK,LILLE,All Others,France,430.07500,1,1.600,Peer,TS1 TS2,F1FPC,,0,BM
+208910,F1ZHY,Montmarault,All Others,France,430.40000,1,9.400,,,F4ARJ,,0,BrandMeister
208917,F1ZCY,Auneuil,All Others,France,430.25000,1,9.400,PEER,TS1 TS2,F1PRY,,0,DMRF
208918,F1ZIE,Saint-Palais,All Others,France,430.10000,1,9.400,PEER,TS1 TS2,F1ZIE,,0,DMRF
208919,F1ZGY,BOUCHAIN ( 59 ),All Others,France,145.78750,1,-0.600,PEER,TS1 TS2,F1MIJ,,0,DMR-France
-208922,F1ZHT,Mesnil sur bulles,All Others,France,430.58750,1,9.4,PEER,TS1 TS2,F4FSD,,0,DMR-plus
+208921,F1ZJP,CHENOVE,All Others,France,430.58750,1,-9.400,,,F4ALM,,0,BrandMeister
+208922,F1ZHT,Mesnil sur bulles,All Others,France,430.58750,15,9.400,PEER,TS1 TS2,F4FSD,,0,BM
+208939,F1ZJR,MOIRANS-EN-MONTAGNE,All Others,France,430.40000,1,9.400,,,F4ALM,,0,BrandMeister
208953,F1ZHJ,TOURS,All Others,France,439.90000,1,-9.400,Peer,TS1 TS2,F1GXY,,0,None
-208954,F1ZET,Nancy (54),All Others,France,439.40000,1,-7.6,PEER,TS1 TS2,F4GEN,,0,DMR-plus
+208954,F1ZET,Nancy (54),All Others,France,439.40000,1,-7.600,PEER,TS1 TS2,F4GEN,,0,BM
208955,F1ZGK,Nancy (54),All Others,France,439.35000,1,-7.600,Peer,TS1 TS2,F4GEN,,0,None
208957,F1ZZF,Thionville,All Others,France,439.70000,1,0.000,Peer,TS1 TS2,F8ARO,,0,None
208959,F1ZBE,Valenciennes,All Others,France,433.02500,1,-1.600,PEER,TS1 TS2,F1MIJ,,0,Motorola
-208962,F1ZVV,Wimereux,All Others,France,430.35000,1,9.4,PEER,TS1 TS2,F1CWQ,,0,DMR-plus
+208962,F1ZVV,Wimereux,All Others,France,430.35000,1,9.400,PEER,TS1 TS2,F1CWQ,,0,BM
208966,F4GEN,Villers les Nancy,All Others,France,433.65000,1,0.000,Peer,TS1 TS2,F4GEN,,0,None
-208990,F1ZIF,Pontarlier,All Others,France,439.90000,1,-9.400,PEER,TS1 TS2,F4EWI,,0,DMRF
+208990,F1ZIF,Pontarlier,All Others,France,439.90000,1,-9.400,PEER,TS1 TS2,F4EWI,,0,BM
214100,EB1TK,Gijon,Asturias,Spain,145.78750,1,-0.6,Master,TS1 TS2,EB1TK,,0,HYTERA
-214101,ED1ZAE,Gijon,Principado de Asturi,Spain,438.30000,1,-7.6,PEER,TS1 TS2,EB1TK,,0,BM
-214102,ED1ZAS,Gijon,Principado de Asturias,Spain,438.22500,1,-7.600,PEER,TS1 TS2,EB1TK,,0,
-214104,ED1ZAU,Monte Naranco Oviedo,Principado de Asturi,Spain,438.50000,1,-7.600,PEER,TS1 TS2,EB1TK,,0,None
-214105,ED1ZAW,LEON ,Castile and Len ,Spain ,438.40000,1,-7.600,Peer,TS1 TS2,EA1YC,,0,BM
-214106,ED1ZAK,Repetidor Dstar Burg,Castilla y Leon ,Spain ,438.65000,1,7.600,Peer,TS1 TS2,EA1IDU,,0,BrandMeister
-214112,ED1ZAR,Monte Fontardion,Galicia,Spain,438.50000,1,7.600,PEER,TS1 TS2,EA1RKF,,0,None
-214201,ED2ZAD,Monte Sollube,Pais Vasco,Spain,438.22500,1,-7.6,PEER,TS1 TS2,EA2IP,,0,DMR-plus
+214101,ED1ZAE,Gijon,Principado de Asturi,Spain,438.30000,1,-7.600,PEER,TS1 TS2,EB1TK,,0,DMR-plus
+214102,ED1ZAS,Pico San MartÃn, Gi,,Spain,438.22500,1,-7.600,PEER,TS1 TS2,EB1TK,,0,BM
+214103,ED1YBQ,Bejar,Castilla y Leuan,Spain,438.65000,1,-7.600,PEER,TS1 TS2,EA1EZ,,0,None
+214104,ED1ZAU,Monte Naranco Oviedo,Principado de Asturi,Spain,438.50000,1,-7.600,PEER,TS1 TS2,EB1TK,,0,BM
+214105,ED1ZAW,LEON,Castile and Len,Spain,438.40000,1,-7.600,Peer,TS1 TS2,EA1YC,,0,BM
+214106,ED1ZAK,Repetidor Dstar Burg,Castilla y Leon,Spain,438.65000,1,7.600,Peer,TS1 TS2,EA1IDU,,0,BrandMeister
+214110,ED1YBK,Ourense,Galicia,Spain,438.50000,1,-7.600,,,EA1CI,,0,BrandMeister
+214111,ED1YBY,IN62IG,Galicia,Spain,438.20000,1,-7.600,PEER,TS1 TS2,EA1CI,,0,BrandMeister
+214112,ED1ZAR,Monte Fontardion,Galicia,Spain,438.50000,1,-7.600,PEER,TS1 TS2,EA1RKF,,0,BM
+214120,ED1ZAS,Gijon,Principado de Asturi,Spain,438.30000,1,-7.600,,,EB1TK,,0,BrandMeister
+214201,ED2ZAD,Monte Sollube,Pais Vasco,Spain,438.22500,1,-7.600,PEER,TS1 TS2,EA2IP,,0,BM
214202,ED2ZAC,BILBAO,Basque Country,Spain,438.20000,1,-7.6,PEER,TS1 TS2,EA2IP,,0,DMR-plus
+214203,ED2YAO,Bilbao,Basque Country,Spain,438.95000,1,-7.600,PEER,TS1 TS2,EB2DJB,,0,None
214204,ED2YAR,La Higa de Monreal,Navarra,Spain,438.30000,1,-7.600,PEER,TS1 TS2,EA2DDW,,0,BM
214210,ED2YAA,Laudio,Basque Country,Spain,439.97500,1,0.000,PEER,TS1 TS2,EB2EMZ,,0,None
-214214,ED2ZAE,Vitoria-Gasteiz,Basque Country,Spain,438.67500,1,-7.6,PEER,TS1 TS2,EA2CQ,,0,DMR-plus
-214300,EA3DKP,Roses,,Spain,439.00000,1,-7.600,PEER,TS1 TS2,EA3DKP,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 214 = Spain 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 214 = Spain 2
Time Slot #2 - Group Call 8 = Regional > DF0MOT+DB0AFZ in Germany
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio.
Contact: Ricardo N. Solis, EA3DKP
Email: ea3dkp@yahoo.com,1,DMR-MARC
+214213,ED2YAQ,Urdingain,Massachusetts,Spain,438.45000,1,-7.600,,,EA2CQ,,0,BrandMeister
+214214,ED2ZAE,Vitoria-Gasteiz,Basque Country,Spain,438.50000,1,-7.600,PEER,TS1 TS2,EA2CQ,,0,BM
+214215,ED2ZAF,Arnotegi - Bilbao,Pais Vasco,Spain,438.52500,1,-7.600,,,EB2DJB,,0,BM
+214222,ED2YAV,Bilbao,Basque Country,Spain,439.15000,1,-7.600,,,EA2IP,,0,BrandMeister
+214300,EA3DKP,Roses,,Spain,439.00000,1,-7.600,PEER,TS1 TS2,EA3DKP,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 214 = Spain 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 214 = Spain 2
Time Slot #2 - Group Call 8 = Regional > DF0MOT+DB0AFZ in Germany
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio.
Contact: Ricardo N. Solis, EA3DKP
Email: ea3dkp@yahoo.com,1,DMR-DL
214301,ED3ZAQ,Castellar del Valles,Cataluna,Spain,438.52500,1,-7.600,PEER,TS1 TS2,EA3ABN,,0,BM
214302,ED3YAC,Castellar del Valles,Cataluna,Spain,438.80000,1,-7.6,PEER,TS1 TS2,EA3ABN,,0,DMR-plus
214303,ED3ZAK,Barcelona Tibidabo,Cataluna,Spain,438.41250,1,-7.600,PEER,TS1 TS2,EA3ABN,,0,BM
214304,ED3ZAN,Rocacorba (Girona),Cataluna,Spain,438.31250,1,-7.600,Peer,TS1 TS2,EA3ABN,,0,DMR-plus
-214305,ED3ZAH,Barcelona,Cataluna,Spain,439.41250,1,-7.6,PEER,TS1 TS2,EA3IK,,0,DMR-plus
+214305,ED3ZAH,Barcelona,Cataluna,Spain,439.00000,1,-7.600,PEER,TS1 TS2,EA3IK,,0,DMR-plus
214306,ED3YAI,GIRONA,Cataluna,Spain,439.37500,1,-7.600,PEER,TS1 TS2,EA3IK,,0,DMR-plus
214307,ED3YAY,Lleida,Cataluna,Spain,439.17500,1,-7.600,PEER,TS1 TS2,EA3HKB,,0,Hytera
-214308,ED3ZAG,Barcelona,Cataluna,Spain,438.31250,1,-7.6,PEER,TS1 TS2,EA3ABN,,0,BM
+214308,ED3ZAG,Barcelona,Cataluna,Spain,438.31250,1,-7.6,PEER,TS1 TS2,EA3ABN,,0,DMR-plus
+214309,ED3YAK,Montjuic - Barcelona,Cataluna,Spain,438.36250,1,-7.600,PEER,TS1 TS2,EA3FRB,,0,DMR-plus
214310,ED3YAH,Caro,Cataluna,Spain,439.27500,1,-7.600,PEER,TS1 TS2,EB3TC,,0,Hytera
214311,ED3YAM,Collsuspina,Cataluna,Spain,438.77500,1,-7.600,PEER,TS1 TS2,EB3TC,,0,Hytera
-214401,ED4ZAC,In60xa ,excluding Albacete ,Spain ,438.30000,1,-7.600,PEER,TS1 TS2,EA4HL,,0,BM
-214402,ED4ZAD,CUENCA ,excluding Albacete ,Spain ,438.42500,1,-7.600,PEER,TS1 TS2,EA4XA,,0,BM
-214501,ED5ZAH,Chinchilla,Castile-La Mancha,Spain,438.50000,1,-7.600,PEER,TS1 TS2,EA5IJC,,0,None
+214312,ED3ZAA,Montseny,Cataluna,Spain,438.20000,1,-7.600,,,EA3GFS,,0,BrandMeister
+214314,ED3ZAR,Almoster-Tarragona,Cataluna,Spain,438.45000,1,-7.6,,,EA3ES,,0,DMR-plus
+214319,ED3YAN,BADALONA,Cataluna,Spain,438.46250,1,-7.600,,,EB3GHN,,0,BrandMeister
+214333,ED3YAB,Montserrat - BCN,Cataluna,Spain,439.41250,1,-7.6,PEER,TS1 TS2,EA3IK,,0,DMR-plus
+214401,ED4ZAC,In60xa,excluding Albacete,Spain,438.30000,1,-7.600,PEER,TS1 TS2,EA4HL,,0,BM
+214402,ED4ZAD,CUENCA,excluding Albacete,Spain,438.42500,1,-7.600,PEER,TS1 TS2,EA4XA,,0,BM
+214403,ED4ZAC,In60xa,excluding Albacete,Spain,438.67500,8,-7.600,PEER,TS1 TS2,EA4HL,,0,Hytera
+214404,ED4YAO,Plasencia,excluding Albacete,Spain,145.62500,1,0.600,,,EA1EZ,,0,BrandMeister
+214501,ED5ZAH,Chinchilla,Castile-La Mancha,Spain,438.50000,1,-7.600,PEER,TS1 TS2,EA5IJC,,0,BM
214502,ED5ZAE,MURCIA-CARRASCOY,Regiuan de Murcia,Spain,438.30000,1,-7.600,PEER,TS1 TS2,EA5GVK,,0,Hytera
-214503,ED5ZAJ,Alicante ,Valencian Community ,Spain ,438.90000,1,7.600,PEER,TS1 TS2,EA5IHI,,0,BrandMeister
-214555,ED5ZAD,Cid, Petrer Alicante,Comunidad Valenciana,Spain,439.17500,1,-7.600,PEER,TS1 TS2,EA5GF,,0,
-214701,ED7ZAJ,CCMD/Gibalbin-Cadiz ,Andalucia ,Spain ,438.30000,1,-7.6,PEER,TS1 TS2,EA7DYY,,0,DMR-plus
+214503,ED5ZAJ,Alicante,Valencian Community,Spain,438.50000,1,-7.600,PEER,TS1 TS2,EA5IHI,,0,BM
+214504,EA5ERC,Chert, Castellon,Valencian Community,Spain,438.43750,1,-7.600,,,EB3GHN,,0,BrandMeister
+214555,ED5ZAD,Cid, Petrer Alicante,Comunidad Valenciana,Spain,439.17500,1,-7.600,PEER,TS1 TS2,EA5GF,,0,BM
+214601,ED6ZAA,FELANITX - MALLORCA,Islas Baleares,Spain,430.65000,1,7.600,,,EA6QJ,,0,DMR-plus
+214602,ED6ZAB,Randa - Mallorca,Islas Baleares,Spain,438.45000,1,-7.600,,,EA6QJ,,0,BrandMeister
+214701,ED7ZAJ,CCMD/Gibalbin-Cadiz,Andalucia,Spain,438.30000,1,-7.600,PEER,TS1 TS2,EA7DYY,,0,DMR-plus
214702,ED7ZAC,Malaga,Andalucia,Spain,438.45000,1,-7.600,PEER,TS1 TS2,EA7BJ,,0,Hytera
214703,ED7YAU,CMD(S.Gibalbin),Andalucia,Spain,439.35000,1,-7.600,PEER,TS1 TS2,EA7DYY,,0,Hytera
214704,ED7ZAE,Granada,Andalucia,Spain,438.30000,1,-7.600,PEER,TS1 TS2,EA7UU,,0,BrandMeister
-214708,ED7ZAI,Sevilla ,Andalucia ,Spain ,439.00000,1,-7.600,Peer,TS1 TS2,EA7KE,,0,BrandMeister
+214705,ED7YAF,Los Reales-Estepona,Andalucia,Spain,438.87500,1,-7.600,,,EA7FQB,,0,BrandMeister
+214707,ED7ZAK,Granada,Andalucia,Spain,438.00000,1,-7.600,,,EA7JOE,,0,None
+214708,ED7ZAI,Sevilla,Andalucia,Spain,439.00000,1,-7.600,Peer,TS1 TS2,EA7KE,,0,BrandMeister
214711,ED7YAV,CERRO CEUTA (CADIZ),Andalucia,Spain,438.95000,1,-7.600,PEER,TS1 TS2,EA7DYY,,0,Hytera
-214848,ED8ZAB,Vecindario,Islas Canarias,Spain,438.46250,2,-7.600,Peer,TS1 TS2,EA8EE,,0,None
+214848,ED8ZAB,Vecindario,Islas Canarias,Spain,438.50000,1,-7.600,Peer,TS1 TS2,EA8EE,,0,BM
216000,HG5RUD,Budapest,,Hungary,438.47500,1,-7.600,,None,HA5CBW,,0,HYTERA
216001,HG7RUC,Dobogoko,,Hungary,438.32500,1,-7.6,PEER,TS1 TS2,HA3KZ,,0,DMR-plus
-216101,HG2RUE,Kabhegy,Veszprum,Hungary,438.30000,1,-7.6,PEER,TS1 TS2,HA5ZF,,0,DMR-plus
-216502,HG5RUC,Budapest,Budapest,Hungary,438.50000,1,-7.6,PEER,TS1 TS2,HA2NON,,0,DMR-plus
+216101,HG2RUE,Kabhegy,Veszprum,Hungary,438.30000,1,-7.600,PEER,TS1 TS2,HA5ZF,,0,BM
+216102,HG1RUE,Gyor,Gyor-Moson-Sopron,Hungary,438.25000,1,-7.600,,,HG2EBH,,0,BM
+216103,HG1RUD,Gyor,Gyor-Moson-Sopron,Hungary,439.25000,1,-7.600,,,HG2EBH,,0,BrandMeister
+216301,HG3RUG,Tubes,Baranya,Hungary,438.32500,1,-7.600,,,HA3KZ,,0,BM
+216502,HG5RUC,Budapest,Budapest,Hungary,438.50000,1,-7.600,PEER,TS1 TS2,HA2NON,,0,BM
216701,HG7RUC,Dobogoko,,Hungary,439.35000,1,0.000,Peer,TS1 TS2,HA3KZ,,0,HYTERA
-216702,HG7RUG,Dobogoko,Pest County,Hungary,438.52500,1,-7.6,PEER,TS1 TS2,HA3KZ,,0,DMR-plus
-216790,HG9RUE,Kis-Kohat,Borsod-Abauj-Zemplen,Hungary,438.55000,1,-7.6,PEER,TS1 TS2,HA3KZ,,0,DMR-plus
-222000,IR0DU,Rome Center,,Italy,430.96250,1,5.000,PEER,TS1 TS2,IK0YYY,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 222 = Italy 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 222 = Italy 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Luca Ferrara, IKYYY
Email: ik0yyy@libero.it,1,DMR-Italia
-222001,IK0YYY,S.Marinella,,Italy,430.93750,1,5.000,PEER,TS1 TS2,IK0YYY,,0,DMR-Italia
-222002,IR0UEJ,Mt. San Biagio,Lazio,Italy,430.32500,1,5.000,Peer,TS1,IZ0CZW,,0,IT-DMR-Network
+216702,HG7RUG,Dobogoko,Pest County,Hungary,438.52500,1,-7.600,PEER,TS1 TS2,HA3KZ,,0,BM
+216790,HG9RUE,Kis-Kohat,Borsod-Abauj-Zemplen,Hungary,438.55000,1,-7.600,PEER,TS1 TS2,HA3KZ,,0,BM
+219001,9A0DSK,Cepelis, Petrinja,,Croatia,438.25000,1,-7.600,,,9A6NVI,,0,BrandMeister
+222000,IR0DU,Rome Center,,Italy,430.96250,1,5.000,PEER,TS1 TS2,IK0YYY,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 222 = Italy 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 222 = Italy 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Luca Ferrara, IKYYY
Email: ik0yyy@libero.it,1,DMR-plus
+222001,IK0YYY,S.Marinella,,Italy,430.93750,1,5.000,PEER,TS1 TS2,IK0YYY,,0,DMR-plus
+222002,IR0UEJ,Mt. San Biagio,Lazio,Italy,430.42500,1,5.000,Peer,TS1,IZ0CZW,,0,BM
222003,IR0CAG,Formia,Lazio,Italy,430.15000,1,5.000,Master,TS1,IW0EBM,,0,IT-DMR-Network
-222004,IW0DSR,Rome,Lazio,Italy,430.60000,1,5.000,Peer,TS1 TS2,IW0DSR,,0,IT-DMR-Network
-222005,IR0UGN,Sutri (vt),Lazio,Italy,430.07500,1,5.000,PEER,TS1 TS2,IZ0QWM,,0,DMR-plus
+222004,IW0DSR,Rome,Lazio,Italy,430.60000,1,5.000,Peer,TS1 TS2,IW0DSR,,0,BM
+222005,IR0UGN,Sutri (vt),Lazio,Italy,430.07500,1,5.000,PEER,TS1 TS2,IZ0QWM,,0,BM
222006,IR0UCA,Scandriglia(RI),Lazio,Italy,430.40000,1,5.000,Peer,TS1 TS2,IZ0QWM,,0,Hytera
-222007,IR0CO,Rome Center,,Italy,439.93750,1,-9.4,PEER,TS1 TS2,IK0YYY,,0,DMR-Italia
+222007,IR0CO,Rome Center,,Italy,439.93750,1,-9.400,PEER,TS1 TS2,IK0YYY,,0,DMR-plus
222008,IR0UGJ,ROCCADARCE,Lazio,Italy,430.22500,1,5.000,PEER,TS1 TS2,IZ0ZIP,,0,Motorola
222009,IR0AAZ,Sutri (VT),Lazio,Italy,430.91250,1,5.000,PEER,TS1 TS2,IZ0XBM,,0,DMR-plus
-222010,IR0DR,Rome M.te Cavo,,Italy,430.98750,1,5.000,PEER,TS1 TS2,IK0YYY,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 222 = Italy 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 222 = Italy 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Luca Ferrara, IKYYY
Email: ik0yyy@libero.it,1,DMR-Italia
+222010,IR0DR,Rome M.te Cavo,,Italy,430.98750,1,5.000,PEER,TS1 TS2,IK0YYY,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 222 = Italy 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 222 = Italy 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Luca Ferrara, IKYYY
Email: ik0yyy@libero.it,1,DMR-plus
222011,IR0EF,Perugia,Umbria,Italy,430.01250,1,1.600,PEER,TS1 TS2,IW0QMN,,0,BM
222012,IR0UFZ,M. Orlando - Gaeta,Lazio,Italy,430.45000,1,5.000,PEER,TS1 TS2,IW0CPK,,0,BM
222013,IR0AAC,Bettona,Umbria,Italy,431.43750,1,1.600,PEER,TS1 TS2,IW0RED,,0,None
-222014,IR0UGF,Assisi,Umbria,Italy,431.43750,1,1.600,PEER,TS1 TS2,IW0RED,,0,None
-222015,IR0UAJ,Castelli Romani , ,Italy ,430.72500,1,5.000,PEER,TS1 TS2,IW0HRF,,0,BM
-222016,IR0CQ,Assisi ,Umbria ,Italy ,145.57500,1,-0.600,PEER,TS1 TS2,IW0RED,,0,None
+222014,IR0UGF,Assisi,Umbria,Italy,431.43750,1,1.600,PEER,TS1 TS2,IW0RED,,0,DMR-plus
+222015,IR0UAJ,Castelli Romani,,Italy,430.72500,1,5.000,PEER,TS1 TS2,IW0HRF,,0,BM
+222016,IR0CQ,Assisi,Umbria,Italy,145.57500,1,-0.600,PEER,TS1 TS2,IW0RED,,0,None
222017,IS0BZC,Senorbi,$cnty,Italy,430.85000,1,5.000,Peer,TS1 TS2,IS0BZC,,0,IT-DMR-Network
-222020,IK0HKA,M.te Cassino,Lazio,Italy,430.40000,1,5.000,PEER,TS1 TS2,IZ0ZIP,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 222 = Italy 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 222 = Italy 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio,1,DMR-MARC
+222020,IK0HKA,M.te Cassino,Lazio,Italy,430.40000,1,5.000,PEER,TS1 TS2,IZ0ZIP,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 222 = Italy 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 222 = Italy 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio,1,DMR-Italia
222022,IR0AAB,Mt. Cavo Vetta,Lazio,Italy,145.57500,1,-0.600,Peer,TS1 TS2,I0OJJ,,0,None
-222025,IR0UFF,Castelli Romani,Lazio,Italy,430.72500,1,5.000,PEER,TS1 TS2,IQ0OT,,0,DMR-plus
+222024,IR0UCY,Rocca Priora,Lazio,Italy,430.42500,1,1.600,PEER,TS1 TS2,I0NLV,,0,BrandMeister
+222025,IR0UFF,Castelli Romani,Lazio,Italy,430.72500,1,5.000,PEER,TS1 TS2,IQ0OT,,0,BM
222030,IZ0ZIP,MONTECASSINO,,Italy,430.42500,1,5.000,PEER,TS1 TS2,IZ0ZIP,,0,DMR-plus
+222034,IR0UGZ,Campocatino,Lazio,Italy,430.57500,1,1.600,PEER,TS1 TS2,I0NLV,,0,BrandMeister
222040,IR0UIB,MONTECASSINO,Lazio,Italy,430.35000,1,5.000,PEER,TS1 TS2,IZ0ZIP,,0,DMR-plus
222050,IR0UGM,M.te Cosce,Lazio,Italy,430.17500,1,1.600,PEER,TS1 TS2,IW0REF,,0,None
-222051,I0KMJ,Terni,Umbria,Italy,430.93750,1,5.000,Peer,TS1 TS2,I0KMJ,,0,Hytera
+222051,I0KMJ,Terni,Umbria,Italy,430.93750,1,5.000,Peer,TS1 TS2,I0KMJ,,0,BM
222067,IK2OVD,Genna Gonnesa,Lombardy,Italy,430.93750,1,5.000,PEER,TS1 TS2,IK2OVD,,0,Motorola
222068,IW0RQJ,Assisi,Umbria,Italy,430.42500,1,5.000,PEER,TS1 TS2,IW0RQJ,,0,DMR-plus
-222069,IR0UAS,Monte Serano (PG),Umbria,Italy,430.21250,1,5.600,Peer,TS1 TS2,IW0RED,,0,DMR-plus
+222069,IR0UAS,Monte Serano (PG),Umbria,Italy,430.21250,1,5.600,Peer,TS1 TS2,IW0RED,,0,BM
222070,IR0AY,Assisi,Umbria,Italy,431.43750,1,1.600,Peer,TS1 TS2,IW0RED,,0,None
-222090,IR0UGL,Villacidro,Sardinia,Italy,431.56250,1,1.600,Peer,TS1 TS2,IW0UIF,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 222 = Italy 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 222 = Italy 2
Time Slot #2 - Group Call 8 = Regional - IR2CM
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Natale, IW0UIF
Email: natale.sardo@tiscali.it,1,DMR-MARC
+222090,IR0UGL,Villacidro,Sardinia,Italy,431.56250,1,1.600,Peer,TS1 TS2,IW0UIF,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 222 = Italy 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 222 = Italy 2
Time Slot #2 - Group Call 8 = Regional - IR2CM
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Natale, IW0UIF
Email: natale.sardo@tiscali.it,1,BM
222092,IS0AYI,Bruncu Simioni,cnty,Italy,430.70000,1,5.000,PEER,TS1 TS2,IS0AYI,,0,Motorola
+222093,IR0UDB,Villaputzu,Sardegna,Italy,430.73750,1,5.000,PEER,TS1 TS2,IW0UQF,,0,BM
222099,IR0UGO,Ciampino (RM),Lazio,Italy,431.37500,1,1.600,PEER,TS1 TS2,IW0BEC,,0,Motorola
222100,IW1BZH,Domodossola,Piedmont,Italy,430.12500,1,1.000,Master,TS1 TS2,IW1BZH,,0,IT-DMR-Network
222101,I1HJP,Nizza Monferrato,Piedmont,Italy,430.85000,1,5.000,Peer,TS1 TS2,I1HJP,,0,IT-DMR-Network
-222102,I1YRB,Torino,Piedmont,Italy,430.96250,1,5.000,PEER,TS1 TS2,I1YRB,,0,DMR-Italia
-222103,IZ1EZN,Frabosa Soprana,,Italy,430.91250,1,5.000,PEER,TS1 TS2,IZ1EZN,,0,DMR-Italia
+222102,I1YRB,Torino,Piedmont,Italy,430.96250,1,5.000,PEER,TS1 TS2,I1YRB,,0,DMR-plus
+222103,IZ1EZN,Frabosa Soprana,,Italy,430.98750,1,5.000,PEER,TS1 TS2,IZ1EZN,,0,DMR-Italia
222105,IR1UBR,Aquila,Piemonte,Italy,430.52500,1,5.000,Peer,TS1 TS2,IK1JNS,,0,None
222106,IR1UHC,Monte Fasce,Liguria,Italy,430.45000,1,5.000,Peer,TS1 TS2,IZ1MLT,,0,None
-222107,IR1DA,Genova,Liguria,Italy,430.92500,1,5.000,PEER,TS1 TS2,IZ1HIQ,,0,BM
-222108,IW1PPB,Loano (SV),Liguria,Italy,430.95000,1,5.000,Peer,TS1 TS2,IW1PPB,,0,Motorola
-222109,IR1UHO,Poggio - Sanremo,Pennsylvania,Italy,430.13750,1,1.600,PEER,TS1 TS2,IK1MVX,,0,BM
+222107,IR1DA,Genova,Liguria,Italy,430.90000,1,5.000,PEER,TS1 TS2,IZ1HIQ,,0,BM
+222108,IW1PPB,Loano (SV),Liguria,Italy,430.95000,1,5.000,Peer,TS1 TS2,IW1PPB,,0,DMR-plus
+222109,IR1UHO,Poggio - Sanremo,Pennsylvania,Italy,431.05000,1,2.000,PEER,TS1 TS2,IK1MVX,,0,BM
222110,IK1JTD,Mongardino,Liguria,Italy,430.96250,1,5.000,PEER,TS1 TS2,IK1JTD,,0,DMR-Italia
-222111,IX1VKK,Sarre,Aosta,Italy,430.30000,1,5.000,Peer,TS1 TS2,IX1VKK,,0,IT-DMR-Network
-222115,IR1UGE,Mt.Grande, Carpasio ,Liguria ,Italy ,430.28750,1,1.600,PEER,TS1 TS2,IK1MVX,,0,BrandMeister
-222118,IR1UDT,Rivoli,Piedmont,Italy,430.50000,1,5.000,PEER,TS1 TS2,IK1JNS,,0,BrandMeister
+222111,IX1VKK,Sarre,Aosta,Italy,430.30000,1,5.000,Peer,TS1 TS2,IX1VKK,,0,BM
+222112,IR1UBY,Casarza ligure,Liguria,Italy,430.60000,1,5.000,PEER,TS1 TS2,IZ1WIY,,0,None
+222113,IR1UB,Mt. Bignone, Sanremo,Liguria,Italy,430.05000,1,1.600,PEER,TS1 TS2,IK1MVX,,0,BM
+222114,IR1UHT,CASTIGLIONE CHIAVARE,Liguria,Italy,430.92500,1,5.000,PEER,TS1 TS2,IW1RIM,,0,None
+222115,IR1UGE,Mt.Grande, Carpasio,Liguria,Italy,430.28750,1,1.600,PEER,TS1 TS2,IK1MVX,,0,BM
+222116,IR1DT,Castellamonte,Piedmont,Italy,145.76200,1,-0.600,PEER,TS1 TS2,IK1BQD,,0,None
+222117,IR1UIO,Castellamonte,Piemonte,Italy,430.61250,1,5.000,PEER,TS1 TS2,IK1BQD,,0,None
+222118,IR1UDT,Rivoli,Piedmont,Italy,430.50000,1,5.000,PEER,TS1 TS2,IK1JNS,,0,DMR-plus
+222119,IR1UIU,CASTELLAMONTE,Piemonte,Italy,435.61250,1,-5.000,PEER,TS1 TS2,IK1BQD,,0,None
222120,IR1UIQ,Monte Mottarone,Piedmont,Italy,430.58750,1,5.000,Peer,TS1 TS2,IW1BZH,,0,Motorola
222121,IR1UIP,Domodossola,Piemonte,Italy,430.12500,1,1.600,Peer,TS1 TS2,IW1BZH,,0,Motorola
222122,IR1DF,Tigullio,Liguria,Italy,430.96250,1,5.000,PEER,TS1 TS2,IK1WHN,,0,None
222123,IR1CT,Levanto,Liguria,Italy,430.92500,1,5.000,PEER,TS1 TS2,IK1YPD,,0,None
-222137,IZ1HIQ,Genova,Liguria,Italy,430.92500,1,5.000,PEER,TS1 TS2,IZ1HIQ,,0,BM
-222200,IR2CM,Mt.Canto/Bergamo,,Italy,145.57500,0,-0.600,Peer,TS1 TS2,IW2DCK,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 222 = Italy 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 222 = Italy 2
Time Slot #2 - Group Call 8 = Regional - IRUGL
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Germano, IW2DCK
Email: iw2dck@yahoo.it,1,DMR-MARC
+222124,IR1UHD,Sanremo,Liguria,Italy,430.93750,1,5.000,PEER,TS1 TS2,IK1MVX,,0,BM
+222137,IZ1HIQ,Genova,Liguria,Italy,430.90000,1,5.000,PEER,TS1 TS2,IZ1HIQ,,0,BM
+222200,IR2CM,Mt.Canto/Bergamo,,Italy,431.41250,1,1.600,Peer,TS1 TS2,IW2DCK,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 222 = Italy 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 222 = Italy 2
Time Slot #2 - Group Call 8 = Regional - IRUGL
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Germano, IW2DCK
Email: iw2dck@yahoo.it,1,BM
222201,IR2CT,Mt. Valcava,Lombardy,Italy,145.57500,1,-0.600,Peer,TS1,IZ2JGB,,0,DMR-CISARNET
222202,IR2CO,Campo dei Fiori,Lombardy,Italy,430.93750,1,5.000,PEER,TS1 TS2,I2HUM,,0,DMR-Italia
-222203,IR2UFH,Gambolo,,Italy,430.13750,1,5.000,PEER,TS1 TS2,IK2XYP,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 222 = Italy 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 222 = Italy 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Armando Accardo , IK2XYP
Email: ik2xyp@ik2xyp.it,1,DMR-MARC
-222204,IR2UDS,Mt. Penice,Lombardy,Italy,431.37500,1,1.600,Master,TS1 TS2,IW2MIL,,0,IT-DMR-Network
-222205,IR2UDM,Valcava,Lombardy,Italy,144.62500,1,1.362,Peer,TS1 TS2,IW2DCK,,0,Motorola
-222206,IR2UFO,Sulzano ,Lombardy ,Italy ,430.35000,1,5.500,PEER,TS1 TS2,IW2KPM,,0,BrandMeister
+222203,IR2UFH,Gambolo,,Italy,430.13750,1,5.000,PEER,TS1 TS2,IK2XYP,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 222 = Italy 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 222 = Italy 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Armando Accardo , IK2XYP
Email: ik2xyp@ik2xyp.it,1,IT-DMR-Network
+222204,IR2UDS,Mt. Penice,Lombardy,Italy,431.37500,1,1.600,Master,TS1 TS2,IW2MIL,,0,BM
+222205,IR2UDM,Valcava,Lombardy,Italy,144.62500,1,1.363,Peer,TS1 TS2,IW2DCK,,0,BM
+222206,IR2UFO,Sulzano,Lombardy,Italy,430.35000,1,5.500,PEER,TS1 TS2,IW2KPM,,0,BM
222210,IW2JXY,Vedano Olona (Va),Lombardy,Italy,145.63750,1,-0.600,PEER,TS1 TS2,IW2JXY,,0,DMR-ITALIA
-222215,IR2CL,Gravedona ed Uniti,Lombardy,Italy,145.63750,1,-0.600,PEER,TS1 TS2,IK2ZLJ,,0,Motorola
+222215,IR2CL,Gravedona ed Uniti,Lombardy,Italy,430.06250,1,5.000,PEER,TS1 TS2,IK2ZLJ,,0,BM
222216,IR2UGK,Gravedona ed Uniti,Lombardy,Italy,430.18750,1,1.600,Peer,TS1 TS2,IK2ZLJ,,0,Motorola
-222260,IZ2FTR,Monte Quarone,Lombardy,Italy,145.58750,1,-0.600,PEER,TS1 TS2,IZ2FTR,,0,IT-DMR-Network
+222260,IZ2FTR,Monte Quarone,Lombardy,Italy,145.58600,1,-0.599,PEER,TS1 TS2,IZ2FTR,,0,BM
222267,IK2OVD,VENEGONO SUPERIORE,Lombardy,Italy,145.77500,1,-0.600,PEER,TS1 TS2,IK2OVD,,0,DMR-Italia
-222300,IR3UN,M.te Paganella,Trentino-Alto Adige/,Italy,430.96250,1,5.000,PEER,TS1 TS2,IW3BYL,,0,DMR-Italia
+222300,IR3UN,M.te Paganella,Trentino-Alto Adige/,Italy,430.96250,1,5.000,PEER,TS1 TS2,IW3BYL,,0,BM
222301,IK3HHG,Col Visentin,Veneto,Italy,430.70000,1,5.000,Peer,TS1 TS2,IK3HHG,,0,DMR-CISARNET
-222303,IR3UDD,Monte Cesen,Veneto,Italy,430.70000,1,5.000,Peer,TS1 TS2,IW3IBG,,0,Motorola
-222304,IW3BTS,M.te Penegal,Tennessee,Italy,430.98750,1,5.000,PEER,TS1 TS2,IW3BTS,,0,DMR-Italia
-222305,IN3CBN,Polsa di Brentonico,Trentino-Alto Adige,Italy,430.93750,1,5.000,Peer,TS1 TS2,IN3CBN,,0,Motorola
+222303,IR3UDD,Monte Cesen,Veneto,Italy,430.70000,1,5.000,Peer,TS1 TS2,IW3IBG,,0,BM
+222304,IW3BTS,M.te Penegal,Tennessee,Italy,430.98750,1,5.000,PEER,TS1 TS2,IW3BTS,,0,BM
+222305,IN3CBN,Polsa di Brentonico,Trentino-Alto Adige,Italy,430.93750,1,5.000,Peer,TS1 TS2,IN3CBN,,0,BM
+222306,IW3BTS,PLAN DE CORONES,Tennessee,Italy,430.92500,1,5.000,PEER,TS1 TS2,IW3BUA,,0,BM
+222307,IN3ELZ,Val di Fassa,Trentino-Alto Adige,Italy,430.92500,1,5.000,PEER,TS1 TS2,IW3BYL,,0,BrandMeister
222308,IR3UGT,Monte Ricco (PD),Veneto,Italy,430.85000,1,5.000,Peer,TS1 TS2,IZ3CLG,,0,BM
-222310,IR3DB,Peschiera del Garda,Veneto,Italy,145.57500,1,-0.600,Peer,TS1 TS2,IK3ITU,,0,BM
-222311,IZ3VBY,Col Visentin,Veneto,Italy,430.98750,1,5.000,PEER,TS1 TS2,IZ3VBY,,0,Motorola
+222310,IR3DB,Peschiera del Garda,Veneto,Italy,145.79350,1,-0.600,Peer,TS1 TS2,IK3ITU,,0,BM
+222311,IZ3VBY,Col Visentin,Veneto,Italy,430.98750,2,5.000,PEER,TS1 TS2,IZ3VBY,,0,BM
222312,IR3UHL,Peschiera del Garda,Veneto,Italy,430.72500,1,5.000,Peer,TS1 TS2,IZ3CLG,,0,Hytera
222315,IR3UGZ,Chioggia Venice,Veneto,Italy,430.87500,1,5.000,Peer,TS1 TS2,IZ3CLG,,0,Hytera
-222337,IQ3VO,Verona,Veneto,Italy,430.90000,1,5.000,Peer,TS1 TS2,IZ3ATU,,0,DMR-plus
-222374,IW3BTS,M.te Plose,Tennessee,Italy,430.91250,1,5.000,Peer,TS1 TS2,IW3BTS,,0,Motorola
+222337,IQ3VO,Verona,Veneto,Italy,430.90000,1,5.000,Peer,TS1 TS2,IZ3ATU,,0,BM
+222374,IW3BTS,M.te Plose,Tennessee,Italy,430.91250,1,5.000,Peer,TS1 TS2,IW3BTS,,0,BM
222377,IR3UDX,Polsa di Brentonico,Trentino-Alto Adige,Italy,430.93750,1,5.000,Peer,TS1 TS2,IN3CBN,,0,Motorola
-222393,IQ3DD,Monte Rite 2183 m,,Italy,431.46250,1,1.600,PEER,TS1 TS2,IZ3ZUJ,,0,
+222393,IQ3DD,Monte Rite 2183 m,,Italy,431.46250,1,1.600,PEER,TS1 TS2,IZ3ZUJ,,0,BM
222399,IQ3ZB,Zero Branco TV,Veneto,Italy,430.70000,1,5.000,PEER,TS1 TS2,IW3IBG,,0,None
-222400,IR4UX,Mt. Cimone,Emilia Romagna,Italy,430.13750,1,5.000,Master,TS1 TS2,IK4UPB,,0,IT-DMR-Network
+222400,IR4UX,Mt. Cimone,Emilia Romagna,Italy,430.13750,1,5.000,Master,TS1 TS2,IK4UPB,,0,BM
222401,IR4LM,Monte Cimone,Emilia-Romagna,Italy,145.76250,1,-0.600,PEER,TS1 TS2,IK4UPB,,0,IT-DMR-Network
222402,IR4MO,Mt.Cimone (MO),Emilia-Romagna,Italy,431.47500,1,1.600,Peer,TS1 TS2,IK4UPB,,0,Hytera
222403,IR4UCJ,Monte Cavallo - Cese,Emilia-Romagna,Italy,431.41250,1,1.600,PEER,TS1 TS2,IW4BPO,,0,BrandMeister
-222410,IR4UBK,Montefiore Conca RN,Emilia-Romagna,Italy,430.20000,1,1.600,PEER,TS1 TS2,IZ4ISN,,0,DMR-Italia
-222500,IR5UP,Pisa,Tuscany,Italy,430.60000,1,5.000,Master,TS1 TS2,IW5EDX,,0,IT-DMR-Network
-222501,IK5XMK,Sesto Fiorentino,Tuscany,Italy,430.18750,1,1.600,Peer,TS1 TS2,IK5XMK,,0,DMR-plus
+222410,IR4UBK,Montefiore Conca RN,Emilia-Romagna,Italy,430.20000,1,1.6,PEER,TS1 TS2,IZ4ISN,,0,DMR-plus
+222411,IR4UBW,Monte Falco-Campigna,Emilia-Romagna,Italy,430.91250,1,5.000,PEER,TS1 TS2,IZ4YMS,,0,DMR-plus
+222420,IR4UCK,Nibbiano (PC),Emilia-Romagna,Italy,430.53750,1,5.000,PEER,TS1 TS2,IW4BSG,,0,BrandMeister
+222444,IR4S,Monte Canate,Emilia-Romagna,Italy,430.62500,1,4.413,PEER,TS1 TS2,IW4DAT,,0,BM
+222500,IR5UP,Pisa,Tuscany,Italy,430.57500,1,5.000,Master,TS1 TS2,IW5EDX,,0,BM
+222501,IK5XMK,Sesto Fiorentino,Tuscany,Italy,430.18750,1,1.600,Peer,TS1 TS2,IK5XMK,,0,BM
222502,IK5BNG,Marina di Massa,Tuscany,Italy,430.57500,1,5.000,Peer,TS1 TS2,IK5BNG,,0,BM
222503,IR5UCU,Siena,Tuscany,Italy,430.28750,1,1.600,PEER,TS1 TS2,IW5CWB,,0,None
222504,IR5UCL,Montecarlo,Tuscany,Italy,431.56250,1,1.600,PEER,TS1 TS2,I5NOD,,0,Hytera
-222600,IR6UCU,Silvi,Teramo,Italy,430.33750,1,5.000,Peer,TS1 TS2,IK6PUO,,0,IT-DMR-Network
-222601,IR6UCX,Ortona (CH) - Italy,Abruzzo,Italy,430.23750,1,5.000,PEER,TS1 TS2,IZ6FGP,,0,
-222602,IR6UCD,Monte Pallano (CH),Abruzzo,Italy,430.13750,1,1.600,PEER,TS1 TS2,IZ6FGP,,0,Motorola
+222505,IR5UDK,Monte Cascetto (Lu),Tuscany,Italy,430.62500,1,5.000,PEER,TS1 TS2,I5NOD,,0,BM
+222600,IR6UCU,Silvi,Teramo,Italy,430.33750,1,5.000,Peer,TS1 TS2,IK6PUO,,0,BM
+222601,IR6UCX,Ortona (CH) - Italy,Abruzzo,Italy,430.23750,1,5.000,PEER,TS1 TS2,IZ6FGP,,0,BM
+222602,IR6UCD,Monte Pallano (CH),Abruzzo,Italy,430.13750,1,1.600,PEER,TS1 TS2,IZ6FGP,,0,BM
+222603,IR6UDM,Monte Majelletta,Kansas,Italy,430.38750,1,5.000,PEER,TS1 TS2,IK6TTE,,0,BM
222604,IR6UF,JN62RD,Abruzzo,Italy,430.17500,1,1.600,PEER,TS1 TS2,IK6JDQ,,0,Hytera
-222605,IR6UDA,Monte Palazzolo,,Italy,430.98750,1,5.000,PEER,TS1 TS2,IZ4ISN,,0,DMR-Italia
-222610,IR6UDH,Mt. Majella,Abruzzo,Italy,430.03750,1,5.000,PEER,TS1 TS2,IZ6FGP,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 222 = Italy 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 222 = Italy 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Mario Ranni, IZ6FGP
Email: iz6fgp@gmail.com,1,DMR-MARC
-222611,IR6UDB,Monte Pallano,Abruzzo,Italy,430.35000,1,5.000,PEER,TS1 TS2,IZ6FGP,,0,IT-DMR-Network
-222612,IR6UDE,Mt. la Selva,Abruzzo,Italy,430.35000,1,5.000,PEER,TS1 TS2,IZ6FGP,,0,IT-DMR-Network
-222613,IR6UBA,L Aquila,Abruzzo,Italy,430.06250,1,1.600,Peer,TS1 TS2,IZ6BGQ,,0,IT-DMR Network
+222605,IR6UDA,Monte Palazzolo,,Italy,430.98750,1,5.000,PEER,TS1 TS2,IZ4ISN,,0,DMR-plus
+222606,IR6UDG,Monte Midia,Abruzzo,Italy,431.57500,1,1.600,PEER,TS1 TS2,IZ6UDS,,0,BrandMeister
+222610,IR6UDH,Mt. Majella,Abruzzo,Italy,430.03750,1,5.000,PEER,TS1 TS2,IZ6FGP,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 222 = Italy 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 222 = Italy 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Mario Ranni, IZ6FGP
Email: iz6fgp@gmail.com,1,BM
+222611,IR6UDB,Monte Pallano,Abruzzo,Italy,430.36250,1,5.000,PEER,TS1 TS2,IZ6FGP,,0,BM
+222612,IR6UDE,Mt. la Selva,Abruzzo,Italy,430.35000,2,5.000,PEER,TS1 TS2,IZ6FGP,,0,BM
+222613,IR6UBA,L Aquila,Abruzzo,Italy,430.06250,1,5.000,Peer,TS1 TS2,IZ6BGQ,,0,BM
222614,IR6UBJ,Ortona,Abruzzo,Italy,430.31250,1,5.000,PEER,TS1 TS2,IZ6FGP,,0,IT-DMR-Network
-222615,IR6UDL,VASTO NORD,Abruzzo,Italy,430.06250,1,5.000,PEER,TS1 TS2,IK6TTE,,0,IT-DMR-Network
-222616,IR6UDF,Avezzano,Abruzzo,Italy,430.27500,1,1.600,PEER,TS1 TS2,IZ6UDS,,0,IT-DMR-Network
+222615,IR6UDL,VASTO NORD,Abruzzo,Italy,430.06250,1,5.000,PEER,TS1 TS2,IK6TTE,,0,BM
+222616,IR6UDF,Avezzano,Abruzzo,Italy,430.27500,1,1.600,PEER,TS1 TS2,IZ6UDS,,0,BM
222617,IR6UBJ,Monte Fultrone,Abruzzo,Italy,430.31250,1,5.000,PEER,TS1 TS2,IZ6FGP,,0,BM
+222666,IR6UI,M La Croce,Veneto,Italy,430.95000,1,5.000,PEER,TS1 TS2,IU6DGD,,0,BrandMeister
+222676,IR6UCP,Fano,Marche,Italy,431.43750,1,1.600,PEER,TS1 TS2,IW6BFE,,0,BrandMeister
222677,IR6UJ,Fano,Marche,Italy,431.36250,1,1.600,Peer,TS1 TS2,IW6BFE,,0,None
222698,IR6UCH,M.te Patalecchia,cnty,Italy,430.32500,1,5.000,Peer,TS1 TS2,IW6MKC,,0,BM
222699,IR6UCG,Castel di Sangro AQ,Abruzzo,Italy,430.22500,1,5.000,Peer,TS1 TS2,IW6MKC,,0,BM
-222700,IR7BH,Castelnuovo d Daunia,Puglia,Italy,431.40000,1,1.600,PEER,TS1 TS2,IW7DZR,,0,DMR-plus
-222701,IR7BU,Bari,,Italy,145.58750,1,-0.600,PEER,TS1 TS2,IZ0QWM,,0,DMR-plus
-222702,IR7AZ,Montenero, Foggia,Apulia,Italy,431.53750,1,1.600,PEER,TS1 TS2,IW7DZR,,0,DMR-plus
+222700,IR7BH,Castelnuovo d Daunia,Puglia,Italy,431.40000,1,1.600,PEER,TS1 TS2,IW7DZR,,0,BM
+222701,IR7BU,Bari,,Italy,145.58750,1,-0.600,PEER,TS1 TS2,IZ0QWM,,0,BM
+222702,IR7AZ,Montenero, Foggia,Apulia,Italy,430.42500,1,5.000,PEER,TS1 TS2,IW7DZR,,0,BM
+222710,IR7UBX,BARI,Apulia,Italy,430.00000,1,5.000,PEER,TS1 TS2,IZ7OIX,,0,BrandMeister
222736,IR7UCC,Bari (BA),Puglia,Italy,430.12500,1,5.000,Peer,TS1 TS2,IZ7GLL,,0,DMR-plus
222800,IZ0ZIP,Roccamonfina,Campania,Italy,430.32500,1,5.000,PEER,TS1 TS2,IZ0ZIP,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 222 = Italy 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 222 = Italy 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Luca Grandi, IZZTL
Email: luca@grandisub.com,1,BM
222801,IT9LRZ,Vibo Valenzia,Calabria,Italy,430.96250,1,5.000,PEER,TS1 TS2,IT9LRZ,,0,DMR-Italia
-222802,IC8EWW,Monte Epomeo Ischia,,Italy,430.05000,1,5.000,PEER,TS1 TS2,IC8EWW,,0,DMR-Italia
+222802,IC8EWW,Monte Epomeo Ischia,,Italy,430.05000,1,5.000,PEER,TS1 TS2,IC8EWW,,0,DMR-plus
222803,IU8FCQ,S. Croce Di Magliano,Molise,Italy,430.52500,1,5.000,PEER,TS1 TS2,IU8FCQ,,0,BM
222804,IR8UCV,Capua,Campania,Italy,430.02500,1,5.000,PEER,TS1 TS2,IK8TMD,,0,None
+222805,IR8UAK,Roccamonfina,Campania,Italy,431.33750,1,1.600,PEER,TS1 TS2,IW0CPK,,0,BM
222806,IR8UCE,Monte Virgo,Lazio,Italy,430.28750,1,5.000,PEER,TS1 TS2,IK8AUC,,0,None
-222810,IR8UDB,Monte Patalecchia,Toscana,Italy,435.32500,1,5.000,Peer,TS1 TS2,IZ0ZIP,,0,Motorola
-222877,IZ8QIG,Nusco,Campania,Italy,430.01250,1,5.000,Peer,TS1 TS2,IZ8QIG,,0,DMR-plus
-222899,IR8UCF,Diamante,,Italy,430.25000,1,5.000,PEER,TS1 TS2,IW0BEC,,0,DMR-Italia
-222900,IT9UUT,DEMO/TEST,,Italy,430.98750,1,5.000,PEER,TS1 TS2,IT9UUT,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 222 = Italy 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 222 = Italy 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Salvo Santoro, IT9UUT
Email: salvosantoro@hotmail.com,1,DMR-Italia
+222810,IR8UDB,Monte Patalecchia,Toscana,Italy,430.32500,1,5.000,Peer,TS1 TS2,IZ0ZIP,,0,BM
+222877,IZ8QIG,Nusco,Campania,Italy,430.01250,1,5.000,Peer,TS1 TS2,IZ8QIG,,0,BM
+222899,IR8UCF,Diamante,,Italy,430.25000,1,5.000,PEER,TS1 TS2,IW0BEC,,0,DMR-plus
+222900,IT9UUT,DEMO/TEST,,Italy,430.98750,1,5.000,PEER,TS1 TS2,IT9UUT,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 222 = Italy 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 222 = Italy 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Salvo Santoro, IT9UUT
Email: salvosantoro@hotmail.com,1,DMR-plus
222901,IR9UBO,Catania,Sicily,Italy,430.57500,1,5.000,Master,TS1 TS2,IT9ZON,,0,IT-DMR-Network
222902,IR9UBN,Mt. Etna,Sicily,Italy,430.60000,1,5.000,Peer,TS1 TS2,IT9ZON,,0,IT-DMR-Network
222903,IT9ZON,Catania/DEMO,Sicily,Italy,430.98750,1,5.000,Peer,TS1 TS2,IT9ZON,,0,IT-DMR-Network
-222904,IR9UBV,Ispica,Sicily,Italy,430.96250,1,5.000,PEER,TS1 TS2,IT9UUT,,0,Motorola
+222904,IR9UBV,Ispica,Sicily,Italy,439.92500,1,-9.4,PEER,TS1 TS2,IT9UUT,,0,DMR-plus
222905,IR9UNZ,Cava Giumenta (RG),Sicily,Italy,430.37500,1,5.000,PEER,TS1 TS2,IT9CGN,,0,Hytera
222906,IR9UBT,Mascalucia,Sicily,Italy,430.20000,1,5.000,,,IW9GTR,,0,BrandMeister
+222907,IW9HGZ,Catania,Sicily,Italy,430.22500,1,5.000,PEER,TS1 TS2,I9HGZ,,0,DMR-plus
222916,IR9BR,Siracusa,Sicily,Italy,430.35000,4,5.000,PEER,TS1 TS2,IT9CVO,,0,None
222918,IR9BR,Siracusa,Sicily,Italy,430.30000,4,5.000,Peer,TS1 TS2,IT9CVO,,0,Motorola
222999,IR9UX,Catania,Sicily,Italy,430.25000,1,1.600,PEER,TS1 TS2,IT9CUX,,0,DMR-ITALIA
-226300,YO3D,Bucharest,Bucharest,Romania,438.77500,1,-7.600,Master,TS1,YO3HJV,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 226 = Romnia 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 226 = Romnia 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Coverage Map (http://dmr-marc.net/images/yo3d-coverage.jpg),1,DMR-MARC
+226201,YO2KQT,Dumbravita, Timis,Judeoul Timi,Romania,439.02500,1,-7.600,,,YO2LLQ,,0,BrandMeister
+226300,YO3D,Bucharest,Bucharest,Romania,438.77500,1,-7.600,Master,TS1,YO3HJV,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 226 = Romnia 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 226 = Romnia 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Coverage Map (http://dmr-marc.net/images/yo3d-coverage.jpg),1,DMR-EUROPE
226601,YO6D,Brasov,Braov County,Romania,145.72500,1,-0.600,Peer,TS1 TS2,YO6HEG,,0,Motorola
-226602,YO6OFL,Targu Mures ,Mure County ,Romania ,439.80000,1,-9.4,Peer,TS1 TS2,YO6OFL,,0,BM
-226603,YO6NAM,Tampa,Brasov,Romania,145.72500,1,-0.600,Peer,TS1 TS2,YO6OSC,,0,Hytera
-226901,YO9D,Ploiesti,Prahova,Romania,439.80000,1,-9.400,Master,TS1 TS2,YO3HJV,,0,DMR-EUROPE
-228001,HB9DR,HAM-RADIO,,Switzerland,439.02500,2,-7.6,PEER,TS1 TS2,HB9SDB,,0,DMR-plus
-228101,HB9GE,Geneva/City,Geneva,Switzerland,438.67500,1,-7.600,Peer,TS1 TS2,HB9IBG,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 11 = Worldwide French
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 21 = European French
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1
Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional Lake Geneva French-speaking
Time Slot #2 - Group Call 9 = Local HB9 2
You Must Have [ARS] Disabled Within Your Radio.
Contact: Hipo Tournier, HB9IBG
Email: hb9ge@bluewin.ch,1,DMR-MARC
-228102,HB9GE,Meyrin,,Switzerland,438.55000,1,-7.600,PEER,TS1 TS2,HB9IBG,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 11 = Worldwide French
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 21 = European French
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1
Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional Lake Geneva French-speaking
Time Slot #2 - Group Call 9 = Local HB9 2
You Must Have [ARS] Disabled Within Your Radio.
Contact: Hipo Tournier, HB9IBG
Email: hb9ge@bluewin.ch,1,DMR-MARC
-228103,HB9AE,Lutry,Vaud,Switzerland,439.20000,1,-7.600,Peer,TS1 TS2,HB9DBB,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1
Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional Lake Geneva French-speaking
Time Slot #2 - Group Call 9 = Local HB9 2
You Must Have [ARS] Disabled Within Your Radio.
Contact: Jean Michel Clerc , HB9DBB
Email: HB9DBB@uska.ch,1,DMR-MARC
+226602,YO6OFL,Targu Mures,Mure County,Romania,439.80000,1,-9.400,Peer,TS1 TS2,YO6OFL,,0,BM
+226603,YO6NAM,Tampa,Brasov,Romania,145.72500,1,-0.600,Peer,TS1 TS2,YO6OSC,,0,BM
+226901,YO9D,Ploiesti,Prahova,Romania,439.80000,1,-9.400,Master,TS1 TS2,YO3HJV,,0,BM
+228001,HB9DR,HAM-RADIO,,Switzerland,438.22500,2,-7.600,PEER,TS1 TS2,HB9SDB,,0,BM
+228101,HB9GE,Geneva/City,Geneva,Switzerland,438.67500,1,-7.600,Peer,TS1 TS2,HB9IBG,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 11 = Worldwide French
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 21 = European French
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1
Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional Lake Geneva French-speaking
Time Slot #2 - Group Call 9 = Local HB9 2
You Must Have [ARS] Disabled Within Your Radio.
Contact: Hipo Tournier, HB9IBG
Email: hb9ge@bluewin.ch,1,BM
+228102,HB9GE,Meyrin,,Switzerland,438.55000,1,-7.600,PEER,TS1 TS2,HB9IBG,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 11 = Worldwide French
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 21 = European French
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1
Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional Lake Geneva French-speaking
Time Slot #2 - Group Call 9 = Local HB9 2
You Must Have [ARS] Disabled Within Your Radio.
Contact: Hipo Tournier, HB9IBG
Email: hb9ge@bluewin.ch,1,BM
+228103,HB9AE,Lutry,Vaud,Switzerland,439.20000,1,-7.600,Peer,TS1 TS2,HB9DBB,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1
Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional Lake Geneva French-speaking
Time Slot #2 - Group Call 9 = Local HB9 2
You Must Have [ARS] Disabled Within Your Radio.
Contact: Jean Michel Clerc , HB9DBB
Email: HB9DBB@uska.ch,1,BM
228104,HB9RD,Châtonnaye,Westschweiz-Sud,Switzerland,438.56250,1,-7.600,PEER,TS1 TS2,HB9PCF,,0,SwissDMR
-228105,HB9RAR,Morlon,,Switzerland,438.73750,1,-7.6,PEER,TS1 TS2,HB9HFF,,0,DMR-plus
+228105,HB9RAR,Morlon,,Switzerland,438.73750,1,-7.600,PEER,TS1 TS2,HB9HFF,,0,DMR-plus
228106,HB9PE,Pays-d Enhaut VD,,Switzerland,438.66250,2,-7.600,PEER,TS1 TS2,HB9FMF,,0,DMR-plus
228107,HB9PE,Pays-d Enhaut VD,Westschweiz-Sud,Switzerland,145.78750,5,-0.6,PEER,TS1 TS2,HB9FMF,,0,DMR-plus
228108,HB9RD,Chatonnaye,Westschweiz-Sud,Switzerland,145.58750,1,-0.600,PEER,TS1 TS2,HB9PCF,,0,SwissDMR
228109,HB9IAC,La Barillette 1520 M,Westschweiz-Sud,Switzerland,438.10000,1,-7.600,PEER,TS1 TS2,HB9DRX,,0,Motorola
-228110,HB9IAP,La Barillette,Westschweiz-Sud,Switzerland,438.25000,1,-7.600,PEER,TS1 TS2,HB9DRX,,0,SwissDMR
-228111,HB9VSD,Verbier / VS,Westschweiz-Sud,Switzerland,439.53750,2,-7.6,PEER,TS1 TS2,HB3YRB,,0,DMR-plus
-228112,HB9RD,Chatonnaye,Westschweiz-Sud,Switzerland,438.66250,1,-7.6,PEER,TS1 TS2,HB9PCF,,0,DMR-plus
+228110,HB9IAP,La Barillette,Westschweiz-Sud,Switzerland,438.25000,1,-7.600,PEER,TS1 TS2,HB9DRX,,0,BM
+228111,HB9VSD,Verbier / VS,Westschweiz-Sud,Switzerland,439.53750,2,-7.600,PEER,TS1 TS2,HB3YRB,,0,BM
+228112,HB9RD,Chatonnaye,Westschweiz-Sud,Switzerland,438.66250,1,-7.600,PEER,TS1 TS2,HB9PCF,,0,BM
228113,HB9PE,Pays-d Enhaut VD,Westschweiz-Sud,Switzerland,439.66250,1,-7.600,PEER,TS1 TS2,HB9FMF,,0,BM
228114,HB9RAR,Morlon,Westschweiz-Sud,Switzerland,438.73750,1,-7.600,PEER,TS1 TS2,HB9HFF,,0,Motorola
228115,HB9PE,Pays-d Enhaut VD,Westschweiz-Sud,Switzerland,438.23750,4,-7.600,PEER,TS1 TS2,HB9FMF,,0,Motorola
228116,HB9RD,Chatonnaye,Westschweiz-Sud,Switzerland,438.66250,1,-7.600,PEER,TS1 TS2,HB9PCF,,0,DMR-plus
228117,HB9GE,Genve,Westschweiz-Sud,Switzerland,438.55000,1,7.600,PEER,TS1 TS2,HB9IBG,,0,DMR-plus
-228118,HB4FL,AIGUILLE,Westschweiz-Sud,Switzerland,439.25000,1,-7.600,Peer,TS1 TS2,HB9ADJ,,0,Motorola
+228118,HB4FL,AIGUILLE,Westschweiz-Sud,Switzerland,439.25000,2,-7.600,Peer,TS1 TS2,HB9ADJ,,0,BM
228119,HB9PE,Pays-d Enhaut VD,Westschweiz-Sud,Switzerland,438.66250,2,-7.600,PEER,TS1 TS2,HB9FMF,,0,Motorola
228120,HB9PE,Pays-d Enhaut VD,Westschweiz-Sud,Switzerland,438.66250,2,-7.600,PEER,TS1 TS2,HB9FMF,,0,Motorola
-228300,HB9BO,Interlaken,Bern,Switzerland,439.56250,1,-7.600,Master,TS1 TS2,HB9DUU,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1
Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional
German-speaking
Time Slot #2 - Group Call 9 = Local HB9 2
You Must Have [ARS] Disabled Within Your Radio.
Contact: Christian, HB9DUU
Email: hb9duu@gmx.net,1,DMR-MARC
-228301,HB9F,Brienzer-Rothorn,Bern,Switzerland,439.50000,1,-7.600,Peer,TS1 TS2,HB9DUU,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1
Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional
German-speaking
Time Slot #2 - Group Call 9 = Local HB9 2
You Must Have [ARS] Disabled Within Your Radio.
Contact: Christian, HB9DUU
Email: hb9duu@gmx.net,1,DMR-MARC
-228302,HB9F,Schilth./Piz Gloria,Bern und Oberwallis,Switzerland,438.21250,1,-7.600,PEER,TS1 TS2,HB9DUU,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1
Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional
German-speaking
Time Slot #2 - Group Call 9 = Local HB9 2
You Must Have [ARS] Disabled Within Your Radio.
Contact: Christian, HB9DUU
Email: hb9duu@gmx.net,1,DMR-MARC
-228303,HB9BO,Brienzer-Rothorn,Bern,Switzerland,145.61250,1,-0.600,Peer,TS1 TS2,HB9DUU,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1
Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional German-speaking
Time Slot #2 - Group Call 9 = Local HB9 2
You Must Have [ARS] Disabled Within Your Radio.
Contact: Christian, HB9DUU
Email: hb9duu@gmx.net,1,DMR-MARC
-228304,HB9BO,Interlaken,,Switzerland,145.68750,1,-0.600,Peer,TS1 TS2,HB9DUU,,0,SwissDMR
-228305,HB9F,Bern-City,Bern und Oberwallis,Switzerland,438.58750,1,-7.600,PEER,TS1 TS2,HB9DUU,,0,SwissDMR
+228121,HB9VSD,Verbier,Westschweiz-Sud,Switzerland,438.56250,2,-7.6,,,HB3YRB,,0,DMR-plus
+228122,HB9MM,Les Pliades/Blonay,Westschweiz-Sud,Switzerland,439.56250,1,-7.600,,,HB9MBP,,0,BM
+228123,HB9PE,Pays-d Enhaut VD,Westschweiz-Sud,Switzerland,439.66250,1,-7.600,,,HB9FMF,,0,BM
+228124,HB4FL,LA BERNEUSE,Westschweiz-Sud,Switzerland,439.57500,2,-7.600,,,HB9ADJ,,0,BM
+228125,HB9VD,Le Chasseron,Westschweiz-Sud,Switzerland,145.73750,1,-0.600,,,HB9TJU,,0,BM
+228300,HB9BO,Interlaken,Bern,Switzerland,439.56250,1,-7.600,Master,TS1 TS2,HB9DUU,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1
Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional
German-speaking
Time Slot #2 - Group Call 9 = Local HB9 2
You Must Have [ARS] Disabled Within Your Radio.
Contact: Christian, HB9DUU
Email: hb9duu@gmx.net,1,SwissDMR
+228301,HB9F,Brienzer-Rothorn,Bern,Switzerland,0.00000,1,0.000,Peer,TS1 TS2,HB9DUU,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1
Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional
German-speaking
Time Slot #2 - Group Call 9 = Local HB9 2
You Must Have [ARS] Disabled Within Your Radio.
Contact: Christian, HB9DUU
Email: hb9duu@gmx.net,1,BM
+228302,HB9F,Schilth./Piz Gloria,Bern und Oberwallis,Switzerland,438.21250,1,-7.600,PEER,TS1 TS2,HB9DUU,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1
Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional
German-speaking
Time Slot #2 - Group Call 9 = Local HB9 2
You Must Have [ARS] Disabled Within Your Radio.
Contact: Christian, HB9DUU
Email: hb9duu@gmx.net,1,BM
+228303,HB9BO,Brienzer-Rothorn,Bern,Switzerland,145.61250,1,-0.600,Peer,TS1 TS2,HB9DUU,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1
Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional German-speaking
Time Slot #2 - Group Call 9 = Local HB9 2
You Must Have [ARS] Disabled Within Your Radio.
Contact: Christian, HB9DUU
Email: hb9duu@gmx.net,1,SwissDMR
+228304,HB9BO,Interlaken,,Switzerland,145.68750,2,-0.600,Peer,TS1 TS2,HB9DUU,,0,BM
+228305,HB9F,Bern-City,Bern und Oberwallis,Switzerland,438.58750,1,-7.600,PEER,TS1 TS2,HB9DUU,,0,BM
228306,HB9BG,Belp (BE),Bern und Oberwallis,Switzerland,438.23750,1,-7.600,PEER,TS1 TS2,HB9DTZ,,0,DMR-plus
228307,HB9BG,Falkenfluh (BE),Bern und Oberwallis,Switzerland,438.32500,1,-7.600,PEER,TS1 TS2,HB9DTZ,,0,DMR-plus
228308,HB9AK,Landstuhl / BE,Bern und Oberwallis,Switzerland,438.30000,1,-7.6,PEER,TS1 TS2,HB9RNS,,0,DMR-plus
228309,HB9F,Test / Entwicklung,Bern und Oberwallis,Switzerland,439.15000,1,-7.600,Peer,TS1 TS2,HB9DUU,,0,BM
-228310,HB9DC,Muenster VS,Bern und Oberwallis,Switzerland,439.07500,3,-7.600,PEER,TS1 TS2,HB9DRX,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1
Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional
German-speaking
Time Slot #2 - Group Call 9 = Local HB9 2
You Must Have [ARS] Disabled Within Your Radio.
Contact: Nick, HB9DRX
Email: sysop@hb9dc.ch (https://3c.web.de/mail/client/mail/mailto;jsessionid=CA4A7F9CA7C3416A0B0BA4ACBE8A6843-n3.bs51a?to=sysop%40hb9dc.ch&selection=tfol11a5e69aed60d300),1,DMR-MARC
+228310,HB9DC,Muenster VS,Bern und Oberwallis,Switzerland,438.57500,5,-7.600,PEER,TS1 TS2,HB9DRX,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1
Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional
German-speaking
Time Slot #2 - Group Call 9 = Local HB9 2
You Must Have [ARS] Disabled Within Your Radio.
Contact: Nick, HB9DRX
Email: sysop@hb9dc.ch (https://3c.web.de/mail/client/mail/mailto;jsessionid=CA4A7F9CA7C3416A0B0BA4ACBE8A6843-n3.bs51a?to=sysop%40hb9dc.ch&selection=tfol11a5e69aed60d300),1,BM
228311,HB9F,Bern-Wankdorf,Bern und Oberwallis,Switzerland,145.68750,1,-0.600,Peer,TS1 TS2,HB9DUU,,0,BM
-228313,HB9Y,Moosalp ,Bern und Oberwallis ,Switzerland ,439.57500,3,-7.600,Peer,TS1 TS2,HB9UQC,,0,BM
-228314,HB9Y,Cry dErr ,Bern und Oberwallis ,Switzerland ,439.45000,3,-7.600,Peer,TS1 TS2,HB9UQC,,0,BM
-228315,HB9Y,Zermatt ,Bern und Oberwallis ,Switzerland ,439.45000,3,-7.600,Peer,TS1 TS2,HB9UQC,,0,BM
-228391,HB9BO,Niesen,Bern und Oberwallis,Switzerland,439.41250,1,-7.6,PEER,TS1 TS2,HB9DUU,,0,DMR-plus
-228402,HB9BA,Weissenstein,Basel,Switzerland,438.22500,1,-7.600,Peer,TS1 TS2,HB9FND,,0,SwissDMR
-228403,HB9FX,Oftringen,Basel/Solothurn,Switzerland,439.15000,1,-7.600,PEER,TS1 TS2,HB9BHU,,0,BRANDMEISTER
-228404,HB9DM,Murenberg,Basel/Solothurn,Switzerland,438.43750,1,-7.600,PEER,TS1 TS2,HB9FEF,,0,SwissDMR
+228312,HB9BO,Niesen,Bern und Oberwallis,Switzerland,439.41250,2,-7.600,,,HB9DUU,,0,BM
+228313,HB9Y,Moosalp,Bern und Oberwallis,Switzerland,439.57500,3,-7.600,Peer,TS1 TS2,HB9UQC,,0,BM
+228314,HB9Y,Cry dErr,Bern und Oberwallis,Switzerland,439.45000,3,-7.600,Peer,TS1 TS2,HB9UQC,,0,BM
+228315,HB9Y,Zermatt,Bern und Oberwallis,Switzerland,439.50000,3,-7.600,Peer,TS1 TS2,HB9UQC,,0,BM
+228316,HB9Y,Oberwald,Bern und Oberwallis,Switzerland,439.47500,3,-7.400,,,HB9UQC,,0,BrandMeister
+228391,HB9BO,Niesen,Bern und Oberwallis,Switzerland,439.41250,1,-7.600,PEER,TS1 TS2,HB9DUU,,0,DMR-plus
+228401,HB9EAS,Bruderholz,Basel/Solothurn,Switzerland,438.57500,1,-7.600,,,HB9EXT,,0,BM
+228402,HB9BA,Weissenstein,Basel,Switzerland,438.22500,1,-7.600,Peer,TS1 TS2,HB9FND,,0,BM
+228403,HB9FX,Oftringen,Basel/Solothurn,Switzerland,439.15000,1,-7.600,PEER,TS1 TS2,HB9BHU,,0,BM
+228404,HB9DM,Murenberg,Basel/Solothurn,Switzerland,438.43750,1,-7.600,PEER,TS1 TS2,HB9FEF,,0,BM
228405,HB9CSR,Basel / BS,Basel/Solothurn,Switzerland,438.55000,1,-7.6,PEER,TS1 TS2,HB9TVW,,0,DMR-plus
-228406,HB9EAS,Pfeffingen,Basel/Solothurn,Switzerland,438.35000,1,-7.600,PEER,TS1 TS2,HB9TQJ,,0,BrandMeister
+228406,HB9EAS,Pfeffingen,Basel/Solothurn,Switzerland,438.35000,1,-7.600,PEER,TS1 TS2,HB9TQJ,,0,BM
228407,HB9DR,Langendorf / SO,Basel/Solothurn,Switzerland,438.50000,3,-7.6,PEER,TS1 TS2,HB9SDB,,0,DMR-plus
228408,HB9NFB,Reinach (BL),Basel/Solothurn,Switzerland,438.37500,1,-7.600,Peer,TS1 TS2,HB9FWC,,0,None
228409,HB9DM,Langenbruck,Basel/Solothurn,Switzerland,438.38750,1,-7.600,Peer,TS1 TS2,HB9FEF,,0,BM
228501,HB9DR,Wohlen / AG,Aargau,Switzerland,438.20000,1,-7.6,PEER,TS1 TS2,HB9DQY,,0,DMR-plus
-228601,HB9DD,Mt. Generoso,Zentralschweiz und T,Switzerland,438.48750,1,-7.600,PEER,TS1 TS2,HB9ODP,,0,IT-DMR-Network
-228602,HB9DD,Mt. Tamaro,Zentralschweiz und T,Switzerland,438.46250,1,-7.600,PEER,TS1 TS2,HB9ODP,,0,IT-DMR-Network
-228604,HB9DD,V. Scura-Biasca,Zentralschweiz und T,Switzerland,438.43750,1,-7.600,PEER,TS1 TS2,HB9ODP,,0,IT-DMR-Network
-228605,HB9DD,Castel San Pietro,Zentralschweiz und T,Switzerland,439.87500,1,-9.400,PEER,TS1 TS2,HB9ODP,,0,IT-DMR-Network
-228607,HB9DD,San Bernardino,Zentralschweiz und T,Switzerland,439.30000,1,-7.600,PEER,TS1 TS2,HB9ODP,,0,IT-DMR-Network
-228608,HB9RF,Rigi-Scheidegg / SZ,Zentralschweiz und Tessin,Switzerland,439.53750,1,-7.6,PEER,TS1 TS2,HB9SDB,,0,DMR+
-228609,HB9DD,Mendrisio - Test,Zentralschweiz und T,Switzerland,438.51250,1,-7.600,Peer,TS1 TS2,HB9ODP,,0,Motorola
-228610,HB9DD,Capanna Cimetta,Zentralschweiz und T,Switzerland,438.51250,1,-7.600,Peer,TS1 TS2,HB9ODP,,0,Motorola
+228601,HB9DD,Mt. Generoso,Zentralschweiz und T,Switzerland,438.48750,1,-7.600,PEER,TS1 TS2,HB9ODP,,0,BM
+228602,HB9DD,Mt. Tamaro,Zentralschweiz und T,Switzerland,438.46250,1,-7.600,PEER,TS1 TS2,HB9ODP,,0,BM
+228603,HB9DD,Airolo,Zentralschweiz und T,Switzerland,438.48750,1,-7.600,,,HB9ODP,,0,BM
+228604,HB9DD,V. Scura-Biasca,Zentralschweiz und T,Switzerland,438.43750,1,-7.600,PEER,TS1 TS2,HB9ODP,,0,BM
+228605,HB9DD,Castel San Pietro,Zentralschweiz und T,Switzerland,438.43750,1,-7.600,PEER,TS1 TS2,HB9ODP,,0,BM
+228607,HB9DD,San Bernardino,Zentralschweiz und T,Switzerland,438.51250,1,-7.600,PEER,TS1 TS2,HB9ODP,,0,BM
+228608,HB9RF,Rigi-Scheidegg / SZ,Zentralschweiz und T,Switzerland,439.53750,1,-7.6,PEER,TS1 TS2,HB9SDB,,0,DMR-plus
+228609,HB9DD,Mendrisio - Test,Zentralschweiz und T,Switzerland,0.00000,1,0.000,Peer,TS1 TS2,HB9ODP,,0,BM
+228610,HB9DD,Capanna Cimetta,Zentralschweiz und T,Switzerland,438.51250,1,-7.600,Peer,TS1 TS2,HB9ODP,,0,BM
228611,HB9RL,Avegno (Cimetta),Zentralschweiz und T,Switzerland,438.77500,1,-7.600,Peer,TS1 TS2,HB9TUO,,0,None
228612,HB9CF,Gotthard / UR,Zentralschweiz und T,Switzerland,438.22500,3,-7.6,PEER,TS1 TS2,HB9SDB,,0,DMR-plus
228693,HB9DS,Grosswangen / LU,Zentralschweiz und T,Switzerland,439.51250,1,-7.6,PEER,TS1 TS2,HB9TRT,,0,DMR-plus
-228701,HB9DD-6,Poschiavo / GR,Graubuenden,Switzerland,438.48750,1,-7.6,PEER,TS1 TS2,HB9FPO,,0,DMR-plus
+228701,HB9DD,Poschiavo / GR,Graubuenden,Switzerland,438.48750,1,-7.6,PEER,TS1 TS2,HB9FPO,,0,DMR-plus
228702,HB9HAI,Weissfluh GR,Graubuenden,Switzerland,439.47500,7,-7.600,Peer,TS1 TS2,HB9DRX,,0,Motorola
228703,HB9DR,Chur / GR,Graubuenden,Switzerland,438.26250,1,-7.6,PEER,TS1 TS2,HB9SDB,,0,DMR-plus
228704,HB9OK,Viano / GR,Graubuenden,Switzerland,439.56250,1,-7.6,PEER,TS1 TS2,HB9FPO,,0,DMR-plus
-228706,HB9DR-8,Hinterrhein / GR,Graubuenden,Switzerland,439.56250,2,-7.6,PEER,TS1 TS2,HB9SDB,,0,DMR-plus
-228801,HB9DC,Lake of Zuerich,,Switzerland,439.07500,5,-7.600,PEER,TS1 TS2,HB9DRX,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1
Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional
German-speaking
Time Slot #2 - Group Call 9 = Local HB9 2
You Must Have [ARS] Disabled Within Your Radio.
Contact: Nick, HB9DRX
Email: sysop@hb9dc.ch (https://3c.web.de/mail/client/mail/mailto;jsessionid=CA4A7F9CA7C3416A0B0BA4ACBE8A6843-n3.bs51a?to=sysop%40hb9dc.ch&selection=tfol11a5e69aed60d300),1,DMR-MARC - Lake of Zuerich - Switzerland
-228802,HB9DC,Test/Entwicklung,Zuerich und Thurgau,Switzerland,439.10000,5,-7.600,PEER,TS1 TS2,HB9DRX,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1
Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional
German-speaking
Time Slot #2 - Group Call 9 = Local HB9 2
You Must Have [ARS] Disabled Within Your Radio.
Contact: Nick, HB9DRX
Email: sysop@hb9dc.ch (https://3c.web.de/mail/client/mail/mailto;jsessionid=CA4A7F9CA7C3416A0B0BA4ACBE8A6843-n3.bs51a?to=sysop%40hb9dc.ch&selection=tfol11a5e69aed60d300),1,DMR-MARC
-228803,HB9DC,Zuerichsee / Test,Zuerich und Thurgau,Switzerland,438.57500,5,-7.600,PEER,TS1 TS2,HB9DRX,,0,SwissDMR
-228804,HB9SP,Zuerich/City,,Switzerland,439.00000,5,-7.600,PEER,TS1 TS2,HB9DRX,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1
Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional
German-speaking
Time Slot #2 - Group Call 9 = Local HB9 2
You Must Have [ARS] Disabled Within Your Radio.
Contact: Dany, HB9ZIC
Email: hb9zic@uska.ch,1,DMR-MARC
+228706,HB9DR,Hinterrhein / GR,Graubuenden,Switzerland,439.56250,2,-7.6,PEER,TS1 TS2,HB9SDB,,0,DMR-plus
+228801,HB9DC,Lake of Zuerich,,Switzerland,439.07500,5,-7.600,PEER,TS1 TS2,HB9DRX,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1
Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional
German-speaking
Time Slot #2 - Group Call 9 = Local HB9 2
You Must Have [ARS] Disabled Within Your Radio.
Contact: Nick, HB9DRX
Email: sysop@hb9dc.ch (https://3c.web.de/mail/client/mail/mailto;jsessionid=CA4A7F9CA7C3416A0B0BA4ACBE8A6843-n3.bs51a?to=sysop%40hb9dc.ch&selection=tfol11a5e69aed60d300),1,SwissDMR
+228802,HB9DC,Test/Entwicklung,Zuerich und Thurgau,Switzerland,438.33750,5,-7.600,PEER,TS1 TS2,HB9DRX,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1
Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional
German-speaking
Time Slot #2 - Group Call 9 = Local HB9 2
You Must Have [ARS] Disabled Within Your Radio.
Contact: Nick, HB9DRX
Email: sysop@hb9dc.ch (https://3c.web.de/mail/client/mail/mailto;jsessionid=CA4A7F9CA7C3416A0B0BA4ACBE8A6843-n3.bs51a?to=sysop%40hb9dc.ch&selection=tfol11a5e69aed60d300),1,BM
+228803,HB9DC,Zuerichsee / Test,Zuerich und Thurgau,Switzerland,438.57500,5,-7.600,PEER,TS1 TS2,HB9DRX,,0,BM
+228804,HB9SP,Zuerich/City,,Switzerland,439.00000,5,-7.600,PEER,TS1 TS2,HB9DRX,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 228 = Switzerland 1
Time Slot #1 - Group Call 9 = Local HB9 1
Time Slot #2 - Group Call 228 = Switzerland 2
Time Slot #2 - Group Call 8 = Regional
German-speaking
Time Slot #2 - Group Call 9 = Local HB9 2
You Must Have [ARS] Disabled Within Your Radio.
Contact: Dany, HB9ZIC
Email: hb9zic@uska.ch,1,SwissDMR
228805,HB9DR,Immenberg / TG,Zuerich und Thurgau,Switzerland,439.43750,1,-7.6,PEER,TS1 TS2,HB9EIY,,0,DMR-plus
228806,HB9DC,Limmernsee GL,Zuerich und Thurgau,Switzerland,145.68750,5,-0.600,PEER,TS1 TS2,HB9DRX,,0,SwissDMR
228807,HB9ZF,Bachtel / ZH,Zuerich und Thurgau,Switzerland,439.10000,1,-7.6,PEER,TS1 TS2,HB9MNP,,0,DMR-plus
-228808,HB9DC,Maennedorf ZH,Zuerich und Thurgau,Switzerland,438.57500,1,-7.600,PEER,TS1 TS2,HB9DRX,,0,DMR-plus
+228808,HB9DC,Maennedorf ZH,Zuerich und Thurgau,Switzerland,438.48750,5,-7.600,PEER,TS1 TS2,HB9DRX,,0,BM
228809,HB9AK,Hoernli / ZH,Zuerich und Thurgau,Switzerland,438.60000,1,-7.6,PEER,TS1 TS2,HB9PAE,,0,DMR-plus
228810,HB9DR,Sulgen / TG,Zuerich und Thurgau,Switzerland,439.57500,1,-7.6,PEER,TS1 TS2,HB9KOQ,,0,DMR-plus
228811,HB9ZF,Uetliberg / ZH,Zuerich und Thurgau,Switzerland,438.26250,2,-7.6,PEER,TS1 TS2,HB9MNP,,0,DMR-plus
-228812,HB9SP,Siblinger Randen ,Zuerich und Thurgau ,Switzerland ,438.46250,5,-7.600,Peer,TS1 TS2,HB9DRX,,0,Motorola
+228812,HB9SP,Siblinger Randen,Zuerich und Thurgau,Switzerland,438.46250,5,-7.600,Peer,TS1 TS2,HB9DRX,,0,Motorola
228891,HB9DR,Waedenswil / ZH,,Switzerland,438.50000,2,-7.6,PEER,TS1 TS2,HB9SDB,,0,DMR-plus
228892,HB9DR,IT-DMR,,Switzerland,439.48750,1,-7.6,PEER,TS1 TS2,HB9SDB,,0,IPSC
228893,HB9DR,FR-DMR,Zuerich und Thurgau,Switzerland,439.92500,1,-9.4,PEER,TS1 TS2,HB9SDB,,0,IPSC
228901,HB9DR,St.Gallen-City / SG,Ostschweiz,Switzerland,438.22500,2,-7.6,PEER,TS1 TS2,HB9ASF,,0,DMR-plus
230101,OK0DBY,Praha 6,Hlavni mesto Praha,Czech Republic,439.32500,1,-7.600,Peer,TS1 TS2,OK1MDX,,0,Hytera
230110,OK0DRB,Plavec, Jesenice,Central Bohemian Reg,Czech Republic,439.48750,1,-7.600,Peer,TS1 TS2,OK7RB,,0,BrandMeister
-230199,OK0OMX,Praha,ustu nad Labem Regio,Czech Republic,439.52500,1,-7.6,PEER,TS1 TS2,OK1MX,,0,DMR-plus
-230401,OK0BCA,Lisci Hora,Kralovehradecki,Czech Republic,438.87500,1,-7.6,Peer,TS1 TS2,OK1MX,,0,DMR-plus
+230199,OK0OMX,Praha,ustu nad Labem Regio,Czech Republic,439.52500,1,-7.600,PEER,TS1 TS2,OK1MX,,0,BM
+230401,OK0BCA,Lisci Hora,Kralovehradecki,Czech Republic,438.87500,1,-7.600,Peer,TS1 TS2,OK1MX,,0,BM
230403,OK0DAS,Snezka - Krkonose,Kralovehradecki,Czech Republic,438.30000,1,-7.600,PEER,TS1 TS2,OK2JIB,,0,Hytera
-230501,OK0Q,Zandov,Liberec Region,Czech Republic,439.37500,1,-7.600,Peer,TS1 TS2,OK1FWG,,0,Motorola
+230501,OK0Q,Zandov,Liberec Region,Czech Republic,439.37500,1,-7.600,Peer,TS1 TS2,OK1FWG,,0,BM
230510,OK0BS,Pardubice,Pardubice Region,Czech Republic,438.75000,1,-7.600,Peer,TS1 TS2,OK1FWG,,0,Motorola
-230555,OK0DBF,Suchy vrch,Pardubicky,Czech Republic,438.35000,1,-7.600,Peer,TS1 TS2,OK2JIB,,0,Hytera
-230601,OK0Z,Kelcsky Javornik,Zlinsky,Czech Republic,439.40000,1,-7.6,PEER,TS1 TS2,OK4PS,,0,Hytera
-230602,OK0KOP,Kopanky,Zlin Region,Czech Republic,439.52500,1,-7.6,PEER,TS1 TS2,OK4PS,,0,DMR-plus
-230603,OK0CHB,Kostelany,Zlin Region,Czech Republic,439.15000,1,-7.600,Peer,TS1 TS2,OK4PS,,0,Hytera
+230555,OK0DBF,Suchy vrch,Pardubicky,Czech Republic,438.35000,1,-7.600,Peer,TS1 TS2,OK2JIB,,0,BM
+230586,OK0BAJ,Jihlava,Vysocina Region,Czech Republic,439.32500,1,-7.600,,,OK2CNI,,0,None
+230601,OK0Z,Kelcsky Javornik,Zlinsky,Czech Republic,439.50000,1,-7.600,PEER,TS1 TS2,OK4PS,,0,BM
+230602,OK0KOP,Kopanky,Zlin Region,Czech Republic,439.52500,1,-7.600,PEER,TS1 TS2,OK4PS,,0,BM
+230603,OK0CHB,Kostelany,Zlin Region,Czech Republic,438.27500,1,-7.600,Peer,TS1 TS2,OK4PS,,0,BM
230604,OK0TST,Rozhledna Dripek,Jihomoravsky,Czech Republic,439.32500,4,-7.600,Peer,TS1 TS2,OK7JHD,,0,Motorola
-230605,OK0OZL,Zlin ,Zlinsky ,Czech Republic ,438.72500,1,-7.600,Peer,TS1 TS2,OK2VQO,,0,BrandMeister
-230701,OK0PVD,Drahany,Olomouc Region,Czech Republic,439.22500,1,-7.6,Peer,TS1 TS2,OK4PS,,0,BM
-230777,OK0X,Praded - Jeseniky,Olomouc Region,Czech Republic,439.35000,1,-7.600,Peer,TS1 TS2,OK2JIB,,0,Hytera
-231301,OM0OAA,Zilina, Hradisko,Zilinsky,Slovakia,438.62500,1,-7.6,PEER,TS1 TS2,OM6AXE,,0,DMR-plus
+230605,OK0OZL,Zlin,Zlinsky,Czech Republic,438.72500,1,-7.600,Peer,TS1 TS2,OK2VQO,,0,BrandMeister
+230666,OK0DIT,Lesni Hluboke,South Moravian Regio,Czech Republic,438.63750,1,-7.600,,,OK2IT,,0,BrandMeister
+230701,OK0PVD,Drahany,Olomouc Region,Czech Republic,439.22500,1,-7.600,Peer,TS1 TS2,OK4PS,,0,DMR-plus
+230702,OK0DSK,Ostrava-Kubankov,Moravian-Silesian Re,Czech Republic,438.23750,1,-7.600,,,OK2ULQ,,0,Hytera
+230703,OK0DSJ,Velky Javornik,South Moravian Regio,Czech Republic,438.62500,1,-7.600,,,OK2ULQ,,0,BM
+230777,OK0X,Praded - Jeseniky,Olomouc Region,Czech Republic,439.35000,1,-7.600,Peer,TS1 TS2,OK2JIB,,0,BM
+231111,OM0ODB,Bratislava,Bratislavsky,Slovakia,438.32500,1,-7.600,,,OM1AEG,,0,BrandMeister
+231301,OM0OAA,Zilina, Hradisko,Zilinsky,Slovakia,438.62500,1,-7.600,PEER,TS1 TS2,OM6AXE,,0,DMR-plus
+231302,OM0OUA,Martin - Velka Luka,cnty,Slovakia,439.12500,1,-7.600,,,OM6AR,,0,BM
+231303,OM0ODC,Chopok,Zilinsky,Slovakia,438.51250,1,-7.600,,,OM3WIM,,0,BrandMeister
+231401,OM0ODM,Kosice,,Slovakia,438.22500,1,-7.600,PEER,TS1 TS2,OM8AKX,,0,
+231402,OM0OUK,Kojsovska hola,Kosicky,Slovakia,439.05000,1,-7.600,,,OM8KT,,0,BrandMeister
231403,OM0OUE,Kosice,Kosicky,Slovakia,439.15000,1,7.600,Peer,TS1 TS2,OM8KT,,0,None
+231404,OM0ODP,Strbske Pleso,Preiov Region,Slovakia,438.27500,1,-7.600,,,OM3WIM,,0,BM
232069,OE0XMP,Wien,- exterritorial -,Oesterreich/Austria,438.50000,1,-7.600,PEER,TS1 TS2,OE1KBC,,0,DMR-plus
-232100,OE1XAR,Wien/Bisamberg,Wien,Oesterreich/Austria,438.50000,1,-7.6,PEER,TS1 TS2,OE1KBC,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria
You Must Have [ARS] Disabled Within Your Radio.
Coverage Map (http://wiki.oevsv.at/images/8/80/DMR-footprint_oe1xar_Bisamberg.jpg),1,DMR-MARC
-232101,OE3XDB,Bad Voeslau/Harzberg,Niederoesterreich,Austria,438.47500,1,-7.6,PEER,TS1 TS2,OE3DNW,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria
You Must Have [ARS] Disabled Within Your Radio.
Coverage Map (http://wiki.oevsv.at/images/6/6f/DMR-footprint_oe3xdb_Harzberg.jpg),1,DMR-MARC
-232102,OE1XQU,Wien/Wienerberg,Wien,Oesterreich/Austria,438.82500,1,-7.6,PEER,TS1 TS2,OE1KBC,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria
You Must Have [ARS] Disabled Within Your Radio.
Coverage Map (http://wiki.oevsv.at/images/8/8e/DMR-footprint_oe1xqu_Wienerberg.jpg),1,DMR-MARC- Wienerberg
-232103,OE3XWU,Hochwechsel,Niederoesterreich,Austria,439.07500,1,-7.600,Peer,TS1 TS2,OE4KMU,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria
You Must Have [ARS] Disabled Within Your Radio.
Coverage Map (http://wiki.oevsv.at/images/f/fa/DMR-footprint_oe3xwu_Hochwechsel.jpg),1,DMR-MARC- Hochwechsel
-232104,OE3XQA,Exelberg,,Oesterreich/Austria,438.67500,1,-7.6,PEER,TS1 TS2,OE1KBC,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria
You Must Have [ARS] Disabled Within Your Radio.
Coverage Map (http://wiki.oevsv.at/images/6/68/DMR-footprint_oe3xqa_Exelberg.jpg),1,DMR-MARC
-232108,OE8XKK,Pyramidenkogel,Kaernten,Oesterreich/Austria,438.60000,1,-7.6,PEER,TS1 TS2,OE8HJK,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria
You Must Have [ARS] Disabled Within Your Radio.
Coverage Map (http://wiki.oevsv.at/images/6/6f/DMR-footprint_oe8xkk_Pyramidenkogel.jpg),1,DMR-MARC
+232100,OE1XAR,Wien/Bisamberg,Wien,Oesterreich/Austria,438.50000,1,-7.6,PEER,TS1 TS2,OE1KBC,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria
You Must Have [ARS] Disabled Within Your Radio.
Coverage Map (http://wiki.oevsv.at/images/8/80/DMR-footprint_oe1xar_Bisamberg.jpg),1,DMR-plus
+232101,OE3XDB,Bad Voeslau/Harzberg,Niederoesterreich,Austria,438.47500,1,-7.6,PEER,TS1 TS2,OE3DNW,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria
You Must Have [ARS] Disabled Within Your Radio.
Coverage Map (http://wiki.oevsv.at/images/6/6f/DMR-footprint_oe3xdb_Harzberg.jpg),1,DMR-plus
+232102,OE1XQU,Wien/Wienerberg,Wien,Oesterreich/Austria,438.82500,1,-7.6,PEER,TS1 TS2,OE1KBC,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria
You Must Have [ARS] Disabled Within Your Radio.
Coverage Map (http://wiki.oevsv.at/images/8/8e/DMR-footprint_oe1xqu_Wienerberg.jpg),1,DMR-plus
+232103,OE3XWU,Hochwechsel,Niederoesterreich,Austria,439.07500,1,-7.600,Peer,TS1 TS2,OE4KMU,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria
You Must Have [ARS] Disabled Within Your Radio.
Coverage Map (http://wiki.oevsv.at/images/f/fa/DMR-footprint_oe3xwu_Hochwechsel.jpg),1,OE-DMR
+232104,OE3XQA,Exelberg,,Oesterreich/Austria,438.67500,1,-7.6,PEER,TS1 TS2,OE1KBC,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria
You Must Have [ARS] Disabled Within Your Radio.
Coverage Map (http://wiki.oevsv.at/images/6/68/DMR-footprint_oe3xqa_Exelberg.jpg),1,DMR-plus
+232108,OE8XKK,Pyramidenkogel,Kaernten,Oesterreich/Austria,438.60000,1,-7.6,PEER,TS1 TS2,OE8HJK,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria
You Must Have [ARS] Disabled Within Your Radio.
Coverage Map (http://wiki.oevsv.at/images/6/6f/DMR-footprint_oe8xkk_Pyramidenkogel.jpg),1,DMR-plus
+232110,OE1XIK,Wien 22,Wien,Oesterreich/Austria,438.50000,1,-7.600,,,OE1KBC,,0,Motorola
+232112,OE1XIK,Wien 22,Wien,Oesterreich/Austria,438.50000,1,-7.600,,,OE1KBC,,0,Motorola
232169,OE0XMP,Wien,Wien,Oesterreich/Austria,438.40000,1,-7.6,PEER,TS1 TS2,OE1KBC,,0,DMR-plus
232191,OE1XIK,Wien 22,Wien,Austria,438.42500,1,-7.600,PEER,TS1 TS2,OE1KBC,,0,DMR-plus
232192,OE1XQU,Wienerberg,Wien,Austria,438.45000,1,-7.6,PEER,TS1 TS2,OE1KBC,,0,DMR-plus
232193,OE1XQU,Laaerberg,Wien,Austria,145.58750,1,-0.6,PEER,TS1 TS2,OE1KBC,,0,DMR-plus
232197,OE1XAR,Wien/Bisamberg,Wien,Oesterreich/Austria,438.33750,1,-7.6,PEER,TS1 TS2,OE1CMW,,0,DMR-plus
-232201,OE2XSV,Sonnblick,,Oesterreich/Austria,439.08750,1,-7.6,PEER,TS1 TS2,OE7JTK,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria
You Must Have [ARS] Disabled Within Your Radio.
Coverage Map (http://wiki.oevsv.at/images/d/d2/DMR-footprint_oe2xsv_Sonnblick.jpg),1,DMR-MARC
+232201,OE2XSV,Sonnblick,,Oesterreich/Austria,439.08750,1,-7.6,PEER,TS1 TS2,OE7JTK,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria
You Must Have [ARS] Disabled Within Your Radio.
Coverage Map (http://wiki.oevsv.at/images/d/d2/DMR-footprint_oe2xsv_Sonnblick.jpg),1,DMR-plus
232301,OE3XNR,St Martin,Niederoesterreich,Oesterreich/Austria,430.72500,1,7.600,Peer,TS1 TS2,OE3FPA,,0,None
-232302,OE3XRB,Sonntagberg,,Oesterreich/Austria,438.55000,1,-7.6,PEER,TS1 TS2,OE3NRS,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria
You Must Have [ARS] Disabled Within Your Radio.
Coverage Map (http://wiki.oevsv.at/images/7/70/DMR-footprint_oe3xrb_Sonntagberg.jpg),1,DMR-MARC
-232303,OE3XHB,Jauerling,Niederoesterreich,Austria,438.42500,1,-7.6,Master,TS1 TS2,OE3NRS,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria
You Must Have [ARS] Disabled Within Your Radio.
Coverage Map (http://wiki.oevsv.at/images/9/9d/DMR-footprint_oe3xhb_Jauerling.jpg),1,DMR-MARC
-232304,OE3XKC,Kirchberg/Pielach,,Oesterreich/Austria,438.50000,1,-7.6,PEER,TS1 TS2,OE3ICU,,0,OE-DMR
+232302,OE3XRB,Sonntagberg,,Oesterreich/Austria,438.55000,1,-7.6,PEER,TS1 TS2,OE3NRS,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria
You Must Have [ARS] Disabled Within Your Radio.
Coverage Map (http://wiki.oevsv.at/images/7/70/DMR-footprint_oe3xrb_Sonntagberg.jpg),1,DMR-plus
+232303,OE3XHB,Jauerling,Niederoesterreich,Austria,438.42500,1,-7.6,Master,TS1 TS2,OE3NRS,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria
You Must Have [ARS] Disabled Within Your Radio.
Coverage Map (http://wiki.oevsv.at/images/9/9d/DMR-footprint_oe3xhb_Jauerling.jpg),1,DMR-plus
+232304,OE3XKC,Kirchberg/Pielach,,Oesterreich/Austria,438.50000,1,-7.6,PEER,TS1 TS2,OE3ICU,,0,DMR-plus
232305,OE3XNR,St Martin,Niederoesterreich,Oesterreich/Austria,438.87500,1,-7.600,Peer,TS1 TS2,OE3GWU,,0,None
232306,OE3XNK,Hohe Wand,Niederoesterreich,Oesterreich/Austria,438.30000,1,-7.6,PEER,TS1 TS2,OE3RPU,,0,DMR-plus
-232307,OE3XWW,Moenichkirchen MMDVM,Niederoesterreich,Oesterreich/Austria,430.97500,1,7.6,PEER,TS1 TS2,OE3RPU,,0,DMR-plus
+232307,OE3XWW,Moenichkirchen MMDVM,Niederoesterreich,Oesterreich/Austria,430.97500,1,7.600,PEER,TS1 TS2,OE3RPU,,0,DMR-plus
232391,OE3XTR,Hohe Wand,,Oesterreich/Austria,438.40000,1,-7.6,Peer,TS1 TS2,OE3KLU,,0,DMR-plus
-232392,OE3XYR,HTL St. Poelten,Niederoesterreich,Oesterreich/Austria,438.37500,1,-7.600,PEER,TS1 TS2,OE3JOA,,0,DMR-plus
-232401,OE4XUB,Brentenriegl,Burgenland,Oesterreich/Austria,438.55000,1,-7.6,PEER,TS1 TS2,OE3DNW,,0,OE-DMR
-232501,OE5XLL,Lichtenberg,,Oesterreich/Austria,438.47500,1,-7.6,PEER,TS1 TS2,OE5RNL,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria
You Must Have [ARS] Disabled Within Your Radio.
Coverage Map (http://wiki.oevsv.at/images/e/e5/DMR-footprint_oe5xll-Lichtenberg.jpg),1,DMR-MARC
+232392,OE3XYR,HTL St. Poelten,Niederoesterreich,Oesterreich/Austria,438.37500,1,-7.600,PEER,TS1 TS2,OE3JOA,,0,BM
+232401,OE4XUB,Brentenriegl,Burgenland,Oesterreich/Austria,438.55000,1,-7.6,PEER,TS1 TS2,OE3DNW,,0,DMR-plus
+232501,OE5XLL,Lichtenberg,,Oesterreich/Austria,438.47500,1,-7.6,PEER,TS1 TS2,OE5RNL,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria
You Must Have [ARS] Disabled Within Your Radio.
Coverage Map (http://wiki.oevsv.at/images/e/e5/DMR-footprint_oe5xll-Lichtenberg.jpg),1,DMR-plus
232502,OE5XGL,Gmunden,Oberoesterreich,Oesterreich/Austria,438.80000,1,-7.6,PEER,TS1 TS2,OE5PON,,0,DMR-plus
232555,OE5XDN,Senftenbach, Wolfau,Oberoesterreich,Oesterreich/Austria,438.42500,1,7.600,Peer,TS1 TS2,OE5RLN,,0,None
-232601,OE6XAG,Schoeckl,Steiermark,Austria,438.60000,1,-7.6,PEER,TS1 TS2,OE6DJG,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria
You Must Have [ARS] Disabled Within Your Radio.
Coverage Map (http://wiki.oevsv.at/images/e/e8/DMR-footprint_oe6xsr_Schoeckl.jpg),1,DMR-MARC
-232602,OE6XBG,Rennfeld,,Oesterreich/Austria,438.92500,1,-7.6,PEER,TS1 TS2,OE6VHF,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria
You Must Have [ARS] Disabled Within Your Radio.
Coverage Map (http://wiki.oevsv.at/images/a/a7/DMR-footprint_oe6xbg_Rennfeld.jpg),1,DMR-MARC
+232601,OE6XAG,Schoeckl,Steiermark,Austria,438.60000,1,-7.6,PEER,TS1 TS2,OE6DJG,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria
You Must Have [ARS] Disabled Within Your Radio.
Coverage Map (http://wiki.oevsv.at/images/e/e8/DMR-footprint_oe6xsr_Schoeckl.jpg),1,DMR-plus
+232602,OE6XBG,Rennfeld,,Oesterreich/Austria,438.92500,1,-7.600,PEER,TS1 TS2,OE6VHF,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria
You Must Have [ARS] Disabled Within Your Radio.
Coverage Map (http://wiki.oevsv.at/images/a/a7/DMR-footprint_oe6xbg_Rennfeld.jpg),1,DMR-plus
232603,OE6XAR,Schoenbergkopf,,Oesterreich/Austria,438.42500,1,-7.6,PEER,TS1 TS2,OE6POD,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria
You Must Have [ARS] Disabled Within Your Radio.
Coverage Map (http://wiki.oevsv.at/images/d/d0/DMR-footprint_oe6xar-Schoenbergkopf.jpg),1,DMR-plus
232604,OE6XBF,Stradner Kogel,Steiermark,Austria,438.91250,1,-7.6,PEER,TS1 TS2,OE6JWD,,0,DMR-plus
232605,OE6XCD,Stuhleck/Test,Steiermark,Oesterreich/Austria,438.97500,1,-7.6,Peer,TS1 TS2,OE3KLU,,0,DMR-plus
@@ -453,35 +555,37 @@
232607,OE6XAG,Schoeckl,Steiermark,Oesterreich/Austria,437.97500,1,-7.6,PEER,TS1 TS2,OE6DJG,,0,DMR-plus
232608,OE6XDG,Lachtal,Steiermark,Oesterreich/Austria,438.07500,1,-7.600,PEER,TS1 TS2,OE6POD,,0,None
232610,OE6XDG,Lachtal,Steiermark,Oesterreich/Austria,145.70000,1,-0.600,PEER,TS1 TS2,OE6POD,,0,None
-232701,OE7XZH,Bruckerberg/Zillert.,Tirol,Oesterreich/Austria,438.45000,1,-7.6,Peer,TS1 TS2,OE7FMI,,0,OE-DMR
-232702,OE7XBI,Rangger Koepfl,Tirol,Austria,439.07500,1,-7.6,Master,TS1 TS2,OE7WSH,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 232 = Austria
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 232 = Austria
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio.
Contact: Wolfgang Sentobe, OE7WSH
www: http://www.uhf-shf-club.at/,1,DMR-MARC
-232703,OE7XTT,Penken/Zillertal,Tirol,Austria,438.35000,1,-7.6,PEER,TS1 TS2,OE7FMI,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 232 = Austria
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 232 = Austria
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio.
Contact: Markus Frankhauser, OE7FMI
Email: oe7fmi@oevsv.at
www: http://www.oe7.oevsv.at/referate/digital/dmr/,1,OE-DMR
-232704,OE7XWJ,Mayrhofen ,Tirol ,Oesterreich/Austria ,438.50000,1,-7.6,PEER,TS1 TS2,OE7FMI,,0,DMR-plus
-232705,OE7XGR,Hintertuxergletscher,Tirol ,Oesterreich/Austria ,438.92500,1,-7.600,PEER,TS1 TS2,OE7FMI,,0,DMR-plus
-232708,OE7XLH,Lienz/Osttirol,Tirol,Oesterreich/Austria,438.87500,1,-7.6,PEER,TS1 TS2,OE7JTK,,0,DMR-plus
-232709,OE7XLI,Hochstein,Tirol,Oesterreich/Austria,438.27500,1,-7.6,Peer,TS1 TS2,OE7JTK,,0,Hytera
+232701,OE7XZH,Bruckerberg/Zillert.,Tirol,Oesterreich/Austria,438.45000,1,-7.6,Peer,TS1 TS2,OE7FMI,,0,DMR-plus
+232702,OE7XBI,Rangger Koepfl,Tirol,Austria,439.07500,1,-7.600,Master,TS1 TS2,OE7WSH,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 232 = Austria
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 232 = Austria
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio.
Contact: Wolfgang Sentobe, OE7WSH
www: http://www.uhf-shf-club.at/,1,DMR-plus
+232703,OE7XTT,Penken/Zillertal,Tirol,Austria,438.35000,1,-7.6,PEER,TS1 TS2,OE7FMI,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 232 = Austria
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 232 = Austria
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio.
Contact: Markus Frankhauser, OE7FMI
Email: oe7fmi@oevsv.at
www: http://www.oe7.oevsv.at/referate/digital/dmr/,1,DMR-plus
+232704,OE7XWJ,Mayrhofen,Tirol,Oesterreich/Austria,438.50000,1,-7.6,PEER,TS1 TS2,OE7FMI,,0,DMR-plus
+232705,OE7XGR,Hintertuxergletscher,Tirol,Oesterreich/Austria,438.92500,1,-7.600,PEER,TS1 TS2,OE7FMI,,0,DMR-plus
+232708,OE7XLH,Lienz/Osttirol,Tirol,Oesterreich/Austria,438.87500,1,-7.600,PEER,TS1 TS2,OE7JTK,,0,DMR-plus
+232709,OE7XLI,Hochstein,Tirol,Oesterreich/Austria,438.27500,1,-7.6,Peer,TS1 TS2,OE7JTK,,0,DMR-plus
+232710,OE7XLI,Hochstein,Tirol,Oesterreich/Austria,438.87500,1,-7.6,,,OE7JTK,,0,DMR-plus
232799,OE7XXX,Zillertal,Tirol,Oesterreich/Austria,438.50000,1,-7.6,Peer,TS1 TS2,OE7FMI,,0,DMR-plus
-232802,OE8XPK,Petzen,Kaernten,Austria,438.50000,1,-7.6,PEER,TS1 TS2,OE8HJK,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 Austria
You Must Have [ARS] Disabled Within Your Radio.
Coverage Map (http://wiki.oevsv.at/images/9/92/DMR-footprint_oe8xpk_Petzen.jpg),1,DMR-MARC
-232803,OE8XMK,Magdalensberg,Kaernten,Austria,145.62500,1,-0.6,PEER,TS1 TS2,OE8HJK,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria
You Must Have [ARS] Disabled Within Your Radio.
Coverage Map (http://wiki.oevsv.at/images/f/ff/DMR-footprint_oe8xmk-Magdalensberg.jpg),1,DMR-MARC
+232802,OE8XPK,Petzen,Kaernten,Austria,438.50000,1,-7.6,PEER,TS1 TS2,OE8HJK,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 Austria
You Must Have [ARS] Disabled Within Your Radio.
Coverage Map (http://wiki.oevsv.at/images/9/92/DMR-footprint_oe8xpk_Petzen.jpg),1,DMR-plus
+232803,OE8XMK,Magdalensberg,Kaernten,Austria,145.62500,1,-0.6,PEER,TS1 TS2,OE8HJK,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #2 - Group Call 232 = Austria
You Must Have [ARS] Disabled Within Your Radio.
Coverage Map (http://wiki.oevsv.at/images/f/ff/DMR-footprint_oe8xmk-Magdalensberg.jpg),1,DMR-plus
232822,OE8XVK,Kopein,Kaernten,Oesterreich/Austria,438.55000,1,-7.600,Peer,TS1 TS2,OE8PKR,,0,Hytera
-232893,OE8XIK,Saurachberg,Kaernten,Austria,438.45000,1,-7.6,PEER,TS1 TS2,OE1KBC,,0,DMR-plus
-232894,OE8XPK,Petzen,,Oesterreich/Austria,145.62500,1,-0.6,PEER,TS1 TS2,OE8HJK,,0,DMR-plus
-232895,OE8XFK,Dobratsch,Kaernten,Austria,438.90000,1,-7.6,PEER,TS1 TS2,OE8PKR,,0,DMR-plus
-232896,OE8XLK,Koralm,Kaernten,Oesterreich/Austria,438.70000,1,-7.6,PEER,TS1 TS2,OE8URQ,,0,DMR-plus
+232893,OE8XIK,Saurachberg,Kaernten,Austria,438.45000,1,-7.600,PEER,TS1 TS2,OE1KBC,,0,DMR-plus
+232894,OE8XPK,Petzen,,Oesterreich/Austria,145.62500,1,-0.600,PEER,TS1 TS2,OE8HJK,,0,DMR-plus
+232895,OE8XFK,Dobratsch,Kaernten,Austria,438.90000,1,-7.600,PEER,TS1 TS2,OE8PKR,,0,BM
+232896,OE8XLK,Koralm,Kaernten,Oesterreich/Austria,438.70000,1,-7.600,PEER,TS1 TS2,OE8URQ,,0,DMR-plus
232991,OE9XVJ,Pfaender / Bregenz,Vorarlberg,Oesterreich/Austria,438.50000,1,-7.6,PEER,TS1 TS2,OE9LTV,,0,DMR-plus
234127,GB3IP,Stafford,England,United Kingdom,145.76250,1,-0.600,PEER,TS1 TS2,G0RDI,,0,Motorola
+234504,GB7HB,Tandragee,Northern Ireland,United Kingdom,439.62500,1,-9.000,PEER,TS1 TS2,MI0MSO,,0,Motorola
234900,GB3TU,Tring,England,United Kingdom,433.22500,3,1.600,PEER,TS1 TS2,G0RDI,,0,DMR-plus
-235100,GB7TD,Wakefield,West Yorkshire,United Kingdom,439.16250,1,-9.000,Master,TS1 TS2,G1XCC,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot#1 - Group Call 2 = Europe
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#2 - Group Call 235 = UK Repeater
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local
You must DISABLE ARS on all time slots
Contact: Michael Lockwood, G1XCC
Email: mailto: Michael@michaellockwood.orangehome.co.uk,1,DMR-MARC
+235100,GB7TD,Wakefield,West Yorkshire,United Kingdom,439.16250,1,-9.000,Master,TS1 TS2,G1XCC,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot#1 - Group Call 2 = Europe
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#2 - Group Call 235 = UK Repeater
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local
You must DISABLE ARS on all time slots
Contact: Michael Lockwood, G1XCC
Email: mailto: Michael@michaellockwood.orangehome.co.uk,1,BM
235101,GB7FW,Birmingham,England,United Kingdom,439.66250,1,-9.000,Peer,TS1 TS2,G8VIQ,,0,None
235102,GB7AL,TEST,England,United Kingdom,439.46250,1,-9.000,PEER,TS1 TS2,G0RDI,,0,DMRUK
-235103,GB7HS,Batley,England,United Kingdom,439.42500,2,-9.000,Peer,TS1 TS2,G1XCC,,0,Motorola
-235104,GB7LE,Leeds,England,United Kingdom,439.66250,2,-9.000,Peer,TS1 TS2,G1XCC,,0,Motorola
-235105,GB7LP,Liverpool,Merseyside,United Kingdom,439.40000,1,-9.000,Peer,TS1 TS2,M1SWB,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot#1 - Group Call 2 = Europe
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#2 - Group Call 235 = UK Repeater
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local
You must DISABLE ARS on all time slots
Contact: Steve Bainbridge, M1SWB
Email: steve.m1swb@tiscali.co.uk,1,DMR-MARC
+235103,GB7HS,Batley,England,United Kingdom,439.42500,2,-9.000,Peer,TS1 TS2,G1XCC,,0,BM
+235104,GB7LE,Leeds,England,United Kingdom,439.66250,2,-9.000,Peer,TS1 TS2,G1XCC,,0,BM
+235105,GB7LP,Liverpool,Merseyside,United Kingdom,439.40000,1,-9.000,Peer,TS1 TS2,M1SWB,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot#1 - Group Call 2 = Europe
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#2 - Group Call 235 = UK Repeater
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local
You must DISABLE ARS on all time slots
Contact: Steve Bainbridge, M1SWB
Email: steve.m1swb@tiscali.co.uk,1,DMRUK
235106,GB7BS,Bristol,England,United Kingdom,439.16250,3,-9.000,Master,TS2,G4SDR,,0,DMRUK
235107,GB7AA,South Glos.,England,United Kingdom,430.67500,1,9.000,Peer,TS1 TS2,G4CJZ,,0,None
-235108,GB7SN,Sheffield,England,United Kingdom,439.67500,3,-9.000,PEER,TS1 TS2,M1ERS,,0,DMR-plus
+235108,GB7SN,Sheffield,England,United Kingdom,439.67500,1,-9.000,PEER,TS1 TS2,M1ERS,,0,BM
235109,GB7CK,Folkestone,England,United Kingdom,439.73750,3,-9.000,PEER,TS1 TS2,M1CMN,,0,Motorola
-235110,GB3GB,Birmingham,,United Kingdom,439.30000,1,-7.600,PEER,TS1 TS2,G8NDT,,0,DMR-plus
+235110,GB3GB,Birmingham,kd,United Kingdom,439.30000,1,-7.600,PEER,TS1 TS2,G8NDT,,0,DMR-plus
235111,GB7MP,Central London,England,United Kingdom,430.82500,3,7.600,PEER,TS1 TS2,G8WOY,,0,Motorola
235112,GB7LO,Bromley,England,United Kingdom,439.51250,3,-9.000,PEER,TS1 TS2,G1HIG,,0,Motorola
235113,GB7CL,Clacton on Sea,,United Kingdom,439.63750,3,9.000,PEER,TS1 TS2,G0MBA,,0,Motorola
@@ -495,96 +599,113 @@
235121,GB7MB,Heysham,England,United Kingdom,439.70000,1,-9.000,Peer,TS1 TS2,G4TUZ,,0,Motorola
235122,GB7FO,Blackpool South,England,United Kingdom,439.43750,1,-9.000,PEER,TS1 TS2,G0WDA,,0,Motorola
235123,GB7BK,Reading,England,United Kingdom,439.73750,3,-9.000,PEER,TS1 TS2,G8DOR,,0,Motorola
-235125,GB7EL,Nelson, Lancashire,England,United Kingdom,439.71250,2,-9.000,Peer,TS1 TS2,G4MLB,,0,Motorola
-235126,GB7PK,Portsmouth,England,United Kingdom,439.52500,1,-9.000,PEER,TS1 TS2,G7RPG,,0,Hytera
+235124,GB7BJ,Herefordshire,England,United Kingdom,439.73750,13,-9.000,PEER,TS1 TS2,G1MAW,,0,Motorola
+235125,GB7EL,Nelson, Lancashire,England,United Kingdom,439.71250,2,-9.000,Peer,TS1 TS2,G4MLB,,0,BM
+235126,GB7PK,Portsmouth,England,United Kingdom,439.52500,1,-9.000,PEER,TS1 TS2,G7RPG,,0,BM
235127,GB3IP,Stafford,England,United Kingdom,145.76250,1,-0.600,PEER,TS1 TS2,G0RDI,,0,Motorola
235128,GB7LR,Leicester, UK,England,United Kingdom,439.47500,1,-9.000,PEER,TS1 TS2,M1FJB,,0,None
235129,GB7AK,Barking,England,United Kingdom,439.52500,3,-9.000,PEER,TS1 TS2,G8YPK,,0,Motorola
-235130,GB7NS,Caterham,,United Kingdom,439.16250,3,-9.000,PEER,TS1 TS2,G0OLX,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot#1 - Group Call 2 = Europe
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#2 - Group Call 235 = UK Repeater
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local
You must DISABLE ARS on all time slots
Contact: Denis Stanton, G0OLX
Email: mailto:
denis.stanton@ntlworld.com,1,DMR-MARC
+235130,GB7NS,Caterham,,United Kingdom,439.16250,3,-9.000,PEER,TS1 TS2,G0OLX,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot#1 - Group Call 2 = Europe
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#2 - Group Call 235 = UK Repeater
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local
You must DISABLE ARS on all time slots
Contact: Denis Stanton, G0OLX
Email: mailto:
denis.stanton@ntlworld.com,1,DMRUK
235131,GB7GF,Guildford,England,United Kingdom,439.68750,3,-9.000,Peer,TS1 TS2,G4EML,,0,Motorola
+235133,GB7OZ,Oswestry,England,United Kingdom,439.62500,8,-9.000,PEER,TS1 TS2,G0DNI,,0,None
235134,GB7FU,Pointon,England,United Kingdom,439.16250,3,-9.000,Peer,TS1 TS2,G0RDI,,0,Motorola
235135,GB7FR,IO90ST,England,United Kingdom,439.50000,4,-9.000,PEER,TS1 TS2,G7RZU,,0,Hytera
235136,GB7SU,Southampton,England,United Kingdom,439.45000,8,-9.000,Peer,TS1 TS2,G6IGA,,0,Motorola
-235137,GB7SE,Thurrock ,England ,United Kingdom ,439.47500,3,-9.000,Peer,TS1 TS2,M0PFX,,0,Motorola
+235137,GB7SE,Thurrock,England,United Kingdom,439.47500,3,-9.000,Peer,TS1 TS2,M0PFX,,0,DMR-plus
235138,GB7SK,Skeffington,England,United Kingdom,439.46250,1,-9.000,PEER,TS1 TS2,G0RDI,,0,Motorola
235139,GB7VS,Shropham,England,United Kingdom,439.41250,1,-9.000,PEER,TS1 TS2,M0ZAH,,0,Motorola
-235140,GB7HX,Huddersfield,West Yorkshire,United Kingdom,439.57500,1,-9.000,Peer,TS1 TS2,G0PRF,Time Slot#1 - Group Call 2 = Europe
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#2 - Group Call 235 = UK Repeater
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local
You must DISABLE ARS on all time slots
Contact: John Goodwin, G0PRF
Email: john.a.goodwin@btinternet.com,1,DMR-MARC
-235141,GB7TP,Keighley,,United Kingdom,439.68750,1,-9.000,PEER,TS1 TS2,G8ZMG,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot#1 - Group Call 2 = Europe
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#2 - Group Call 235 = UK Repeater
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local
You must DISABLE ARS on all time slots
Contact: Steve Watson, G8ZMG
Email: steve.G8ZMG@crossley-watson.me.uk,1,DMR-MARC
+235140,GB7HX,Huddersfield,West Yorkshire,United Kingdom,439.57500,1,-9.000,Peer,TS1 TS2,G0PRF,Time Slot#1 - Group Call 2 = Europe
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#2 - Group Call 235 = UK Repeater
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local
You must DISABLE ARS on all time slots
Contact: John Goodwin, G0PRF
Email: john.a.goodwin@btinternet.com,1,BM
+235141,GB7TP,Keighley,,United Kingdom,439.68750,1,-9.000,PEER,TS1 TS2,G8ZMG,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot#1 - Group Call 2 = Europe
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#2 - Group Call 235 = UK Repeater
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local
You must DISABLE ARS on all time slots
Contact: Steve Watson, G8ZMG
Email: steve.G8ZMG@crossley-watson.me.uk,1,BM
235142,GW1SYG,TEST/Chester,England,United Kingdom,439.68750,1,-9.000,Peer,TS1 TS2,GW1SYG,,0,DMRUK
-235143,GB7WI,Winterton,England,United Kingdom,439.41250,1,-9.000,Peer,TS1 TS2,G0UZJ,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot#1 - Group Call 2 = Europe
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#2 - Group Call 235 = UK Repeater
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local
You must DISABLE ARS on all time slots
Contact: G0UZJ
Email: kevin.hogg@C-T-S.com,1,DMR-MARC
+235143,GB7WI,Winterton,England,United Kingdom,439.41250,1,-9.000,Peer,TS1 TS2,G0UZJ,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot#1 - Group Call 2 = Europe
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#2 - Group Call 235 = UK Repeater
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local
You must DISABLE ARS on all time slots
Contact: G0UZJ
Email: kevin.hogg@C-T-S.com,1,BM
235144,GB7IT,Weston-super-Mare,England,United Kingdom,439.51250,1,-9.000,PEER,TS1 TS2,G4SZM,,0,Motorola
-235145,GB3WE,Weston-super-Mare,England,United Kingdom,145.68750,1,-0.600,Peer,TS1 TS2,G1VSX,,0,Motorola
+235145,GB3WE,Weston-super-Mare,England,United Kingdom,145.68750,2,-0.600,Peer,TS1 TS2,G1VSX,,0,BM
+235146,GB3WE,Weston-super-Mare,England,United Kingdom,145.68750,1,-0.600,PEER,TS1 TS2,G4SZM,,0,Motorola
+235147,GB7EG,East Grinstead,England,United Kingdom,439.76250,2,-9.000,PEER,TS1 TS2,G7KBR,,0,None
235148,GB7AS,Ashford Kent,England,United Kingdom,439.42500,3,-9.000,PEER,TS1 TS2,M1CMN,,0,Motorola
235149,GB7DJ,Northwich,England,United Kingdom,439.66250,3,-9.000,PEER,TS1 TS2,M0WTX,,0,None
235150,GB7SD,South Dorset SW Engl,England,United Kingdom,439.41250,1,-9.000,Peer,TS1 TS2,G0ECX,,0,Motorola
-235151,GB3XL,Shipley,England,United Kingdom,430.88750,1,7.600,PEER,TS1 TS2,M0IRK,,0,DMR-plus
-235152,GB7RV,North west ,England ,United Kingdom ,439.62500,2,-9.000,PEER,TS1 TS2,M0NWI,,0,None
-235153,GB7AL,Ipswich ,England ,United Kingdom ,439.40000,2,9.000,PEER,TS1 TS2,M1NIZ,,0,Motorola
-235154,GB7KH,Kelvedon Hatc, Essex,England ,United Kingdom ,439.61250,3,-9.000,PEER,TS1 TS2,M1GEO,,0,BrandMeister
-235155,GB7DO,Skellow, Doncaster ,England ,United Kingdom ,430.86250,5,7.600,PEER,TS1 TS2,G1ILF,,0,BrandMeister
-235160,GB7SR,Sheffield,England,United Kingdom,439.85000,2,-9.400,PEER,TS1 TS2,M0GAV,,0,Motorola
+235151,GB3XL,Shipley,England,United Kingdom,430.88750,1,7.600,PEER,TS1 TS2,M0IRK,,0,BM
+235152,GB7RV,North west,England,United Kingdom,439.62500,2,-9.000,PEER,TS1 TS2,M0NWI,,0,None
+235153,GB7AL,Ipswich,England,United Kingdom,439.40000,2,9.000,PEER,TS1 TS2,M1NIZ,,0,Motorola
+235154,GB7KH,Kelvedon Hatc, Essex,England,United Kingdom,439.61250,3,-9.000,PEER,TS1 TS2,M1GEO,,0,BrandMeister
+235155,GB7DO,Skellow, Doncaster,England,United Kingdom,430.86250,5,7.600,PEER,TS1 TS2,G1ILF,,0,BM
+235160,GB7SR,Sheffield,England,United Kingdom,439.63750,2,-9.000,PEER,TS1 TS2,M0GAV,,0,BM
235161,GB7EK,Whitstable,England,United Kingdom,439.62500,3,-9.000,PEER,TS1 TS2,G6MRI,,0,Motorola
-235165,GB7DS,Norwich,,United Kingdom,439.42500,1,-9.0,PEER,TS1 TS2,M0ZAH,,0,OpenDMR
+235165,GB7DS,Norwich,,United Kingdom,439.42500,1,-9.000,PEER,TS1 TS2,M0ZAH,,0,OpenDMR
+235166,GB7TA,Thorpe St Andrew,England,United Kingdom,430.82500,1,7.600,PEER,TS1 TS2,M0ZAH,,0,Motorola
235168,GB7XYZ,Demo Repeater,England,United Kingdom,439.16250,3,-9.000,Peer,TS1 TS2,G0RDI,,0,Motorola
235169,GB7WL,Amersham,England,United Kingdom,439.70000,3,-9.000,PEER,TS1 TS2,G0RDI,,0,DMRUK
235170,GB7HR,Heathrow Airport,England,United Kingdom,439.45000,3,-9.000,Peer,TS1 TS2,G0OXZ,,0,Motorola
235171,GB7IK,Rochester, Kent,England,United Kingdom,439.43750,3,-9.000,PEER,TS1 TS2,G0RDI,,0,Motorola
235172,GB7BK,BlueBell Hill, Kent,England,United Kingdom,439.57500,4,-9.000,Peer,TS1 TS2,2E1GTB,,0,Motorola
-235177,GB7CT,Tring,England,United Kingdom,439.01250,3,-7.600,PEER,TS1 TS2,G0RDI,GB7CT 145.6375 -0.6 MHz Color Code 3
Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#1 - Group Call 2 = Europe
Time Slot#2 - Group Call 235 = UK Repeater
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local
You must DISABLE ARS on all time slots
Contact: Iain Philipps , G0RDI
Email: iain@77hz.net,1,DMR-MARC
-235180,GB7BH,Brighton,England,United Kingdom,439.57500,4,-9.000,PEER,TS1 TS2,G7TXU,,0,DMR-plus
+235175,GB3RF,Accrington, Lancashi,England,United Kingdom,145.77500,2,-0.600,PEER,TS1 TS2,G0BMH,,0,DMR-plus
+235176,GB3TU,Tring,England,United Kingdom,433.22500,3,1.600,,,G0RDI,,0,DMR-plus
+235177,GB7CT,Tring,England,United Kingdom,439.01250,3,-7.600,PEER,TS1 TS2,G0RDI,GB7CT 145.6375 -0.6 MHz Color Code 3
Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#1 - Group Call 2 = Europe
Time Slot#2 - Group Call 235 = UK Repeater
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local
You must DISABLE ARS on all time slots
Contact: Iain Philipps , G0RDI
Email: iain@77hz.net,1,DMRUK
+235180,GB7BH,Brighton,England,United Kingdom,439.57500,4,-9.000,PEER,TS1 TS2,G7TXU,,0,BM
+235181,GB7UZ,Lancaster,England,United Kingdom,439.50000,1,-9.000,PEER,TS1 TS2,G4TUZ,,0,Motorola
235188,GB7FI,Cheddar Somerset,England,United Kingdom,430.88750,3,7.600,PEER,TS1 TS2,G4RKY,,0,Motorola
235189,GB3FI,Axbridge,England,United Kingdom,430.82500,3,7.600,PEER,TS1 TS2,G4RKY,,0,None
-235190,GB7RR,Notts,England,United Kingdom,439.60000,1,-9.000,PEER,TS1 TS2,G0LCG,,0,DMR-plus
+235190,GB7RR,Notts,England,United Kingdom,439.60000,1,-9.000,PEER,TS1 TS2,G0LCG,,0,BM
235191,GB7HUK,Newark, Notts,,England,United Kingdom,439.70000,1,-9.000,PEER,TS1 TS2,G0LCG,,0,DMR-plus
235192,GB3IN,Nr Matlock,England,United Kingdom,430.96250,1,7.600,PEER,TS1 TS2,G4TSN,,0,Hytera
-235199,GB7LN,Lincoln,England,United Kingdom,439.40000,1,-9.000,Peer,TS1 TS2,G0RZR,,0,Motorola
-235200,GB7FC,Blackpool,England,United Kingdom,430.97500,1,7.600,PEER,TS1 TS2,M0AUT,,0,DMR-plus
-235201,GB7FC,Test/Blackpool,England,United Kingdom,430.95000,1,7.600,PEER,TS1 TS2,M0AUT,,0,DMR-plus
+235199,GB7LN,Lincoln,England,United Kingdom,439.40000,1,-9.000,Peer,TS1 TS2,G0RZR,,0,BM
+235200,GB7FC,Blackpool,England,United Kingdom,430.97500,1,7.600,PEER,TS1 TS2,M0AUT,,0,BM
+235201,GB7FC,Test/Blackpool,England,United Kingdom,430.95000,1,7.600,PEER,TS1 TS2,M0AUT,,0,BM
235202,GB7MK,Ipswich,England,United Kingdom,439.60000,13,9.000,PEER,TS1 TS2,M1NIZ,,0,Motorola
-235203,GB7JL,Golborne,England,United Kingdom,430.96250,1,7.600,PEER,TS1 TS2,M0AUT,,0,DMR-plus
+235203,GB7JL,Golborne,England,United Kingdom,430.96250,1,7.600,PEER,TS1 TS2,M0AUT,,0,BM
235205,GB7KM,Cotswold Airport,England,United Kingdom,439.66250,3,9.000,Peer,TS1 TS2,GB7KM,,0,Motorola
-235210,GB7MR,Manchester,England,United Kingdom,439.73750,2,-9.000,PEER,TS1 TS2,G8UVC,,0,DMRUK
-235220,GB7XX,Felling,England,United Kingdom,439.46250,10,-9.000,PEER,TS1 TS2,G4MSF,,0,Motorola
+235210,GB7MR,Manchester,England,United Kingdom,439.73750,2,-9.000,PEER,TS1 TS2,G8UVC,,0,BM
+235220,GB7XX,Felling,England,United Kingdom,439.46250,10,-9.000,PEER,TS1 TS2,G4MSF,,0,BM
+235222,GB7EB,Beccles,England,United Kingdom,439.66250,2,-9.000,PEER,TS1 TS2,M0JGX,,0,OpenDMR
235230,GB7GB,Great Barr,,England,United Kingdom,439.42500,1,-9.000,PEER,TS1 TS2,G8NDT,,0,Motorola
235232,GB7DC,Derby,England,United Kingdom,438.40000,1,-7.600,PEER,TS1 TS2,G7NPW,,0,DMR-plus
235235,GB7ID,Redhill,England,United Kingdom,438.40000,3,-7.600,PEER,TS1 TS2,M0IDD,,0,Motorola
235236,GB7AU,Amersham,England,United Kingdom,439.70000,3,-9.000,PEER,TS1 TS2,G0RDI,,0,Motorola
235238,GB7FB,Blackpool,England,United Kingdom,439.43750,1,9.000,PEER,TS1 TS2,G0WDA,,0,Motorola
235240,GB7RE,Retford,England,United Kingdom,439.71250,1,-9.000,PEER,TS1 TS2,G0RDI,,0,BM
+235242,GB7NF,Newhaven Sussex UK,England,United Kingdom,439.48750,1,-9.000,PEER,TS1 TS2,G0TJH,,0,Hytera
235250,GB7TC,Swindon,,United Kingdom,439.52500,2,-9.000,PEER,TS1 TS2,G8VRI,,0,None
-235269,GB7FU,Pointon,,United Kingdom,439.16250,3,-9.000,PEER,TS1 TS2,M0PFX,,0,OpenDMR
+235252,GB7IQ,Stafford,England,United Kingdom,439.61250,1,-9.000,PEER,TS1 TS2,G7PFT,,0,Motorola
+235260,GB7MH,Turners Hill,England,United Kingdom,439.63750,2,-9.000,PEER,TS1 TS2,G3NZP,,0,BrandMeister
+235269,GB7FU,Pointon,,United Kingdom,439.16250,3,-9.000,PEER,TS1 TS2,G0RDI,,0,OpenDMR
235282,GB7DZ,Newcastle,England,United Kingdom,439.52500,7,-9.000,PEER,TS1 TS2,M0MBA,,0,BM
235290,GB7PE,Peterborough,,United Kingdom,439.50000,3,-9.000,PEER,TS1 TS2,M0ZPU,,0,Motorola
235298,GB7KT,ANDOVER, IO91GE,England,United Kingdom,439.50000,1,-9.000,Peer,TS1 TS2,G3ZXX,,0,Motorola
235299,GB7JB,Willoughby Hedge,England,United Kingdom,439.46250,1,9.000,PEER,TS1 TS2,G3ZXX,,0,Motorola
235300,GB7HM,Hope Mountain,Flintshire,United Kingdom,439.63750,1,-9.000,Peer,TS1 TS2,GW1SYG,,0,DMRUK
-235301,GB7HM,Hope Mountain,Wales,United Kingdom,439.63750,1,-9.000,Peer,TS1 TS2,GW1SYG,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot#1 - Group Call 2 = Europe
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#2 - Group Call 235 = UK Repeater
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local
You must DISABLE ARS on all time slots
Contact: Andy Griffith , GW1SYG
Email: gw1syg@pobox.com,1,DMR-MARC
+235301,GB7HM,Hope Mountain,Wales,United Kingdom,439.63750,1,-9.000,Peer,TS1 TS2,GW1SYG,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot#1 - Group Call 2 = Europe
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#2 - Group Call 235 = UK Repeater
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local
You must DISABLE ARS on all time slots
Contact: Andy Griffith , GW1SYG
Email: gw1syg@pobox.com,1,Motorola
235302,GB7PN,Prestatyn,Wales,United Kingdom,439.42500,1,-9.000,Peer,TS1 TS2,G4NOY,,0,Motorola
235303,GB7CW,Bridgend,Wales,United Kingdom,439.40000,3,9.000,PEER,TS1 TS2,2W0TRR,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#1 - Group Call 2 = Europe
Time Slot#2 - Group Call 235 = UK Repeaters
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local
You must DISABLE ARS on all time slots
Contact: Tom, 2W0TRR
Email: nantyrfc@hotmail.co.uk
Website: www.dmrsouthwales.co.uk,1,Motorola
+235401,GB7GG,Glasgow,Scotland,United Kingdom,439.62500,1,-9.000,PEER,TS1 TS2,GM4AUP,,0,BM
235402,GB7DE,Largo, Fife,Scotland,United Kingdom,439.60000,9,9.000,PEER,TS1 TS2,GM7HHB,,0,None
235403,GB7DE,Largo, Fife,Scotland,United Kingdom,145.63750,9,0.600,PEER,TS1 TS2,GM7HHB,,0,None
235404,GB7JD,NT650206,Scotland,United Kingdom,439.41250,1,-9.000,PEER,TS1 TS2,GM4UPX,,0,None
-235444,GB7EE,Edinburgh,Scotland,United Kingdom,439.57500,1,-9.000,Peer,TS1 TS2,GM7RYR,,0,Motorola
-235499,GB7DD,Dundee,Scotland,United Kingdom,439.66250,1,-9.000,Peer,TS1 TS2,MM0DUN,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#1 - Group Call 2 = Europe
Time Slot#2 - Group Call 235 = UK Repeater
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local
You must DISABLE ARS on all time slots
Contact: Martin Higgins, MM0DUN
Email: mm0dun@gb7dd.co.uk (https://3c.web.de/mail/client/mail/mailto;jsessionid=0D048E9DC299F131F356DEE44E910740-n3.bs41b?to=mm0dun%40gb7dd.co.uk&selection=tfol11a5e69aed60d300),1,DMR-MARC
+235405,GB7JD,NT650206,Scotland,United Kingdom,439.41250,1,-9.000,PEER,TS1 TS2,GM4UPX,,0,BrandMeister
+235444,GB7EE,Edinburgh,Scotland,United Kingdom,439.71250,1,-9.000,Peer,TS1 TS2,GM7RYR,,0,BM
+235499,GB7DD,Dundee,Scotland,United Kingdom,439.66250,1,-9.000,Peer,TS1 TS2,MM0DUN,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#1 - Group Call 2 = Europe
Time Slot#2 - Group Call 235 = UK Repeater
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local
You must DISABLE ARS on all time slots
Contact: Martin Higgins, MM0DUN
Email: mm0dun@gb7dd.co.uk (https://3c.web.de/mail/client/mail/mailto;jsessionid=0D048E9DC299F131F356DEE44E910740-n3.bs41b?to=mm0dun%40gb7dd.co.uk&selection=tfol11a5e69aed60d300),1,BM
235501,GB3OM,Omagh,Northern Ireland,United Kingdom,430.95000,1,7.600,PEER,TS1 TS2,GI4SXV,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot#1 - Group Call 2 = Europe
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#2 - Group Call 235 = UK Repeater
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local
You must DISABLE ARS on all time slots
Contact:
Email:,1,DMR-MARC
235502,GB7UL,Carrickfergus,Northern Ireland,United Kingdom,439.52500,1,-9.000,PEER,TS1 TS2,GI6DKQ,,0,Motorola
-235503,GB7LY,Londonderry,Northern Ireland,United Kingdom,439.66250,1,-9.000,Peer,TS1 TS2,GI4BWM,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot#1 - Group Call 2 = Europe
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#2 - Group Call 235 = UK Repeater
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local
You must DISABLE ARS on all time slots
Contact:
Email:,1,DMR-MARC
+235503,GB7LY,Londonderry,Northern Ireland,United Kingdom,439.66250,1,-9.000,Peer,TS1 TS2,GI4BWM,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot#1 - Group Call 2 = Europe
Time Slot#1 - Group Call 13 = Worldwide English
Time Slot#2 - Group Call 235 = UK Repeater
Time Slot#2 - Group Call 8 = Regional
Time Slot#2 - Group Call 9 = Local
You must DISABLE ARS on all time slots
Contact:
Email:,1,Motorola
+235504,GB7HB,Tandragee,Northern Ireland,United Kingdom,439.62500,1,-9.000,PEER,TS1 TS2,MI0MSO,,0,Motorola
+235505,GB7KA,Kilrea, COLERAINE,Northern Ireland,United Kingdom,439.71250,3,-9.000,PEER,TS1 TS2,MI0AAZ,,0,BM
+235510,GB7NY,NEWRY,Northern Ireland,United Kingdom,439.68750,1,-9.000,PEER,TS1 TS2,MI0PYN,,0,BM
235601,GB7CA,Carnane, Douglas,Isle of Man,United Kingdom,430.92500,2,7.600,PEER,TS1 TS2,GD4HOZ,,0,Motorola
235602,GB7BR,Bride,Isle of Man,United Kingdom,430.92500,3,7.600,PEER,TS1 TS2,GD4HOZ,,0,Motorola
-235999,GB7DMR,TEST,DEMO,United Kingdom,0.00000,1,0.000,Peer,TS1 TS2,G1XCC,,0,DMRUK
+235999,GB7DMR,TEST,DEMO,United Kingdom,439.71250,5,-9.000,Peer,TS1 TS2,G1XCC,,0,BM
238101,OZ4REN,Stoevring,Nordjylland,Denmark,434.83750,11,-2.000,PEER,TS1 TS2,OZ1JEE,,0,DMR-plus
238102,OZ2DSD,BROENDERSLEV,Nordjylland,Denmark,461.17500,11,-10.000,PEER,TS1 TS2,OZ2NML,,0,DMR-plus
238103,OZ1REC,Vodskov,Nordjylland,Denmark,434.67500,11,-2.000,PEER,TS1 TS2,OZ2NML,,0,DMR-plus
238104,OZ9RET,Hurup Thy,Nordjylland,Denmark,434.55000,11,-2.000,PEER,TS1 TS2,OZ1IIO,,0,Hytera
238105,OZ8EVA,Frederikshavn,Nordjylland,Denmark,434.62500,11,-2.000,Peer,TS1 TS2,OZ1KDG,,0,DMR-plus
-238106,OZ9REW,Boddum ,Nordjylland ,Denmark ,145.78750,1,-0.600,PEER,TS1 TS2,OZ1IIO,,0,BrandMeister
+238106,OZ9REW,Boddum,Nordjylland,Denmark,145.78750,1,-0.600,PEER,TS1 TS2,OZ1IIO,,0,BrandMeister
238137,OZ99XXX,,,,0.00000,0,,PEER,TS1 TS2,,,0,
238201,OZ12DMR,Tophoej,Midtjylland,Denmark,434.78750,3,-2.000,PEER,TS1 TS2,OZ8ABB,Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 240 = Sweden 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 238 = Denmark 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio.,1,Motorola
238202,OZ1REL,Thyholm,Midtjylland,Denmark,434.70000,12,-2.000,PEER,TS1 TS2,OZ1NPL,,0,DMR-plus
238203,OZ0REE,Grenaa,Midtjylland,Denmark,434.70000,12,-2.000,PEER,TS1 TS2,OZ4KIM,,0,DMR-plus
238204,OZ1VIB,Viborg,Midtjylland,Denmark,434.61250,12,-2.000,PEER,TS1 TS2,OZ2HN,,0,DMR-plus
238207,OZ17DMR,Fredericia,Midtjylland,Denmark,434.00000,3,-2.000,PEER,TS1 TS2,OZ8ABB,,0,Motorola
-238210,OZ3REQ,Aarhus ,Midtjylland ,Denmark ,434.63750,12,-2.000,PEER,TS1 TS2,OZ1FAR,,0,DMR-plus
+238210,OZ3REQ,Aarhus,Midtjylland,Denmark,434.63750,12,-2.000,PEER,TS1 TS2,OZ1FAR,,0,DMR-plus
238211,OZ24REQ,Risskov,Midtjylland,Denmark,434.77500,2,-2.000,PEER,TS1 TS2,OZ1DOX,,0,Motorola
238220,OZ6REQ,Yding,Midtjylland,Denmark,434.67500,12,-2.000,PEER,TS1 TS2,OZ1FAR,,0,DMR-plus
238250,OZ5LLR,Herning,Midtjylland,Denmark,434.62500,12,-2.000,PEER,TS1 TS2,OZ5LLM,,0,DMR-plus
@@ -599,28 +720,32 @@
238400,OZ4DMR,Roedovre,,Denmark,0.00000,1,0.000,Master,TS1 TS2,OZ3MAJ,,0,MOT
238401,OZ8DMR,Holte,Hovedstaden,Denmark,434.76250,4,-2.000,PEER,TS1 TS2,OZ8ABB,,0,MOT
238402,OZ7DMR,Vejby,Hovedstaden,Denmark,434.75000,4,-2.000,PEER,TS1 TS2,OZ8ABB,,0,MOT
-238410,OZ6DMR,Helsingoer,Hovedstaden,Denmark,434.63750,14,-2.000,PEER,TS1 TS2,OZ6NOR,,0,DMR-plus
+238403,OZ8HYT,Humlebaek,Hovedstaden,Denmark,434.68750,9,-2.000,PEER,TS1 TS2,OZ8D,,0,BM
+238404,OZ8REZ,Sengeloese,Hovedstaden,Denmark,434.00000,5,-2.000,PEER,TS1 TS2,OZ1BZJ,,0,DMR-plus
+238410,OZ6DMR,Helsingoer,Hovedstaden,Denmark,434.63750,14,-2.000,PEER,TS1 TS2,OZ6NOR,,0,BM
238411,OZ2RET,Helsingor D-Star/DMR,Hovedstaden,Denmark,434.56250,14,-2.000,PEER,TS1 TS2,OZ6NOR,,0,BrandMeister
238412,OZ2RES,Hillerod,Hovedstaden,Denmark,434.60000,14,-2.000,PEER,TS1 TS2,OZ6NOR,,0,BrandMeister
-238420,OZ0KAR,Herlev,Hovedstaden,Denmark,434.62500,14,-2.000,PEER,TS1 TS2,OZ2GRE,,0,DMR-plus
+238420,OZ0KAR,Herlev,Hovedstaden,Denmark,434.62500,14,-2.000,PEER,TS1 TS2,OZ2GRE,,0,BM
238421,OZ30DMR,JO65BS,Hovedstaden,Denmark,434.96250,14,-2.000,PEER,TS1 TS2,OZ3ACC,,0,DMR-plus
-238422,OZ0AMG,Kastrup,Hovedstaden,Denmark,434.68750,14,-2.000,PEER,TS1 TS2,OZ3ACC,,0,DMR-plus
+238422,OZ0AMG,Kastrup,Hovedstaden,Denmark,434.68750,14,-2.000,PEER,TS1 TS2,OZ3ACC,,0,BM
238430,OZ6HYT,Hillerd,Hovedstaden,Denmark,434.56250,14,-2.000,PEER,TS1 TS2,OZ6NOR,,0,DMR-plus
238440,OZ16DMR,Holte 2 test,Hovedstaden,Denmark,434.88750,1,-2.000,PEER,TS1 TS2,OZ8ABB,,0,Motorola
238444,OZ18DMR,Holte,Hovedstaden,Denmark,434.78750,4,-2.000,PEER,TS1 TS2,OZ8ABB,,0,Motorola
238450,OZ2REM,Copenhagen F.,Hovedstaden,Denmark,434.67500,14,-2.000,PEER,TS1 TS2,OZ5WU,,0,DMR-plus
+238455,OZ8HYT,Humlebaek,Hovedstaden,Denmark,434.68750,14,2.000,PEER,TS1 TS2,OZ8D,,0,DMR-plus
238466,OZ20REQ,Copenhagen GLX,Hovedstaden,Denmark,434.71250,4,-2.000,PEER,TS1 TS2,OZ1AFR,Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 238 = Denmark 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 240 = Sweden 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio. Contact: OZ1AFR,1,MOT
238467,OZ2REQ,Copenhagen TEST,Hovestaden,Denmark,434.91250,1,-2.000,,TS1 TS2,OZ1AFR,,0,MOT
238468,OZ21REQ,CITY,,Denmark,434.78750,4,-2.000,PEER,TS1 TS2,OZ1DOX,,0,MOT
238477,OZ0ABB,Avedre Test,Hovedstaden,Denmark,434.78750,1,-2.000,PEER,TS1 TS2,OZ8ABB,,0,Motorola
238499,OZ19DMR,Virum Test,Hovedstaden,Denmark,434.88750,1,-2.000,PEER,TS1 TS2,OZ8ABB,,0,Motorola
238500,OZ2DMR,Egebjerg Sj.,Sjaelland,Denmark,434.72500,5,-2.000,PEER,TS1 TS2,OZ5X,,0,MOT
-238501,OZ6REC,Soeby Test,,Denmark,434.88750,9,-2.000,PEER,TS1 TS2,OZ1BCG,,0,DMR+
+238501,OZ6REC,Soeby Test,Sjaelland,Denmark,434.88750,9,-2.000,PEER,TS1 TS2,OZ1BCG,,0,DMR+
238502,OZ3DMR,Nykoebing TEST,Sjaelland,Denmark,434.76250,5,-2.000,PEER,TS1 TS2,OZ5X,,0,DMR-plus
238503,OZ10DMR,Bandholm,Sjaelland,Denmark,434.52500,1,-2.000,Peer,TS1 TS2,OZ2BAP,,0,MOT
238504,OZ0DMR,Ebberup Sj.,Sjaelland,Denmark,434.73750,5,-2.000,PEER,TS1 TS2,OZ1BCG,,0,MOT
-238505,OZ5DMR,Sengeloese Test,,Denmark,0.00000,1,0.000,PEER,TS1 TS2,OZ1BZJ,,0,Motorola
+238505,OZ5DMR,Sengeloese Test,,Denmark,0.00000,5,-2.000,PEER,TS1 TS2,OZ1BZJ,,0,DMR-plus
238506,OZ2REN,Raadegaard,Sjaelland,Denmark,434.80000,5,-2.000,PEER,TS1 TS2,OZ3MAJ,,0,MOT
+238510,OZ25REQ,Bandholm,Sjaelland,Denmark,434.71250,5,-2.000,PEER,TS1 TS2,OZ1DOX,,0,Motorola
238511,OZ22REQ,Slagelse,Sjaelland,Denmark,434.75000,5,-2.000,PEER,TS1 TS2,OZ1DOX,,0,Motorola
238514,OZ14DMR,Helsingoer,Hovedstaden,Denmark,434.98750,4,-2.000,PEER,TS1 TS2,OZ8ABB,,0,Motorola
238515,OZ15DMR,Bregninge,Sjaelland,Denmark,434.71250,5,2.000,PEER,TS1 TS2,OZ1BZJ,,0,Motorola
@@ -628,13 +753,14 @@
238540,OZ0REC,Vordingborg,Sjaelland,Denmark,434.70000,15,-2.000,PEER,TS1 TS2,OZ5WU,,0,DMR-plus
238542,OZ2BRS,Gilleleje,Sjaelland,Denmark,432.85000,2,2.000,PEER,TS1 TS2,OZ2BRS,,0,MOT
238550,OZ5KAR,Cbrdge TEST 2,Sjaelland,Denmark,434.80000,2,-2.000,Peer,TS1 TS2,OZ5X,,0,Motorola
-238554,OZ1REN,Nakskov,Sjaelland,Denmark,434.67500,15,-2.000,PEER,TS1 TS2,OZ2BAP,,0,Hytera
+238551,OZ8KAR,Snertinge,Sjaelland,Denmark,434.70000,15,-2.000,PEER,TS1 TS2,OZ1BZJ,,0,DMR-plus
+238554,OZ1REN,Nakskov,Sjaelland,Denmark,434.67500,15,-2.000,PEER,TS1 TS2,OZ2BAP,,0,DMR-plus
238555,OZ7REX,Hoejby,Sjaelland,Denmark,434.72500,5,-2.000,PEER,TS1 TS2,OZ5X,,0,Motorola
-238560,OZ3KAR,Gundsoemagle,Sjaelland,Denmark,434.70000,14,-2.000,PEER,TS1 TS2,OZ3ACC,,0,DMR-plus
-238564,OZ0REN,Nykoebing Falster,Sjaelland,Denmark,434.63750,15,-2.000,PEER,TS1 TS2,OZ2BAP,,0,Hytera
+238560,OZ3KAR,Gundsoemagle,Sjaelland,Denmark,434.70000,14,-2.000,PEER,TS1 TS2,OZ3ACC,,0,BM
+238564,OZ0REN,Nykoebing Falster,Sjaelland,Denmark,434.63750,15,-2.000,PEER,TS1 TS2,OZ2BAP,,0,DMR-plus
238570,OZ2KAR,Roskilde,Sjaelland,Denmark,434.66250,15,-2.000,PEER,TS1 TS2,OZ2GRE,,0,DMR-plus
238571,OZ2REF,Herfoelge,Sjaelland,Denmark,434.93750,15,-2.000,PEER,TS1 TS2,OZ1EIZ,,0,DMR-plus
-238572,OZ9REF,Stubbekoebing,Sjaelland,Denmark,434.61250,15,-2.000,PEER,TS1 TS2,OZ2GRE,,0,DMR-plus
+238572,OZ9REF,Stubbekoebing,Sjaelland,Denmark,434.61250,15,-2.000,PEER,TS1 TS2,OZ1EIZ,,0,BM
238573,OZ4REF,Slagelse,Sjaelland,Denmark,434.61250,15,-2.000,PEER,TS1 TS2,OZ1IEP,,0,DMR-plus
238574,OZ8REK,Bandholm,Sjaelland,Denmark,434.65000,15,-2.000,PEER,TS1 TS2,OZ2BAP,,0,DMR-plus
238575,OZ4REG,Regnemark,Sjaelland,Denmark,434.63750,9,-2.000,PEER,TS1 TS2,OZ2GRE,,0,BM
@@ -647,171 +773,224 @@
238999,OZ0REX,CBridge,Sjaelland,Denmark,434.00000,1,0.000,PEER,TS1 TS2,5Q5XX,,0,DMR-plus
240001,SK0JS,Tyreso,Stockholm County,Sweden,434.00000,1,0.000,PEER,TS1 TS2,SM0TSC,,0,DMR-plus
240002,SG0SZK,Vaermdoe,Stockholms luon,Sweden,434.58750,1,-2.000,PEER,TS1 TS2,SM0SZK,,0,DMR-plus
-240010,SK0RMQ,Tyreso,Stockholm,Sweden,434.51250,12,-2.000,PEER,TS1 TS2,SM0TSC,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 240 = Sweden 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 240 = Sweden 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio.
Contact: Johan Hansson, SM0TSC
Email: sm0tsc@gmail.com,1,DMR-MARC
+240003,SM0WIU,Sodertorn,,Sweden,434.61250,1,-2.000,PEER,TS1 TS2,SM0TSC,,0,BrandMeister
+240010,SK0RMQ,Tyreso,Stockholm,Sweden,434.51250,12,-2.000,PEER,TS1 TS2,SM0TSC,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 240 = Sweden 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 240 = Sweden 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio.
Contact: Johan Hansson, SM0TSC
Email: sm0tsc@gmail.com,1,DMR-plus
240011,SK0RNQ,Tyreso,Stockholm,Sweden,439.38750,2,-7.6,Master,TS1 TS2,SM0TSC,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 240 = Sweden 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 240 = Sweden 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio.
Contact: Johan Hansson, SM0TSC
Email: sm0tsc@gmail.com,1,DMR-MARC
-240012,SK0NN,Tyreso/Haninge,Stockholm,Sweden,434.53750,1,-2.000,PEER,TS1 TS2,SM0TSC,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 240 = Sweden 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 240 = Sweden 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio.
Contact: Johan Hansson, SM0TSC
Email: sm0tsc@gmail.com,1,DMR-MARC
-240013,SK0MQ,Taby,Stockholm,Sweden,434.56250,1,-2.000,PEER,TS1 TS2,SM0TSC,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 240 = Sweden 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 240 = Sweden 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio.
Contact: Johan Hansson, SM0TSC
Email: sm0tsc@gmail.com,1,DMR-MARC
-240024,SK0RPF,Sigtuna ,Stockholm County ,Sweden ,434.88750,1,-2.000,PEER,TS1 TS2,SM0VKU,,0,DMR-plus
-240097,SK0RYG,Upplands Vasby,Stockholms luon,Sweden,434.76250,1,-2.000,PEER,TS1 TS2,SM0RGQ,,0,DMR-plus
+240012,SK0NN,Tyreso/Haninge,Stockholm,Sweden,434.53750,1,-2.000,PEER,TS1 TS2,SM0TSC,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 240 = Sweden 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 240 = Sweden 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio.
Contact: Johan Hansson, SM0TSC
Email: sm0tsc@gmail.com,1,BM
+240013,SK0MQ,Taby,Stockholm,Sweden,434.56250,1,-2.000,PEER,TS1 TS2,SM0TSC,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 240 = Sweden 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 240 = Sweden 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio.
Contact: Johan Hansson, SM0TSC
Email: sm0tsc@gmail.com,1,BM
+240015,SK0MM,Varmdoe,Stockholms laen,Sweden,434.97500,1,-2.000,PEER,TS1 TS2,SM0OAZ,,0,BM
+240024,SK0RPF,Sigtuna,Stockholm County,Sweden,434.88750,1,-2.000,PEER,TS1 TS2,SM0VKU,,0,DMR-plus
+240090,SK0SX,Upplands Vaesby,Stockholms luon,Sweden,434.57500,1,-2.000,PEER,TS1 TS2,SM0SHG,,0,Motorola
+240097,SK0RYG,Upplands Vasby,Stockholms luon,Sweden,434.76250,1,-2.000,PEER,TS1 TS2,SM0RGQ,,0,BM
240098,SG0DMR,Soedertaelje,Stockholm County,Sweden,434.50000,1,-2.000,Peer,TS1 TS2,SM0TSC,,0,DMR-plus
240099,SK0MG,Stockholm City,Stockholm County,Sweden,434.68750,1,-2.000,PEER,TS1 TS2,SM0TSC,,0,DMR-plus
-240201,SK2RGJ,Kiruna,Norrbotten County,Sweden,434.51250,2,-2.000,PEER,TS1 TS2,SA2CJG,,0,Motorola
+240201,SK2RGJ,Kiruna,Norrbotten County,Sweden,434.51250,2,-2.000,PEER,TS1 TS2,SA2CJG,,0,BM
240301,SK3RFG,Sundsvall,Jaemtlands laen,Sweden,434.80000,3,-2.000,PEER,TS1 TS2,SM3EFS,,0,DMR+
-240401,SK4BW,Borlange - Sweden,Dalarna County,Sweden,434.85000,12,-2.000,PEER,TS1 TS2,SM4XBL,,0,Motorola
-240501,SL5ZYT,FRO Norrkoping,ustergutland County,Sweden,434.95000,1,-2.000,PEER,TS1 TS2,SM5YLG,,0,DMR-plus
+240401,SK4BW,Borlange - Sweden,Dalarna County,Sweden,434.85000,12,-2.000,PEER,TS1 TS2,SM4XBL,,0,BM
+240501,SL5ZYT,FRO Norrkoping,ustergutland County,Sweden,434.95000,1,-2.000,PEER,TS1 TS2,SM5YLG,,0,BM
240502,SL5ZO,Finspng,ustergutland County,Sweden,434.92500,1,-2.000,PEER,TS1 TS2,SM5YLG,,0,DMR-plus
-240601,SL6ZAQ,Uddevalla,Vuostra Gutaland Cou,Sweden,145.63750,1,-0.6,PEER,TS1 TS2,SM6WZR,,0,DMR-plus
-240610,SM6TKT,Boras,,Sweden,434.55000,1,-2.000,PEER,TS1 TS2,SM6TKT,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 240 = Sweden 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 240 = Sweden 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio.
Contact: Claes Kylemark, SM6TKT
Email: info@multilocator.com,1,DMR-MARC
-240611,SK6DZ,Vargarda,,Sweden,434.57500,2,-2.000,PEER,TS1 TS2,SM6VUL,,0,SM-TRBOnet
-240612,SG6BNA,,Vuostra Gutaland County,Sweden,434.41250,1,0.000,PEER,TS1 TS2,,,0,None
+240601,SL6ZAQ,Uddevalla,Vuostra Gutaland Cou,Sweden,145.63750,1,-0.600,PEER,TS1 TS2,SM6WZR,,0,BM
+240610,SM6TKT,Boras,,Sweden,434.55000,6,-2.000,PEER,TS1 TS2,SM6TKT,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 240 = Sweden 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 240 = Sweden 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio.
Contact: Claes Kylemark, SM6TKT
Email: info@multilocator.com,1,BM
+240611,SK6DZ,Vargarda,,Sweden,434.57500,2,-2.000,PEER,TS1 TS2,SM6VUL,,0,BM
+240612,SK6DZ,Vargarda,Vaestra Goetaland Co,Sweden,434.22500,6,-2.000,PEER,TS1 TS2,SA6AUN,,0,BrandMeister
240666,SE6H,Gothenburg (Lunden),Vuostra Gutaland County,Sweden,433.52500,2,0.000,PEER,TS1 TS2,SA6CJN,,0,None
240699,SG6DMR,Goeteborg,Vuostra Gutaland Cou,Sweden,434.57500,1,-2.000,PEER,TS1 TS2,SM0TSC,,0,DMR-plus
-240700,SG7DMR,Skane,,Sweden,434.61250,7,-2.000,PEER,TS1 TS2,SM7SKI,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 240 = Sweden 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 240 = Sweden 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio.
Contact:Patrik Nilsson, SM7URN
Email: sm7urn@ssa.se,1,DMR-MARC
-240702,SK7REE,Kagerod,Skune luon,Sweden,434.65000,7,-2.000,PEER,TS1 TS2,SM0TSC,,0,DMR-plus
-240703,SK7REP,MALMOE,Skune County,Sweden,434.77500,7,-2.000,PEER,TS1 TS2,SM0TSC,,0,DMR-plus
-240704,SA7BIK,JO65QU,Malmoehus-M,Sweden,434.91250,7,-2.000,PEER,TS1 TS2,SA7BIK,,0,Hytera
-240706,SG7BNT,Bruzaholm,Jonkoping County,Sweden,434.60000,7,-2.000,PEER,TS1 TS2,SA7BNT,,0,Hytera
-242601,LD2HJ,JP50OW ,Hedmark ,Norway ,434.70000,1,-2.000,PEER,TS1 TS2,LB5JE,,0,BrandMeister
+240700,SG7DMR,Skane,,Sweden,434.61250,7,-2.000,PEER,TS1 TS2,SM7SKI,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 240 = Sweden 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 240 = Sweden 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio.
Contact:Patrik Nilsson, SM7URN
Email: sm7urn@ssa.se,1,BM
+240701,SK7RJL,Lund,,Sweden,434.58750,7,-2.000,PEER,TS1 TS2,SM7SKI,,0,BM
+240702,SK7REE,Kagerod,Skune luon,Sweden,434.65000,7,-2.000,PEER,TS1 TS2,SM0TSC,,0,BM
+240703,SK7REP,MALMOE,Skune County,Sweden,434.77500,7,-2.000,PEER,TS1 TS2,SM0TSC,,0,BM
+240704,SA7BIK,JO65QU,Malmoehus-M,Sweden,434.91250,7,-2.000,PEER,TS1 TS2,SA7BIK,,0,BM
+240706,SG7BNT,Bruzaholm,Jonkoping County,Sweden,434.60000,7,-2.000,PEER,TS1 TS2,SA7BNT,,0,DMR-plus
+240707,SG7RFH,Nassjo,Joenkoepings laen,Sweden,434.90000,7,-2.000,PEER,TS1 TS2,SM7LFA,,0,BrandMeister
+242101,LA1KRR,Brum,Akershus,Norway,434.92500,1,-2.000,PEER,TS1 TS2,LA8GKA,,0,BrandMeister
+242601,LD2HJ,JP50OW,Hedmark,Norway,434.70000,1,-2.000,PEER,TS1 TS2,LB5JE,,0,BrandMeister
+242801,LA9NR,Toensberg,Vestfold,Norway,434.95000,3,-2.000,PEER,TS1 TS2,LA7MHA,,0,BM
242901,LA6PR,Bodo,Nordland,Norway,434.67500,1,-2.000,Master,Mixed Mode,LA2GTA,,0,HYTERA
242902,LD8MK,Mosjoen,Nordland,Norway,434.82500,1,-2.000,Peer,TS1 TS2,LA9KY,,0,None
242903,LD8SA,Sandnessjoen,Nordland,Norway,434.80000,1,-2.000,PEER,TS1 TS2,LA5LIA,,0,Motorola
242904,LD8MR,Rana,Mo DV-rptr,Nordland,Norway,434.85000,1,-2.000,PEER,TS1 TS2,LA1PHA,,0,Motorola
+242910,LA7ZR,Harstad,Troms,Norway,434.62500,1,-2.000,PEER,TS1 TS2,LA9YBA,,0,BM
+242911,LA9HRR,Harstad,Troms,Norway,434.80000,1,2.000,PEER,TS1 TS2,LA9YBA,,0,BrandMeister
+242912,LA9HRR,Ldingen,Nordland,Norway,145.67500,1,0.600,PEER,TS1 TS2,LA9YBA,,0,BrandMeister
244001,OH0RUA,Jomala,Aland Is,Finland,439.92500,1,-9.4,PEER,TS1 TS2,SM0TSC,,0,DMR-plus
-244002,OH0RUB,Jomala,Aland Is,Finland,434.55000,1,-2.000,PEER,TS1 TS2,SM0TSC,,0,DMR-plus
-244200,OH2DMR,Helsinki,,Finland,434.57500,1,-2.000,PEER,TS1 TS2,OH2LAK,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 244 = Finland 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 244 = Finland 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio.
Contact: Erik Finskas, OH2LAK
Email: erik@finskas.net,1,DMR-MARC
+244002,OH0RUB,Jomala,Aland Is,Finland,434.55000,1,-2.000,PEER,TS1 TS2,SM0TSC,,0,BM
+244200,OH2DMR,Helsinki,,Finland,434.57500,1,-2.000,PEER,TS1 TS2,OH2LAK,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 244 = Finland 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 244 = Finland 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio.
Contact: Erik Finskas, OH2LAK
Email: erik@finskas.net,1,OHTRBO
244201,OH2DMRA,Espoo,Uudenmaa,Finland,434.51250,1,-2.000,PEER,TS1 TS2,OH2LAK,,0,Motorola
244202,OH2LAK,Espoo,Uudenmaa,Finland,434.56250,1,-2.000,PEER,TS1 TS2,OH2LAK,,0,Motorola
244203,OH2ERJ,Tilkantori,Uudenmaa,Finland,434.53750,1,-2.000,PEER,TS1 TS2,OH2ERJ,,0,Motorola
-244298,OH2CBR,Espoo,Uudenmaa,Finland,439.46250,1,-7.6,PEER,TS1 TS2,OH2LAK,,0,DMR-plus
+244298,OH2CBR,Espoo,Uudenmaa,Finland,439.46250,1,-7.600,PEER,TS1 TS2,OH2LAK,,0,DMR-plus
244299,OH2CH,Espoo,Uudenmaa,Finland,434.57500,1,-2.000,PEER,TS1 TS2,OH2LAK,,0,Motorola
-244300,OH3RNE,Tampere,,Finland,434.52500,1,-2.000,PEER,TS1 TS2,OH3KGR,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 244 = Finland 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 244 = Finland 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio.
Contact: ----------, OH3KGR
Email: ----------,1,DMR-MARC
+244300,OH3RNE,Tampere,,Finland,434.52500,1,-2.000,PEER,TS1 TS2,OH3KGR,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 244 = Finland 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 244 = Finland 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio.
Contact: ----------, OH3KGR
Email: ----------,1,OHTRBO
244310,OH3RNE,Tesoma,,Finland,434.55000,1,-2.000,PEER,TS1 TS2,OH3KGR,,0,OHTRBO
-244320,OH3DMRA,Lahti,,Finland,434.55000,1,-2.000,PEER,TS1 TS2,OH3LFQ,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 244 = Finland 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 244 = Finland 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio.
Contact: ----------, OH3LFQ
Email: ----------,1,DMR-MARC
+244320,OH3DMRA,Lahti,,Finland,434.55000,1,-2.000,PEER,TS1 TS2,OH3LFQ,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 244 = Finland 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 244 = Finland 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio.
Contact: ----------, OH3LFQ
Email: ----------,1,OHTRBO
244501,OH5RUD,Lappeenranta,Kymi,Finland,434.53750,1,-2.000,PEER,TS1 TS2,OH5HCJ,,0,Motorola
244599,OH5DMR,Lappeenranta,Kymi,Finland,434.53750,1,-2.000,PEER,TS1 TS2,OH5HCJ,,0,Motorola
244801,OH8RUA,Kempele, Finland,Oulu,Finland,434.75000,1,-2.000,PEER,TS1 TS2,OH6NVG,,0,Motorola
244802,OH8RMD,Radiotie, Kiiminki,Oulu,Finland,145.63750,1,-0.600,PEER,TS1 TS2,OH6NVG,,0,Motorola
+247004,YL3RCL,Riga,,Latvia,438.67500,1,-7.600,,,YL3CL,,0,BrandMeister
250001,RR3DAC,Moscow,,Russia,434.72500,1,5.100,Peer,TS1 TS2,R2DFR,,0,Motorola
250333,RR3DAB,Moscow,,Russia,434.65000,1,5.200,Peer,TS1 TS2,R2DDM,,0,Motorola
250777,RR3DT,Moscow (Podolsk),,Russia,145.67500,1,-0.600,Peer,TS1 TS2,R2DDS,,0,Motorola
+255002,UR0CUA,Chigirin city,,Ukraine,438.65000,1,7.600,,,UR3VKE,,0,None
255255,UT7NP,Vinnitsa,,Ukraine,145.60000,1,-0.600,Peer,TS1 TS2,UT7NP,,0,Hytera
-255555,UR0DMM,Polonyna Rivna mount,,Ukraine,438.65000,1,-7.6,Peer,TS1 TS2,UZ5DX,,0,DMR-plus
+255555,UR0DMM,Polonyna Rivna mount,,Ukraine,438.65000,1,-7.600,Peer,TS1 TS2,UZ5DX,,0,BM
+255984,UR0HUA,Poltava,,Ukraine,438.77500,1,-7.600,,,UZ5DX,,0,BrandMeister
255985,UR0UUB,Kyiv,,Ukraine,438.70000,1,-7.600,Peer,TS1 TS2,UZ5DX,,0,Hytera
255986,UR0EUB,Dnipropetrovsk,,Ukraine,439.60000,1,-7.600,Peer,TS1 TS2,UZ5DX,,0,
-255990,UR0UUA,Kyiv,,Ukraine,439.37500,1,-7.6,PEER,TS1 TS2,UZ5DX,,0,DMR-plus
-255991,UR0FUA,Odesa,,Ukraine,438.87500,1,-7.6,PEER,TS1 TS2,UZ5DX,,0,DMR-plus
-255992,UR0WUB,Lviv,,Ukraine,439.45000,1,-7.6,PEER,TS1 TS2,UZ5DX,,0,DMR-plus
-255993,UR0EUA,Dnipropetrovsk,,Ukraine,438.75000,1,-7.6,PEER,TS1 TS2,UZ5DX,,0,DMR-plus
-255994,UR0WUA,Trostyan, Slavske,,Ukraine,439.22500,1,-7.6,PEER,TS1 TS2,UZ5DX,,0,DMR-plus
-255995,UR0DMU,Mukachevo,,Ukraine,438.96250,1,-7.6,PEER,TS1 TS2,UZ5DX,,0,DMR-plus
-255996,UR0DMV,Vinogradov,,Ukraine,439.38750,1,-7.6,PEER,TS1 TS2,UZ5DX,,0,DMR-plus
-255997,UR0UVU,Kyiv,,Ukraine,438.65000,1,-7.6,PEER,TS1 TS2,UZ5DX,,0,DMR-plus
-255998,UR0DMS,Rokosovo,,Ukraine,439.32500,1,-7.6,PEER,TS1 TS2,UZ5DX,,0,DMR-plus
-255999,UR0DMR,Uschhorod,Transkarpatien,Ukraine,439.35000,1,-7.6,PEER,TS1 TS2,UZ5DX,,0,DMR-plus
-260102,SR1UVX,Stargard Szczecinski,Zachodniopomorskie,Poland,439.38750,1,-7.6,PEER,TS1 TS2,SQ9JTI,,0,DMR-plus
-260201,SR2GR,Grudziadz,Kuyavian-Pomeranian ,Poland,439.20000,4,-7.600,PEER,TS1 TS2,SP2OFR,,0,None
+255990,UR0UUA,Kyiv,,Ukraine,439.37500,1,-7.600,PEER,TS1 TS2,UZ5DX,,0,BM
+255991,UR0FUA,Odesa,,Ukraine,438.87500,1,-7.600,PEER,TS1 TS2,UZ5DX,,0,BM
+255992,UR0WUB,Lviv,,Ukraine,439.45000,1,-7.600,PEER,TS1 TS2,UZ5DX,,0,BM
+255993,UR0EUA,Dnipropetrovsk,,Ukraine,438.75000,1,-7.600,PEER,TS1 TS2,UZ5DX,,0,BM
+255994,UR0WUA,Trostyan, Slavske,,Ukraine,438.75000,1,-7.600,PEER,TS1 TS2,UZ5DX,,0,BM
+255995,UR0DMU,Mukachevo,,Ukraine,438.96250,1,-7.600,PEER,TS1 TS2,UZ5DX,,0,BM
+255996,UR0DMV,Vinogradov,,Ukraine,438.77500,1,-7.600,PEER,TS1 TS2,UZ5DX,,0,BM
+255997,UR0UVU,Kyiv,,Ukraine,438.65000,1,-7.600,PEER,TS1 TS2,UZ5DX,,0,DMR-plus
+255998,UR0DMS,Rokosovo,,Ukraine,438.67500,1,-7.600,PEER,TS1 TS2,UZ5DX,,0,BM
+255999,UR0DMR,Uschhorod,Transkarpatien,Ukraine,438.65000,1,-7.600,PEER,TS1 TS2,UZ5DX,,0,BM
+259001,ER1VOX,Chisinau,,Moldava,439.00000,10,-7.600,,,ER1IL,,0,Motorola
+260101,SR1SZ,Szczecin,Zachodniopomorskie,Poland,439.07500,1,-7.600,,,SP1XNA,,0,Hytera
+260102,SR1UVX,Stargard Szczecinski,Zachodniopomorskie,Poland,439.38750,1,-7.600,PEER,TS1 TS2,SQ9JTI,,0,BM
+260201,SR2GR,Grudziadz,Kuyavian-Pomeranian,Poland,439.20000,4,-7.600,PEER,TS1 TS2,SP2OFR,,0,None
260202,SR2VVV,Korfantowka Mountain,Kujawsko-Pomorskie,Poland,439.33750,2,-7.600,Peer,TS1 TS2,SP2GG,,0,None
260203,SR2UVV,Jablowo-Tower,Kujawsko-Pomorskie,Poland,439.31250,2,-7.600,Peer,TS1 TS2,SP2GG,,0,None
-260301,SR3DMR,Poznan,Greater Poland Voivo,Poland,145.61250,1,-0.6,PEER,TS1 TS2,SP3YOR,,0,DMR-plus
-260401,SR4ONT,Olsztyn,Warmian-Masurian Voi,Poland,438.50000,1,-7.600,Peer,TS1 TS2,SQ4BJA,,0,Hytera
-260402,SR4MID,Milki ,Maine ,Poland ,438.22500,1,-7.600,PEER,TS1 TS2,SQ4FXY,,0,BM
+260301,SR3DMR,Poznan,Greater Poland Voivo,Poland,145.61250,1,-0.600,PEER,TS1 TS2,SP3YOR,,0,BM
+260350,SR3UVP,Poznan Piatkowo,Greater Poland Voivo,Poland,439.43750,1,-7.600,,,SP3VSS,,0,BrandMeister
+260401,SR4ONT,Olsztyn,Warmian-Masurian Voi,Poland,438.50000,1,-7.600,Peer,TS1 TS2,SQ4BJA,,0,BM
+260402,SR4MID,Milki,Maine,Poland,438.22500,1,-7.600,PEER,TS1 TS2,SQ4FXY,,0,BM
260404,SR4KT,Ketrzyn,Warmian-Masurian Voi,Poland,439.27500,1,-7.600,Peer,TS1 TS2,SQ4AFJ,,0,Hytera
+260410,SR4DGD,Gora Dylewska,Warminsko-Mazurskie,Poland,438.25000,1,-7.600,,,SQ4LWO,,0,BM
260440,SR4UVE,Paslek,Warmian-Masurian Voi,Poland,438.60000,1,-7.600,Peer,TS1 TS2,SQ4KDK,,0,Motorola
260444,SR4MR,Mragowo/Mazury,warmisko-mazurskie,Poland,439.15000,1,7.600,Peer,TS1 TS2,SQ4FAE,,0,None
-260501,SR5WB,Warszawa / Pruszkow,Mazowieckie,Poland,438.55000,1,-7.6,PEER,TS1 TS2,SQ9JTI,,0,DMR-plus
+260501,SR5WB,Warszawa / Pruszkow,Mazowieckie,Poland,438.55000,1,-7.600,PEER,TS1 TS2,SQ9JTI,,0,BM
260502,SR5WZ,Moszna Parcela,Mazowieckie,Poland,439.00000,1,-7.600,PEER,TS1 TS2,SP5QWK,,0,Hytera
+260504,SR5C,Nasierowo-Dziurawien,Mazowieckie,Poland,438.72500,1,-7.600,,,SQ5OMZ,,0,BrandMeister
260510,SQ5H,Moszna-Parcela,Mazowieckie,Poland,438.60000,1,-7.600,Peer,TS1 TS2,SQ5H,,0,None
-260601,SR6DMR,JO81MC,Dolnoslaskie,Poland,438.26250,6,-7.6,Peer,TS1 TS2,SQ6NCJ,,0,Motorola
+260601,SR6DMR,JO81MC,Dolnoslaskie,Poland,438.48750,1,-7.600,Peer,TS1 TS2,SQ6NCJ,,0,BM
260602,SR6DMO,Olawa,Lower Silesian Voivo,Poland,438.62500,1,-7.600,PEER,TS1 TS2,SQ6NCJ,,0,Motorola
-260701,SR7DMR,Kamiensk Mountain,Lodzkie,Poland,439.56250,1,-7.6,Peer,TS1 TS2,SQ7LRX,,0,DMR-plus
+260603,SR6UVO,Brzezie k. Opola,Opole Voivodeship,Poland,439.38750,1,-7.600,,,SQ6IUB,,0,BrandMeister
+260604,SR6WB,Wroclaw,Lower Silesian Voivo,Poland,439.46250,1,-7.600,,,SQ6ROK,,0,BrandMeister
+260701,SR7DMR,Kamiensk Mountain,Lodzkie,Poland,438.27500,1,-7.600,Peer,TS1 TS2,SQ7LRX,,0,BM
260801,SR8UD,Ustrzyki Dolne,Wojewudztwo podkarpa,Poland,438.37500,1,-7.600,Peer,TS1 TS2,SP8WJS,,0,None
260802,SR8UD,Ustrzyki Dolne,Wojewudztwo podkarpa,Poland,145.57500,1,-0.600,Peer,TS1 TS2,SP8WJS,,0,None
+260803,SR8UWD,Wlodawa,Lublin Voivodeship,Poland,438.51250,1,-7.600,,,SP8NTH,,0,Hytera
+260808,SR8UVC,Chotylow,Lublin Voivodeship,Poland,439.55000,1,-7.600,,,SP8QEO,,0,BrandMeister
+260860,SR8MOT,Biala Podlaska,Lublin Voivodeship,Poland,145.58750,8,-0.600,,,SQ8ISJ,,0,Hytera
260888,SR8UVL,Lublin,Lublin Voivodeship,Poland,438.82500,1,7.600,Peer,TS1 TS2,SQ8OHR,,0,Motorola
-260901,SR9VDM,Tarnow,Lesser Poland,Poland,438.20000,1,-7.6,PEER,TS1 TS2,SQ9JTI,,0,DMR-plus
-260902,SR9RB,Rybnik,Silesian Voivodeship,Poland,438.50000,1,-7.600,PEER,TS1 TS2,SQ9VH,,0,HYTERA
-260903,SR9DMR,Katowice,Silesian Voivodeship,Poland,438.45000,1,-7.6,PEER,TS1 TS2,SQ9JTI,,0,DMR-plus
-260904,SR9DGC,Gliwice,Silesian Voivodeship,Poland,438.37500,1,-7.6,Peer,TS1 TS2,SP9UXY,,0,DMR-plus
-260905,SR9BSR,Bielsko-Biala,Silesian Voivodeship,Poland,438.25000,1,-7.6,PEER,TS1 TS2,SQ9JTI,,0,DMR-plus
+260901,SR9VDM,Tarnow,Lesser Poland,Poland,438.20000,1,-7.600,PEER,TS1 TS2,SQ9JTI,,0,BM
+260902,SR9RB,Rybnik,Silesian Voivodeship,Poland,438.50000,1,-7.600,PEER,TS1 TS2,SQ9VH,,0,BM
+260903,SR9DMR,Katowice,Silesian Voivodeship,Poland,438.45000,1,-7.600,PEER,TS1 TS2,SQ9JTI,,0,BM
+260904,SR9DGC,Gliwice,Silesian Voivodeship,Poland,438.37500,1,-7.600,Peer,TS1 TS2,SP9UXY,,0,BM
+260905,SR9BSR,Bielsko-Biala,Silesian Voivodeship,Poland,438.25000,1,-7.600,PEER,TS1 TS2,SQ9JTI,,0,BM
260906,SR9KR,Krakow,maeopolskie,Poland,439.27500,1,-7.600,PEER,TS1 TS2,SP9SVH,,0,Hytera
260907,SR9DV,Koniakow-Ochodzita,,Poland,438.32500,1,7.600,PEER,TS1 TS2,SQ9MYX,,0,BrandMeister
260908,SR9BN,Bedzin,Silesian Voivodeship,Poland,439.22500,1,-7.600,Peer,TS1 TS2,SQ9GIN,,0,Hytera
260909,SR9DBN,Bedzin,Silesian Voivodeship,Poland,438.47500,1,-7.600,Peer,TS1 TS2,SQ9GIN,,0,Hytera
+260910,SR9UVR,Raba Wyzna-Bukowina,Lesser Poland Voivod,Poland,439.30000,1,-7.600,,,SQ9OKR,,0,BrandMeister
+260911,SR9UVT,Gron-Lesnica,maeopolskie,Poland,439.23750,1,-7.600,,,SP9SVH,,0,BrandMeister
+260987,SR9TR,Lichwin,Lesser Poland Voivod,Poland,439.17500,1,-7.600,,,SQ9PCH,,0,BrandMeister
260997,SR9VVO,Lichwin / Tarnow,Malopolskie,Poland,439.43750,1,-7.600,Peer,TS1 TS2,SQ9PCH,,0,Hytera
-260998,SR9DRB,Rybnik,Silesian Voivodeship,Poland,438.50000,1,-7.6,PEER,TS1 TS2,SQ9JTI,,0,DMR-plus
+260998,SR9DRB,Rybnik,Silesian Voivodeship,Poland,438.50000,1,-7.600,PEER,TS1 TS2,SQ9JTI,,0,DMR-plus
260999,SR9SZ,Zawiercie, PL,Slaskie,Poland,439.15000,1,-7.600,Peer,TS1 TS2,SQ9NFI,,0,None
+262001,IPSC1,,,Germany,,,,,,DL5DI,,0,DMR-plus
+262002,DM0KWD,Halle/Saale,Saxony-Anhalt,Germany,438.45000,1,-7.600,,,DL1HRC,,0,None
262003,DB0BRO,Brocken/Harz,Saxony-Anhalt,Germany,439.13750,1,-7.6,Peer,TS1 TS2,DG0CBP,,0,DMR-plus
262004,DB0HAL,Petersberg,Saxony-Anhalt,Germany,438.51250,1,-7.600,PEER,TS1 TS2,DL1HRC,,0,BM
-262005,DB0AMK,Tangermuende,Saxony-Anhalt,Germany,439.45000,1,-7.6,PEER,TS1 TS2,DG0CCO,,0,Hytera
+262005,DB0AMK,Tangermuende,Saxony-Anhalt,Germany,439.45000,1,-7.600,PEER,TS1 TS2,DG0CCO,,0,DMR-plus
262006,DB0TGM,Tangermuende,Saxony-Anhalt,Germany,145.68750,1,-0.600,PEER,TS1 TS2,DG0CDC,,0,None
+262007,DM0LUE,Luedersdorf/MVP,Mecklenburg-Vorpomme,Germany,439.96250,1,-9.4,,,DL6HBQ,,0,DMR-plus
+262010,IPSCDE00,,,Germany,,,,,,DL5DI,,0,DMR-plus
+262011,IPSCDE01,,,Germany,,,,,,DL5DI,,0,DMR-plus
+262012,IPSCDE02,,,Germany,,,,,,DL5DI,,0,DMR-plus
+262013,IPSCDE03,,,Germany,,,,,,DL5DI,,0,DMR-plus
+262014,IPSCDE04,,,Germany,,,,,,DL5DI,,0,DMR-plus
+262015,IPSCDE05,,,Germany,,,,,,DL5DI,,0,DMR-plus
+262016,IPSCDE06,,,Germany,,,,,,DL5DI,,0,DMR-plus
+262017,IPSCDE07,,,Germany,,,,,,DL5DI,,0,DMR-plus
+262018,IPSCDE08,,,Germany,,,,,,DL5DI,,0,DMR-plus
+262019,IPSCDE09,,,Germany,,,,,,DL5DI,,0,DMR-plus
+262020,IPSCDE10,,,Germany,,,,,,DL5DI,,0,DMR-plus
+262021,IPSCDE11,,,Germany,,,,,,DL5DI,,0,DMR-plus
+262022,IPSCDE12,,,Germany,,,,,,DL5DI,,0,DMR-plus
+262023,IPSCDE13,,,Germany,,,,,,DL5DI,,0,DMR-plus
+262024,IPSCDE14,,,Germany,,,,,,DL5DI,,0,DMR-plus
+262025,IPSCDE15,,,Germany,,,,,,DL5DI,,0,DMR-plus
262055,DL1HRC,Bad Duerrenberg,Saxony-Anhalt,Germany,438.45000,1,-7.600,Peer,TS1 TS2,,,0,Hytera
-262100,DM0MOT,Berlin/Tegel,Berlin,Germany,439.52500,1,-7.600,PEER,TS1 TS2,DJ0WH,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Wayne Holmes, DJ0WH
Email: wayne.c.holmes@gmail.com,1,DMR-MARC
+262100,DM0MOT,Berlin/Tegel,Berlin,Germany,439.52500,1,-7.600,PEER,TS1 TS2,DJ0WH,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Wayne Holmes, DJ0WH
Email: wayne.c.holmes@gmail.com,1,DMR-DL
262101,DB0JSF,Frankfurt/Oder,Brandenburg,Germany,439.95000,1,-9.4,Peer,TS1 TS2,DF1JSF,,0,DMR-plus
262102,DG2BTR,Zechin,Brandenburg,Germany,439.55000,1,-9.400,Peer,TS1 TS2,,,0,Hytera
262110,DM0RD,Berlin/Tempelhof,,Germany,439.58750,1,-7.600,PEER,TS1 TS2,DG1TAL,,0,DMR-DL
-262111,DF1JSF,Frankfurt/Oder,Brandenburg,Germany,439.95000,1,-9.4,PEER,TS1 TS2,DF1JSF,,0,DMR-plus
-262120,DB0OUD,Berlin/City-West,Berlin,Germany,438.62500,1,-7.600,Peer,TS1 TS2,DL3OCK,,0,DMR-plus
+262111,DF1JSF,Frankfurt/Oder,Brandenburg,Germany,439.95000,1,-9.400,PEER,TS1 TS2,DF1JSF,,0,DMR-plus
+262120,DB0OUD,Berlin/City-West,Berlin,Germany,438.62500,1,-7.600,Peer,TS1 TS2,DL3OCK,,0,BM
262121,DB0LUD,Ludwigsfelde,Brandenburg,Germany,438.57500,1,-7.600,Peer,TS1 TS2,DG1RNN,,0,None
262123,DK0TU,TU Berlin,Berlin,Germany,438.95000,1,-7.600,Peer,TS1 TS2,DB9MAT,,0,None
262130,DB0SPN,Cottbus,Brandenburg,Germany,439.48750,1,-7.6,PEER,TS1 TS2,DM6MH,,0,DMR-plus
262200,DM0HMB,Hamburg,Hamburg,Germany,438.45000,1,-7.6,PEER,TS1 TS2,DG1HT,,0,DMR-plus
-262201,DB0PC,Schoenwalde,,Germany,438.38750,1,-7.600,PEER,TS1 TS2,DB5NU,,0,BrandMeister
+262201,DB0PC,Schoenwalde,,Germany,438.38750,1,-7.600,PEER,TS1 TS2,DB5NU,,0,BM
262202,DB0PC,Schoenwalde,Schleswig-Holstein,Germany,438.30000,1,-7.600,Peer,TS1 TS2,DG1HT,,0,DMR-plus
-262210,DB0SAT,Hamburg,Schleswig-Holstein,Germany,439.50000,1,-7.6,PEER,TS1 TS2,DG1HT,,0,DMR-plus
+262210,DB0SAT,Hamburg,Schleswig-Holstein,Germany,439.50000,1,-7.600,PEER,TS1 TS2,DG1HT,,0,DMR-plus
262211,DH4HAV,Hamburg,Hamburg,Germany,439.92500,1,-9.400,PEER,TS1 TS2,DH4HAV,,0,DMR-plus
-262220,DB0FS,Hamburg,,Germany,439.56250,1,-7.600,PEER,TS1 TS2,DL9DAK,,0,BrandMeister
+262220,DB0FS,Hamburg,,Germany,439.56250,1,-7.600,PEER,TS1 TS2,DL9DAK,,0,BM
262221,DL0FHH,Univ. Hamburg,Hamburg,Germany,438.30000,1,-7.6,PEER,TS1 TS2,DG1HT,,0,DMR-plus
-262222,DB0ZE,Hamburg,,Germany,438.92500,1,-7.600,PEER,TS1 TS2,DL9DAK,,0,BrandMeister
+262222,DB0ZE,Hamburg,,Germany,438.92500,1,-7.600,PEER,TS1 TS2,DL9DAK,,0,BM
262226,DB0PR,Armstedt,Niedersachsen,Germany,439.35000,1,-7.600,Peer,TS1 TS2,DG1HT,,0,DMR-plus
-262230,DB0BRV,Bremervoerde,Niedersachsen,Germany,438.46250,1,-7.600,PEER,TS1 TS2,DL4BBD,,0,DMR-plus
+262230,DB0BRV,Bremervoerde,Niedersachsen,Germany,438.46250,1,-7.600,PEER,TS1 TS2,DL4BBD,,0,BM
+262231,DO0TPB,Basedow,Schleswig-Holstein,Germany,438.83750,1,-7.600,,,DO7TPB,,0,DMR-plus
262240,DB0HPA,Laegerdorf,Schleswig-Holstein,Germany,439.51250,1,-7.6,Peer,TS1 TS2,DL9HPA,,0,DMR-plus
262250,DB0HHO,Grosshansdorf,Schleswig-Holstein,Germany,439.52500,1,-7.6,PEER,TS1 TS2,DL5KUA,,0,DMR-plus
+262260,DB0KUA,Luetjensee,Schleswig-Holstein,Germany,438.52500,1,-7.6,,,DL5KUA,,0,DMR-plus
262262,DO0SOC,Wandelwitz,Schleswig-Holstein,Germany,438.67500,1,-7.600,Peer,MM 88.5,DO2LMV,,0,HYTERA
+262290,DB0HEW,Geesthacht,Schleswig-Holstein,Germany,438.55000,1,-7.600,,,DK4HPA,,0,DMR-plus
+262295,DB0HUS,Husum,Schleswig-Holstein,Germany,438.42500,1,-7.6,,,DB5NU,,0,DMR-plus
262297,DB0XN,Stollberg Bredstedt,Schleswig-Holstein,Germany,438.38750,1,-7.600,PEER,TS1 TS2,DC9LR,,0,Motorola
+262298,DM0FL,Flensburg-Land,,Germany,439.82500,1,-9.400,PEER,TS1 TS2,DC9LR,,0,Motorola
262299,DM0SL,Schleswig,Schleswig-Holstein,Germany,438.53750,1,-7.600,Peer,TS1 TS2,DC9LR,,0,Motorola
262301,DB0OBO,Hameln,Niedersachsen,Germany,439.53750,1,-7.6,PEER,TS1 TS2,DL1OBO,,0,DMR-plus
-262302,DL1BH,Bremerhaven ,Bremen ,Germany ,439.00000,1,-7.6,PEER,TS1 TS2,DL1BH,,0,BM
+262302,DL1BH,Bremerhaven,Bremen,Germany,439.00000,1,-7.6,PEER,TS1 TS2,DL1BH,,0,DMR-plus
262303,DB0RVB,Ravensberg,Niedersachsen,Germany,439.45000,1,-7.6,PEER,TS1 TS2,DL8AAP,,0,DMR-plus
-262304,DO0SZ,Salzgitter,Niedersachsen,Germany,439.46250,1,-7.6,None,TS1 TS2,DO1OTD,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Torsten Holz , DC9TH
Email: DB0SZ@icloud.com,1,DMR-MARC
+262304,DO0SZ,Salzgitter,Niedersachsen,Germany,439.46250,1,-7.600,None,TS1 TS2,DO1OTD,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Torsten Holz , DC9TH
Email: DB0SZ@icloud.com,1,BM
262305,DB0JUI,Juist,Niedersachsen,Germany,439.27500,1,-7.6,PEER,TS1 TS2,DF6BT,,0,DMR-plus
262306,DB0XX,Helmstedt,Niedersachsen,Germany,439.50000,1,-7.6,PEER,TS1 TS2,DK2HP,,0,DMR-plus
-262307,DM0WL,Winsen (Luhe),Lower Saxony,Germany,439.03750,1,-7.6,PEER,TS1 TS2,DL7TJ,,0,Hytera
-262308,DB0DOS,Doerenberg,Nordrhein-Westfalen,Germany,145.71250,1,-0.6,Peer,TS1 TS2,DJ2QW,,0,DMR-plus
+262307,DM0WL,Winsen (Luhe),Lower Saxony,Germany,439.03750,1,-7.600,PEER,TS1 TS2,DL7TJ,,0,DMR-plus
+262308,DB0DOS,Doerenberg,Nordrhein-Westfalen,Germany,145.71250,2,-0.6,Peer,TS1 TS2,DJ2QW,,0,DMR-plus
262309,DL9AM,Osterode,Lower Saxony,Germany,438.37500,1,-7.6,PEER,TS1 TS2,DL9AM,,0,DMR-plus
-262310,DB0ZO,Doerenbg./Osnabrueck,,Germany,438.47500,1,-7.600,Peer,TS1 TS2,DL3GS,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact:Peter Lampe, DL3GS
Email: dl3gs@db0zo.eu,1,DMR-MARC
-262311,DB0ZO,Doerenbg./Osnabrueck,,Germany,438.53750,1,-7.6,Peer,TS1 TS2,DL3GS,,0,DMR-plus
-262312,DB0HOL,Ottenstein,Lower Saxony,Germany,438.91250,1,-7.6,PEER,TS1 TS2,DG4KLK,,0,DMR-plus
+262310,DB0ZO,Doerenbg./Osnabrueck,Niedersachsen,Germany,438.47500,1,-7.600,Peer,TS1 TS2,DL3GS,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact:Peter Lampe, DL3GS
Email: dl3gs@db0zo.eu,1,DMR-DL
+262311,DB0ZO,Doerenbg./Osnabrueck,Niedersachsen,Germany,438.53750,1,-7.6,Peer,TS1 TS2,DL3GS,,0,DMR-plus
+262312,DB0HOL,Ottenstein,Niedersachsen,Germany,438.91250,1,-7.6,PEER,TS1 TS2,DG4KLK,,0,DMR-plus
262313,DB0OHA,Herzberg am Harz,,Germany,439.07500,1,-7.6,PEER,TS1 TS2,DL9AM,,0,DMR-plus
-262314,DB0NDS,Zernien,Lower Saxony,Germany,438.65000,1,-7.600,Peer,TS1 TS2,DL6YEA,,0,None
+262314,DB0NDS,Zernien,Niedersachsen,Germany,438.65000,1,-7.600,Peer,TS1 TS2,DL6YEA,,0,None
262315,DB0BHN,Bremerhaven-Zentrum,Bremen,Germany,145.76250,1,-0.6,Peer,TS1 TS2,DH8BAT,,0,DMR-plus
262316,DB0BHV,Bremerhaven,Bremen,Germany,438.47500,1,-7.6,PEER,TS1 TS2,DL1BIR,,0,DMR-plus
-262317,DB0BNL,Bremen ,Bremen ,Germany ,438.51250,1,-7.6,Peer,TS1 TS2,DK2KL,,0,DMR-plus
+262317,DB0BNL,Bremen,Bremen,Germany,438.51250,1,-7.6,Peer,TS1 TS2,DK2KL,,0,DMR-plus
262318,DB0LAM,Hildesheim/Achtum,,Germany,439.47500,1,-7.6,PEER,TS1 TS2,DL1OFD,,0,DMR-plus
262319,DB0EIG,Gieboldehausen,,Germany,439.37500,1,-7.600,PEER,TS1 TS2,DL4OCH,,0,Brandmeister
-262320,DB0ATS,Hannover/Messe,Niedersachsen,Germany,439.97500,1,-9.400,Peer,TS1 TS2,DF6AS,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 3 = North Amerika
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Andreas Schroth, DF6AS
Email: ----------,1,DMR-MARC
+262320,DB0ATS,Hannover/Messe,Niedersachsen,Germany,439.97500,1,-9.400,Peer,TS1 TS2,DF6AS,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 3 = North Amerika
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Andreas Schroth, DF6AS
Email: ----------,1,BM
+262321,DB0FA,Fassberg,Niedersachsen,Germany,438.91250,1,-7.600,,,DG1JC,,0,DMR-plus
262322,DL9BDK,Bremerhaven,Bremen,Germany,438.32500,1,-7.6,PEER,TS1 TS2,DL9BDK,,0,DMR-plus
262323,DB0DAM,Dammer Berge,Niedersachsen,Germany,439.86250,1,-9.4,PEER,TS1 TS2,DJ2QW,,0,DMR-plus
262324,DL9OBD,Eilvese,Niedersachsen,Germany,439.93750,1,-9.400,Peer,TS1 TS2,DL9OBD,,0,BM
262325,DB0TVH,Hannover/Stadt,Niedersachsen,Germany,439.90000,1,-9.4,PEER,TS1 TS2,DL9OBD,,0,DMR-plus
-262326,DO1KBL,Osterholz-Scharmbeck,Lower Saxony,Germany,439.27500,1,-7.600,PEER,TS1 TS2,DO1KBL,,0,DMR-plus
-262327,DB0KRE,Einbeck ,Lower Saxony ,Germany ,438.38750,1,-7.6,PEER,TS1 TS2,DJ3OW,,0,DMR-plus
-262328,DB0OX,Norden,West Virginia,Germany,439.30000,1,-7.6,PEER,TS1 TS2,DG1BGS,,0,Hytera
-262329,DB0HHG,Goettingen,Lower Saxony,Germany,439.25000,1,-7.600,Peer,TS1 TS2,DG3ABY,,0,None
-262330,DB0TVH,Hannover/Stadt,,Germany,439.58750,1,-7.600,PEER,TS1 TS2,DL9OBD,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Tomas Rose, DL9OBD
Email: dl9obd@darc.de,1,DMR-MARC
+262326,DO1KBL,Osterholz-Scharmbeck,Niedersachsen,Germany,439.27500,1,-7.6,PEER,TS1 TS2,DO1KBL,,0,DMR-plus
+262327,DB0KRE,Einbeck,Lower Saxony,Germany,438.38750,1,-7.6,PEER,TS1 TS2,DJ3OW,,0,DMR-plus
+262328,DB0OX,Norden,West Virginia,Germany,439.30000,1,-7.600,PEER,TS1 TS2,DG1BGS,,0,DMR-plus
+262329,DB0HHG,Goettingen,Niedersachsen,Germany,439.25000,1,-7.600,Peer,TS1 TS2,DG3ABY,,0,None
+262330,DB0TVH,Hannover/Stadt,Niedersachsen,Germany,439.58750,1,-7.600,PEER,TS1 TS2,DL9OBD,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Tomas Rose, DL9OBD
Email: dl9obd@darc.de,1,BM
262331,DO0HB,Bremen,Bremen,Germany,438.32500,1,-7.6,Peer,TS1 TS2,DO6BCO,,0,DMR-plus
-262332,DJ2QW,Georgsmarienhuette,Niedersachsen,Germany,439.53750,1,-7.600,PEER,TS1 TS2,DJ2QW,,0,DMR-plus
+262332,DJ2QW,Georgsmarienhuette,Niedersachsen,Germany,438.40000,1,-7.600,PEER,TS1 TS2,DJ2QW,,0,DMR-plus
262333,DM0NGU,Isterberg,Niedersachsen,Germany,438.50000,1,-7.6,PEER,TS1 TS2,DF3BM,,0,DMR-plus
-262334,DB0NGU,Uelsen,Lower Saxony,Germany,438.50000,1,-7.600,Peer,TS1 TS2,DF3BM,,0,Hytera
-262335,DB0ROD,Hannover/Deister,,Germany,438.68750,1,-7.600,PEER,TS1 TS2,DG4OAE,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Martin Sjuts, DG5BCM
Email: martin.sjuts@atsonline.de (https://3c.web.de/mail/client/mail/mailto;jsessionid=FD5BA33956A5DE2BBCD5461784268D0F-n1.bs20b?to=martin.sjuts%40atsonline.de&selection=tfol1310b3689a5dbfd2),1,DMR-MARC
-262336,DB0WL,Winsen,Lower Saxony,Germany,438.48750,1,-7.6,Peer,TS1 TS2,DL7TJ,,0,DMR-plus
+262334,DB0NGU,Uelsen,Niedersachsen,Germany,438.50000,1,-7.600,Peer,TS1 TS2,DF3BM,,0,Hytera
+262335,DB0ROD,Hannover/Deister,,Germany,438.68750,1,-7.600,PEER,TS1 TS2,DG4OAE,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Martin Sjuts, DG5BCM
Email: martin.sjuts@atsonline.de (https://3c.web.de/mail/client/mail/mailto;jsessionid=FD5BA33956A5DE2BBCD5461784268D0F-n1.bs20b?to=martin.sjuts%40atsonline.de&selection=tfol1310b3689a5dbfd2),1,BM
+262336,DB0WL,Winsen,Niedersachsen,Germany,438.48750,1,-7.6,Peer,TS1 TS2,DL7TJ,,0,DMR-plus
262337,DB0AGM,Lueneburg,Niedersachsen,Germany,438.50000,1,-7.6,Peer,TS1 TS2,DC2HC,,0,DMR-plus
-262340,DB0CEL,Celle,Lower Saxony,Germany,439.27500,1,-7.6,PEER,TS1 TS2,DL3OBI,,0,DMR-plus
-262341,DB0FA,Fassberg,,Germany,438.71250,1,-7.6,PEER,TS1 TS2,DG1JC,,0,DMR-plus
+262338,DB0OHA,Herzberg am Harz,Niedersachsen,Germany,439.56250,1,-7.6,,,DL9AM,,0,DMR-plus
+262340,DB0CEL,Celle,Niedersachsen,Germany,439.27500,1,-7.600,PEER,TS1 TS2,DL3OBI,,0,BM
+262341,DB0FA,Fassberg,,Germany,438.71250,1,-7.600,PEER,TS1 TS2,DG1JC,,0,DMR-plus
+262343,DB0DOS,Doerenberg,Nordrhein-Westfalen,Germany,438.40000,1,-7.6,,,DJ2QW,,0,DMR-plus
262345,DB0EB,Einbeck,Niedersachsen,Germany,438.51250,1,-7.6,PEER,TS1 TS2,DH2OP,,0,DMR-plus
262347,DB0GOE,Bovenden,Lower Saxony,Germany,438.70000,1,-7.6,Peer,TS1 TS2,DL8OAI,,0,DMR-plus
-262350,DB0CHV,Cuxhaven,Niedersachsen,Germany,438.27500,1,-7.6,Peer,TS1 TS2 ,DH4HAN,,0,DMR-plus
-262354,DB0DEL,Delmenhorst,Lower Saxony,Germany,439.92500,2,-9.4,PEER,TS1 TS2,DG7BBU,,0,DMR-plus
+262350,DB0CHV,Cuxhaven,Niedersachsen,Germany,438.27500,1,-7.600,Peer,TS1 TS2 ,DH4HAN,,0,DMR-plus
+262354,DB0DEL,Delmenhorst,Niedersachsen,Germany,439.92500,2,-9.4,PEER,TS1 TS2,DG7BBU,,0,DMR-plus
262355,DB0VER,Verden,Niedersachsen,Germany,439.15000,1,-7.6,Peer,MM 67.0,DJ9BT,,0,DMR-plus
-262356,DB0AL,Langwedel,Lower Saxony,Germany,145.58750,1,-0.6,Peer,TS1 TS2,DB2XX,,0,DMR-plus
+262356,DB0AL,Langwedel,Niedersachsen,Germany,145.58750,1,-0.6,Peer,TS1 TS2,DB2XX,,0,DMR-plus
262360,DB0CWS,Steinau a.d. Strasse,Hessen,Germany,439.50000,1,-7.6,PEER,TS1 TS2,DG8FAC,,0,DMR-plus
262362,DB0RH,Wardboehmen / Bergen,Niedersachsen,Germany,438.81250,1,-7.6,PEER,TS1 TS2,DG1OW,,0,DMR-plus
262383,DB0ANT,Wolfenbuettel,Niedersachsen,Germany,439.86250,1,-9.4,PEER,TS1 TS2,DC2OS,,0,DMR-plus
@@ -820,7 +999,7 @@
262394,DB0HYT,Bad Muender,Niedersachsen,Germany,439.35000,1,-7.600,Peer,TS1 TS2,DJ2VA,,0,DMR-plus
262395,DB0HYT,Bad Muender,Niedersachsen,Germany,434.83750,1,-2.000,Peer,TS1 TS2,DJ2VA,,0,Hytera
262396,DB0XY,Bocksberg/ Harz,Niedersachsen,Germany,439.87500,1,-9.4,Peer,TS1 TS2,DH1ALF,,0,DMR-plus
-262397,DB0ABZ,Salzgitter-Druette,Niedersachsen,Germany,439.82500,1,-9.4,PEER,TS1 TS2,DH1ALF,,0,DMR-plus
+262397,DB0ABZ,Salzgitter-Druette,Niedersachsen,Germany,439.82500,1,-9.400,PEER,TS1 TS2,DH1ALF,,0,DMR-plus
262398,DB0DLR,DLR Braunschweig,Niedersachsen,Germany,439.48750,1,-7.600,PEER,TS1 TS2,DH1ALF,,0,None
262399,DB0DVR,Braunschweig,Niedersachsen,Germany,438.57500,1,-7.6,PEER,TS1 TS2,DH1ALF,,0,DMR-plus
262400,DB0NG,Marl,NRW,Germany,438.90000,1,-7.6,PEER,TS1 TS2,DL1YBL,,0,DMR-plus
@@ -828,78 +1007,84 @@
262402,DB0WA,Aachen,Nordrhein-Westfalen,Germany,438.68750,1,-7.6,PEER,TS1 TS2,DJ7LC,,0,DMR-plus
262403,DB0DW,Boenen,Nordrhein-Westfalen,Germany,145.57500,1,-0.6,PEER,TS1 TS2,DL7DW,,0,DMR-plus
262404,DB0YS,Kreuztal-Kindelsberg,Nordrhein-Westfalen,Germany,438.72500,1,-7.6,PEER,TS1 TS2,DF1DU,,0,DMR-plus
-262405,DB0BS,Bochum,Nordrhein-Westfalen,Germany,439.97500,4,-9.4,PEER,TS1 TS2,DL1YBL,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Joachim Berns, DL1YBL
Email: dl1ybl@darc.de,1,DMR-DL
+262405,DB0BS,Bochum,Nordrhein-Westfalen,Germany,439.97500,4,-9.400,PEER,TS1 TS2,DL1YBL,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Joachim Berns, DL1YBL
Email: dl1ybl@darc.de,1,DMR-plus
262406,DB0IUZ,Bochum/Sundern,NRW,Germany,438.25000,1,-7.6,PEER,TS1 TS2,DG3JKB,,0,DMR-plus
262407,DB0END,Ennepetal-Stueting,Nordrhein-Westfalen,Germany,439.27500,1,-7.6,PEER,TS1 TS2,DG8DCH,,0,DMR-plus
262409,DL1KJ,Pulheim,Nordrhein-Westfalen,Germany,439.51250,1,-7.6,PEER,TS1 TS2,DO1PA,,0,DMR-plus
-262410,DF0MHR,Muelheim/Ruhr,Nordrhein-Westfalen,Germany,438.76250,1,-7.600,PEER,TS1 TS2,DF2ER,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Walter Mentzel, DF2ER
Email: df2er@yahoo.de,1,DMR-MARC
+262410,DF0MHR,Muelheim/Ruhr,Nordrhein-Westfalen,Germany,438.76250,1,-7.600,PEER,TS1 TS2,DF2ER,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Walter Mentzel, DF2ER
Email: df2er@yahoo.de,1,DMR-DL
262411,DF0MHR,Muelheim/Ruhr,Nordrhein-Westfalen,Germany,439.03750,1,-7.6,PEER,TS1 TS2,DF2ER,,0,DMR-plus
262412,DJ7CM,Heiligenhaus,Nordrhein-Westfalen,Germany,439.41250,1,-7.600,PEER,TS1 TS2,DJ7CM,,0,BM
262414,DB0SYS,Dormagen,Nordrhein-Westfalen,Germany,438.46250,1,-7.600,PEER,TS1 TS2,DD3JI,,0,DMR-DL
262415,DB0RES,Rees,Nordrhein-Westfalen,Germany,438.42500,1,-7.600,Peer,TS1 TS2,DD9QP,,0,DMR-DL
-262420,DB0NG,Marl,,Germany,438.57500,1,-7.600,PEER,TS1 TS2,DL1YBL,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Joachim Berns, DL1YBL
Email: dl1ybl@darc.de,1,DMR-MARC
+262420,DB0NG,Marl,,Germany,438.57500,1,-7.600,PEER,TS1 TS2,DL1YBL,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Joachim Berns, DL1YBL
Email: dl1ybl@darc.de,1,DMR-DL
262424,DB0WT,Lemgo,NRW,Germany,439.92500,1,-9.4,Peer,TS1 TS2,DF2MM,,0,DMR-plus
262425,DF2MM,Detmold,Nordrhein-Westfalen,Germany,439.92500,1,-9.400,Peer,TS1 TS2,DF2MM,,0,Hytera
-262430,DB0AVR,Stolberg/Aachen,,Germany,439.83750,1,-9.400,PEER,TS1 TS2,DH6KQ,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Andreas Fromm, DH6KQ
Email: dh6kq@t-online.de,1,DMR-MARC
+262430,DB0AVR,Stolberg/Aachen,,Germany,439.83750,1,-9.400,PEER,TS1 TS2,DH6KQ,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Andreas Fromm, DH6KQ
Email: dh6kq@t-online.de,1,DMR-DL
262434,DO0FSE,Euskirchen,Nordrhein-Westfalen,Germany,438.71250,1,-7.600,Peer,TS1 TS2,DO1FSE,,0,DMR-plus
-262435,DB0II,Moenchengladbach,Nordrhein-Westfalen,Germany,439.31250,1,-7.600,PEER,TS1 TS2,DF6EF,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Christian Jansen, DF6EF
Email: christian@df6ef.de,1,DMR-MARC
+262435,DB0II,Moenchengladbach,Nordrhein-Westfalen,Germany,439.31250,1,-7.600,PEER,TS1 TS2,DF6EF,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Christian Jansen, DF6EF
Email: christian@df6ef.de,1,DMR-DL
262437,DB0MY,Juelich,Nordrhein-Westfalen,Germany,438.36250,1,-7.6,PEER,TS1 TS2,DG9KAF,,0,DMR-plus
-262440,DB0DDS,Dortmund,Nordrhein-Westfalen,Germany,439.85000,1,-9.4,PEER,TS1 TS2,DF1VB,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio,1,DMR-MARC
+262440,DB0DDS,Dortmund,Nordrhein-Westfalen,Germany,439.85000,1,-9.4,PEER,TS1 TS2,DF1VB,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio,1,DMR-plus
262442,DB0ACC,Haltern am See,Nordrhein-Westfalen,Germany,438.45000,1,-7.6,PEER,TS1 TS2,DL8YBL,,0,DMR-plus
+262444,DB0WQ,Espelkamp,Nordrhein-Westfalen,Germany,438.71250,1,-7.6,PEER,TS1 TS2,DL7JW,,0,DMR-plus
262450,DB0DRE,Recklinghausen,NRW,Germany,439.97500,1,-9.400,Peer,TS1 TS2,DL1YBL,,0,DMR-DL
262452,DB0KX,Viersen,Nordrhein-Westfalen,Germany,438.40000,1,-7.600,Peer,TS1 TS2,DL1ER,,0,None
262454,DB0CW,Gummersbach,Nordrhein-Westfalen,Germany,145.66250,1,-0.6,PEER,TS1 TS2,DJ3CW,,0,DMR-plus
262455,DB0CW,Gummersbach,NRW,Germany,439.48750,1,-7.6,PEER,TS1 TS2,DJ3CW,,0,DMR-plus
262456,DB0MON,Nordeifel/Kreis AC,Nordrhein-Westfalen,Germany,439.77500,1,-9.400,PEER,TS1 TS2,DH6KQ,,0,DMR-plus
-262460,DB0DBN,Oelberg/Bonn,,Germany,439.97500,2,-9.400,PEER,TS1 TS2,DL1YBL,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Joachim Berns, DL1YBL
Email: dl1ybl@darc.de,1,DMR-MARC
+262460,DB0DBN,Oelberg/Bonn,,Germany,439.97500,2,-9.400,PEER,TS1 TS2,DL1YBL,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Joachim Berns, DL1YBL
Email: dl1ybl@darc.de,1,DMR-DL
262461,DB0DBN,Oelberg/Bonn,Nordrhein-Westfalen,Germany,438.38750,1,-7.6,PEER,TS1 TS2,DL1YBL,,0,DMR-plus
-262462,DB0VEL,Velbert,Nordrhein-Westfalen,Germany,438.63750,1,7.600,Peer,TS1 TS2,DD5CX,,0,Motorola
+262462,DB0VEL,Velbert,Nordrhein-Westfalen,Germany,438.63750,1,-7.600,Peer,TS1 TS2,DD5CX,,0,Motorola
262465,DB0HAA,Hagen,NRW,Germany,439.82500,2,-9.4,Peer,TS1 TS2,DG1DS,,0,DMR-plus
-262467,DO3NF,Mettmann,Nordrhein-Westfalen,Germany,438.18750,1,-7.600,PEER,TS1 TS2,DO3NF,,0,Hytera
-262470,DB0VR,Nordhelle/Sauerland,,Germany,439.88750,1,-9.400,Peer,TS1 TS2,DL1YBL,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Joachim Berns, DL1YBL
Email: dl1ybl@darc.de,1,DMR-MARC
-262473,DO0DMR,Ratingen,NRW,Germany,438.20000,1,-7.6,Peer,TS1 TS2,DO6ED,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Dieter Wiesner, DO6ED
Email: do6ed@gmx.de,1,DMR-MARC
-262476,DM0ZIR,Straelen,Nordrhein-Westfalen,Germany,439.36250,1,-7.6,Peer,TS1 TS2,DK3HV,,0,DMR-plus
+262467,DO3NF,Mettmann,Nordrhein-Westfalen,Germany,438.18750,1,-7.600,PEER,TS1 TS2,DO3NF,,0,DMR-plus
+262470,DB0VR,Nordhelle/Sauerland,Nordrhein-Westfalen,Germany,439.88750,1,-9.400,Peer,TS1 TS2,DL1YBL,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Joachim Berns, DL1YBL
Email: dl1ybl@darc.de,1,DMR-DL
+262473,DO0DMR,Ratingen,NRW,Germany,438.20000,1,-7.600,Peer,TS1 TS2,DO6ED,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Dieter Wiesner, DO6ED
Email: do6ed@gmx.de,1,BM
+262476,DM0ZIR,Straelen,Nordrhein-Westfalen,Germany,439.36250,1,-7.600,Peer,TS1 TS2,DK3HV,,0,DMR-plus
262480,DB0HI,Heiligenhaus,,Germany,439.41250,1,-7.600,PEER,TS1 TS2,DF2ER,,0,
-262481,DB0HI,Heiligenhaus,,Germany,439.41250,1,-7.6,PEER,TS1 TS2,DF2ER,,0,
+262481,DB0HI,Heiligenhaus,,Germany,439.41250,1,-7.6,PEER,TS1 TS2,DF2ER,,0,DMR-plus
262485,DB0END,Ennepetal,NRW,Germany,439.27500,1,-7.6,Peer,MM 67.0,DG8DCH,,0,HYTERA
262490,DO0SRE,Recklinghausen,NRW,Germany,438.37500,1,-7.6,Peer,TS1 TS2 ,DO5YAM,,0,DMR-plus
262491,DB0CGN,Koeln,Nordrhein-Westfalen,Germany,438.78750,1,-7.600,PEER,TS1 TS2,DO2FMD,,0,Hytera
-262492,DB0DOS,Doerenberg ,Niedersachsen ,Germany ,439.87500,1,-9.4,PEER,TS1 TS2,DJ2QW,,0,DMR-plus
-262493,DB0SEN,Senden,NRW,Germany,438.52500,1,-7.6,PEER,TS1 TS2,DH2YBE,,0,DMR-plus
+262492,DB0DOS,Doerenberg,Niedersachsen,Germany,439.87500,1,-9.4,PEER,TS1 TS2,DJ2QW,,0,DMR-plus
+262493,DB0SEN,Senden,NRW,Germany,438.52500,1,-7.600,PEER,TS1 TS2,DH2YBE,,0,DMR-plus
262494,DB0SEN,Senden,Nordrhein-Westfalen,Germany,439.54370,1,-7.600,PEER,TS1 TS2,DH2YBE,,0,DMR-plus
262495,DB0HAT,Hamm,Nordrhein-Westfalen,Germany,438.35000,1,-7.6,PEER,TS1 TS2,DJ8TM,,0,DMR-plus
-262498,DO0ERK,Erkrath,Nordrhein-Westfalen,Germany,145.76250,1,0.600,Peer,TS1 TS2,DO2TW,,0,Hytera
-262499,DO0ERK,Erkrath,Nordrhein-Westfalen,Germany,145.71250,1,-0.6,PEER,TS1 TS2,DO2TW,,0,DMR-plus
-262500,DB0MYK,Mayen/Koblenz,Rheinland-Pfalz,Germany,438.30000,1,-7.6,PEER,TS1 TS2,DL5DI,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Hans-J. Barthen, DL5DI
Email: dl5di@darc.de,1,DMR-MARC
-262501,DB0MYK,Mayen/Koblenz,,Germany,438.30000,1,-7.600,PEER,TS1 TS2,DL5DI,,0,HYTERA
-262502,DO0NO,Nieder-Olm,Rhineland-Palatinate,Germany,438.31250,1,-7.6,PEER,TS1 TS2,DO1PM,,0,DMR-plus
+262498,DO0ERK,Erkrath,Nordrhein-Westfalen,Germany,439.06250,1,-7.600,Peer,TS1 TS2,DO2TW,,0,Hytera
+262499,DO0ERK,Erkrath,Nordrhein-Westfalen,Germany,145.71250,1,-0.600,PEER,TS1 TS2,DO2TW,,0,BM
+262500,DB0MYK,Mayen/Koblenz,Rheinland-Pfalz,Germany,438.30000,1,-7.6,PEER,TS1 TS2,DL5DI,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Hans-J. Barthen, DL5DI
Email: dl5di@darc.de,1,DMR-plus
+262501,DB0MYK,Mayen/Koblenz,Rheinland-Pfalz,Germany,438.30000,1,-7.600,PEER,TS1 TS2,DL5DI,,0,HYTERA
+262502,DO0NO,Nieder-Olm,Rheinland-Pfalz,Germany,438.31250,1,-7.6,PEER,TS1 TS2,DO1PM,,0,DMR-plus
262503,DB0FTC,Quirnheim/Pfalz,Rheinland-Pfalz,Germany,438.25000,1,-7.6,PEER,TS1 TS2,DD1WT,,0,DMR-plus
262504,DO0YF,Blieskastel Lautzki,Saarland,Germany,439.35000,1,-7.6,Peer,TS1 TS2,DO1VF,,0,DMR-plus
+262505,DB0HWR,Weiskirchen,Saarland,Germany,438.77500,1,-7.600,,,DH1VO,,0,DMR-plus
+262506,DB0ZT,Wasserturm Kaeshofen,Rheinland-Pfalz,Germany,439.10000,1,-7.6,,,DL8EB,,0,DMR-plus
+262507,DF5VL,Puettlingen,Saarland,Germany,438.60000,1,-7.600,,,,,0,DMR-plus
262508,DB0SR,Heusweiler - Holz,Saarland,Germany,438.60000,1,-7.6,PEER,TS1 TS2,DF5VL,,0,DMR-plus
-262509,DB0VV,Idar-Oberstein,Rhineland-Palatinate,Germany,438.85000,1,-7.6,Peer,TS1 TS2,DJ2QW,,0,DMR-plus
+262509,DB0VV,Idar-Oberstein,Rheinland-Pfalz,Germany,438.85000,1,-7.6,Peer,TS1 TS2,DJ2QW,,0,DMR-plus
262511,DB0LZ,Tholey,Saarland,Germany,439.27500,1,-7.6,PEER,TS1 TS2,DF5VL,,0,DMR-plus
-262512,DB0KL,Kaiserslautern,Rhineland-Palatinate,Germany,439.38750,1,-7.6,PEER,TS1 TS2,DG4MA,,0,None
-262513,DG9VH,Voelklingen,Saarland,Germany,438.35000,1,-7.6,Peer,TS1 TS2,,,0,Hytera
-262520,DB0LJ,Kruft/Mayen-Koblenz,,Germany,439.82500,1,-9.4,PEER,TS1 TS2,DL5DI,,0,DMR-plus
+262512,DB0KL,Kaiserslautern,Rheinland-Pfalz,Germany,439.38750,1,-7.600,PEER,TS1 TS2,DG4MA,,0,DMR-plus
+262513,DG9VH,Voelklingen,Saarland,Germany,438.35000,1,-7.6,Peer,TS1 TS2,,,0,DMR-plus
+262520,DB0LJ,Kruft/Mayen-Koblenz,Rheinland-Pfalz,Germany,439.82500,1,-9.4,PEER,TS1 TS2,DL5DI,,0,DMR-plus
262530,DB0RPL,Hoehr-Grenzhausen,Rheinland-Pfalz,Germany,438.52500,1,-7.600,PEER,TS1 TS2,DL5DI,,0,Hytera
+262540,DB0SAB,Saarburg Hosteberg,Rheinland-Pfalz,Germany,439.07500,1,-7.600,,,DF2OO,,0,DMR-plus
262550,DB0UT,Kahlheid,Rheinland-Pfalz,Germany,439.85000,1,-9.4,PEER,TS1 TS2,DJ2QW,,0,DMR-plus
262555,DB0DTR,Trier,Rheinland-Pfalz,Germany,439.53750,1,-7.6,PEER,TS1 TS2,DJ2QW,,0,DMR-plus
-262575,DB0EIF,Dreis-Brueck,Rhineland-Palatinate,Germany,438.50000,1,-7.6,PEER,TS1 TS2,DL8UE,,0,DMR-plus
+262575,DB0EIF,Dreis-Brueck,Rheinland-Pfalz,Germany,438.50000,1,-7.6,PEER,TS1 TS2,DL8UE,,0,DMR-plus
262588,DB0EW,Saarbruecken,Saarland,Germany,439.52500,1,-7.600,,,DB7VM,,0,BrandMeister
262592,DO0SMZ,Mainz,Rheinland-Pfalz,Germany,439.30000,1,-7.6,PEER,TS1 TS2,DO2FMD,,0,DMR-plus
-262600,DF0MOT,Gr.Feldberg/Ts.,,Germany,438.20000,1,-7.600,PEER,TS1 TS2,DF6RK,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Ralf Klingler, DF6RK
Email: df6rk@df0mot.de,1,DMR-MARC
+262600,DF0MOT,Gr.Feldberg/Ts.,Hessen,Germany,438.20000,1,-7.600,PEER,TS1 TS2,DF6RK,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Ralf Klingler, DF6RK
Email: df6rk@df0mot.de,1,DMR-DL
262601,DF0MOT,Gr.Feldberg/Ts.,Hessen,Germany,439.57500,1,-7.6,PEER,TS1 TS2,DF6RK,,0,DMR-plus
262602,DB0VA,Hohe Wurzel / Ts.,Hessen,Germany,438.18750,1,-7.600,PEER,TS1 TS2,DF6RK,,0,DMR-DL
262603,DB0BVO,Steinau a.d.Strasse,Hessen,Germany,438.40000,1,-7.6,Peer,TS1 TS2,DL7FN,,0,DMR-plus
-262610,DB0AFZ,Baunatal/DARC,,Germany,439.97500,1,-9.400,PEER,TS1 TS2,DL1YBL,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Joachim Berns, DL1YBL
Email: dl1ybl@darc.de,1,DMR-MARC
-262611,DO2FMD,Gross-Gerau,Hessen,Germany,438.17500,1,-7.6,PEER,TS1 TS2,DO2FMD,,0,DMR-plus
+262610,DB0AFZ,Baunatal/DARC,,Germany,439.97500,1,-9.400,PEER,TS1 TS2,DL1YBL,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Joachim Berns, DL1YBL
Email: dl1ybl@darc.de,1,DMR-DL
+262611,DO2FMD,Gross-Gerau,Hessen,Germany,438.17500,1,-7.600,PEER,TS1 TS2,DO2FMD,,0,DMR-plus
262620,DB0LDK,Wetzlar,Hessen,Germany,438.47500,1,-7.6,PEER,TS1 TS2,DD8AKA,,0,DMR-plus
262626,DB0FDA,Darmstadt,Hessen,Germany,438.27500,1,-7.6,PEER,TS1 TS2,DJ1US,,0,DMR-plus
-262630,DB0LM,Limburg / Lahn,Hessen,Germany,438.40000,1,-7.6,PEER,TS1 TS2,DL1MNU,,0,DMR-plus
+262630,DB0LM,Limburg / Lahn,Hessen,Germany,438.40000,1,-7.600,PEER,TS1 TS2,DL1MNU,,0,DMR-plus
+262636,DB0MW,Wippershain,Hessen,Germany,439.92500,1,9.400,,,DL2MI,,0,BrandMeister
262640,DM0PX,Eschborn,Hessen,Germany,439.52500,1,-7.6,PEER,TS1 TS2,DB5ZQ,,0,DMR-plus
-262650,DB0REI,Reinhardshain ,Hessen ,Germany ,439.81250,1,-9.4,PEER,TS1 TS2,DB4ZZ,,0,DMR-plus
+262650,DB0REI,Reinhardshain,Hessen,Germany,439.81250,1,-9.4,PEER,TS1 TS2,DB4ZZ,,0,DMR-plus
262660,DB0KH,Hessen Knuell,Hessen,Germany,439.95000,1,-9.4,Peer,TS1 TS2,DH1FR,,0,DMR-plus
-262661,DB0WK,Wasserkuppe ,Hessen ,Germany ,439.46250,1,-7.6,PEER,TS1 TS2,DG7FBS,,0,DMR-plus
+262661,DB0WK,Wasserkuppe,Hessen,Germany,439.46250,1,-7.6,PEER,TS1 TS2,DG7FBS,,0,DMR-plus
262666,DO0DXE,Kassel,Hessen,Germany,438.32500,1,-7.6,PEER,TS1 TS2,DO5WE,,0,DMR-plus
262667,DG1FFD,Fuldabrueck,Hessen,Germany,439.96250,1,-9.400,PEER,TS1 TS2,,,0,DMR-plus
262670,DB0RHN,Rhoen,Hessen,Germany,439.83750,1,-9.4,PEER,TS1 TS2,DG8FAC,,0,DMR-plus
@@ -912,125 +1097,140 @@
262696,DB0LHF,Fernwald,Hessen,Germany,438.42500,1,7.600,Peer,TS1 TS2,DC3FB,,0,Hytera
262699,DJ1US,Darmstadt,Hessen,Germany,439.57500,1,-7.600,Peer,TS1 TS2,DJ1US,,0,DMR-plus
262701,DB0VSS,Villingen-Schwenning,Baden-Wuertt.,Germany,439.25000,1,-7.6,PEER,TS1 TS2,DC4GD,,0,DMR-plus
-262702,DD9GJ,Villingen-Schwenning,Baden-Wuertt.,Germany,439.02500,1,-7.600,Peer,TS1 TS2,DD9GJ,,0,Motorola
+262702,DD9GJ,Villingen-Schwenning,Baden-Wuertt.,Germany,439.83750,1,-9.400,Peer,TS1 TS2,DD9GJ,,0,BM
262703,DB0TN,Brandenkopf,Baden-Wuerttemberg,Germany,439.87500,1,-9.400,PEER,TS1 TS2,DD9GJ,,0,Motorola
262704,DB0TST,Leinfelden Echterd.,Baden-Wuerttemberg,Germany,438.50000,1,-7.6,PEER,TS1 TS2,DL6SEC,,0,DMR-plus
262705,DB0ARD,Dornstadt,Baden-Wuerttemberg,Germany,438.45000,1,-7.6,PEER,TS1 TS2,DC2WA,,0,DMR-plus
+262706,DM0VL,Villingen,Baden-Wuerttemberg,Germany,439.83750,1,-9.400,,,DD9GJ,,0,BM
262707,DM0KB,Konstanz,Baden-Wuerttemberg,Germany,439.30000,1,-7.6,PEER,TS1 TS2,DG8GL,,0,DMR-plus
-262708,DM0ZF,Lauf,Baden-Wuerttemberg,Germany,144.82500,1,0.000,PEER,TS1 TS2,DL1IK,,0,Hytera
+262708,DM0ZF,Lauf,Baden-Wuerttemberg,Germany,439.82500,1,-9.400,PEER,TS1 TS2,DL1IK,,0,BM
+262709,DB0VS,Moenchweiler,Baden-Wuerttemberg,Germany,438.30000,1,-7.600,,,DL1GFM,,0,None
262710,DL1YBL,HAM RADIO,,Germany,439.97500,1,-9.400,PEER,TS1 TS2,DL1YBL,,0,DMR-DL
262711,DB0RV,Ravensburg,Baden-Wuerttemberg,Germany,439.41250,1,-7.6,PEER,TS1 TS2,DC6MS,,0,DMR-plus
262712,DB0RB,Bruchsal,Baden-Wuerttemberg,Germany,439.81250,1,-9.400,PEER,TS1 TS2,DH2MD,,0,Hytera
262713,DB0ARH,Herrenberg AlterRain,Baden-Wuerttemberg,Germany,439.85000,1,-9.400,PEER,TS1 TS2,DL8SCU,,0,BM
262717,DM0KB,Konstanz,Baden-Wuerttemberg,Germany,145.60000,1,-0.6,Peer,TS1 TS2,DG8GL,,0,DMR-plus
262719,DB0SAA,Oberkochen,Baden-Wuerttemberg,Germany,438.47500,1,-7.600,PEER,TS1 TS2,DF7AJ,,0,DMR-DL
-262720,DB0FAA,Aalen/Braunenberg ,Baden-Wuerttemberg ,Germany ,439.48750,1,-7.6,PEER,TS1 TS2,DL8SFG,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 8 = > DB0FHA-2m-DMR
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Bjoern Buelow, DL8SFG
Email: dl8sfg@qslnet.de
Web: http://www.qslnet.de/db0faa,1,DMR-plus
-262721,DB0FHA,Aalen/Onatsfeld ,Baden-Wuerttemberg ,Germany ,438.58750,1,-7.6,PEER,TS1 TS2,DL8SFG,,0,DMR-plus
-262722,DB0FHA,Aalen/Onatsfeld ,Baden-Wuerttemberg ,Germany ,439.01250,1,-7.6,PEER,TS1 TS2,DL8SFG,,0,DMR-plus
+262720,DB0FAA,Aalen/Braunenberg,Baden-Wuerttemberg,Germany,439.48750,1,-7.6,PEER,TS1 TS2,DL8SFG,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 8 = > DB0FHA-2m-DMR
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Bjoern Buelow, DL8SFG
Email: dl8sfg@qslnet.de
Web: http://www.qslnet.de/db0faa,1,DMR-plus
+262721,DB0FHA,Aalen/Onatsfeld,Baden-Wuerttemberg,Germany,439.48750,1,-7.6,PEER,TS1 TS2,DL8SFG,,0,DMR-plus
+262722,DB0FHA,Aalen/Onatsfeld,Baden-Wuerttemberg,Germany,439.01250,1,-7.6,PEER,TS1 TS2,DL8SFG,,0,DMR-plus
262723,DB0CRA,Frankenhardt,Baden-Wuerttemberg,Germany,438.53750,1,-7.6,Peer,TS1 TS2,DG2SDW,,0,DMR-plus
-262724,DB0FAA,Aalen/Braunenberg ,Baden-Wuerttemberg ,Germany ,439.11250,1,-7.6,Peer,TS1 TS2,DL8SFG,,0,DMR-plus
+262724,DB0FAA,Aalen/Braunenberg,Baden-Wuerttemberg,Germany,439.11250,1,-7.6,Peer,TS1 TS2,DL8SFG,,0,DMR-plus
+262725,DB0BP,Ludwigsburg,Baden-Wuerttemberg,Germany,438.92500,1,-7.6,,,DD7SY,,0,DMR-plus
262726,DB0RZ,Bussen ,Baden-Wuertt.,Germany,439.47500,1,-7.600,Peer,TS1 TS2,DL8VA,,0,HYTERA
262727,DB0SDO,Urbach,Baden-Wuerttemberg,Germany,439.30000,1,-7.6,PEER,TS1 TS2,DG4SDO,,0,DMR-plus
262728,DG4SDO,Urbach,Baden-Wuerttemberg,Germany,439.80000,1,-9.4,PEER,TS1 TS2,DG4SDO,,0,DMR-plus
-262730,DB0VSS,Villingen/Schwenning,,Germany,439.45000,1,-7.600,PEER,TS1 TS2,DC4GD,,0,DMR-DL
+262730,DB0VSS,Villingen/Schwenning,,Germany,439.45000,1,-7.600,PEER,TS1 TS2,DC4GD,,0,BM
262731,DB0VSS,Villingen/Schwenning,Baden-Wuerttemberg,Germany,145.57500,1,-0.6,PEER,TS1 TS2,DC4GD,,0,DMR-plus
262733,DB0KLI,Klippeneck,Baden-Wuerttemberg,Germany,438.66250,1,-7.6,PEER,TS1 TS2,DL1TOB,,0,DMR-plus
-262736,DO0OKO,Oberkochen,Baden-Wuerttemberg,Germany,438.78750,1,-7.6,PEER,TS1 TS2,DO6STS,,0,DMR-plus
+262736,DO0OKO,Oberkochen,Baden-Wuerttemberg,Germany,438.78750,1,-7.600,PEER,TS1 TS2,DO6STS,,0,BM
262737,DG8GL,Konstanz,Baden-Wuerttemberg,Germany,439.90000,1,-9.400,PEER,TS1 TS2,DG8GL,,0,DMR-plus
262738,DM0MGN,Mengen,Baden-Wuerttemberg,Germany,438.35000,1,-7.6,PEER,TS1 TS2,DL3GWA,,0,DMR-plus
-262740,DB0ORT,Kappelrodeck,,Germany,439.96250,1,-9.400,Peer,TS1 TS2,DL5IAO,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Thomas Kist, DL5IAO
Email: DL5IAO@t-online.de,0,DMR-MARC
+262740,DB0ORT,Kappelrodeck,Baden-Wuerttemberg,Germany,439.96250,1,-9.400,Peer,TS1 TS2,DL5IAO,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Thomas Kist, DL5IAO
Email: DL5IAO@t-online.de,0,BM
262742,DB0HER,Herrenberg,Baden-Wuerttemberg,Germany,438.32500,1,-7.600,Peer,TS1 TS2,DL8SCU,,0,BM
262743,DB0ST,Stuttgart,Baden-Wuerttemberg,Germany,439.18750,1,-7.600,Peer,TS1 TS2,DL5SFI,,0,BM
-262750,DB0LEO,Leonberg,,Germany,439.53750,1,-7.600,PEER,TS1 TS2,DL2MT,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1- Group Call 8 = Regional 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Thomas Mansch , DL2MT
Email:,1,DMR-MARC
-262755,DO3HD,Heidelberg,Baden-Wuerttemberg,Germany,438.71250,1,-7.6,PEER,TS1 TS2,DM3HD,,0,DMR-plus
+262750,DB0LEO,Leonberg,,Germany,439.53750,1,-7.600,PEER,TS1 TS2,DL2MT,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1- Group Call 8 = Regional 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Thomas Mansch , DL2MT
Email:,1,DMR-DL
+262755,DO3HD,Heidelberg,Baden-Wuerttemberg,Germany,438.71250,1,-7.600,PEER,TS1 TS2,DM3HD,,0,DMR-plus
262760,DB0BH,Helmlingen,Baden-Wuerttemberg,Germany,439.07500,1,-7.600,PEER,TS1 TS2,DL2GCW,,0,BM
262763,DM0ODW,Mudau,Baden-Wuerttemberg,Germany,438.35000,1,-7.600,PEER,TS1 TS2,DM7RM,,0,DMR-DL
262765,DB0REU,Reutlingen,Baden-Wuerttemberg,Germany,439.57500,10,-7.600,Peer,TS1 TS2,DK6TE,,0,None
262769,DB0MGH,Bad Mergentheim,Baden-Wuerttemberg,Germany,439.81250,1,-9.4,PEER,TS1 TS2,DL4SDR,,0,DMR-plus
262777,DB0ODE,Obrigheim,Baden-Wuerttemberg,Germany,439.92500,1,-9.4,PEER,TS1 TS2,DM7RM,,0,DMR-plus
-262778,DM0ZF,Lauf,Baden-Wuerttemberg,Germany,439.82500,1,-9.400,PEER,TS1 TS2,DL1IK,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Burkhard Decker , DL1IK
Email: info@dl1ik.de,1,DMR-MARC
+262778,DM0ZF,Lauf,Baden-Wuerttemberg,Germany,439.82500,1,-9.400,PEER,TS1 TS2,DL1IK,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Burkhard Decker , DL1IK
Email: info@dl1ik.de,1,DMR-DL
262779,DB0MGH,Bad Mergentheim,Baden-Wuerttemberg,Germany,439.81250,1,-9.4,PEER,TS1 TS2,DL4SDR,,0,DMR-plus
262780,DB0SKF,Freudenstadt,Baden-Wuertt.,Germany,439.90000,1,-9.4,Peer,Mixed Mode,DJ2GZ,,0,DMR-plus
262787,DL8VA,Laupheim,Baden-Wuerttemberg,Germany,439.30000,1,-7.600,Peer,TS1 TS2,DL8VA,,0,DMR-plus
+262788,DB0ZRB,Gerlingen,Baden-Wuerttemberg,Germany,439.53750,1,-7.600,,,DL2GRC,,0,BrandMeister
262789,DB0MGH,Bad Mergentheim,Baden-Wuerttemberg,Germany,145.57500,1,-0.6,PEER,TS1 TS2,DL4SDR,,0,DMR-plus
-262790,DM0ZF,Lauf,Baden-Wuerttemberg,Germany,439.93750,1,-9.400,PEER,TS1 TS2,DL1IK,,0,DMR-plus
+262790,DM0ZF,Lauf,Baden-Wuerttemberg,Germany,439.93750,1,-9.400,PEER,TS1 TS2,DL1IK,,0,BM
262796,DB0UY,Karlsruhe,Baden-Wuerttemberg,Germany,439.88750,1,9.400,PEER,TS1 TS2,DL5IN,,0,Hytera
262797,DB0UZ,Karlsbad,Baden-Wuerttemberg,Germany,438.51250,1,-7.6,PEER,TS1 TS2,DL5IN,,0,DMR-plus
262798,DB0UX,Karlsbad,Baden-Wuerttemberg,Germany,439.88750,1,-9.400,PEER,TS1 TS2,DL5IN,,0,HYTERA
262799,DB0UX,Karlsruhe-Durlach,Baden-Wuerttemberg,Germany,439.88750,1,-9.4,PEER,TS1 TS2,DL5IN,,0,DMR-plus
-262801,DB0FUE,Fuerth,Bayern,Germany,439.85000,1,-9.4,Peer,TS1 TS2,DJ7ACM,,0,DMR-plus
+262801,DB0FUE,Fuerth,Bayern,Germany,439.85000,1,-9.400,Peer,TS1 TS2,DJ7ACM,,0,BM
262802,DM0FFL,Landshut,Bayern,Germany,439.87500,1,-9.4,PEER,TS1 TS2,DL4STE,,0,DMR-plus
-262803,DB0IN,Ingolstadt,Bayern,Germany,438.93750,1,-7.6,Peer,TS1 TS2,DL2MHB,,0,
-262805,DB0HLB,Hesselberg,Bayern,Germany,439.97500,1,-9.4,PEER,TS1 TS2,DC9NYC,,0,None
+262803,DB0IN,Ingolstadt,Bayern,Germany,438.93750,1,-7.600,Peer,TS1 TS2,DL2MHB,,0,DMR-plus
+262804,DB0OAL,Tegelberg,Bayern,Germany,438.93750,1,-7.600,,,DB7MJ,,0,DMR-plus
+262805,DB0HLB,Hesselberg,Bayern,Germany,439.97500,1,-9.4,PEER,TS1 TS2,DC9NYC,,0,DMR-plus
262807,DB0LC,Scheidegg,Bayern,Germany,439.37500,1,-7.6,Peer,TS1 TS2,DG6MDG,,0,DMR-plus
262808,DB0AAT,Hochberg/Traunstein,Bayern,Germany,439.55000,1,-7.6,PEER,TS1 TS2,DC5MC,,0,DMR-plus
-262809,DM0GER,Germering,Bayern,Germany,145.58750,1,-0.6,Peer,TS1 TS2,DL3MX,,0,Hytera
+262809,DM0GER,Germering,Bayern,Germany,145.58750,1,-0.600,Peer,TS1 TS2,DL3MX,,0,DMR-plus
262810,DB0FEU,Feuchtwangen,Bayern,Germany,439.57500,1,-7.6,PEER,TS1 TS2,DC9NYC,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional Bayern
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Ralf Schmidl, DC9NYC
Email: dc9nyc@db0feu.de,1,DMR-plus
262811,DB0MI,Moenchberg,Bayern,Germany,439.55000,1,-7.6,PEER,TS1 TS2,DH4FAJ,,0,DMR-plus
-262812,DM0AX,Neumarkt / Dillberg ,Bayern ,Germany ,438.38750,1,-7.600,Peer,TS1 TS2,DF1AX,,0,BrandMeister
-262815,DB0DMR,Feuchtwangen ,Bayern ,Germany ,439.47500,1,-7.6,PEER,TS1 TS2,DC9NYC,,0,DMR-plus
-262820,DF0ANN,Nuernberg,,Germany,439.95000,1,-9.400,PEER,TS1 TS2,DL5NBZ,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional Bayern
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Rainer Floesser, DL5NBZ
Email: dl5nbz@darc.ardf-r1.org,1,DMR-MARC
+262812,DM0AX,Neumarkt / Dillberg,Bayern,Germany,438.38750,1,-7.600,Peer,TS1 TS2,DF1AX,,0,BrandMeister
+262813,DB0ARB,Zwiesel,Bayern,Germany,439.22500,1,-7.6,,,DJ1RKS,,0,DMR-plus
+262815,DB0DMR,Feuchtwangen,Bayern,Germany,439.47500,1,-7.6,PEER,TS1 TS2,DC9NYC,,0,DMR-plus
+262820,DF0ANN,Nuernberg,,Germany,439.95000,1,-9.400,PEER,TS1 TS2,DL5NBZ,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional Bayern
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Rainer Floesser, DL5NBZ
Email: dl5nbz@darc.ardf-r1.org,1,DMR-DL
262826,DM0QN,Vaterstetten/MUC-Ost,Bayern,Germany,438.35000,1,-7.600,PEER,TS1 TS2,DK2PZ,,0,Hytera
+262827,DB0WBZ,Thalmaessing,Bayern,Germany,438.51250,1,-7.6,,,DL2NJM,,0,DMR-plus
262828,DB0THM,Thalmaessing,Bayern,Germany,438.58750,1,-7.6,PEER,TS1 TS2,DL2NJM,,0,DMR-plus
262829,DB0PV,Muenchen,Bayern,Germany,438.52500,7,7.600,,,DH8MO,,0,None
262830,DO0JG,Moorenweis,Bayern,Germany,438.37500,1,-7.6,Peer,TS1 TS2,DO1JG,,0,DMR-plus
-262840,DB0ADB,Bamberg,Bayern,Germany,439.30000,1,-7.6,Peer,TS1 TS2,DK2ET,,0,DMR-plus
+262835,DM0GER,Germering,Bayern,Germany,145.58750,1,-0.600,,,DL3MX,,0,DMR-plus
+262840,DB0ADB,Bamberg,Bayern,Germany,439.30000,1,-7.600,Peer,TS1 TS2,DK2ET,,0,BM
262844,DB0ABG,Amberg,Bayern,Germany,439.43750,1,-7.600,Peer,TS1 TS2,DC6RN,,0,BM
262848,DB0MSK,Solhoehe/Langenproze,Bayern,Germany,439.05000,1,-7.6,Peer,TS1 TS2,DL9NCY,,0,DMR-plus
+262849,DB0WZ,Wuerzburg,Bayern,Germany,439.47500,1,7.600,,,DG1NWW,,0,None
262851,DB0TVM,Muenchen,Bayern,Germany,439.80000,1,-9.4,Peer,TS1 TS2 ,DC5SL,,0,DMR-plus
262852,DB0MIC,Muenchen,Bayern,Germany,439.52500,1,-7.600,Peer,TS1 TS2,DL8MFW,,0,DMR-DL
-262853,DB0NJ,Muenchen,Bayern,Germany,439.43750,1,-7.600,PEER,TS1 TS2,DD5KI,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional Bayern
Time Slot #2 - Group Call 9 = Local >
You Must Have [ARS] Disabled Within Your Radio
Contact: Gunnar Sircar, DD5KI
Email: dd5ki@darc.de
Web: http://db0nj.de,1,DMR-MARC
-262854,DB0MIO,Michelau,Bayern,Germany,438.70000,1,-7.6,PEER,TS1 TS2,DG2NBJ,,0,DMR-plus
-262855,DB0PME,Schliersee/Tegernsee,Bayern,Germany,439.82500,1,-9.400,PEER,TS1 TS2,DD5KI,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1 > DB0HKN
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional Bayern
Time Slot #2 - Group Call 9 = Local > DB0HKN
You Must Have [ARS] Disabled Within Your Radio
Contact: Andreas Stefan, DL5MGD
Email: ----------
Web: http://darc.de/c10/relais/db0pme/,1,DMR-MARC
-262856,DB0HKN,Holzkirchen,Bayern,Germany,438.30000,1,-7.600,PEER,TS1 TS2,DD5KI,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1 > DB0PME
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional Bayern
Time Slot #2 - Group Call 9 = Local 2 > DBOPME
You Must Have [ARS] Disabled Within Your Radio
Contact: Gunnar Sircar, DD5KI
Email: dd5ki@darc.de
Web: http://darc.de/c10/relais/db0hkn/,1,DMR-MARC
+262853,DB0NJ,Muenchen,Bayern,Germany,439.43750,1,-7.600,PEER,TS1 TS2,DD5KI,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional Bayern
Time Slot #2 - Group Call 9 = Local >
You Must Have [ARS] Disabled Within Your Radio
Contact: Gunnar Sircar, DD5KI
Email: dd5ki@darc.de
Web: http://db0nj.de,1,DMR-DL
+262854,DB0MIO,Michelau,Bayern,Germany,438.70000,1,-7.600,PEER,TS1 TS2,DG2NBJ,,0,BM
+262855,DB0PME,Schliersee/Tegernsee,Bayern,Germany,439.82500,1,-9.400,PEER,TS1 TS2,DD5KI,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1 > DB0HKN
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional Bayern
Time Slot #2 - Group Call 9 = Local > DB0HKN
You Must Have [ARS] Disabled Within Your Radio
Contact: Andreas Stefan, DL5MGD
Email: ----------
Web: http://darc.de/c10/relais/db0pme/,1,DMR-DL
+262856,DB0HKN,Holzkirchen,Bayern,Germany,438.30000,1,-7.600,PEER,TS1 TS2,DD5KI,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 20 = DL-OE-HB9
Time Slot #1 - Group Call 262 = Germany 1
Time Slot #1 - Group Call 9 = Local 1 > DB0PME
Time Slot #2 - Group Call 262 = Germany 2
Time Slot #2 - Group Call 8 = Regional Bayern
Time Slot #2 - Group Call 9 = Local 2 > DBOPME
You Must Have [ARS] Disabled Within Your Radio
Contact: Gunnar Sircar, DD5KI
Email: dd5ki@darc.de
Web: http://darc.de/c10/relais/db0hkn/,1,DMR-DL
262857,DB0FSG,Langenbach,Bayern,Germany,439.93750,1,-9.4,PEER,TS1 TS2,DL2XP,,0,DMR-plus
262858,DB0UFO,Neubiberg,Bayern,Germany,438.31250,1,-7.6,Peer,TS1 TS2,DL2MEE,,0,DMR-plus
262860,DB0ESS,Gruenten/Allgaeu,Bayern,Germany,438.61250,1,-7.6,PEER,TS1 TS2,DB7MJ,,0,DMR-plus
-262861,DM0ESS,Sonthofen,Bayern,Germany,438.56250,1,-7.6,PEER,TS1 TS2,DB7MJ,,0,DMR-plus
-262862,DM0RDH,Wiesenfelden ,Bayern ,Germany ,439.52500,1,-7.6,PEER,TS1 TS2,DL2RDH,,0,DMR-plus
+262861,DM0ESS,Sonthofen,Bayern,Germany,438.56250,1,-7.600,PEER,TS1 TS2,DB7MJ,,0,BM
+262862,DM0RDH,Wiesenfelden,Bayern,Germany,439.52500,1,-7.6,PEER,TS1 TS2,DL2RDH,,0,DMR-plus
262863,DB0RDH,Grandsberg,Bayern,Germany,439.92500,1,-9.4,PEER,TS1 TS2,DL2RDH,,0,DMR-plus
262864,DB0OAL,Tegelberg,Bayern,Germany,439.91250,1,-9.4,PEER,TS1 TS2,DB7MJ,,0,DMR-plus
262865,DK5RTA,Gilching,Bayern,Germany,439.11250,1,-7.6,PEER,TS1 TS2,DK5RTA,,0,DMR-plus
262866,DB0RTA,Gilching,Bayern,Germany,438.36250,1,-7.6,PEER,TS1 TS2,DK5RTA,,0,DMR-plus
262867,DB0PUC,Puchheim,Bayern,Germany,439.95000,1,-9.4,PEER,TS1 TS2,DK5RTA,,0,DMR-plus
-262870,DB0TS,Moosbach,Bayern,Germany,439.16250,1,-7.6,Peer,TS1 TS2,DM3TS,,0,BM
-262873,DB0BAY,Schwandorf ,Bayern ,Germany ,438.25000,1,-7.6,Peer,TS1 TS2,DK5RQ,,0,DMR-plus
-262885,DM0RDT,Karlskron,Bayern,Germany,439.82500,1,-9.4,Peer,TS1 TS2,DH6MBT,,0,Hytera
+262870,DB0TS,Moosbach,Bayern,Germany,439.16250,1,-7.600,Peer,TS1 TS2,DM3TS,,0,BM
+262873,DB0BAY,Schwandorf,Bayern,Germany,438.25000,1,-7.6,Peer,TS1 TS2,DK5RQ,,0,DMR-plus
+262885,DM0RDT,Karlskron,Bayern,Germany,439.82500,1,-9.400,Peer,TS1 TS2,DH6MBT,,0,DMR-plus
262888,DB0RP,Regensburg,Bayern,Germany,439.10000,1,-7.6,PEER,TS1 TS2,DL5RDW,,0,DMR-plus
262890,DM0ET,Frensdorf/Bamberg,Bayern,Germany,439.41250,1,-7.6,PEER,TS1 TS2,DK2ET,,0,DMR-plus
-262898,DK6PX,Dietramszell,Bayern,Germany,439.85000,1,-9.4,PEER,TS1 TS2,DK6PX,,0,DMR-plus
-262899,DB0TTB,Hohenpeissenberg ,Bayern ,Germany ,439.58750,1,-7.6,PEER,TS1 TS2,DL4TTB,,0,DMR-plus
+262898,DK6PX,Dietramszell,Bayern,Germany,439.85000,1,-9.400,PEER,TS1 TS2,DK6PX,,0,DMR-plus
+262899,DB0TTB,Hohenpeissenberg,Bayern,Germany,439.58750,1,-7.6,PEER,TS1 TS2,DL4TTB,,0,DMR-plus
262901,DB0LE,Leipzig West,Saxony,Germany,439.57500,1,-7.600,Peer,TS1 TS2,DC8YM,,0,DMR-plus
262902,DO0ERZ,Thalheim / Erzgeb.,Saxony,Germany,439.43750,1,-7.600,PEER,TS1 TS2,DO8GT,,0,BM
+262911,DO0UH,Muehlhausen,Thuringia,Germany,430.37500,1,0.000,,,DO3JSM,,0,BrandMeister
262969,DO8GT,Zwoenitz,Saxony,Germany,439.43750,1,-7.600,Peer,TS1 TS2,DO8GT,,0,Motorola
262979,DB0ERZ,Auersberg - 1019m/NN,Sachsen,Germany,439.46250,1,-7.600,PEER,TS1 TS2,DL3YK,,0,BM
262985,DB0FTS,Suhl,Thuringia,Germany,438.50000,1,-7.600,,,DJ1JAY,,0,DMR-plus
-262999,DB0ERZ,Auersberg,Sachsen,Germany,439.46250,1,-7.600,PEER,TS1 TS2,DO8GT,,0,Motorola
+262999,IPSC2,Auersberg,Sachsen,Germany,439.46250,1,-7.600,PEER,TS1 TS2,DL5DI,,0,DMRplus
268101,CQ0DAM,Amarante,Porto,Portugal,438.22500,1,-7.600,Peer,TS1 TS2,CT2HMR,,0,None
+268102,CQ0DBO,Carvela,Vila Real,Portugal,438.40000,1,-7.600,,,CT1JIB,,0,BM
268103,CQ0DBA,Serra do Cruzeiro,Porto,Portugal,438.32500,1,-7.600,PEER,TS1 TS2,CT2IXP,,0,None
-268201,CQ0DTRZ,Serra do Arestal,Aveiro,Portugal,438.31250,1,-7.600,Peer,TS1 TS2,CT2JSS,,0,Hytera
+268104,CQ0DGM,Gondomar,Porto District,Portugal,438.25000,1,-7.600,,,CT2GNC,,0,BrandMeister
+268201,CQ0DTRZ,Serra do Arestal,Aveiro,Portugal,438.31250,1,-7.600,Peer,TS1 TS2,CT2JSS,,0,BM
268203,CQ0DFR,Serra da Freita,Aveiro,Portugal,438.50000,1,-7.600,PEER,TS1 TS2,CT2JCL,,0,None
268220,CQ0DVI,Viseu (REP),Viseu District,Portugal,438.22500,1,-7.600,Peer,TS1 TS2,CT2GXU,,0,Hytera
-268301,CQ0UCSC,Cascais,Lisboa,Portugal,438.72500,1,-7.600,Peer,TS1 TS2,CT1FHI,CQ0UCSC 438.725 -7.6 MHz, Color Code 1,1,MOTOROLA
+268301,CQ0UCSC,Cascais,Lisboa,Portugal,438.72500,1,-7.600,Peer,TS1 TS2,CT1FHI,CQ0UCSC 438.725 -7.6 MHz, Color Code 1,1,BM
268302,CQ0DRLA,Serra Arrbida,Setubal,Portugal,438.35000,1,-7.6,PEER,TS1 TS2,CT1JIB,,0,DMR-plus
-268303,CQ0DMA,S. Arrabida,Setuabal,Portugal,438.35000,1,-7.6,PEER,TS1 TS2,CT1JIB,,0,DMR-plus
+268303,CQ0DMA,S. Arrabida,Setuabal,Portugal,438.35000,1,-7.600,PEER,TS1 TS2,CT1JIB,,0,BM
+268304,CQ0DLX,Lisbon,Lisbon,Portugal,438.50000,1,-7.600,,,CT1JIB,,0,BrandMeister
268399,CQ0DS,Sintra,Lisbon,Portugal,438.22500,1,-7.600,,None,CT2GXU,,0,
270100,LX0RU,Rumelange,,Luxemburg,438.75000,1,-7.6,Peer,TS1 TS2,LX1US,,0,DMR-plus
270101,LX0RU,Hautcharage,,Luxemburg,438.80000,1,-7.600,PEER,TS1 TS2,LX1CK,,0,
-270102,LX0DRR,Rumelange,Luxemburg,Luxemburg,145.78750,1,-0.6,PEER,TS1 TS2,LX1US,,0,DMR-plus
+270102,LX0DRR,Rumelange,Luxemburg,Luxemburg,145.78750,1,-0.600,PEER,TS1 TS2,LX1US,,0,DMR-plus
270103,LX3X,Differdange,Luxemburg,Luxemburg,439.92500,1,-9.400,PEER,TS1 TS2,LX3X,,0,DMR-plus
270104,LX1MS,Luxemburg,Luxemburg,Luxemburg,439.50000,1,-9.400,PEER,TS1 TS2,LX1DUC,,0,Hytera
270106,LX0NSR,Ettelbruck,Luxemburg,Luxemburg,438.68750,1,-7.6,PEER,TS1 TS2,LX2CS,,0,DMR-plus
-270110,LX0DME,Eschdorf,Luxemburg,Luxemburg,439.51250,1,-7.6,Peer,TS1 TS2,LX1IQ,,0,Motorola
+270110,LX0DME,Eschdorf,Luxemburg,Luxemburg,439.51250,1,-7.6,Peer,TS1 TS2,LX1IQ,,0,DMR-plus
270111,LX0E,Luxembourg,Luxemburg,Luxemburg,439.90000,1,-9.400,PEER,TS1 TS2,LX1DUC,,0,Hytera
-270112,LX0E,Luxembourg,Luxemburg,Luxemburg,439.91250,1,-9.4,PEER,TS1 TS2,LX1DUC,,0,DMR-plus
-270113,LX0E,Luxembourg,Luxemburg,Luxemburg,439.92500,1,-9.4,PEER,TS1 TS2,LX1DUC,,0,DMR-plus
-270120,LX0DRB,Bourscheid,Luxemburg,Luxemburg,145.72500,1,-0.6,Peer,TS1 TS2,LX1IQ,,0,Motorola
+270112,LX0E,Luxembourg,Luxemburg,Luxemburg,439.91250,1,-9.400,PEER,TS1 TS2,LX1DUC,,0,DMR-plus
+270113,LX0E,Luxembourg,Luxemburg,Luxemburg,439.92500,1,-9.400,PEER,TS1 TS2,LX1DUC,,0,DMR-plus
+270120,LX0DRB,Bourscheid,Luxemburg,Luxemburg,145.72500,1,-0.600,Peer,TS1 TS2,LX1IQ,,0,DMR-plus
278001,9H1DMR,Naxxar,,Malta,430.92500,1,7.600,PEER,TS1 TS2,9H1US,,0,Motorola
-278002,9H1DMR,Naxxar,,Malta,430.92500,1,7.600,PEER,TS1 TS2,9H1US,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Antoine Debattista
Email: ant9h1us@gmail.com,1,DMR-Malta
+278002,9H1DMR,Naxxar,,Malta,430.92500,1,7.600,PEER,TS1 TS2,9H1US,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 2 = Europe
Time Slot #1 - Group Call 9 = Local 1
Time Slot #2 - Group Call 8 = Regional
Time Slot #2 - Group Call 9 = Local 2
You Must Have [ARS] Disabled Within Your Radio
Contact: Antoine Debattista
Email: ant9h1us@gmail.com,1,Motorola
278100,9H1BBS,Naxxar,,Malta,430.41250,1,9.000,PEER,TS1 TS2,9H1IA,,0,Motorola
-284000,LZ0DMR,Sofia,,Bulgaria,439.10000,1,-7.6,PEER,TS1 TS2,LZ1LZN,,0,DMR-plus
+284000,LZ0DMR,Sofia,,Bulgaria,439.10000,1,-7.600,PEER,TS1 TS2,LZ1LZN,,0,DMR-plus
284002,LZ0HAM,Pk.Botev,,Bulgaria,439.50000,1,-7.600,PEER,TS1 TS2,LZ1LZN,,0,DMR-plus
+293001,S55DMR,Lisca,,Slovenia,439.07500,1,-7.600,,,S56CT,,0,None
+294001,Z35UIT,Skopje,,Macedonia,439.70000,1,-7.600,Master,Mixed Mode,Z32IT,,0,BrandMeister
302001,VE1CRA,Charlottetown,Prince Edward Island,Canada,441.95000,1,+5.000,Peer,TS2,VE1AIC,,0,BM
302200,VE2REX,Covey Hill,Quebec,Canada,448.52500,1,-5.000,Peer,TS1 TS2,VA2SPB,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 11 = WW French
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 302 = Canada
Time Slot #1 - Group Call 310 = TAC310
Time Slot #1 - Group Call 9999 = Audio Test
Time Slot #2 - Group Call 3023 = Ontario
Time Slot #2 - Group Call 3022 = Quebec
Time Slot #2 - Group Call 3024 = Manitoba
Time Slot #2 - Group Call 3026 = Alberta
Time Slot #2 - Group Call 3029 = New Brunswick
Time Slot #2 - Group Call 3027 = British Columbia
Time Slot #2 - Group Call 2 = Local
You Must Have [ARS] Disabled in Your Radio
Coverage Area (http://www.dmr-marc.net/images/va2cyh-coverage.jpg)
Contact: Alain Reid, VA2SPB
E-mail: va2spb@coveyhilltelecom.com
Website: www.ve2cyh.org,1,DMR-MARC Canada
302201,VA2RLD,St. Calixte,Quebec,Canada,443.15000,2,+5.000,Peer,TS1 TS2,VA2DU,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 11 = WW French
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 302 = Canada
Time Slot #1 - Group Call 310 = TAC310
Time Slot #1 - Group Call 9999 = Audio Test
Time Slot #2 - Group Call 3023 = Ontario
Time Slot #2 - Group Call 3022 = Quebec
Time Slot #2 - Group Call 3024 = Manitoba
Time Slot #2 - Group Call 3026 = Alberta
Time Slot #2 - Group Call 3029 = New Brunswick
Time Slot #2 - Group Call 3027 = British Columbia
Time Slot #2 - Group Call 2 = Local
You Must Have [ARS] Disabled in Your Radio
Contact name: Rene, VE2RI
E-mail: ve2ri@mail.com,1,DMR-MARC Canada
@@ -1053,6 +1253,8 @@
302218,VE2UCD,QUEBEC,Quebec,Canada,448.62500,1,-5.000,Peer,TS1 TS2,VE2JKA,,1,dmr-marc
302219,VA2RVB,St-Félix-de-Valois,Quebec,Canada,442.80000,2,+5.000,Master,TS1 TS2,VE2VB,,0,BrandMeister
302220,VE2RRC,Roxboro,Quebec,Canada,448.50000,1,-5.000,Peer,TS1 TS2,VE2RI,,0,Brandmeister
+302221,VE2RWE,DIXVILLE,Quebec,Canada,448.12500,1,-5.000,Peer,TS1 TS2,VE2JKA,,1,BELAIR
+302222,VA2OZ,GORE,Quebec,Canada,447.37500,1,-5.000,Peer,TS1 TS2,VE2JKA,,1,BELAIR
302300,VE3RGM,London,Ontario,Canada,444.61250,7,+5.000,Peer,TS1 TS2,VE3NMZ,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 302 = Canada
Time Slot #1 - Group Call 310 = TAC310
Time Slot #1 - Group Call 9999 = Audio Test
Time Slot #2 - Group Call 3023 = Ontario
Time Slot #2 - Group Call 3022 = Quebec
Time Slot #2 - Group Call 3024 = Manitoba
Time Slot #2 - Group Call 3026 = Alberta
Time Slot #2 - Group Call 3029 = New Brunswick
Time Slot #2 - Group Call 3027 = British Columbia
Time Slot #2 - Group Call 2 = Local
You Must Have [ARS] Disabled in Your Radio
Contact: Jim Wake, VE3NMZ
Email: jim.wake@spectrumpaging.ca,1,DMR-MARC Canada
302301,VE3NXS,Kitchener,Ontario,Canada,444.53750,7,+5.000,Peer,TS1 TS2,VE3NXT,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 302 = Canada
Time Slot #1 - Group Call 310 = TAC310
Time Slot #1 - Group Call 9999 = Audio Test
Time Slot #2 - Group Call 3023 = Ontario
Time Slot #2 - Group Call 3022 = Quebec
Time Slot #2 - Group Call 3024 = Manitoba
Time Slot #2 - Group Call 3026 = Alberta
Time Slot #2 - Group Call 3029 = New Brunswick
Time Slot #2 - Group Call 3027 = British Columbia
Time Slot #2 - Group Call 2 = Local
You Must Have [ARS] Disabled in Your Radio
Coverage Area (http://www.dmr-marc.net/images/ve3nxs-coverage.jpg)
Contact: Bob Moyer, VE3NXT
Email: rbmoyer@gmail.com,1,DMR-MARC Canada
302302,VE3BNI,Milton,Ontario,Canada,443.98750,1,+5.000,Peer,TS1 TS2,VE3BNI,,0,DMR-MARC - Canada
@@ -1143,6 +1345,7 @@
310508,W5AUU,Conway,Arkansas,United States,443.75000,1,+5.000,None,TS1 TS2,N5OMW,,0,Brandmeister
310509,KG5GJU,Clarkridge ,Arkansas,United States,443.22500,1,+5.000,Peer,TS1 TS2,KG5GJU,,0,Brand meister
310510,K5BRM,little rock,Arkansas,United States,443.92500,1,+5.000,Peer,TS1 TS2,K5BRM,,0,brandmister
+310511,KG5GJU,clarkridge,Arkansas,United States,443.22500,14,+5.000,Peer,TS1 TS2,KG5GJU,,0,brandmesister
310600,K6EH,Palos Verdes,California,United States,446.06000,1,-5.000,Peer,None,K6EH,,0,None
310601,W6UUU,Oakland,California,United States,144.95000,1,+2.500,Master,TS1 TS2,N6LDJ,,0,BrandMeister
310602,K6PIT,Pittsburg,California,United States,440.13750,2,+5.000,Peer,TS1 TS2,K6BIV,,0,BrandMeister
@@ -1197,7 +1400,7 @@
310651,K6ACR,Tassajera Peak,California,United States,444.35000,2,+5.000,Master,TS1 TS2,K6ACR,,0,BrandMeister
310652,N6BMW,Ojai,California,United States,445.70000,1,-5.000,Peer,TS1 TS2,N6BMW,Talk Group Talk Group # Time Slot # PTT Timer
Local 2 1 Always On
Regional TG Varies 1 Always On
SoCal 1 - PTT 721 1 10 Mins
SoCal 2 - PTT 722 1 10 Mins
SoCal Talk Group 76225 1 Always ON
CenCal - PTT 236225 1 10 Mins
NorCal 5150 - PTT 5150 1 10 Mins
CAL 1 - PTT 2251 2 10 Mins
CAL 2 - PTT 2252 2 10 Mins
California 3107 2 Always ON
Southwest 3176 2 Always ON
North America 3 2 10 Mins
Worldwide English - PTT 13 2 10 Mins
World Wide - PTT 1 2 20 Mins
Comm 1 3777215 2 Always On
TAC 310 - PTT 310 2 10 Mins
Parrot - PTT 9998 2 10 Mins
Audio Test - PTT 9999 2 5 Mins
Website:,1,SoCal
310653,KJ6NRO,Tuolumne,California,United States,144.96250,2,+2.500,Master,TS1 TS2,KJ6NRO,,0,BrandMeister
-310654,WX6D,Fresno,California,United States,442.23750,1,+5.000,Master,TS1 TS2,N6IB,Local 2 1
CenCal 1 - PTT 221 1
CenCal 2 - PTT 222 1
CenCal 236225 1
NorCal 5150 - PTT 5150 1
SoCal PTT 76225 1
TG 647 647 2
CAL 1 - PTT 2251 2
CAL 2 - PTT 2252 2
California 3107 2
North America - PTT 3 2
World Wide - PTT 1 2
TAC 310 - PTT 310 2
Southwest 3176 2
Audio Test - PTT 9999 2
Parrot PTT 9998 2
Comm 1 3777215 2 Website:,1,Mountain West DMR
+310654,WX6D,Fresno,California,United States,442.23750,1,+5.000,Master,TS1 TS2,N6IB,Time Slot #2 - Group Call 2 = Local
Time Slot #2 - Group Call 3185 = Cactus
Time Slot #2 - Group Call 31066 = SoCal
Time Slot #2 - Group Call 31068 = NorCal
Time Slot #2 - Group Call 31062 = Mountain West
Time Slot #2 - Group Call 31063 = Mountain West 1
Time Slot #1 - Group Call 3106 = California
Time Slot #1 - Group Call 31061 = California 1
Time Slot #1 - Group Call 3176 = Southwest
Time Slot #1 - Group Call 31761 = Southwest 1
Time Slot #1 - Group Call 93 = North America
Time Slot #1 - Group Call 91 = World
Time Slot #1 - Group Call 31096 = Call Zone 6
Time Slot #1 - Group Call 310 = TAC 310
Time Slot #1 - Group Call 3777215 = Comm 1
Time Slot #1 - Group Call 31268 = SNARS
Time Slot #1 - Group Call 3168 = I-5
Time Slot #1 - Group Call 9999 = Audio Meter
Time Slot #1 - Group Call 9998 = Parrot (Echo)
You Must Have [ARS] Disabled Within Your Radio
Contact: Mark Ward, N6IB
Email: n6ib@me.com:,1,Mountain West DMR
310655,K6ACR,Modesto,California,United States,442.17500,1,+5.000,Master,TS1 TS2,K6ACR,Local LOCAL 2 1 Always On
Club / Sub Regional [regional option] Varies 1 Always On
NorCal 1 - PTT NORCAL 1 621 1 10 Mins
NorCal 2 - PTT NORCAL 2 622 1 10 Mins
Norcal- 5150 NORCAL 5150 5150 1 Always On
CenCal-PTT CENCAL 236225 1 10 Mins
SoCal-PTT SOCAL 76225 1 10 Mins
CAL 1 - PTT CAL 1 2251 2 10 Mins
CAL 2 - PTT CAL 2 2252 2 10 Mins
California CALIFORNIA 3107 2 Always On
Southwest SOUTHWEST 3176 2 Always On
North America - PTT NORTH AMERICA 3 2 10 Mins
English - PTT WORLD ENGLISH 13 2 10 Mins
World Wide - PTT WORLD 1 2 20 Mins
Comm 1 COMM 1 3777215 2 Always On
TAC 310 - PTT TAC 310 310 2 10 Mins
Parrot - PTT ECHO TEST 9998 2 10 Mins
Audio Test - PTT AUDIO TEST 9999 2 5 Mins Website: http://norcaldmr.org/NorCal-Network-Map/repeater-pages/k6acr-modesto/index.php,0,BrandMeister
310656,K6ACR,Mt. Bullion,California,United States,144.93750,1,+2.500,Master,TS1 TS2,K6ACR,Local LOCAL 2 1 Always On
Club / Sub Regional [regional option] Varies 1 Always On
NorCal 1 - PTT NORCAL 1 621 1 10 Mins
NorCal 2 - PTT NORCAL 2 622 1 10 Mins
Norcal- 5150 NORCAL 5150 5150 1 Always On
CenCal-PTT CENCAL 236225 1 10 Mins
SoCal-PTT SOCAL 76225 1 10 Mins
CAL 1 - PTT CAL 1 2251 2 10 Mins
CAL 2 - PTT CAL 2 2252 2 10 Mins
California CALIFORNIA 3107 2 Always On
Southwest SOUTHWEST 3176 2 Always On
North America - PTT NORTH AMERICA 3 2 10 Mins
English - PTT WORLD ENGLISH 13 2 10 Mins
World Wide - PTT WORLD 1 2 20 Mins
Comm 1 COMM 1 3777215 2 Always On
TAC 310 - PTT TAC 310 310 2 10 Mins
Parrot - PTT ECHO TEST 9998 2 10 Mins
Audio Test - PTT AUDIO TEST 9999 2 5 Mins Website: http://norcaldmr.org/NorCal-Network-Map/repeater-pages/k6acr-bullionvhf/index.php,0,BrandMeister
310657,KE6NDG,Susanville,California,United States,444.57500,1,+5.000,Peer,TS1 TS2,KE6NDG,,0,DCI
@@ -1207,7 +1410,7 @@
310661,N6GGS,Victorville,California,United States,446.06000,2,-5.000,Master,TS1 TS2,N6GGS,TS 1
Local TG 2 AA
CenCal TG 236225 AA
SoCal TG 76225 AA
SoCal 1 TG 721 UA 5min
TS 2
CAL TG 3107 AA
CAL 1 TG 2251 UA 5 min
Southwest TG 3176 AA
Southwest 1 TG 31761 UA 5
N America TG 3 UA 5
WW English TG 13 UA 5
WW TG 1 UA 5
WW Eng UA 1 TG 113 UA 5
WW Eng UA 2 TG 123 UA 5
COMM-1 TG 3777215 AA
TAC 310 TG 310 UA 5
Jenny TG 8675309 UA 5
Parrot TG 9998 UA 5
Audio Test TG 9999 UA 5
Website:,1,SoCal
310662,WA6KPX,Milpitas,California,United States,443.40000,1,+5.000,Master,TS1 TS2,WA6YCZ,,0,Baycom
310663,K6OTR,Palo Alto,California,United States,441.85000,1,+5.000,Master,TS1 TS2,KA6RMA,,0,Baycom
-310664,WX6D,Visalia,California,United States,442.32500,2,+5.000,Master,TS1 TS2,N6IB,Local 2 1
CenCal 1 - PTT 221 1
CenCal 2 - PTT 222 1
CenCal 236225 1
NorCal 5150 - PTT 5150 1
SoCal PTT 76225 1
TG 647 647 2
CAL 1 - PTT 2251 2
CAL 2 - PTT 2252 2
California 3107 2
North America - PTT 3 2
World Wide - PTT 1 2
TAC 310 - PTT 310 2
Southwest 3176 2
Audio Test - PTT 9999 2
Parrot PTT 9998 2
Comm 1 3777215 2 Website: ,1,CenCal
+310664,WX6D,Visalia,California,United States,442.32500,2,+5.000,Master,TS1 TS2,N6IB,Time Slot #2 - Group Call 2 = Local
Time Slot #2 - Group Call 3185 = Cactus
Time Slot #2 - Group Call 31066 = SoCal
Time Slot #2 - Group Call 31068 = NorCal
Time Slot #2 - Group Call 31062 = Mountain West
Time Slot #2 - Group Call 31063 = Mountain West 1
Time Slot #1 - Group Call 3106 = California
Time Slot #1 - Group Call 31061 = California 1
Time Slot #1 - Group Call 3176 = Southwest
Time Slot #1 - Group Call 31761 = Southwest 1
Time Slot #1 - Group Call 93 = North America
Time Slot #1 - Group Call 91 = World
Time Slot #1 - Group Call 31096 = Call Zone 6
Time Slot #1 - Group Call 310 = TAC 310
Time Slot #1 - Group Call 3777215 = Comm 1
Time Slot #1 - Group Call 31268 = SNARS
Time Slot #1 - Group Call 3168 = I-5
Time Slot #1 - Group Call 9999 = Audio Meter
Time Slot #1 - Group Call 9998 = Parrot (Echo)
You Must Have [ARS] Disabled Within Your Radio
Contact: Mark Ward, N6IB,1,Mountain West DMR
310665,NG6D,Auburn ,California,United States,442.96250,1,+5.000,Peer,TS1 TS2,NG6D,,0,BrandMeister
310666,KC6WTF,Morgan Hill,California,United States,444.10000,1,+5.000,Master,TS1 TS2,KC6WTF,,0,BrandMeister
310667,W6SS,San Diego,California,United States,446.14000,1,-5.000,Peer,TS1 TS2,W6SS,,0,San Diego
@@ -1220,12 +1423,12 @@
310674,W6YYY,Morgan Hill,California,United States,440.03750,1,+5.000,Master,TS1 TS2,HORK,,0,BrandMeister
310676,K6LNK,Gualala,California,United States,442.07500,1,+5.000,Master,TS1 TS2,N6MVT,,0,BrandMeister
310677,W6CX,Walnut Creek,California,United States,147.06000,1,+0.600,Master,None,KT6Y,,0,None
-310678,WX6D,Clovis,California,United States,440.05000,1,+5.000,Master,TS1 TS2,N6IB,WX6D 145.4500 -0.6 MHz Color Code 1
Time Slot 1 Group Call 2 = Local
Time Slot 1 Group Call 221= CenCal 1 - PTT
Time Slot 1 Group Call 222= CenCal 2 - PTT
Time Slot 1 Group Call 236225 = CenCal
Time Slot 1 Group Call 5150 = NorCal 5150 - PTT
Time Slot 1 Group Call 76225 = SoCal PTT
Time Slot 2 Group Call 647 = 647
Time Slot 2 Group Call 2251 = CAL 1 - PTT
Time Slot 2 Group Call 2252 = CAL 2 - PTT
Time Slot 2 Group Call 3107 = California
Time Slot 2 Group Call 3 = North America - PTT
Time Slot 2 Group Call 1 = World Wide - PTT
Time Slot 2 Group Call 310 = TAC 310 - PTT
Time Slot 2 Group Call 3176 = Southwest
Time Slot 2 Group Call 9999 = Audio Test - PTT
Time Slot 2 Group Call 9998 = Parrot PTT
Time Slot 2 Group Call 3777215 = Comm 1
Website: http://norcaldmr.org/NorCal-Network-Map/repeater-pages/WX6DClovis/index.php
Contact: N6IB
Email: n6ib@me.com ,1,CenCal
+310678,WX6D,Clovis,California,United States,440.05000,1,+5.000,Master,TS1 TS2,N6IB,Time Slot #2 - Group Call 2 = Local
Time Slot #2 - Group Call 3185 = Cactus
Time Slot #2 - Group Call 31066 = SoCal
Time Slot #2 - Group Call 31068 = NorCal
Time Slot #2 - Group Call 31062 = Mountain West
Time Slot #2 - Group Call 31063 = Mountain West 1
Time Slot #1 - Group Call 3106 = California
Time Slot #1 - Group Call 31061 = California 1
Time Slot #1 - Group Call 3176 = Southwest
Time Slot #1 - Group Call 31761 = Southwest 1
Time Slot #1 - Group Call 93 = North America
Time Slot #1 - Group Call 91 = World
Time Slot #1 - Group Call 31096 = Call Zone 6
Time Slot #1 - Group Call 310 = TAC 310
Time Slot #1 - Group Call 3777215 = Comm 1
Time Slot #1 - Group Call 31268 = SNARS
Time Slot #1 - Group Call 3168 = I-5
Time Slot #1 - Group Call 9999 = Audio Meter
Time Slot #1 - Group Call 9998 = Parrot (Echo)
You Must Have [ARS] Disabled Within Your Radio
Contact: Mark Ward, N6IB
Email: n6ib@me.com
,1,Mountain West DMR
310679,WD6AML,San Dimas,California,United States,447.90000,1,-5.000,Master,TS1 TS2,WA6PYJ,Time slot 1
Name TGAA/UA Timer
Local 2 AA
Cactus3185 AA
Mtn West236225 AA
SoCal76225 AA
I5 3168AA
Time Slot 2
Cal Statewide 3107 AA
Cal Statewide1 2251 UA 5
Southwest 3176 AA
Southwest1 31761 UA 5
Mountain 3177 AA
NA Eng 3 UA 5
WW Eng 13 UA 5
WW 1 1 UA 5
UA1 113 UA 5
UA2 123 UA 5
Comm1 3777215 AA
TAC310 310 UA 5
SNARS6968 UA 5
DCI Bridge3100 UA 5
Audio Meter9999 UA 1
Parrot (Echo)9998 UA 1
AA - Talk Group always active
UA - Talk Group is user activated by PTT (Push To Talk Button) PTT
Activity Timer - The amount of time the Talk group is active if no PTT Activity is detected
Hold Off Timer - Amount of time before talk group
is active again to provide priority traffic on a
Time Slot
You Must Have [ARS] Disabled Within Your Radio
Mountain West Network
Contact Information:,1,Mountain West
310680,W6ELL,Yorba Linda,California,United States,449.46000,1,-5.000,Peer,TS1 TS2,W6ELL,Local 2 1 Always On
Regional TG Varies 1 Always On
SoCal 1 - PTT 721 1 10 Mins
SoCal 2 - PTT 722 1 10 Mins
SoCal Talk Group 76225 1 Always ON
CenCal - PTT 236225 1 10 Mins
NorCal 5150 - PTT 5150 1 10 Mins,1,SoCal,
310681,N6WZK,Riverside,California,United States,449.36000,1,-5.000,Master,TS1 TS2,N6WZK,,0,BrandMeister
310682,KC7NP,Moreno Valley,California,United States,425.42500,1,+3.000,Master,Mixed Mode,KC7NP,,0,dmr
-310683,WX6D,Clovis,California,United States,145.45000,1,-0.600,Master,TS1 TS2,N6IB,,0,Mountain West
+310683,WX6D,Clovis,California,United States,145.45000,1,-0.600,Master,TS1 TS2,N6IB,Time Slot #2 - Group Call 2 = Local
Time Slot #2 - Group Call 3185 = Cactus
Time Slot #2 - Group Call 31066 = SoCal
Time Slot #2 - Group Call 31068 = NorCal
Time Slot #2 - Group Call 31062 = Mountain West
Time Slot #2 - Group Call 31063 = Mountain West 1
Time Slot #1 - Group Call 3106 = California
Time Slot #1 - Group Call 31061 = California 1
Time Slot #1 - Group Call 3176 = Southwest
Time Slot #1 - Group Call 31761 = Southwest 1
Time Slot #1 - Group Call 93 = North America
Time Slot #1 - Group Call 91 = World
Time Slot #1 - Group Call 31096 = Call Zone 6
Time Slot #1 - Group Call 310 = TAC 310
Time Slot #1 - Group Call 3777215 = Comm 1
Time Slot #1 - Group Call 31268 = SNARS
Time Slot #1 - Group Call 3168 = I-5
Time Slot #1 - Group Call 9999 = Audio Meter
Time Slot #1 - Group Call 9998 = Parrot (Echo)
You Must Have [ARS] Disabled Within Your Radio
Contact: Mark Ward, N6IB
Email: n6ib@me.com,1, Mountain West DMR
310684,KA6P,Wrightwood,California,United States,449.03750,2,-5.000,Peer,TS1 TS2,KA6P,TS 1
Local TG 2 AA
CenCal TG 236225 AA
SoCal TG 76225 AA
SoCal 1 TG 721 UA 5min
TS 2
CAL TG 3107 AA
CAL 1 TG 2251 UA 5 min
Southwest TG 3176 AA
Southwest 1 TG 31761 UA 5
N America TG 3 UA 5
WW English TG 13 UA 5
WW TG 1 UA 5
WW Eng UA 1 TG 113 UA 5
WW Eng UA 2 TG 123 UA 5
COMM-1 TG 3777215 AA
TAC 310 TG 310 UA 5
Jenny TG 8675309 UA 5
Parrot TG 9998 UA 5
Audio Test TG 9999 UA 5
Website:,1,SoCal
310685,WA6YVX,San Diego,California,United States,449.86250,1,-5.000,Master,TS1 TS2,WA6YVX,TS1 TG2 Local
TS1 TG3 Regional
TS1 TG76225 SoCal
TS1 TG721 SoCal 1 -UA
TS2 TG3107 California Calling
TS2 TG2251 California 1 -UA
TS2 TG3176 Southwest Region
TS2 TG31761 Southwest 1 UA
TS2 TG3 North America Calling
TS2 TG113 UA English 1
TS2 TG123 UA English 2
TS2 TG13 WW UA
TS2 TG9998 Parrot - UA
TS2 TG9999 NorCal Audio Test - UA
You Must Have [ARS] Disabled Within Your Radio
Contact: WA6YVX, Ed Flinn
Email: wa6yvx@aol.com
,1,SoCal
310686,N6JKF,Santa Monica,California,United States,446.08000,1,-5.000,Master,TS1 TS2,WD6FZA,,0,BrandMeister
@@ -1245,7 +1448,7 @@
310701,WB6VKR,Santa Paula,California,United States,447.36000,1,-5.000,Master,TS1 TS2,WB6VKR,,0,PAPA
310702,N6UTX,Winters,California,United States,144.93750,2,+2.500,Master,TS1 TS2,N6UTX,,0,BrandMeister
310703,K6LNK,Vacaville,California,United States,927.17500,3,-25.000,Master,TS1 TS2,N6JOA,,0,BrandMeister
-310704,WX6D,Tulare,California,United States,442.47500,2,+5.000,Master,TS1 TS2,N6IB,,0,Mountain West
+310704,WX6D,Tulare,California,United States,442.47500,2,+5.000,Master,TS1 TS2,N6IB,Time Slot #2 - Group Call 2 = Local
Time Slot #2 - Group Call 3185 = Cactus
Time Slot #2 - Group Call 31066 = SoCal
Time Slot #2 - Group Call 31068 = NorCal
Time Slot #2 - Group Call 31062 = Mountain West
Time Slot #2 - Group Call 31063 = Mountain West 1
Time Slot #1 - Group Call 3106 = California
Time Slot #1 - Group Call 31061 = California 1
Time Slot #1 - Group Call 3176 = Southwest
Time Slot #1 - Group Call 31761 = Southwest 1
Time Slot #1 - Group Call 93 = North America
Time Slot #1 - Group Call 91 = World
Time Slot #1 - Group Call 31096 = Call Zone 6
Time Slot #1 - Group Call 310 = TAC 310
Time Slot #1 - Group Call 3777215 = Comm 1
Time Slot #1 - Group Call 31268 = SNARS
Time Slot #1 - Group Call 3168 = I-5
Time Slot #1 - Group Call 9999 = Audio Meter
Time Slot #1 - Group Call 9998 = Parrot (Echo)
You Must Have [ARS] Disabled Within Your Radio
Contact: Mark Ward, N6IB
Email: n6ib@me.com,1,Mountain West DMR
310705,N6GKJ,Lodi,California,United States,444.22500,1,+5.000,Master,TS1 TS2,N6GKJ,,0,BrandMeister
310706,KA7QQV,Alameda,California,United States,442.30000,1,+5.000,Master,TS1 TS2,KA7QQV,,0,Mountain West
310707,W6PE,Sonoma,California,United States,440.01250,1,+5.000,Peer,TS1 TS2,NN6J,,0,BrandMeister
@@ -1253,7 +1456,7 @@
310709,W6GRC,Redding,California,United States,145.00000,1,+2.500,Master,TS1 TS2,W6GRC,,0,BrandMeister
310710,N9QE,Harbor City,California,United States,449.46000,15,-5.000,Peer,TS1 TS2,N9QE,,0,BrandMeister
310711,W6CMU,Moffett Field,California,United States,443.82500,1,+5.000,Peer,TS1 TS2,W6EI,,0,BrandMeister
-310712,KE6YJC,Fresno,California,United States,440.06250,1,+5.000,Peer,TS1 TS2,KE6YJC,Time Slot #2 - Group Call 2 = Local
Time Slot #2 - Group Call 3185 = Cactus
Time Slot #2 - Group Call 31066 = SoCal
Time Slot #2 - Group Call 61068 = NorCal
Time Slot #2 - Group Call 31062 = Mountain West
Time Slot #2 - Group Call 31063 = Mountain West 1
Time Slot #1 - Group Call 3106 = Statewide
Time Slot #1 - Group Call 31061 = Statewide 1
Time Slot #1 - Group Call 3176 = Southwest
Time Slot #1 - Group Call 31761 = Southwest 1
Time Slot #1 - Group Call 93 = North America
Time Slot #1 - Group Call 91 = World
Time Slot #1 - Group Call 31096 = Call Zone 6
Time Slot #1 - Group Call 310 = TAC 310
Time Slot #1 - Group Call 3777215 = Comm 1
Time Slot #1 - Group Call 31268 = SNARS
Time Slot #1 - Group Call 9999 = Autio Meter
Time Slot #1 - Group Call 9998 = Parrot (Echo)
Time Slot #1 - Group Call 3168 = I-5
You Must Have [ARS] Disabled Wihtin Your Radio
Contact: Ted G. Freitas, KE6YJC
Email: ted.freitas@me.com
Website: http://mountainwestdmr.org/styled-11/styled-56/
,1,Mountain West
+310712,KE6YJC,Fresno,California,United States,440.06250,1,+5.000,Peer,TS1 TS2,KE6YJC,Time Slot #2 - Group Call 2 = Local
Time Slot #2 - Group Call 3185 = Cactus
Time Slot #2 - Group Call 31066 = SoCal
Time Slot #2 - Group Call 31068 = NorCal
Time Slot #2 - Group Call 31062 = Mountain West
Time Slot #2 - Group Call 31063 = Mountain West 1
Time Slot #1 - Group Call 3106 = California
Time Slot #1 - Group Call 31061 = California 1
Time Slot #1 - Group Call 3176 = Southwest
Time Slot #1 - Group Call 31761 = Southwest 1
Time Slot #1 - Group Call 93 = North America
Time Slot #1 - Group Call 91 = World
Time Slot #1 - Group Call 31096 = Call Zone 6
Time Slot #1 - Group Call 310 = TAC 310
Time Slot #1 - Group Call 3777215 = Comm 1
Time Slot #1 - Group Call 31268 = SNARS
Time Slot #1 - Group Call 3168 = I-5
Time Slot #1 - Group Call 9999 = Audio Meter
Time Slot #1 - Group Call 9998 = Parrot (Echo)
You Must Have [ARS] Disabled Within Your Radio
Contact: Ted G. Freitas / KE6YJC
Email: ted.freitas@me.com,1,Mountain West
310713,WD6DIH,Yorba Linda,California,United States,445.40000,1,-5.000,Peer,TS1 TS2,WD6DIH,,0,BrandMeister
310714,W6OTX,San Jose,California,United States,144.96250,3,+2.500,Master,TS1 TS2,KD6W,,0,BrandMeister
310715,W6OTX,San Jose,California,United States,444.47500,1,+5.000,Master,TS1 TS2,KD6W,,0,BrandMeister
@@ -1267,11 +1470,11 @@
310723,W6BML,Mount Shasta,California,United States,441.27500,1,+5.000,Master,TS1 TS2,NR6J,,0,D-Star/DMR/C4FM
310724,K6TMD,Pine Cove,California,United States,446.06000,3,-5.000,Master,TS1 TS2,WA6PYJ,,1,Mountian West
310725,K6TMD,Palm Springs,California,United States,446.06000,4,-5.000,Master,TS1 TS2,WA6PYJ,,1,Mountain West
-310726,N6VYT,COALINGA,California,United States,442.00000,1,+5.000,Master,TS1 TS2,N6VYT,,1,Mountain West
+310726,N6VYT,COALINGA,California,United States,442.00000,1,+5.000,Master,TS1 TS2,N6VYT,Time Slot #2 - Group Call 2 = Local
Time Slot #2 - Group Call 3185 = Cactus
Time Slot #2 - Group Call 31066 = SoCal
Time Slot #2 - Group Call 31068 = NorCal
Time Slot #2 - Group Call 31062 = Mountain West
Time Slot #2 - Group Call 31063 = Mountain West 1
Time Slot #1 - Group Call 3106 = California
Time Slot #1 - Group Call 31061 = California 1
Time Slot #1 - Group Call 3176 = Southwest
Time Slot #1 - Group Call 31761 = Southwest 1
Time Slot #1 - Group Call 93 = North America
Time Slot #1 - Group Call 91 = World
Time Slot #1 - Group Call 31096 = Call Zone 6
Time Slot #1 - Group Call 310 = TAC 310
Time Slot #1 - Group Call 3777215 = Comm 1
Time Slot #1 - Group Call 31268 = SNARS
Time Slot #1 - Group Call 3168 = I-5
Time Slot #1 - Group Call 9999 = Audio Meter
Time Slot #1 - Group Call 9998 = Parrot (Echo)
You Must Have [ARS] Disabled Within Your Radio
Contact: Mark Ward, N6IB / Eric Ott, N6VYT
Email: n6ib@me.com / n6vyt@arrl.net,1,Mountain West DMR
310727,N6RPV,Rancho Palos Verdes,California,United States,445.72000,1,-5.000,None,Mixed Mode,N6NNW,,0,none
310728,WA6EWV,South Lake Tahoe,California,United States,443.70000,1,+5.000,Peer,TS1 TS2,WA6EWV,,0,BrandMeister
-310729,N6VYT,Coalinga,California,United States,145.00000,1,+2.500,Master,TS1 TS2,N6VYT,,1,Mtn West
-310730,WX6D,Bakersfield,California,United States,440.95000,1,+5.000,Master,TS1 TS2,N6IB,,1,Mountain West
+310729,N6VYT,Coalinga,California,United States,145.02500,1,+2.475,Master,TS1 TS2,N6VYT,Time Slot #2 - Group Call 2 = Local
Time Slot #2 - Group Call 3185 = Cactus
Time Slot #2 - Group Call 31066 = SoCal
Time Slot #2 - Group Call 31068 = NorCal
Time Slot #2 - Group Call 31062 = Mountain West
Time Slot #2 - Group Call 31063 = Mountain West 1
Time Slot #1 - Group Call 3106 = California
Time Slot #1 - Group Call 31061 = California 1
Time Slot #1 - Group Call 3176 = Southwest
Time Slot #1 - Group Call 31761 = Southwest 1
Time Slot #1 - Group Call 93 = North America
Time Slot #1 - Group Call 91 = World
Time Slot #1 - Group Call 31096 = Call Zone 6
Time Slot #1 - Group Call 310 = TAC 310
Time Slot #1 - Group Call 3777215 = Comm 1
Time Slot #1 - Group Call 31268 = SNARS
Time Slot #1 - Group Call 3168 = I-5
Time Slot #1 - Group Call 9999 = Audio Meter
Time Slot #1 - Group Call 9998 = Parrot (Echo)
You Must Have [ARS] Disabled Within Your Radio
Contact: Mark Ward, N6IB / Eric Ott, N6VYT
Email: n6ib@me.com / n6vyt@arrl.net,1,Mountain West DMR
+310730,WX6D,Bakersfield,California,United States,440.95000,1,+5.000,Master,TS1 TS2,N6IB,Time Slot #2 - Group Call 2 = Local
Time Slot #2 - Group Call 3185 = Cactus
Time Slot #2 - Group Call 31066 = SoCal
Time Slot #2 - Group Call 31068 = NorCal
Time Slot #2 - Group Call 31062 = Mountain West
Time Slot #2 - Group Call 31063 = Mountain West 1
Time Slot #1 - Group Call 3106 = California
Time Slot #1 - Group Call 31061 = California 1
Time Slot #1 - Group Call 3176 = Southwest
Time Slot #1 - Group Call 31761 = Southwest 1
Time Slot #1 - Group Call 93 = North America
Time Slot #1 - Group Call 91 = World
Time Slot #1 - Group Call 31096 = Call Zone 6
Time Slot #1 - Group Call 310 = TAC 310
Time Slot #1 - Group Call 3777215 = Comm 1
Time Slot #1 - Group Call 31268 = SNARS
Time Slot #1 - Group Call 3168 = I-5
Time Slot #1 - Group Call 9999 = Audio Meter
Time Slot #1 - Group Call 9998 = Parrot (Echo)
You Must Have [ARS] Disabled Within Your Radio
Contact: Mark Ward, N6IB
Email: n6ib@me.com,1,Mountain West DMR
310731,K7AZ,New Cuyama,California,United States,440.50000,2,+5.000,Peer,TS1 TS2,K7AZ,,0,BrandMeister
310732,KJ6QBM,Bodega Bay,California,United States,440.32500,1,+5.000,Peer,TS1 TS2,KJ6QBM,,0,BrandMeister
310733,K6JWN,Dixon,California,United States,444.52500,2,+5.000,Peer,TS1 TS2,K6JWN,,0,Brandmeister
@@ -1280,6 +1483,7 @@
310736,K6DOA,Nipomo,California,United States,444.65000,4,+5.000,Master,TS1 TS2,K6RCT,,0,None
310737,KJ6YQW,Culver City,California,United States,446.43000,1,-5.000,Master,Mixed Mode,KJ6YQW,,0,DMR
310738,W6NVY,Mt. Wilson,California,United States,445.18000,7,-5.000,Peer,TS1 TS2,N6CIZ,,0,Brandmeister
+310739,K6INC,Sacramento,California,United States,443.15000,1,+5.000,Master,TS1,AK6O,,0,Scan International
310800,N0SZ,Denver,Colorado,United States,446.80000,1,-5.000,Master,TS1 TS2,K2AD,,0,RMHR
310801,N0SZ,Denver,Colorado,United States,446.93750,1,-5.000,Peer,TS1 TS2,K2AD,,0,RMHR
310802,WA2YZT,Denver,Colorado,United States,446.83750,1,-5.000,Peer,TS2,WA2YZT,,0,RMHR
@@ -1499,7 +1703,7 @@
311523,KH6FV,Mt. Halekala,Hawaii,United States,444.85000,0,+5.000,Peer,TS1 TS2,KH6FV,,0,Hawaii Trbo
311524,AH6CP,Kukuilono,Hawaii,United States,444.35000,1,+5.000,Peer,TS1 TS2,AH6CP,Time Slot #2 - Group Call 1 = DMR-MARC World Wide
Time Slot #2 - Group Call 3 = DMR-MARC U.S. / English Speaking Countries
Time Slot #2 - Group Call 96801 = Oahu
Time Slot #1 - Group Call 3777215 = TRBO-6
Time Slot #1- Group Call 3115 = HI Statewide
Contact Information:
mototrbohi-owner@yahoogroups.com,1,SF-TRBO
311525,KH6FV,Honolulu,Hawaii,United States,443.42500,2,+5.000,Master,TS1 TS2,KH6FV,,0,Hawaii Trbo
-311526,AH6GR,Maui,Hawaii,United States,442.85000,1,+5.000,Peer,TS1 TS2,AH6GR,TS1: Group Call 3115 = HI-1
TS2:
Group Call 3115808 = HI-2
Group Call 1 = WW
Group Call 3 = NA
Group Call 310 = TAC310
Group Call 96793 = Island Local
Group Call 3777215 = Comm1
Group Call 3176 = Southwest
Contact Information:
Randy, AH6GR
ah6gr@arrl.net,1,Hawaii
+311526,AH6GR,Maui,Hawaii,United States,442.85000,1,+5.000,Peer,TS1 TS2,AH6GR,TS1: Group Call 3115 = HI-1
TS2:
Group Call 3115808 = HI-2
Group Call 1 = WW
Group Call 3 = NA
Group Call 310 = TAC310
Group Call 96793 = Island Local
Group Call 3777215 = Comm1
Group Call 3176 = Southwest
Contact Information:
Randy, AH6GR
ah6gr@arrl.net,1,Brandmeister
311527,KH6FV,Mauna Kea,Hawaii,United States,444.37500,3,+5.000,Peer,TS1 TS2,KH6FV,,0,Hawaii Trbo
311528,KH6FV,Kapolei,Hawaii,United States,443.47500,1,+5.000,Peer,TS1 TS2,KH6FV,,0,Hawaii Trbo
311529,KH6OCD,Honolulu,Hawaii,United States,146.86000,1,-0.600,Peer,Mixed Mode,AH6CP,,0,RACES
@@ -1586,10 +1790,10 @@
311809,K9DEW,Warsaw,Indiana,United States,443.05000,1,+5.000,Peer,TS1 TS2,K9DEW,Time Slot #1 - Group Call 1 = Worldwide (PTT)
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 13= Worldwide English
Time Slot #1 - Group Call 310 = TAC-310
Time Slot #2 - Group Call 2 = Local
Time Slot #2 - Group Call 3118 = Indiana Statewide
Time Slot #2 - Group Call 3126 = Michigan Statewide
Time Slot #2- Group Call 3169 = Midwest Regional
You Must Have [ARS] Disabled Within Your Radio
Coverage Map: http://www.k9dew.com/index.cfm/photo-gallery/
Contact: Dewey, K9DEW
Email: k9dew@aol.com
Website: http://www.k9dew.com,1,W9SMJ-NET
311810,W9SMJ,Frankfort,Indiana,United States,441.37500,1,+5.000,Peer,TS1 TS2,W9SMJ,,0,W9SMJ-NET
311811,NF9K,Indianapolis,,United States,442.45000,1,5.000,PEER,TS1 TS2,NF9K,NF9K 442.450 +5 MHz, Color Code 1 http://www.crossroadsdmr.org/?page_id=96,1,Crossroads DMR
-311812,W9AMT,Bloomington,Indiana,United States,442.10000,1,+5.000,Master,TS1 TS2,W9AMT,Time Slot #1 - Grp Call 1 = World Wide (PTT activated)
Time Slot #1 - Grp Call 13= WW English
Time Slot #1 - Grp Call 3 = N. America
Time Slot #1 - Grp Call 310 = TAC-310 (PTT Activated)
Time Slot #1 - Grp Call 113 = UA English 1 (User Activated)
Time Slot #1 - Grp Call 123 = UA English 2 (User Activated)
Time Slot #1 - Grp Call 9998 = Audio Parrot
Time Slot #1 - Grp Call 9999 = Audio Test
Time Slot #2 - Grp Call 2 = Local
Time Slot #2 - Grp Call 3118 = Indiana Statewide
Time Slot #2 - Grp Call 3169 = Midwest Regional
Coverage Map (http://dmr-marc.net/images/w9amt-coverage.jpg)
Contact: Tony, W9AMT
Email: w9amt@comcast.net,1,Hoosier DMR
+311812,KC9TKJ,Bloomington,Indiana,United States,442.10000,1,+5.000,Master,TS1 TS2,KC9TKJ,Time Slot #1 - Grp Call 1 = World Wide (PTT activated)
Time Slot #1 - Grp Call 13= WW English
Time Slot #1 - Grp Call 3 = N. America
Time Slot #1 - Grp Call 310 = TAC-310 (PTT Activated)
Time Slot #1 - Grp Call 113 = UA English 1 (User Activated)
Time Slot #1 - Grp Call 123 = UA English 2 (User Activated)
Time Slot #1 - Grp Call 9998 = Audio Parrot
Time Slot #1 - Grp Call 9999 = Audio Test
Time Slot #2 - Grp Call 2 = Local
Time Slot #2 - Grp Call 3118 = Indiana Statewide
Time Slot #2 - Grp Call 3169 = Midwest Regional
Coverage Map (http://dmr-marc.net/images/w9amt-coverage.jpg)
Contact: KC9TKJ
Email: christopher@morganized.com,1,Hoosier DMR
311813,KB9CRA,Marion,Indiana,United States,442.75000,1,+5.000,Peer,TS1 TS2,KB9CRA,For Talk Groups see:
http://www.crossroadsdmr.org/?page_id=135
Coverage Map
Contact: Kevin McNeely
Email: kb9cra@indy.rr.com
You Must Have [ARS] Disabled Within Your Radio,1,Crossroads DMR
311814,N9GPY,Culver,Indiana,United States,443.92500,1,+5.000,Peer,TS1 TS2,N9GPY,Time Slot #1 - Grp Call 1 = World Wide (PTT activated)
Time Slot #1 - Grp Call 13= WW English
Time Slot #1 - Grp Call 3 = N. America
Time Slot #1 - Grp Call 310 = TAC-310 (PTT Activated)
Time Slot #1 - Grp Call 113 = UA English 1 (User Activated)
Time Slot #1 - Grp Call 123 = UA English 2 (User Activated)
Time Slot #1 - Grp Call 9998 = Audio Parrot
Time Slot #1 - Grp Call 9999 = Audio Test
Time Slot #2 - Grp Call 2 = Local
Time Slot #2 - Grp Call 3118 = Indiana Statewide
Time Slot #2 - Grp Call 3169 = Midwest Regional
Coverage Map
Contact: Rich N9GPY Email: rich@culcom.net,1,Hoosier DMR
-311815,N9MTF,Wolf Lake,Indiana,United States,442.80000,1,+5.000,Peer,TS1 TS2,N9MTF,Time Slot #1 - Grp Call 1 = World Wide (PTT activated)
Time Slot #1 - Grp Call 13= WW English
Time Slot #1 - Grp Call 3 = N. America
Time Slot #1 - Grp Call 310 = TAC-310 (PTT Activated)
Time Slot #1 - Grp Call 113 = UA English 1 (User Activated)
Time Slot #1 - Grp Call 123 = UA English 2 (User Activated)
Time Slot #1 - Grp Call 9998 = Audio Parrot
Time Slot #1 - Grp Call 9999 = Audio Test
Time Slot #2 - Grp Call 2 = Local
Time Slot #2 - Grp Call 3118 = Indiana Statewide
Time Slot #2 - Grp Call 3169 = Midwest Regional
You Must Have [ARS] Disabled Within Your Radio
Contact: Brad, N9MTF Email: bpeterson@usa.com,1,Hoosier DMR
+311815,N9MTF,Columbia CIty,Indiana,United States,442.80000,1,+5.000,Peer,TS1 TS2,N9MTF,Time Slot #1 - Grp Call 1 = World Wide (PTT activated)
Time Slot #1 - Grp Call 13= WW English
Time Slot #1 - Grp Call 3 = N. America
Time Slot #1 - Grp Call 310 = TAC-310 (PTT Activated)
Time Slot #1 - Grp Call 113 = UA English 1 (User Activated)
Time Slot #1 - Grp Call 123 = UA English 2 (User Activated)
Time Slot #1 - Grp Call 9998 = Audio Parrot
Time Slot #1 - Grp Call 9999 = Audio Test
Time Slot #2 - Grp Call 2 = Local
Time Slot #2 - Grp Call 3118 = Indiana Statewide
Time Slot #2 - Grp Call 3169 = Midwest Regional
You Must Have [ARS] Disabled Within Your Radio
Contact: Brad, N9MTF Email: bpeterson@usa.com,1,Hoosier DMR
311816,K9DEW,South Bend,Indiana,United States,442.05000,1,+5.000,Peer,TS1 TS2,K9DEW,Time Slot #1 - Group Call 1 = Worldwide (PTT)
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 13= Worldwide English
Time Slot #1 - Group Call 310 = TAC-310
Time Slot #2 - Group Call 2 = Local
Time Slot #2 - Group Call 3118 = Indiana Statewide
Time Slot #2 - Group Call 3126 = Michigan Statewide
Time Slot #2- Group Call 3169 = Midwest Regional
You Must Have [ARS] Disabled Within Your Radio
Coverage Map: http://www.k9dew.com/index.cfm/photo-gallery/
Contact: Dewey, K9DEW
Email: k9dew@aol.com
Website: http://www.k9dew.com,1,Hoosier DMR
311817,KC9CFM,Ferdinand,Indiana,United States,444.17500,1,+5.000,Peer,TS1 TS2,KC9CFM,Time Slot #1 - Group Call 1 = Worldwide (PTT)
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 13= Worldwide English
Time Slot #1 - Group Call 310 = TAC-310
Time Slot #2 - Group Call 2 = Local
Time Slot #2 - Group Call 3118 = Indiana Statewide
Time Slot #2- Group Call 3169 = Midwest Regional
Contact: Jamie, KC9CFM
Email: jawinner@gmail.com,1,Crossroads DMR
311818,KB9TTX,Kokomo,Indiana,United States,442.40000,1,+5.000,Peer,TS1 TS2,KB9TTX,For Talk Groups see:
http://www.crossroadsdmr.org/?page_id=276
Contact: John, KB9TTX
Email: kb9ttx@yahoo.com
You Must Have [ARS] Disabled Within Your Radio,1,Crossroads DMR
@@ -1603,7 +1807,7 @@
311826,N9IAA,La Porte,Indiana,United States,444.67500,1,+5.000,Peer,TS1 TS2,N9IAA,Time Slot #1- Group Call 3 = North America (PTT Activated)
Time Slot #1 - Group Call 13 = Worldwide English
Time Slot #1 - Group Call 100= Tech Talk
Time Slot #1- Group Call 113 = UA 113 (PTT Activated)
Time Slot #1- Group Call 3118 = IN Statewide
Time Slot #1- Group Call 3169 = Midwest Regional
Time Slot #1- Group Call 9999 = Audio Test (PTT Activated)
Time Slot #2 - Group Call 2 = Tri-State Local
You Must Have [ARS] Disabled Within Your Radio
Coverage Area (http://dmr-marc.net/images/n9iaa-lpt-coverage.jpg)
Contact Name: Kevin Babich, N9IAA
Email: kevin.babich@gmail.com,1,DMR-MARC
311827,N9CZV,Montpelier,Indiana,United States,441.47500,1,+5.000,Peer,TS1 TS2,N9CZV,For Talk Groups see:
http://www.crossroadsdmr.org/?page_id=135
Coverage Map
Contact: N9CZV
Email: n9czv@arrl.net
You Must Have [ARS] Disabled Within Your Radio,1,Crossroads DMR
311828,N9DMR,Club Demo,Indiana,United States,442.11250,1,+5.000,Peer,TS1 TS2,W9AMT,,0,Hoosier DMR
-311829,W9AMT,Terre Haute,Indiana,United States,442.08750,1,+5.000,Peer,TS1 TS2,W9AMT,,0,Hoosier DMR
+311829,K9IKQ,Terre Haute,Indiana,United States,442.08750,1,+5.000,Peer,TS1 TS2,K9IKQ,,0,Hoosier DMR
311830,W9CTO,Gary,Indiana,United States,442.75000,1,+5.000,Peer,TS1 TS2,W9CTO,Time Slot #1 - Grp Call 1 = World Wide (PTT activated)
Time Slot #1 - Grp Call 13= WW English
Time Slot #1 - Grp Call 3 = N. America
Time Slot #1 - Grp Call 310 = TAC-310 (PTT Activated)
Time Slot #1 - Grp Call 113 = UA English 1 (User Activated)
Time Slot #1 - Grp Call 123 = UA English 2 (User Activated)
Time Slot #1 - Grp Call 9998 = Audio Parrot
Time Slot #1 - Grp Call 9999 = Audio Test
Time Slot #2 - Grp Call 2 = Local
Time Slot #2 - Grp Call 3118 = Indiana Statewide
Time Slot #2 Grp Call 3126 = Michigan Statewide (PTT Activated)
Time Slot #2 - Grp Call 3169 = Midwest Regional
You Must Have [ARS] Disabled Within Your Radio
Trustee is Jim Millsap w9cto@comcast.net,1,Hoosier DMR
311831,N9IAA,South Bend,Indiana,United States,443.42500,1,+5.000,Peer,TS1 TS2,N9IAA,Time Slot #1- Group Call 3 = North America (PTT Activated)
Time Slot #1 - Group Call 13 = Worldwide English
Time Slot #1 - Group Call 100= Tech Talk
Time Slot #1- Group Call 113 = UA 113 (PTT Activated)
Time Slot #1- Group Call 3118 = IN Statewide
Time Slot #1- Group Call 3169 = Midwest Regional
Time Slot #1- Group Call 9999 = Audio Test (PTT Activated)
Time Slot #2 - Group Call 2 = Tri-State Local
You Must Have [ARS] Disabled Within Your Radio
Coverage Area (http://dmr-marc.net/images/n9iaa-coverage.jpg)
Contact Name: Kevin Babich, N9IAA
Email: kevin.babich@gmail.com,1,DMR-MARC
311832,W9ABH,ATTICA,Indiana,United States,442.97500,1,+5.000,Peer,TS1 TS2,W9ABH,Time Slot #1 - Grp Call 1 = World Wide (PTT activated)
Time Slot #1 - Grp Call 13= WW English
Time Slot #1 - Grp Call 3 = N. America
Time Slot #1 - Grp Call 310 = TAC-310 (PTT Activated)
Time Slot #1 - Grp Call 113 = UA English 1 (User Activated)
Time Slot #1 - Grp Call 123 = UA English 2 (User Activated)
Time Slot #1 - Grp Call 9998 = Audio Parrot
Time Slot #1 - Grp Call 9999 = Audio Test
Time Slot #2 - Grp Call 2 = Local
Time Slot #2 - Grp Call 3118 = Indiana Statewide
Time Slot #2 - Grp Call 3169 = Midwest Regional
Contact: Will, W9ABH
Email: wholycro@hotmail.com,1,Hoosier DMR
@@ -1646,6 +1850,8 @@
312011,K0XM,Overland Park,Kansas,United States,927.23750,1,-25.000,Peer,TS1 TS2,K0XM,,0,BM
312012,WB0YRG,Mission,Kansas,United States,443.10000,1,+5.000,Peer,TS1 TS2,W0NQX,,0,BM
312013,KC0DMR,Merriam,Kansas,United States,442.30000,4,+5.000,Peer,TS1 TS2,N0YSN,,0,Brandmeister
+312014,WD0GQA,Kansas City,Kansas,United States,443.85000,1,+5.000,Peer,TS1 TS2,WD0GQA,,0,BM
+312015,WD0GQA,Kansas City,Kansas,United States,442.85000,1,+5.000,Peer,TS1 TS2,WD0GQA,,0,BM
312100,K4KTR,Bardstown,Kentucky,United States,443.00000,1,+5.000,Peer,TS1 TS2,K4KTR,Time Slot #1 - Group Call 1 = World Wide (PTT activated with 5 min inactivity timeout)
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 = N. America
Time Slot #1 - Group Call 310= TAC-310 (PTT on demand activated)
Time Slot #2 - Group Call 2 = Local
Time Slot #2- Group Call 3174 = Southeast Regional
You Must Have [ARS] Disabled Within Your Radio
Contact Name: Kyle, K4KTR
Email: k4ktr@k4ktr.org,1,DMR-MARC
312101,KG4LHQ,Irvington,Kentucky,United States,444.51250,1,+5.000,Peer,TS1 TS2,KG4LHQ,,1,K4USD
312102,W4WSM,Bowling Green,Kentucky,United States,444.70000,1,+5.000,Peer,TS1 TS2,W4WSM,Contact: W4WSM
Email: brunner@twc.com
Website:,1,K4USD Net
@@ -1745,7 +1951,7 @@
312629,W8FSM,West Branch,Michigan,United States,443.95000,1,+5.000,Peer,TS1 TS2,w8FSM,,0,Mi5
312630,N8URW,Onsted,Michigan,United States,442.51250,1,+5.000,Peer,TS1 TS2,N8URW,Time Slot #1- TG 3126 =Michigan Statewide
Time Slot #1- TG 3160 = DCI 1
Time Slot #1- TG 3777215 = Comm 1(TRBO-6)
Time Slot #1- TG3139= Ohio Statewide
Time Slot #2- TG 3163= DMR-MARC NA
Time Slot #2- TG 3161= DMR-MARC WW
Time Slot #2- TG 3777216= Comm 2 (TRBO-6)
Time Slot #2- TG 3162= DCI 2
Time Slot #2- TG 310= TAC-310
Time Slot #2- TG 3100 = The Bridge
You Must Have [ARS] Disabled Within Your Radio
Contact: Jason Bailey, N8URW
Email: j2840fl@yahoo.com (http://mc/compose?to=j2840fl@yahoo.com)
Website: http://www.trbo.info (http://www.trbo.info/),1,DCI
312631,W8JJR,Lincoln,Michigan,United States,442.01250,1,+5.000,Peer,TS1 TS2,W8JJR,,0,Mi5
-312632,W8CMC,Detroit,Michigan,United States,444.67500,2,+5.000,Master,TS1 TS2,W8CMC,Talkgroup Talkgroup ID TimeSlot
Audio Test 2 9999 2
Bridge 2 3100 2
California 1 3106 1
Canada 2 302 2
Comm 1 3777215 1
Comm 2 3777216 2
DCI 1 3160 1
DCI 2 3162 2
Illinois 2 3117 2
Iowa 2 3119 2
Local 2 3166 2
Massachusetts 1 3125 1
Michigan 1 3126 1
Michigan 2 3126 2
Midwest Reg 2 3169 2
North America 2 3163 2
Ohio 1 3139 1
Ontario 2 3023 2
Parrot 1 9998 1
Pennsylvania 1 3142 1
TAC 1 8951 2
TAC 310 310 2
TAC 311 311 2
Washington 1 3153 1
Worldwide 2 3161 2
Worldwide Eng 2 13 2
For Coverage Map:
http://www.ve2dbe.com/rmonline/user/w8cmc/covs/RMD23892B87194_2.zip (http://www.ve2dbe.com/rmonline/user/w8cmc/covs/RMD23)
Contact: Colin, W8CMC
Email: w8cmc@arrl.net
Website:,1,DCI
+312632,W8CMC,Detroit,Michigan,United States,444.67500,2,+5.000,Master,TS1 TS2,W8CMC,Time Slot #2 - Group Call 9999 = Audio Test
Time Slot #2 - Group Call 3100 = Bridge USA
Time Slot #1 - Group Call 3181 = Local Net 1
Time Slot #2 - Group Call 3166 = Local Net 2
Time Slot #2 - Group Call 310 = Tac 310
Time Slot #2 - Group Call 311 = TAC 311
Time Slot #1 - Group Call 3777215 = Comm 1
Time Slot #2 - Group Call 3777216 = Comm 2
Time Slot #1 - Group Call 3160 = DCI 1
Time Slot #2 - Group Call 3162 = DCI 2
Time Slot #2 - Group Call 3117 = Illinois
Time Slot #2 - Group Call 3119 = Iowa
Time Slot #1 - Group Call 3125 = Massachusetts
Time Slot #1 - Group Call 3126 = Michigan
Time Slot #2 - Group Call 3126 = Michigan
Time Slot #2 - Group Call 3169 = Midwest Reg
Time Slot #2 - Group Call 3163 = North America
Time Slot #1 - Group Call 3139 = Ohio
Time Slot #2 - Group Call 3023 = Ontario
Time Slot #1 - Group Call 9998 = Parrot
Time Slot #1 - Group Call 3142 = Pennsylvania
Time Slot #1 - Group Call 3106 = California
Time Slot #2 - Group Call 302 = Canada
Time Slot #2 - Group Call 8951 = TACÂ 1
Time Slot #1 - Group Call 3153 = Washington
Time Slot #2 - Group Call 3161 = Worldwide
Time Slot #2 - Group Call 13 = Worldwide EngFor Coverage Map:
http://www.ve2dbe.com/rmonline/user/w8cmc/covs/RMD23892B87194_2.zip (http://www.ve2dbe.com/rmonline/user/w8cmc/covs/RMD23)
Contact: Colin, W8CMC
Email: w8cmc@arrl.net
Website:,1,DCI
312633,KB8POO,Brooklyn,Michigan,United States,145.12000,1,-0.600,Peer,TS1 TS2,N8URW,Time Slot #1- TG 3126 =Michigan Statewide
Time Slot #1- TG 3160 = DCI 1
Time Slot #1- TG 3777215 = Comm 1(TRBO-6)
Time Slot #1- TG3139= Ohio Statewide
Time Slot #2- TG 3163= DMR-MARC NA
Time Slot #2- TG 3161= DMR-MARC WW
Time Slot #2- TG 3777216= Comm 2 (TRBO-6)
Time Slot #2- TG 3162= DCI 2
Time Slot #2- TG 310= TAC-310
Time Slot #2- TG 3100 = The Bridge
You Must Have [ARS] Disabled Within Your Radio
Contact: Jason Bailey, N8URW
Email: j2840fl@yahoo.com (http://mc/compose?to=j2840fl@yahoo.com)
Website: http://www.trbo.info (http://www.trbo.info/),1,DCI
312634,KD6KCX,Lansing,Michigan,United States,446.50000,1,-5.000,Peer,TS1 TS2,KC6KCX,,0,CMEN/Mi5
312635,WB8SFY,White Lake Twnshp,Michigan,United States,444.93750,1,+5.000,Peer,TS1 TS2,WB8SFY,,0,DMR-MARC-W8YY
@@ -1837,7 +2043,7 @@
313217,WB6TNP,Boulder City,Nevada,United States,449.05000,15,-5.000,Peer,TS1 TS2,WB6TNP,,0,SFTRBO
313218,K7IZA,Henderson,Nevada,United States,448.90000,1,5.000,Peer,TS1 TS2,K7IZA,,0,None
313219,KB6XN,LAS VEGAS,Nevada,United States,445.70000,2,+5.000,Peer,TS1 TS2,KB6XN,KB6XN 147.435 -1 MHz, Color Code 2,1,SF TRBO
-313220,KD7FPK,Gardnerville,Nevada,United States,443.97500,15,+5.000,Master,TS1 TS2,KD7FPK,,0,HYTERA
+313220,KD7FPK,Gardnerville,Nevada,United States,442.15000,4,+5.000,Master,TS1 TS2,KD7FPK,,0,HYTERA
313221,W7TA,Incline Village,Nevada,United States,443.95000,1,+5.000,Master,TS1 TS2,KE7VSR,Time Slot #2 - Group Call 1 = Worldwide
Time Slot #2 - Group Call 13 = Worldwide English
Time Slot #2 - Group Call 3 = North America
Time Slot #2 - Group Call 3100 = DCI Bridge
Time Slot #2 - Group Call 3176= Southwest Region
Time Slot #2- Group Call 3777215= TRBO-6
Time Slot #1- Group Call 2 = Local
Time Slot #1- Group Call 5150 = Northern CA
Contact Name: KE7VSR
Email: w7ta@snars.org,1,SNARS
313222,KD7FPK,Gardnerville,Nevada,United States,443.97500,4,+5.000,Master,Mixed Mode,KD7FPK,,0,BrandMeister
313223,KB6XN,LAS VEGAS,Nevada,United States,147.43500,2,-1.000,Master,TS1 TS2,KB6XN,,0,SFO TURBO
@@ -1922,12 +2128,12 @@
313610,W2HVL,Carmel,New York,United States,446.18750,1,-5.000,Peer,TS1 TS2,KC2CWT,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 = N. America
Time Slot #1 - Group Call 3172 = Northeast
Time Slot #2 - Group Call 2 = NY-NJ Metro
You Must Have [ARS] Disabled Within Your Radio
Coverage Area (http://www.dmr-marc.net/images/n2jti-coverage.jpg)
Contact Name: Bob, KC2CWT
Email: kc2cwt@kc2cwt.net,1,NJ-TRBO-
313611,NY4Z,Yorktown Heights,New York,United States,448.92500,1,-5.000,Peer,TS1 TS2,NY4Z,TS 1 -
Group call TG 444= NY Metro Bronx TRBO System wide talk group-FT
Group Call TG 1 = World Wide Time Slot -PTT
Group Call TG 3 = U.S. / English Speaking Countries -PTT
Group Call TG 13 = World Wide English -PTT
Group Call TG 3172 = NE / Regional -PTT
Group Call TG 14 = Latin America Region -PTT
Group Call TG 310 = Tac 310 Talk Group-PTT
Group Call TG 311 =Tac 311 Talk Group-PTT
Group Call TG 9998 = Parrot , Audio Test Server -PTT
Group Call TG 9999 = Audio Test NorCal PTT
TS2-Private
You Must Have [ARS] Disabled Within Your Radio
Contact Name: Bernie, NY4Z
Email: ny4z@yahoo.com,1,Bronx-TRBO-Yorktown
313612,WA2VNV,Selden,New York,United States,448.82500,1,-5.000,Peer,TS1 TS2,WA2VNV,Time Slot #1 - Group Call 1 = World Wide (Sat. Net)
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 3172 = Northeast
Time Slot #2 - Group Call 3181 = New England
Time Slot #2 - Group Call 3109 = So. New England
Time Slot #2 - Group Call 9 = Local Site
Time Slot #1 - Group Call 310 = TAC310
You Must Have [ARS] Disabled Within Your Radio
Contact: George, WA2VNV
Email: wa2vnv@optonline.net
Website: http://nedecn.org,1,NE-TRBO
-313613,K2MAK,New York,New York,United States,448.27500,3,-5.000,Peer,TS1,K2MAK,,0,NJ-TRBO
+313613,K2MAK,New York,New York,United States,448.27500,3,-5.000,Peer,TS1 TS2,K2MAK,Time Slot #1 - Group Call 1 = World Wide
Time Slot #2 - Group Call 2 = NY-NJ Metro
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 13 = WW English
Time Slot #1 - Group Call 310 = Tac 310
Time Slot #1 - Group Call 311 = Tac 311
Time Slot #1 - Group Call 3172 = Northeast
Time Slot #1 - Group Call 9 = Local Repeater
TG 2 - NY-NJ Metro and TG 3 - North America are always ON.
Contact: Kenneth Mak
Email: k2mak@yahoo.com,1,NJ-TRBO
313614,N2LBT,Portable,New York,United States,449.52500,1,-5.000,Peer,TS1 TS2,N2LBT,,0,NJ-TRBO
313615,NV2M,Peru,New York,United States,442.28750,1,+5.000,Peer,TS1 TS2,NV2M,Time Slot #1 - Group Call 1 = World Wide*
Time Slot #1 - Group Call 13 = WW English*
Time Slot #1 - Group Call 11 = WW French*
Time Slot #1 - Group Call 3 = North America
Time Slot #1 - Group Call 302 = Canada*
Time Slot #1 - Group Call 310 = TAC310*
Time Slot #1 - Group Call 9999 = Audio Test*
Time Slot #2 - Group Call 3023 = Ontario*
Time Slot #2 - Group Call 3022 = Quebec*
Time Slot #2 - Group Call 3029 = New Brunswick*
Time Slot #2 - Group Call 3150 = Vermont
Time Slot #2 - Group Call 8 = Northern New Eng*
Time Slot #2 - Group Call 3181 = New England*
Time Slot #2 - Group Call 2 = Local
* Indicates PTT Activation required
You Must Have [ARS] Disabled in Your Radio
Contact: Neil Van Splinter, NV2M
E-mail: nv2m@arrl.net,1,DMR-MARC Canada
-313616,NY4Z,White Plains,New York,United States,442.10000,1,+5.000,Peer,TS1 TS2,NY4Z,TS 1 -
Group call TG 444= NY Metro Bronx TRBO System wide talk group-FT
Group Call TG 1 = World Wide Time Slot -PTT
Group Call TG 3 = U.S. / English Speaking Countries -PTT
Group Call TG 13 = World Wide English -PTT
Group Call TG 3172 = NE / Regional -PTT
Group Call TG 14 = Latin America Region -PTT
Group Call TG 310 = Tac 310 Talk Group-PTT
Group Call TG 311 =Tac 311 Talk Group-PTT
Group Call TG 9998 = Parrot , Audio Test Server -PTT
Group Call TG 9999 = Audio Test NorCal PTT
TS2-Private
You Must Have [ARS] Disabled Within Your Radio
Contact Name: Bernie, NY4Z
Email: ny4z@yahoo.com,1,Bronx-TRBO
+313616,NY4Z,White Plains,New York,United States,442.10625,3,+5.000,Peer,TS1 TS2,NY4Z,TS 1 -
Group call TG 444= NY Metro Bronx TRBO System wide talk group-FT
Group Call TG 1 = World Wide Time Slot -PTT
Group Call TG 3 = U.S. / English Speaking Countries -PTT
Group Call TG 13 = World Wide English -PTT
Group Call TG 3172 = NE / Regional -PTT
Group Call TG 14 = Latin America Region -PTT
Group Call TG 310 = Tac 310 Talk Group-PTT
Group Call TG 311 =Tac 311 Talk Group-PTT
Group Call TG 9998 = Parrot , Audio Test Server -PTT
Group Call TG 9999 = Audio Test NorCal PTT
TS2-Private
You Must Have [ARS] Disabled Within Your Radio
Contact Name: Bernie, NY4Z
Email: ny4z@yahoo.com,1,Bronx-TRBO
313617,NY4Z,Mahopac,New York,United States,145.39000,1,-0.600,Peer,TS1 TS2,NY4Z,NY4Z 443.150 +5 MHz Color Code 1
(Bridge Partner of DMR-MARC)
TS 1 -
Group call TG 444= NY Metro Bronx TRBO System wide talk group-FT
Group Call TG 1 = World Wide Time Slot -PTT
Group Call TG 3 = U.S. / English Speaking Countries -PTT
Group Call TG 13 = World Wide English -PTT
Group Call TG 3172 = NE / Regional -PTT
Group Call TG 14 = Latin America Region -PTT
Group Call TG 310 = Tac 310 Talk Group-PTT
Group Call TG 311 =Tac 311 Talk Group-PTT
Group Call TG 9998 = Parrot , Audio Test Server -PTT
Group Call TG 9999 = Audio Test NorCal PTT
TS2-Private
You Must Have [ARS] Disabled Within Your Radio
Contact Name: Bernie, NY4Z
Email: ny4z@yahoo.com,1,Bronx
-313618,NY4Z,Brooklyn,New York,United States,442.04375,1,+5.000,Peer,TS1 TS2,NY4Z,,0,Bronx-TRBO
+313618,NY4Z,Brooklyn,New York,United States,442.09375,2,+5.000,Peer,TS1 TS2,NY4Z,,0,Bronx-TRBO
313619,K2HR,New Rochelle,New York,United States,446.28125,1,-5.000,Peer,TS1 TS2,NY4Z,KC2TOM 147.040 +.6MHz, Color Code 1
(Bridge Partner of DMR-MARC)
TS 1 -
Group call TG 444= NY Metro Bronx TRBO System wide talk group-FT
Group Call TG 1 = World Wide Time Slot -PTT
Group Call TG 3 = U.S. / English Speaking Countries -PTT
Group Call TG 13 = World Wide English -PTT
Group Call TG 3172 = NE / Regional -PTT
Group Call TG 14 = Latin America Region -PTT
Group Call TG 310 = Tac 310 Talk Group-PTT
Group Call TG 311 =Tac 311 Talk Group-PTT
Group Call TG 9998 = Parrot , Audio Test Server -PTT
Group Call TG 9999 = Audio Test NorCal PTT
TS2-Private
You Must Have [ARS] Disabled Within Your Radio
Contact Name: Den Palumbo, KC2IVF
Email: denpalumbo@optonline.net ,1,Bronx-TRBO
313620,N2LBT,Albany,New York,United States,444.00000,1,+5.000,Peer,TS1 TS2,N2LBT,,0,NJ-TRBO
313621,K1IMD,Mattituck,New York,United States,449.62500,1,-5.000,Master,TS1 TS2,K1IMD,,0,NE-TRBO Mattituck, NY
@@ -2092,7 +2298,7 @@
314018,KB5KWV,Oklahoma City,Oklahoma,United States,443.17500,1,+5.000,Peer,TS1 TS2,KB5KWV,Time Slot #1 - Group Call 1 = WW All, PTT 10 min.
Time Slot #1 - Group Call 13= WW English, PTT 10 min.
Time Slot #1 - Group Call 3 = DMR-MARC North America
Time Slot #1 - Group Call 310 = TAC-310, PTT 10 min.
Time Slot #1 - Group Call 311 = TAC-311, PTT 10 min.
Time Slot #2 - Group Call 3175= TX-OK Regional
Time Slot #2 - Group Call 3140 = OK Statewide
Time Slot #2 - Group Call 8800= OK Central
Time Slot #2 - Group Call 2 = Local
Time Slot #2 - Group Call 9998 = Audio Test (Parrot),1,DMR-MARC
314019,W5RLW,Edmond,Oklahoma,United States,443.05000,1,+5.000,Peer,TS1 TS2,W5RLW,,1,OK Net
314020,W5RLW,EDMOND,Oklahoma,United States,442.32500,1,+5.000,Peer,TS1 TS2,W5RLW,,0,brandmeister
-314021,W5RAB,Leonard,Oklahoma,United States,443.65000,2,+5.000,Peer,TS1 TS2,W5RAB,,0,Brandmeister
+314021,W5RAB,Leonard,Oklahoma,United States,443.65000,1,+5.000,Peer,TS1 TS2,W5RAB,,0,Brandmeister
314101,N7MAQ,Woodburn,Oregon,United States,441.32500,1,+5.000,Peer,TS1 TS2,N7MAQ,,1,DCI
314102,N7MAQ,portland,Oregon,United States,440.62500,1,+5.000,Peer,TS1 TS2,KB7APU,,1,dci
314103,N7LF,Corbett,Oregon,United States,443.10000,1,+5.000,Master,TS1 TS2,N7LF,,0,BrandMeister
@@ -2156,7 +2362,7 @@
314522,KM4PRN,Bluffton,South Carolina,United States,444.73750,1,5.000,Peer,TS1 TS2,N4HEK,,0,NCPRN
314523,KD4TXX,Charleston,South Carolina,United States,443.45000,1,+5.000,Peer,TS1 TS2,KD4TXX,,0,BrandMeister
314524,NE4SC,Conway,South Carolina,United States,443.66250,1,+5.000,Peer,TS1,AD4TZ,
TS1 TG1-WW (PTT)
TS1 TG3-NA
TS1 TG13-WWE
TS1 TG10-WWG (PTT)
TS2 TG2-Local (USD Net)
TG2 TG9-Local Rpt
TS2 TG3113-GA State
TS2 TG3125-MA State (PTT)
TS2 TG3139-OH State (PTT)
TS2 TG3174-SE Regional
TS2 TG3100-Bridge (PTT)
TS2 TG8951-TAC 1 (PTT)
TS2 TG310-TAC 310 (PTT)
TS2 TG311-TAC 311 (PTT)
TS2 TG9998-Parrot (PTT)
TS2 TG9999-NoCal Audio Test (PTT),1,K4USD
-314525,N3TX,Myrtle Beach ,South Carolina,United States,438.36250,1,-7.6,Master,Mixed Mode,N3TX,,0,DMR plus
+314525,N3TX,Myrtle Beach ,South Carolina,United States,431.40000,1,6.6,Master,Mixed Mode,N3TX,,0,DMR plus
314526,WJ4X,Shoals Junction,South Carolina,United States,442.60000,1,+5.000,Peer,Mixed Mode,WJ4X,,0,BM
314528,NE4SC,North Myrtle Beach,South Carolina,United States,444.08750,1,+5.000,Peer,TS1 TS2,K4SHP,TS1 TG1-WW (PTT)
TS1 TG3-NA
TS1 TG13-WWE
TS1 TG10-WWG (PTT)
TS2 TG2-Local (USD Net)
TG2 TG9-Local Rpt
TS2 TG3113-GA State
TS2 TG3125-MA State (PTT)
TS2 TG3139-OH State (PTT)
TS2 TG3174-SE Regional
TS2 TG3100-Bridge (PTT)
TS2 TG8951-TAC 1 (PTT)
TS2 TG310-TAC 310 (PTT)
TS2 TG311-TAC 311 (PTT)
TS2 TG9998-Parrot (PTT)
TS2 TG9999-NoCal Audio Test (PTT),1,K4USD
314529,WR4SC,Beaufort,South Carolina,United States,441.98750,1,+5.000,Peer,TS1 TS2,AE4UX,,0,NC-PRN
@@ -2278,11 +2484,12 @@
315112,KE4NYV,Greenbackville,Virginia,United States,444.27500,1,+5.000,Master,TS1 TS2,KE4NYV,,0,NC-PRN
315113,WR3D,Leesburg,Virginia,United States,443.90000,1,+5.000,Master,TS1 TS2,WR3D,,0,OpenDMR
315114,W5CUI,Roanoke,Virginia,United States,444.77500,1,+5.000,Master,TS1 TS2,WB4EOT,Time Slot #2 Group Call 3151 = RVA Statewide
Time Slot #1 Group Call 27500 = Local
Time Slot #1 Group Call 310 = TAC 310
Time Slot #1 Group Call 8951 = TAC 1
Time Slot #1 Group Call 3100 = Bridge
Time Slot #1 Group Call 3174 = DMR-MARC Southeast
Time Slot #1 Group Call 3173 = DMR-MARC Mid-Atlantic
Time Slot #1 Group Call 27501 = VA TAC A
Time Slot #1 Group Call 27502 = VA TAC B
Time Slot #2 Group Call 2= PRN
Goat Mountain Radio Association
Contact: John M. Mathis
http://www.dmrva.org/
You Must Have [ARS] Disabled Within Your Radio
,1,DMRVA
-315115,WA4FC,Farmville,Virginia,United States,444.53750,1,+5.000,Peer,TS1 TS2,KD4BPZ,Time Slot #2 Group Call 3151 = RVA Statewide
Time Slot #1 Group Call 27500 = Local
Time Slot #1 Group Call 310 = TAC 310
Time Slot #1 Group Call 8951 = TAC 1
Time Slot #1 Group Call 3100 = Bridge
Time Slot #1 Group Call 3174 = DMR-MARC Southeast
Time Slot #1 Group Call 3173 = DMR-MARC Mid-Atlantic
Time Slot #1 Group Call 27501 = VA TAC A
Time Slot #1 Group Call 27502 = VA TAC B
Time Slot #2 Group Call 2 = PRN
FieldComm Association
Contact: Jay Lovelady
http://www.dmrva.org/
You Must Have [ARS] Disabled Within Your Radio
,1,DMRVA
+315115,WA4FC,Farmville,Virginia,United States,444.53750,1,+5.000,Peer,TS1 TS2,KD4BPZ,Time Slot #2 Group Call 3151 = VA Statewide
Time Slot #1 Group Call 27500 = Local
Time Slot #1 Group Call 310 = TAC 310
Time Slot #1 Group Call 8951 = TAC 1
Time Slot #1 Group Call 3100 = Bridge
Time Slot #1 Group Call 3174 = DMR-MARC Southeast
Time Slot #1 Group Call 3173 = DMR-MARC Mid-Atlantic
Time Slot #1 Group Call 27501 = VA TAC A
Time Slot #1 Group Call 27502 = VA TAC B
Time Slot #2 Group Call 2 = PRN
FieldComm Association
Contact: Jay Lovelady
http://www.dmrva.org/
You Must Have [ARS] Disabled Within Your Radio
,1,DMRVA
315116,K4ITL,Roanoke,Virginia,United States,441.88750,1,+5.000,Peer,TS1 TS2,K4ITL,,0,NC PRN
315117,K4LCT,Norfolk,Virginia,United States,445.51250,7,+5.000,None,TS1 TS2,K4LCT,,0,BRANDMEISTER
315118,K4JK,Harrisonburg,Virginia,United States,444.66250,1,+5.000,Master,TS1 TS2,K4JK,Time Slot #2 Group Call 3151 = RVA Statewide
Time Slot #1 Group Call 27500 = Local
Time Slot #1 Group Call 310 = TAC 310
Time Slot #1 Group Call 8951 = TAC 1
Time Slot #1 Group Call 3100 = Bridge
Time Slot #1 Group Call 3174 = DMR-MARC Southeast
Time Slot #1 Group Call 3173 = DMR-MARC Mid-Atlantic
Time Slot #1 Group Call 27501 = VA TAC A
Time Slot #1 Group Call 27502 = VA TAC B
Time Slot #2 Group Call 2= PRN
Contact: James Kirkham
http://www.dmrva.org/
You Must Have [ARS] Disabled Within Your Radio,1,DMRVA
-315119,WA4FC,Charlottesville,Virginia,United States,444.91250,1,+5.000,Master,TS1 TS2,KD4BPZ,Time Slot #2 Group Call 3151 = RVA Statewide
Time Slot #1 Group Call 27500 = Local
Time Slot #1 Group Call 310 = TAC 310
Time Slot #1 Group Call 8951 = TAC 1
Time Slot #1 Group Call 3100 = Bridge
Time Slot #1 Group Call 3174 = DMR-MARC Southeast
Time Slot #1 Group Call 3173 = DMR-MARC Mid-Atlantic
Time Slot #1 Group Call 27501 = VA TAC A
Time Slot #1 Group Call 27502 = VA TAC B
Time Slot #2 Group Call 2= PRN
FieldComm Association
Contact: Jay Lovelady
http://www.dmrva.org/
You Must Have [ARS] Disabled Within Your Radio
,1,DMRVA
+315119,WA4FC,Charlottesville,Virginia,United States,444.91250,1,+5.000,Master,TS1 TS2,KD4BPZ,Time Slot #2 – Group Call 3151 = VA Statewide
Time Slot #1 – Group Call 27500 = Local
Time Slot #1 – Group Call 310 = DMRX TAC 310
Time Slot #1 – Group Call 8951 = DMRX TAC 1
Time Slot #1 – Group Call 3100 = DCI Bridge/Brandmeister
Time Slot #1 – Group Call 3174 = DMR-MARC Southeast
Time Slot #1 – Group Call 3173 = DMR-MARC Mid-Atlantic
Time Slot #1 – Group Call 27501 = VA TAC A
Time Slot #1 – Group Call 27502 = VA TAC B
Time Slot #2 – Group Call 2= PRN
FieldComm Association
Contact: Jay Lovelady
http://www.dmrva.org/
You Must Have [ARS] Disables Within Your Radio,1,DMRVA
+315120,N3QEM,Herndon,Virginia,United States,442.90000,1,+5.000,Master,TS1,N3QEM,,0,none-yet
315300,N07RF,Winthrop ,Washington,United States,145.21000,3,+2.780,Peer,TS1 TS2,NO7RF,,0,DCI
315301,NO7RF,Winthrop,Washington,United States,444.85000,3,+5.000,Peer,TS1 TS2,NO7RF,Time Slot #2 - Group Call 3161 = DMR-MARC World Wide
Time Slot #2 - DMR-MARC Group Call 3163 = DMR-MARC N. America
Time Slot #1- Group Call 3160 = DCI 1
Time Slot #1- Group Call 3777215 = Comm 1
Time Slot #1- Group Call 3153 = Washington Statewide 1
Time Slot #2- Group Call 3100 = Bridge 2
Time Slot #2- Group Call 3100 = Mountain Regional 3177
Contact Name: Mike, NO7RF
Email: no7rf@otwc.net
Website: http://dci.trbo.info,1,DCI-
315302,NO7RF,Mazama,Washington,United States,433.15000,0,+16.000,Peer,TS1 TS2,NO7RF,,0,DCI
@@ -2369,13 +2576,14 @@
334303,XE3RCM,Merida,Yucatan,Mexico,439.92500,1,-5.000,Peer,TS1 TS2,XE3YZ,Time Slot #1 - Group Call 1 = Worldwide Calling (PTT activation, 2min limit)
Time Slot #1 - Group Call 14 = Spanish Worldwide
Time Slot #2 - Group Call 222 = Local Cancun
Time Slot #2 - Group Call 334 Mexico
You Must Have [ARS] Disabled Within Your Radio
Contact Name: Jorge Carlos, XE3YZEmail: xe3yz@icloud.com,1,DMR-MARC
334304,XE3RA,CANCUN,Quintana Roo,Mexico,439.92500,1,-5.000,Peer,TS1 TS2,XE3RA,,0,BRANDMEISTER
334401,XE1GXW,Guadalajara,all others,Mexico,146.76000,1,-0.600,Peer,TS1 TS2,XE1GXW,Time Slot #1 - Group Call 1 = Worldwide Calling (PTT activation, 2min limit)
Time Slot #1 - Group Call 14 = Spanish Worldwide
Time Slot #2 - Group Call 2 = Local Site
Time Slot #2 - Group Call 334 = Mexico
You Must Have [ARS] Disabled Within Your Radio
Contact Name: Jorge, XE1GXW
Email: xe1gxw@gmail.com,1,DMR-MARC
-370100,HI8RCD,Santo Domingo,Distrito Nacional,Dominican Republic,447.00000,1,-5.000,Peer,TS1,HI8RCD,Time Slot #1 - Group Call 1 = Worldwide Calling (PTT activation, 2min limit)
Time Slot #1 - Group Call 13 = English Worldwide (PTT activation)
Time Slot #1 - Group Call 14 = Spanish Worldwide
Time Slot #2 - Group Call 370- Dominican Republic,1,DMR-MARC
+370100,HI8RCD,Santo Domingo,Distrito Nacional,Dominican Republic,447.00000,1,-5.000,Peer,TS1 TS2,HI8RCD,Time Slot #1 - Group Call 1 = Worldwide Calling (PTT activation, 2min limit)
Time Slot #1 - Group Call 13 = English Worldwide (PTT activation)
Time Slot #1 - Group Call 14 = Spanish Worldwide
Time Slot #2 - Group Call 370- Dominican Republic,1,DMR-MARC
370801,HI8RCD,Bani,Peravia,Dominican Republic,447.02500,2,-5.000,Peer,TS1 TS2,HI8RCD,Time Slot #1 - Group Call 1 = Worldwide Calling (PTT activation, 2min limit)
Time Slot #1 - Group Call 13 = English Worldwide (PTT activation)
Time Slot #1 - Group Call 14 = Spanish Worldwide
Time Slot #2 - Group Call 370- Dominican Republic,1,DMR-MARC
425201,4X4R70,Tel Aviv,Tel Aviv,Israel,438.65000,1,-7.600,Master,Mixed Mode,4X1HF,4X4R70 438.650 -7.6 MHz, Color Code 1,1,SF-TRBO
454001,VR2TIG,Hong Kong,Hong Kong,China,435.45000,1,-5.000,Master,TS1,VR2XJN,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 =WW English
Time Slot #2 - Group Call 454 = Cantonese Local
You Must Have [ARS] Disabled Within Your Radio.
Contact: Charles Tsang, VR2XJN
Email: VR2XJN@GMAIL.COM,1,VK-TRBO
454002,VR2SSP,Hong Kong,Hong Kong,China,435.57500,9,-5.000,Master,TS2,VR2SSP,,0,mixed
460001,BD7II,Shenzhen,All Others,China,438.46000,12,-8.000,Master,TS1,BD7IXF,,0,Shenzhen local
460002,BG8CVQ,wen zhou,,China,439.98000,1,-5.000,Master,TS2,BG8CVQ,,0,TELNET
+460003,VR2HKR,Kowloon,Hong Kong,China,435.70000,5,-5.000,None,TS2,VR2UCL,,1,CQARA
502200,9M4RMM,Penang,East Malaysia,Malaysia,146.70000,1,-0.600,Peer,TS1 TS2,9M2AOC,Time Slot#1 - Group Call 1 = Worldwide Calling (2 min max)
Time Slot #1- Group Call 13 = Worldwide English
Time Slot #2- Group Call 5 = VK/ZL Regional
You Must Have [ARS] Disabled Within Your Radio.
Contact: 9M2AOC
Email:,1,DMR-MARC
502201,9M4RPH,Georgetown,West Malaysia,Malaysia,145.82500,12,-0.600,Master,TS2,9W2POP,,0,DMRNET
502601,9M4RPB,Kota Kinabalu,East Malaysia,Malaysia,146.40000,1,+0.600,Master,TS1 TS2,9M6LK,,0,DMR
@@ -2437,22 +2645,23 @@
535101,KH6FV,Barrigada Guam,All,Guam,444.50000,1,+5.000,Peer,TS1 TS2,KH6FV,,1,Hawaii Trbo
537100,P29ZTC,Port Moresby,NCD,Papua New Guinea,147.00000,0,-0.600,Peer,TS1,P29ZTC,,0,None
537101,P29LZ,Lae,Morobe,Papua New Guinea,144.92000,0,+0.600,Master,TS1,P29LZ,,0,None
-647001,FR1ZAZ,LE PORT,,Reunion,430.57500,1,9.4,PEER,TS1 TS2,FR4NP,,0,DMR-plus
+647001,FR1ZAZ,LE PORT,,Reunion,430.57500,1,9.400,PEER,TS1 TS2,FR4NP,,0,BM
647002,FR1ZBB,Saint Andr,Saint Benoit,Reunion,430.57500,1,9.400,PEER,TS1 TS2,FR4QK,,0,DMR-plus
647003,FR1ZBB,Saint Andr,,Reunion,430.23750,1,9.000,PEER,TS1 TS2,FR4QK,,0,None
-647004,FR1ZBA,Saint Paul,Saint-Paul,Reunion,430.03750,1,9.4,PEER,TS1 TS2,FR4NP,,0,DMR-plus
-647005,FR1ZBC,Sainte Suzanne,,Reunion,430.03750,1,9.4,PEER,TS1 TS2,FR4NP,,0,DMR-plus
-647006,FR1ZBD,Le Tampon,,Reunion,430.50000,1,9.4,PEER,TS1 TS2,FR4NP,,0,DMR-plus
+647004,FR1ZBA,Saint Paul,Saint-Paul,Reunion,430.03750,1,9.400,PEER,TS1 TS2,FR4NP,,0,DMR-plus
+647005,FR1ZBC,Sainte Suzanne,,Reunion,430.03750,1,9.400,PEER,TS1 TS2,FR4NP,,0,BM
+647006,FR1ZBD,Le Tampon,,Reunion,430.50000,1,9.400,PEER,TS1 TS2,FR4NP,,0,BM
647007,FR4QK,Saint Paul,Saint-Paul,Reunion,430.23000,1,9.400,PEER,TS1 TS2,FR4QK,,0,Hytera
-647008,FR4NP,Le Port,,Reunion,430.26250,1,9.4,PEER,TS1 TS2,FR4NP,,0,DMR-plus
-647009,FR1ZBE,Saint Joseph,,Reunion,430.26250,1,9.4,PEER,TS1 TS2,FR4NP,,0,DMR-plus
+647008,FR4NP,Le Port,,Reunion,430.26250,1,9.400,PEER,TS1 TS2,FR4NP,,0,BM
+647009,FR1ZBE,Saint Joseph,,Reunion,430.26250,1,9.400,PEER,TS1 TS2,FR4NP,,0,BM
+647010,FR5GS,SAINT-BENOIT,Saint Benoit,Reunion,430.17500,1,9.400,PEER,TS1 TS2,FR5GS,,0,BM
655500,ZS5HAM,Durban,Kwazulu-Natal,South Africa,438.20000,1,-7.600,Peer,TS1,ZS5BG,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #2 - Group Call 2 = Local Only
You Must Have [ARS] Disabled Within Your Radio.,1,DMR-MARC
655501,ZS5CEY,Amanzimtoti,Kwazulu-Natal,South Africa,438.30000,1,-7.600,Peer,TS1 TS2,ZS5CEY,,0,None
-655502,ZS0PMB,Pietermaritzburg,Kwazulu-Natal,South Africa,438.22500,1,-7.600,Peer,TS1 TS2,ZR5S,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #2 - Group Call 2 = Local Only
You Must Have [ARS] Disabled Within Your Radio.,1,DMR-MARC
-655600,ZS6TJ,Johannesburg,Gauteng,South Africa,438.65000,1,-7.600,Peer,TS1,ZS6RVC,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #2 - Group Call 2 = Local Only
You Must Have [ARS] Disabled Within Your Radio.,1,DMR-MARC
-655601,ZS6VTB,Brakfontein,Gauteng/Mpumalanga,South Africa,438.22500,1,7.600,Peer,TS1 TS2,ZS6EY,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #2 - Group Call 2 = Local Only
You Must Have [ARS] Disabled Within Your Radio.,1,DMR-MARC
-655602,ZS0JPL,Pretoria,Gauteng/Mpumalanga,South Africa,438.25000,1,-7.600,PEER,TS1 TS2,ZS6JPL,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #2 - Group Call 2 = Local Only
You Must Have [ARS] Disabled Within Your Radio.,1,DMR-MARC
-655603,ZS6TJ,Johannesburg,Gauteng/Mpumalanga,South Africa,438.30000,1,-7.600,Peer,TS1 TS2,ZS6RVC,,0,Hytera
+655502,ZS0PMB,Pietermaritzburg,Kwazulu-Natal,South Africa,438.22500,1,-7.600,Peer,TS1 TS2,ZR5S,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #2 - Group Call 2 = Local Only
You Must Have [ARS] Disabled Within Your Radio.,1,Motorola
+655600,ZS6TJ,Johannesburg,Gauteng,South Africa,438.65000,1,-7.600,Peer,TS1,ZS6RVC,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #2 - Group Call 2 = Local Only
You Must Have [ARS] Disabled Within Your Radio.,1,DMR-EUROPE
+655601,ZS6VTB,Brakfontein,Gauteng/Mpumalanga,South Africa,438.22500,1,-7.600,Peer,TS1 TS2,ZS6EY,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #2 - Group Call 2 = Local Only
You Must Have [ARS] Disabled Within Your Radio.,1,BM
+655602,ZS0JPL,Pretoria,Gauteng/Mpumalanga,South Africa,438.25000,1,-7.600,PEER,TS1 TS2,ZS6JPL,Time Slot #1 - Group Call 1 = World Wide
Time Slot #1 - Group Call 13 = WW English
Time Slot #2 - Group Call 2 = Local Only
You Must Have [ARS] Disabled Within Your Radio.,1,Motorola
+655603,ZS6TJ,Johannesburg,Gauteng/Mpumalanga,South Africa,438.30000,1,-7.600,Peer,TS1 TS2,ZS6RVC,,0,BM
655604,ZS6VTS,Pretoria,Gauteng/Mpumalanga,South Africa,438.27500,1,-7.600,PEER,TS1 TS2,ZS6JPL,,0,Motorola
714101,HP1CQ,Panama,,Panama,433.30000,7,5.000,PEER,TS1 TS2,HP1CQ,,0,DMR-plus
714102,HP2NG,Colon,Panama,Panama,433.45000,7,5.000,PEER,TS1 TS2,HP2NG,,0,DMR-plus
@@ -2469,6 +2678,7 @@
724202,PY2KSP,Louveira,Sao Paulo,Brazil,147.30000,15,0.6,None,TS1 TS2,PU2PKE,,0,DMR
724203,PY2KMA,São Paulo,Sao Paulo,Brazil,145.33000,15,-0.600,Master,TS2,PY2XH,,0,amrase
724204,PY2KMS,São Paulo,Sao Paulo,Brazil,147.36000,1,0.6,Peer,TS1 TS2,PY4CEP,,1,DMR+ Brazil
+724205,PY2KSM,Sao Paulo,Sao Paulo,Brazil,147.36000,1,+0.600,Peer,TS1 TS2,PY4CEP,,0,DMR+ Brazil
724400,PY4REP,Divinopolis,,Brasil,438.30000,1,-7.6,PEER,TS1 TS2,PY4CEP,,0,
724401,PY4RSE,Mateus Leme,Minas Gerais,Brazil,146.75000,1,-0.6,Peer,TS1 TS2,PY4CEP,Time Slot #1 - Group Call 1 = World Wide English
Time Slot #1 - Group Call 75 = Portuguese Worldwide
Time Slot #2 - Group Call 724= Brazil
You Must Have [ARS] Disabled Within Your Radio
Contact Name: Carlos Pereira PY4CEP
Email: py4cep@oi.com.br,1,DMR-MARC-PY4REP
724402,PY4RLD,Oca de Pitangui,Minas Gerais,Brazil,146.75000,1,-0.600,Peer,TS1 TS2,PY4CEP,Time Slot #1 - Group Call 1 = World Wide English
Time Slot #1 - Group Call 75 = Portuguese Worldwide
Time Slot #2 - Group Call 724= Brazil
You Must Have [ARS] Disabled Within Your Radio
Contact Name: Carlos Pereira PY4CEP
Email: py4cep@oi.com.br,1,DMR-MARC-PY4REP
@@ -2491,6 +2701,7 @@
730204,CE2LS,LA SERENA,Coquimbo,Valparaiso,Chile,146.88000,1,-0.600,Peer,TS1 TS2,RADIO ,,0,DMR-MARC-CE2LS
730205,CE2VRP,La serena,Coquimbo,Chile,144.75000,1,-0.600,Peer,TS1 TS2,CE2VRP,,0,Brandmeister
730206,CE2SCP,Ovalle,Coquimbo,Chile,147.15000,1,+0.600,Peer,TS1 TS2,CE2SC,,0,brandmeister
+730207,CE2KVL,ValparaÃso,Valparaiso,Chile,145.50000,1,-0.600,Peer,TS1 TS2,CE2KVL,,0,brandmeister
730301,CE3PA,pte alto,Reg.Metr. de Santiago,Chile,147.39000,1,+0.600,Peer,TS1 TS2,CE3PA,,0,mixer
730302,CE3PA,pte alto,Reg.Metr. de Santiago,Chile,146.76000,1,-0.600,Peer,TS1 TS2,CE3CTF,,0,mixed
730303,CE3PA,Pte Alto,Reg.Metr. de Santiago,Chile,433.45000,1,+5.000,Peer,TS1 TS2,CE3CTF,,0,brandmeister
diff --git a/subscriber_ids.csv b/subscriber_ids.csv
index 1b59f0b..08e95a6 100644
--- a/subscriber_ids.csv
+++ b/subscriber_ids.csv
@@ -322,6 +322,19 @@
1112325,NK4DX,Ezequiel Prado,Ez,Hollywood,Florida,United States,DMR
1112326,AB4JO,Joseph Carvalho,Joe,Hollywood,Florida,United States,DMR
1112327,WA2NLC,Rick Santomauro Santomauro,Rick,Port Charlotte,Florida,United States,DMR
+1112328,KM4DAJ,Dominique Wiener,,Cape Coral,Florida,United States,DMR
+1112329,KM4WUD,Motodmr Network ,,Tampa,Florida,United States,Club Fleet
+1112330,K7RMD,Rex M Dobson,,Coral Springs,Florida,United States,CCS7
+1112331,KJ4IYZ,Kevin J Hubbard,,Winter Haven,Florida,United States,DMR
+1112332,KB0ZNU,Daniel S Blashill,,North Fort Myers,Florida,United States,DMR
+1112333,WA4PAM,Frank C Harris,,Clewiston,Florida,United States,DMR
+1112334,N0CAS,Craig A Scott,,Miami,Florida,United States,DMR
+1112335,KB1NCJ,Greg Soucy Soucy,,Arcadia,Florida,United States,DMR
+1112336,KM4MHI,William F Lawhorn,,Port Charlotte,Florida,United States,DMR
+1112337,KM4WMK ,Christopher J Meyer Meyer,,Riverview,Florida,United States,DMR
+1112338,KM4YJF,Kevin Schneider,,Lecanto,Florida,United States,DMR
+1112339,N1FM,Thomas Whatley,,Boynton Beach,Florida,United States,DMR
+1112340,K4ZAS,Dennis E Zasnicoff,Zasnicoff,Winter Garden,Florida,United States,Other
1136001,K2FPC,Antonio Lipari,Tony,Champlain,New York,United States,DMR
1136002,KB2JM,James S Meahl,Jim,Lockport,New York,United States,DMR
1136003,K2BRT,Paul Polischuk,,New Windsor,New York,United States,DMR
@@ -336,7 +349,7 @@
1136013,KD2D,Walter P Pastor,Walt,Dobbs Ferry,New York,United States,DMR
1136014,KD2BXM,Glen Konwaler,,Staten Island,New York,United States,DMR
1136015,KC2FHT,Christian D Caswell,,Rochester,New York,United States,DMR
-1136016,KD2LEI,Russell Vanpelt .,Russ,Beacon,New York,United States,DMR
+1136016,K2RVP,Russell Vanpelt .,Russ,Beacon,New York,United States,DMR
1136017,KC2ILP,Robert Yenis,,Oceanside,New York,United States,DMR
1136018,KD2FIQ,Matthew Nedell,,Kings Park,New York,United States,DMR
1136019,W2NJC,Natale J Caruso,Nat,Brooklyn,New York,United States,DMR
@@ -425,9 +438,10 @@
1136102,KD2CYQ,Paul Gomez Gomez,,Hicksville,New York,United States,DMR
1136103,N2JVE,Henry M Alecksynas,Mike ,Niverville,New York,United States,DMR
1136104,W2DDY,J Roderic A Balquin,Bong,Warwick,New York,United States,DMR
-1136105,AC2UC,Daniel M Agababian,Dan,Deer Park,New York,United States,DMR
-1136106,AC2UC,Daniel M Agababian,Dan,Deer Park,New York,United States,DMR
+1136105,AB2FD,Daniel M Agababian,Dan,Deer Park,New York,United States,DMR
+1136106,AB2FD,Daniel M Agababian,Dan,Deer Park,New York,United States,DMR
1136107,KD2LTR ,Robert S Kerman,,Brooklyn ,New York,United States,DMR
+1136108,WA2UET,Stanley T Engel,Stan,Ghent,New York,United States,DMR
1136109,WB2ZII,Truck Westchester Emerg Comm Assn Inc,Races Truck,Valhalla,New York,United States,DMR
1136110,WB2ZII,Ht2 Westchester Emerg Comm Assn Inc,,Valhalla,New York,United States,DMR
1136111,WB2ZII,Ht3 Westchester Emerg Comm Assn Inc,,Valhalla,New York,United States,DMR
@@ -435,6 +449,9 @@
1136113,WB2ZII,Ht5 Westchester Emerg Comm Assn Inc,,Valhalla,New York,United States,DMR
1136114,WB2ZII,Ht6 Westchester Emerg Comm Assn Inc,,Valhalla,New York,United States,DMR
1136115,KD2BHN,Jonathan C Cross,,Sea Cliff,New York,United States,DMR
+1136116,KB2VVD,David Dallessandro Dallessandro,,Tonawanda,New York,United States,DMR
+1136117,W2LMT,Lee M Trudeau,,North Bangor ,New York,United States,DMR
+1136118,KB2VVD,David M Dallessandro,,Tonawanda,New York,United States,DMR
1137001,K4SWL,Thomas H Witherspoon,Thomas,Swannanoa,North Carolina,United States,DMR
1137002,KK4RKU,Glenn A Allison,Allen,Canton,North Carolina,United States,DMR
1137003,KM4IOU,Marty D Bumgarner,Marty,Granite Falls,North Carolina,United States,DMR
@@ -675,7 +692,7 @@
1137241,W4SH,Trey Belton,Trey,Stoneville,North Carolina,United States,DMR
1137242,WR4AGC,DURHAM FM ASSN .,Dfma Mcu,Durham,North Carolina,United States,DMR
1137243,K4EBF,Roy E Martin,Ed,Thomasville,North Carolina,United States,DMR
-1137244,N4MN,Robert M Cox,Rob N4mn,Raleigh,North Carolina,United States,DMR
+1137244,N4MN,Robert M Cox,Rob ,Raleigh,North Carolina,United States,DMR
1137245,WW4RB,Roger Bryant Bryant,,Thomasville,North Carolina,United States,DMR
1137246,WM4YD,Jeff Thigpen,,Jacksonville,North Carolina,United States,DMR
1137247,WW4FL,Flavius Warford,Fl,Thomasville,North Carolina,United States,DMR
@@ -738,6 +755,19 @@
1137304,NC4JA,John Crowe,,Hickory,North Carolina,United States,DMR
1137305,KE4VCS,Peyton Evans,,Pinnacle,North Carolina,United States,DMR
1137306,KI4PUX,Edward J Paradise,Ed,Cary,North Carolina,United States,DMR
+1137307,KF4BSA,Troop 310 Boy Scouts Of America,Bsa Troop 310,Raleigh,North Carolina,United States,DMR
+1137308,K4RCI,Steven J Chambers,Steve,Walkertown,North Carolina,United States,DMR
+1137309,KW4PD,David A Nichols,,Oakboro,North Carolina,United States,DMR
+1137310,KB4DRQ,Donald Buchanan,,Marion,North Carolina,United States,DMR
+1137311,KI4RAZ,Jesse W Dyson,,Winston-Salem,North Carolina,United States,DMR
+1137312,W4GDC,Gareth D Christian,,Pineville,North Carolina,United States,DMR
+1137313,N4AMP,James F Boyd,Frank,Greensboro,North Carolina,United States,DMR
+1137314,KM4WII,Timothy Scott,,Randleman,North Carolina,United States,DMR
+1137315,KE4LDU,Donald R Barnett,Donnie,Taylorsville,North Carolina,United States,DMR
+1137316,KJ4KIS,Tracy L Barnett,Tracy,Taylorsville,North Carolina,United States,DMR
+1137317,KA4CMT,Charles F Mc Manus,Charlie,Maiden,North Carolina,United States,DMR
+1137318,AJ4JZ,William L Stevenson,Bill,Belmont,North Carolina,United States,DMR
+1137319,AG0R,Gerald D Rankin,Gerald,Lowell,North Carolina,United States,DMR
2021001,SV1BYK,Babis Kappatos,Babis,Athens,Attica,Greece,
2021002,SV1PDW,Ioannis Barbat-Soskos,Ioannis,Athens,Attica,Greece,
2021003,SV1IW,Manos Darkadakis,Manos,Athens,Attica,Greece,
@@ -785,6 +815,9 @@
2021045,SV1EES,DIMITRIOS STASIS,DIMITRIOS,ATHENS,Attiki,Greece,
2021046,SV1CDR,Panagiotis Tsekouras,Panagiotis,Piraeus,Attiki,Greece,
2021047,SV1QFS,Gerasimos Zigkiris,Gerasimos,Athens,Attiki,Greece,
+2021048,SZ1RSF,RSF HELLAS Ambulance,RSF Ambulance,MOSCHATO Athens,Attica,Greece,
+2021049,SY1AWU,Nikosmar Onuniaeu,Nikosmar,ATHENS MAROUSI,Attiki,Greece,
+2021050,SV1JHV,George Dimos,George,Agrinio,Sterea Ellada,Greece,
2022001,SV2XI,Kleanthis ,Kleanthis,Thessaloniki,Makedonia Thraki,Greece,
2022002,SV2RGC,Konstantinos Makris,Konstantinos,Kastoria,Ipiros Ditiki Makedo,Greece,
2022003,SV2LLJ,Ioannis Kokovidis,Giannis,Naoussa,Makedonia Thraki,Greece,
@@ -797,11 +830,16 @@
2022010,SZ2SZ,Hellenic Amateur Radio Community,Hellenic Amateur,Thessaloniki,Makedonia Thraki,Greece,
2022011,SV2CSV,Antonios Koukouravas,Antonios,Edessa,cnty,Greece,
2022012,SV2IPT,Christos Seretis,Chris,Thessaloniki,Kentriki Makedonia,Greece,
+2022013,SV2FLY,Konstantinos Mantzoufas,Konstantinos,Nea Michaniona,Kentriki Makedonia,Greece,
2023001,SV3BSF,Nikos Karkavelias,Nick,Patra,Peloponnisos,Greece,
+2023002,SY3BOQ,Athanasios Vitsas,Thanos,Pyrgos,Peloponnisos,Greece,
2024001,SV4QXF,Efthimios Floros,Efthimios,Trikala,Thessalia,Greece,
2024002,SV4LRX,Antonis Sotiriou,Asot,LARISSA,Thessalia,Greece,
2024003,SV4IKA,Constantinos Christodoulou,Ikas,Larissa,Thessalia,Greece,
2024004,SV4LAD,Dimitrios Samaras,Sam,Volos,Thessalia,Greece,
+2024005,SV4LAD,Dimitros Samaras,Dimitros,Volos,Thessalia,Greece,
+2024006,SV4LBS,Xristoforos Lellis,Foris,Karditsa,Thessalia,Greece,
+2024008,SV4FGJ,Panos Kordas,Panos,Larissa,Thessalia,Greece,
2025001,SV5KKU,Lakis Bakas,Lakis,Lindos Rodos,Dodecanese,Greece,
2026001,SV6RDR,Konstantinos Chletsis,Konstantinos,Arta,Ipeiros,Greece,
2026002,SV6GIK,Aris Pylarinos,Arispyl,Ioannina,Ipeiros,Greece,
@@ -812,6 +850,10 @@
2026007,SY6AZC,George Skordos,George,Ioannina,Ipeiros,Greece,
2026008,SV6NOB,Marios Vasileiou,Marios,Ioannina,Ipeiros,Greece,
2026009,SV6HPD,Efthymis Dimitriadis,Efthymis,Ioannina,Ipeiros,Greece,
+2026010,SY6ATS,Theofanis Kapelis,Fanis,Ioannina,Ipeiros,Greece,
+2026011,SV6RDN,Konstantinos Tousis,Konstantinos,Ioannina,Ipeiros,Greece,
+2026012,SV6GIM,Konstantinos Saltas,Gimis,Ioannina,Ipeiros,Greece,
+2026013,SV6GIR,Ioannis Koutroumpas,Giryannis,Ioannina,Ipeiros,Greece,
2027001,SV7GBI,Konstantinos Tsikouras,Kostas,Serres,Anatoliki Makedonia,Greece,
2028001,SV8KOA,Nikos Mousouras,Nikos,Zakynthos,Other Greek Islands,Greece,
2029001,SV9DKB,Ioannis Tsiampas,Ioannis,Heraklion,Kriti,Greece,
@@ -991,6 +1033,10 @@
2041173,PA3BDD,Bert Wester,Bert,Huizen,Noord-Holland,Netherlands,
2041174,PD4BAS,Bastian Marten,Bastian,Julianadorp,Noord-Holland,Netherlands,
2041175,PD0PHV,Robert Pastijn,Robert,Huizen,Noord-Holland,Netherlands,
+2041176,PB5DX,Harry Koster,Harry,IJmuiden,Noord-Holland,Netherlands,
+2041177,PA4WIM,Wim Wiersma,Wim,Enkhuizen,Noord-Holland,Netherlands,
+2041178,PA3Q,Wil Van Egdom,Wil,Hoofddorp,Noord-Holland,Netherlands,
+2041179,PD1JSV,Jeroen Schouwerwou,Jeroen,Ijmuiden,Noord-Holland,Netherlands,
2042001,PA0HTW,Henk ,Henk,Rotterdam,Zuid-Holland,Netherlands,Portable
2042002,PA0HTW,Henk ,Henk,Rotterdam,Zuid-Holland,Netherlands,Mobile
2042003,PA3DFN,Philip ,Philip,Spijkenisse,Zuid-Holland,Netherlands,Portable
@@ -1259,6 +1305,7 @@
2042266,PA9TV,Simon NoName,Simon,NoName,Zuid-Holland,Netherlands,
2042267,PA6RCG,Robert Putz,Robert,Voorschoten,Zuid-Holland,Netherlands,
2042268,PA3DFR,Paul Van Strien,PA3DFRJ,Zoetermeer,Zuid-Holland,Netherlands,
+2042269,PA6OCK,Michel Honig,Jota Rimboejagers,Den Haag,Zuid-Holland,Netherlands,
2043001,PA1MOS,Marco ,Marco,Amersfoort,Utrecht,Netherlands,Mobile
2043002,PA1GF,Gerjan ,Gerjan,Amersfoort,Utrecht,Netherlands,Portable#1
2043003,PE1NWR,Tineke ,Tineke,Amersfoort,Utrecht,Netherlands,Portable
@@ -1464,7 +1511,7 @@
2044079,PD1ABK,Bram De Visser,Bram,Vlissingen,Zeeland,Netherlands,
2044080,PA3FKH,Kees De Groot,Kees,Venlo,Limburg,Netherlands,
2044081,PA7DX,Casper Van Lieburg,Casper,Kloosterzande,Zeeland,Netherlands,
-2044082,PA3YP,Guus Schlosmacher,Guus,Echt,Limburg,Netherlands,
+2044082,PA3HAS,Guus Schlosmacher,Guus,Echt,Limburg,Netherlands,
2044083,PE1JLX,Ruud Splint,Ruud,Brunssum,Limburg,Netherlands,
2044084,PA7YL,Mirjam Lamers,Mirjam,Gronsveld,Limburg,Netherlands,
2044085,PE3BB,Bart Berends,Bart,Bergen Lb,Limburg,Netherlands,
@@ -1618,6 +1665,8 @@
2045120,PD0DIB,Rob Van Rheenen,PD0DIBJota,5403KH,Noord-Brabant,Netherlands,
2045121,PA6JAM,Frank Troost,Jota PA6JAM,Veghel,Noord-Brabant,Netherlands,
2045122,PI4DLZ,Berrie Sleijster,Clubstation DLZA,Breda,Noord-Brabant,Netherlands,
+2045123,PD0TZ,Yermolai Cantineau,Yermolai,Terheijden,Noord-Brabant,Netherlands,
+2045124,PD8ARP,Barbara Zandboer,Barbara,Breda,Noord-Brabant,Netherlands,
2046001,PD2WGN,Walter Garretsen,Walter,Nijkerkerveen,,Netherlands,Mobile
2046002,PA1WW,Walther ,Walther,Voorthuizen,Gelderland,Netherlands,Mobile
2046003,PD0PVL,Robert ,Robert,Hoenderloo,Gelderland,Netherlands,Portable
@@ -1765,7 +1814,12 @@
2046145,PA3CRP,Berry Evers,Berry,Westervoort,Gelderland,Netherlands,
2046146,PD3RJJ,Rob Bruijsten,Rob,Arnhem,Gelderland,Netherlands,
2046147,PI4AJS,Henry Bolster,Club station ARAC,Neede,Gelderland,Netherlands,
-2046149,PA3ASW,Wim ,PA3ASW/JOTA,Eerbeek,Gelderland,Netherlands,
+2046148,PA2SLL,Simon Wesdijk,Simon,Duiven,Gelderland,Netherlands,
+2046149,PA3ASW,Wim Jansen,PA3ASWJOTA,Eerbeek,Gelderland,Netherlands,
+2046150,PA3GNX,Harrie Wolven,Harrie,Arnhem,Gelderland,Netherlands,
+2046151,PE1W,Wim Minnen,Wim,Eerbeek,Gelderland,Netherlands,
+2046152,PI4ANH,Veron A06 Arnhem,Veron A06,Arnhem,Gelderland,Netherlands,
+2046153,PA40LAB,Robin Van Bure,Robin,Nijmegen,Gelderland,Netherlands,
2046900,PI4AJS,Henry ,Club station ARAC,Neede,Gelderland,Netherlands,
2047001,PD0ZWL,Marcel ,Marcel,Zwolle,Overijssel,Netherlands,Portable
2047002,PD0ZWL,Marcel ,Marcel,Zwolle,Overijssel,Netherlands,Mobile
@@ -1924,6 +1978,7 @@
2047155,PA2PA,Arjan Hylkema,Arjan,Almere,cnty,Netherlands,
2047156,PD2JH,Joost Hutten,Joost,Olst,cnty,Netherlands,
2047157,PE55JP,Andre Heuver,Jota station,Hengelo,cnty,Netherlands,
+2047158,PD0HOD,Tom Tomei,Tom,Almere,Flevoland,Netherlands,
2048001,PD1ASH,Rolf ,Rolf,Niebert,Groningen,Netherlands,Mobile
2048002,PD1ALW,Andre ,Andre,Wijnaldum,Friesland,Netherlands,Mobile
2048003,PE1PWF,Edwin ,Edwin,Leeuwarden,Friesland,Netherlands,Portable
@@ -2074,6 +2129,7 @@
2048148,PD2JDB,Jan De Boer,Jan,Ysbrechtum,Frysland,Netherlands,
2048149,PD0BOB,Bob Van der Wal,Bob,Leeuwarden,Frysland,Netherlands,
2048150,PA3ABG,Paul Kolenbrander,Paul,Roden,Drenthe,Netherlands,
+2048151,PD1JA,Jacob Van der Molen,Jacob,Groningen,Groningen,Netherlands,
2060001,ON4AIM,Aime ,Aime,Oostende,West-Vlaanderen,Belgium,Portable
2060002,ON3AN,Ann ,Ann,Oostende,West-Vlaanderen,Belgium,Portable
2060003,ON2WIK,Marc ,Marc,Oostende,West-Vlaanderen,Belgium,Portable
@@ -2186,6 +2242,7 @@
2060110,ON2MVH,Mike Van Hoorickx,Mike,Uitkerke,West-Vlaanderen,Belgium,
2060111,ON3LUK,Luc Huilmand,Luc,Oostende,West-Vlaanderen,Belgium,
2060112,ON2CG,Gerard Cappelle,Gerard,Oostende,West-Vlaanderen,Belgium,
+2060113,ON3DEG,Gerdy Decherf,Gerdy,Zonnebeke,West-Vlaanderen,Belgium,
2061001,ON8SVH,Stijn Vanden Hende ,,Oudenaarde,Oost-Vlaanderen,Belgium,Portable
2061002,ON8SI,Simon ,Simon,Oosterzele,Oost-Vlaanderen,Belgium,Portable
2061003,ON5LUC,Luc ,Luc,Gent,Oost-Vlaanderen,Belgium,Portable
@@ -2366,6 +2423,8 @@
2061178,ON3ISA,Isabel Colman,Isabel,Wetteren,Oost-Vlaanderen,Belgium,
2061179,ON3BRT,Bart Bohyn,Bart,GENT,Oost-Vlaanderen,Belgium,
2061180,ON8DYL,Bodijn Dylan,Bodijn,Oudenaarde,Oost-Vlaanderen,Belgium,
+2061181,ON1BH,Herman Brackenier,Herman,Denderhoutem,Oost-Vlaanderen,Belgium,
+2061182,ON3IY,Jurgen Troch,Jurgen,Wetteren,Oost-Vlaanderen,Belgium,
2062001,ON7DS,Dirk ,Dirk,Kontich,Antwerp,Belgium,Portable
2062002,ON2DMT,Martine ,Martine,Kontich,Antwerp,Belgium,Portable
2062003,ON7PDW,Peter ,Peter,Boom,Antwerp,Belgium,Mobile
@@ -2428,6 +2487,8 @@
2062060,ON3JVB,Jurgen Van den Broek,Jurgen,Ravels,Antwerp,Belgium,
2062061,ON3XD,Luc Van Kerckhoven,Luc,Bornem,Antwerp,Belgium,
2062062,ON3ITA,Carlo Carrozzo,Carlo,Bornem,Antwerp,Belgium,
+2062063,ON4AFW,Wilfried Fonteyn,Wilfried,Koningshooikt,Antwerp,Belgium,
+2062064,ON3MD,Marc Heyndrickx,Aristo,Mechelen,Antwerp,Belgium,
2062999,ON4DBC,Geert Bellens,GeertB,Lint,Antwerp,Belgium,
2063001,ON6BB,Pieter ,Pieter,Roosdaal,Vlaams Brabant,Belgium,Mobile
2063002,ON4BDC,Gunther ,Gunther,Halle,Vlaams Brabant,Belgium,Portable
@@ -2853,6 +2914,9 @@
2080138,F1BGY,JEAN SCOT,JEAN,CLAYE-SOUILLY,le-de-France,France,
2080139,F4GIF,Thomas Soares,Thomas,La ferte gaucher,le-de-France,France,
2080140,F6ICX,ERIC ADNIN,Riquet,CHAUFFRY,le-de-France,France,
+2080141,F4HIC,Quentin Canel,F4HIC,Le Me sur Seine,le-de-France,France,
+2080142,F6CLX,PHILIPPE JEANBLANC,PHILIPPE,BOISSY LE CHATEL,le-de-France,France,
+2080143,F4HFD,Sebastien FREIS,Sebastien,Savigny Le Temple,le-de-France,France,
2081001,F1UOT,Olivier Guerin,Olivier,Suresnes,ÃŽle-de-France,France,Portable
2081002,F4ACD,Romain ,Romain,Poitiers,Vienne,France,Portable
2081003,F1TDI,Daniel ,Daniel,Suresnes,Paris,France,Portable
@@ -2984,6 +3048,7 @@
2082090,F4FLO,Jerome Simonato,Jerome,Saint genest lerpt,Rhne-Alpes,France,
2082091,F4ECA,Frederic Philippon,F4eca,Saint-Galmier,Rhne-Alpes,France,
2082092,F1FDZ,Christian GIRARD,F1FDZ,CHALEINS,Rhne-Alpes,France,
+2082094,F4GSO,Olivier PAYET,Olivier,Beaujeu,Rhne-Alpes,France,
2083001,F1IZL,Jean-Yves Ricklin,Jean-Yves,La Tour Du Crieu,Midi-Pyrénées,France,
2083002,F4GEM,Arnaud DAVRINCHE,Arnaud,CORNEBARRIEU,Midi-Pyrénées,France,
2083003,F1BBG,Gerard Samson,Gerard,Tarascon sur ariege,Midi-Pyrénées,France,
@@ -3166,6 +3231,7 @@
2088014,F5RVX,Liste orange Liste orange,Liste orange,Liste orange,Brittany,France,
2088015,F4EJW,Eric Cadiou,Eric,Treflevenez,Brittany,France,
2088016,F6DLE,Jean Sanchette,Jean,CARHAIX-PLOUGUER,Brittany,France,
+2088017,F4HQE,Julien Viry,Julien,Clohars-fouesnant,Brittany,France,
2089001,F1MIJ,Pascal ,Pascal,Bouchain,Nord,France,Portable
2089002,F1MIJ,Pascal ,Pascal,Bouchain,Nord,France,Mobile
2089003,F4GFR,Mohamed-Hazim ,Mohamed-Hazim,Marcq en Baroeul,Nord,France,Mobile
@@ -3350,6 +3416,9 @@
2089182,F4HTN,Nicolas Fontaine,Nicolas,Mo,All Others,France,
2089183,F5NOT,Jrme Sobczak,JS,Helesmes,All Others,France,
2089184,F4GPJ,Stephane Heurdier,Stef,La haye,All Others,France,
+2089185,F1JVY,Jean-Marc Manenti,Jean-Marc,Metz,All Others,France,
+2089186,F8FLK,THIERRY MAUZE,TITI,Chepy,All Others,France,
+2089187,F4BIT,STEPHANE MANGEOLLE,F4BIT,NEUVES-MAISONS,All Others,France,
2089998,F8KGD,RADIO CLUB F8KGD ,,Fontenay Trsigny,ÃŽle-de-France,France,
2089999,F5DAN,Daniel ,,Vitry sur Seine,ÃŽle-de-France,France,
2130001,C31AR,Anibal Rodrigues Caralho,Anibal,Pas De La Casa,,Andorra,
@@ -3363,19 +3432,19 @@
2141001,EB1CU,Andoni ,Andoni,Castro Urdiales,Cantabria,Spain,
2141002,EA1DBB,Adolfo Cerdeira Vila,Adolfo,Ourense,Galicia,Spain,
2141003,EB1CU,AXPE Andoni,AXPE,Castro Urdiales,Cantabria,Spain,
-2141004,EB1TK,Benito Arias Galban,Benito,Gijon,Principado de Asturi,Spain,
+2141004,EB1TK,Benito Arias Galban,Beni,Gijon,Principado de Asturi,Spain,
2141005,EA1HFI,Marcelo Adrian Malnero Maccari,Marcelo Adrian,Gijon,Principado de Asturi,Spain,
2141006,EB1TR,Fabian Malnero,Fabian,Gijon,Principado de Asturi,Spain,
2141007,EA1IOF,Javier Vilar Gonzalez,Javier,Magalofes fene,Galicia,Spain,
2141008,EA1AQE,Alberto Mallo,Alberto,A Corua,Galicia,Spain,
2141009,EB1DBX,Maria Begoa Insua Rodriguez,Maria Begoa,Redes ares,Galicia,Spain,
2141010,EA1EOL,Juan Francisco Domnguez,Juan Francisco,Redes,Galicia,Spain,
-2141011,EB1RD,Juan Enrique Colloto Gutierrez,Juan Enrique,Oviedo,Principado de Asturi,Spain,
+2141011,EB1RD,Juan Enrique Colloto Gutierrez,Kike,Oviedo,Principado de Asturi,Spain,
2141012,EB1DY,Manuel Suarez Gonzalez,Manuel,OVIEDO,Principado de Asturi,Spain,
2141013,EA1HVT,Fernando Chabaud,Fernando,Ourense,Galicia,Spain,
2141014,EA1HET,Jonathan Gonzalez Fernandez,Jonathan,Gijon,Principado de Asturi,Spain,
2141015,EA1HNR,Jose Luis Suarez Pache,Jose Luis,Piedras Blancas,Asturias,Spain,
-2141016,EB1TK,Benito Arias Galban,Benito,Gijon,Principado de Asturi,Spain,
+2141016,EB1TK,Benito Arias Galban,Beni,Gijon,Principado de Asturi,Spain,
2141017,EA1GCE,Alberto Menenedez Alonso,Alberto,Granda Siero,Principado de Asturi,Spain,
2141018,EA1AHA,Juan Carlos Acebal Rafael,Juan Carlos,Aviles,Asturias,Spain,
2141019,EA1CRF,Pedro Gonzalez-del-Valle,Pedro,Oviedo,Principado de Asturi,Spain,
@@ -3385,7 +3454,7 @@
2141023,EA1PT,Jos Manuel Sanchez,Jos Manuel,Oviedo,Principado de Asturi,Spain,
2141024,EA1GJN,Borja Gonzalez Montes,Borja,Gijon,Principado de Asturi,Spain,
2141025,EA1AIW,Jose Angel Prieto,Jose Angel,Gijon,Asturias,Spain,
-2141026,EA1ITM,Josep Bernat Molina,Josep,Oviedo,Principado de Asturi,Spain,
+2141026,EA1ITM,Josep Bernat Molina Nogues,Josep,Oviedo,Principado de Asturi,Spain,
2141027,EA1CI,Jose Angel Casanova Orozco,Jose Angel,Ourense,Galicia,Spain,
2141028,EA1RKG,Asociacin Radioafi Santo Angel (ARSA),Asociacin Radioafi,Melgar de Fernamenta,Castilla y Leun,Spain,
2141029,EA1DBB,Adolfo Cerdeira Vila,Adolfo,Ourense,Galicia,Spain,
@@ -3409,7 +3478,7 @@
2141047,EA1AUS,Javier Bermejo,Javier,Salamanca,Castilla y Leun,Spain,
2141048,EB1HSH,Jose luis Blanco,Jose luis,La corua,Galicia,Spain,
2141049,EB1GCX,Jose Antonio Espantoso,Jose Antonio,Santiago de Composte,Galicia,Spain,
-2141050,EA1IGN,Ismael Zarzoso,Isamel,Salamanca,Castilla y Leun,Spain,
+2141050,EA1IGN,Ismael Zarzoso,Ismael,Salamanca,Castilla y Leun,Spain,
2141051,EA1AOH,ALBERTO CLEMENTE FUERTES,ALBERTO,LOGROO,La Rioja,Spain,
2141052,EB1GEN,Pedro Lopez Terroba,Pedro,Villa mediana de ire,La Rioja,Spain,
2141053,EB1EGO,Juan Carlos Martin Alvarez,Juan Carlos,Salamanca,Castilla y Leun,Spain,
@@ -3569,7 +3638,20 @@
2141207,EA1IGO,Juan Gomez,Juan,Cuntis,Galicia,Spain,
2141208,EA1DK,Fernando Gonzalez Marcos,EA1DK,Leon,Castilla y Leon,Spain,
2141209,EA1IQT,David Joaqun Prendes Bra,EA1IQT,Aviles,Asturias,Spain,
-2141210,EA1GID,Juan carlos ,,Santiago de Composte,Galicia,Spain,
+2141210,EA1GID,Juan carlos Lorenzo caride,Carlos,Santiago de Composte,Galicia,Spain,
+2141211,EB1EWE,Andres Senaris,Andres,Cerceda - La Corua,Galicia,Spain,
+2141212,EA1KZ,MARCOS GARCIA DIAZ,MARCOS,VALDESOTO,Asturias,Spain,
+2141213,EA1UVR,Union Radioafic. Vetusta,EA1UVR,Oviedo,cnty,Spain,
+2141214,EA1FCA,Ruben Villar,CENTRACON,Santiago de Composte,Galicia,Spain,
+2141215,EA1GDR,CARLOS CUADRADO,CARLOS,EL BARRACO,Castilla y Leon,Spain,
+2141216,EA1GUJ,ISIDRO GALLEGO NUNEZ,ISIDRO,LUGO,Galicia,Spain,
+2141217,EA1IWT,PABLO MOLINA FERNANDEZ,PABLO,OVIEDO,Asturias,Spain,
+2141218,EA1HFJ,Arturo Malnero,EA1HFJ,Gijon,cnty,Spain,
+2141219,EA1SH,Manuel Vazquez Crespo,Manu,Lugo,Galicia,Spain,
+2141220,EA1AUR,Jose Teodoro Andreu Munoz-Orea,Theo,Aldearrubia,Castilla y Leon,Spain,
+2141223,EB1ERD,Eva Colloto Herrera,Eva,Oviedo,Asturias,Spain,
+2141224,EA1GCZ,Andres Arranz Garcia,Andres Arranz,Aviles,Asturias,Spain,
+2141225,EA1ESO,Rafael Correa Fernandez,Rafa,Coto Carcedo,cnty,Spain,
2142001,EA2IP,Jesus ,Jesus,Sestao,Basque Country,Spain,
2142002,EA2IV,Alex BONILLO,Alex,Huesca,Aragon,Spain,
2142003,EA2FT,Juan Angel De la Fuente Mata,Juan Angel,Zaragoza,Aragun,Spain,
@@ -3697,6 +3779,17 @@
2142125,EA2RCP,URP-RCP Radioclub Pamplona,URP-RCP,Pamplona,Navarra,Spain,
2142126,EA2DDI,Jose Antonio Campos Moreno,EA2DDI,Bilbao,Pais Vasco,Spain,
2142127,EA2DVT,ALEJANDRO LABARGA,EA2DVT,ZARAGOZA,Aragon,Spain,
+2142128,EA2BAJ,Eduardo Eduardo,JEdu,Bilbao,Pais Vasco,Spain,
+2142129,EA2RCX,RADIOCLUB ESCUELA INGENIEROS DE BILBAO,GAURKO,Bilbao,Pais Vasco,Spain,
+2142130,EA2AMB,Angel Abadias,Angel,Zaragoza,Aragon,Spain,
+2142131,EA2BIN,ANTONIO SANCHEZ FERNANDEZ,EA2BIN,BURLADA,Navarra,Spain,
+2142132,EA2ENE,Juan Jesus Perez Aldunate,Joee,Zariquiegui,Navarra,Spain,
+2142133,EA2ECL,Javier Izaga,Ea2ecl,Elgoibar,Pais Vasco,Spain,
+2142134,EA2BRQ,Nazario Peralta,Nazario,Fraga,Aragon,Spain,
+2142135,EA2AHP,Juan Oscar Gonzalez Calleja,Pitxu,Bilbao,Pais Vasco,Spain,
+2142136,EB2DYG,Andoni Maizkurrena,Andoni,Bilbao,Pais Vasco,Spain,
+2142137,EA2DFS,ESTER AROCENA,EA2DFS,ARANAZ,Navarra,Spain,
+2142138,EA2EKQ,ALEX GONZALEZ,ALILLO,PORTUGALETE,Pais Vasco,Spain,
2143001,EA3DKP,Ricardo ,Ricardo,Roses,Girona,Spain,Portable #1
2143002,EA3DKP,Ricardo ,Ricardo,Roses,Girona,Spain,Portable #2
2143003,EA3DKP,Ricardo ,Ricardo,Roses,Girona,Spain,Portable #3
@@ -3880,8 +3973,19 @@
2143181,EA3UA,PEDRO ANDREU GARRIGA,PEDRO,MATARO,Cataluna,Spain,
2143182,EA3TA,Juan Piqueras,EA3TA (Juan),Sant Quirze del Vall,Cataluna,Spain,
2143183,EC3AIW,JORDI GASCON SEGUNDO,JORDI,GRANOLLERS,Cataluna,Spain,
-2143184,EA3DPJ,Juan Enrique ,Joan Enric,Mataro,Cataluna,Spain,
-2143185,EA3HEU,Javier ,,Hospitalet de llobre,Cataluna,Spain,
+2143184,EA3DPJ,Juan Enrique Vinas Oliver,Joan Enric,Mataro,Cataluna,Spain,
+2143185,EA3HEU,Javier Gonzalez Ruiz,Ea3heu,Hospitalet de llobre,Cataluna,Spain,
+2143186,EA3HFO,JAUME BONET ARMENGOL,EA3HFO,LLEIDA,Cataluna,Spain,
+2143187,EA3BEO,Jorge Sahagun Fanals,Jordi,Mataro,Cataluna,Spain,
+2143188,ED3YAN,Eduardo RODRIGUEZ,EB3GHN,BARCELONA,Cataluna,Spain,
+2143189,EA3BQH,MARCEL MACIA,MARCEL,SANT VICENc de monta,Cataluna,Spain,
+2143190,EC3DBA,Joan Valls Pou,Joan,Canyamars,Cataluna,Spain,
+2143191,EA3GQU,Lopez Diaz,Jose Antonio,Torredembarra,Cataluna,Spain,
+2143192,EA3EIY,Tomas Diaz,Tomas,Hospitalet LL.,Cataluna,Spain,
+2143193,EA3FNR,Jose Manuel Gordon Tena,Jose Manuel,Sant Vicents dels Ho,Cataluna,Spain,
+2143194,EA3AMI,Juan Adria,Juan,Barcelona,Cataluna,Spain,
+2143195,EA3GCU,Julio Soriano,Julio,Barcelona,Cataluna,Spain,
+2143196,EA3EE,TONI VICO,TONI VICO,Sant Vicen dels Hort,Cataluna,Spain,
2144001,EA5IIO,ANTONIO ,,Albacete,Castile-La Mancha,Spain,
2144002,EA4GQW,Pablo Cortes,Pablo,Madrid,Community of Madrid,Spain,
2144003,EA4AAE,Javier Coso,Javier,Madrid,Community of Madrid,Spain,
@@ -4010,6 +4114,19 @@
2144126,EB4GLE,Jose Joaquin Garcia,Jose Joaquin,Madrid,excluding Albacete,Spain,
2144127,EA4EOZ,Miguel Angel Vallejo,Miguel,Leganes,excluding Albacete,Spain,
2144128,EA4GVH,Miguel Angel Manchado Henriquez,Miguel Angel,Boadilla del Monte,excluding Albacete,Spain,
+2144129,EA4CHU,Miguel Lado Duro,Miguel,Madrid,excluding Albacete,Spain,
+2144130,EA4FLN,Javier Mayoral,Javier,Brihuega,excluding Albacete,Spain,
+2144131,EA4GSB,Juan carlos De la montaa,Juankar,Madrid,excluding Albacete,Spain,
+2144132,EB4FZI,Jose Luis Patio Araujo,Jose Luis,Madrid,excluding Albacete,Spain,
+2144133,EA4DKA,Jose Enrique Espejo,Celada,Madrid,excluding Albacete,Spain,
+2144134,EA4GSV,Andres Arenas,Andres,Madrid,excluding Albacete,Spain,
+2144135,EA4GTH,Adolfo De Diego,Adolfode,NAVALCARNERO,excluding Albacete,Spain,
+2144136,EA4FMF,Javier Carrasco,Sagitario,Madrid,excluding Albacete,Spain,
+2144137,EB4FBZ,Carlos Cabezas,EB4FBZ,Madrid,excluding Albacete,Spain,
+2144138,EA4FHY,JUAN CARLOS PEREZ ARRIBAS,JC,Madrid,excluding Albacete,Spain,
+2144139,EA4GFC,Santiago Dominguez,Cosme,San lorenzo del esco,excluding Albacete,Spain,
+2144140,EA4GUY,JOSE LUIS LOPEZ IBARRA,JOSE LUIS,PARACUELLOS DE JARAM,excluding Albacete,Spain,
+2144141,EA4GSL,Luciano Rubio,Lucas,Madrid,excluding Albacete,Spain,
2145001,EA5AWM,Vicente ,Vicente,Valencia,Valencia,Spain,Mobile
2145002,EA5AWM,Vicente ,Vicente,Valencia,Valencia,Spain,Portable
2145003,EA5HJX,Alex ,Alex,Valencia,Valencia,Spain,Mobile
@@ -4136,7 +4253,10 @@
2145124,EA5CVK,MARIO KARLSSON,MARIO,CAMPELLO,Valencia,Spain,
2145125,EA5BI,Carlos Jimenez lidon,Carlos,Elche,Valencia,Spain,
2145126,EA5AQB,Salvador Poveda Algarra,Salvador,Elda,Valencia,Spain,
-2145128,EA5SW,Jose ,,Valencia,Valencia,Spain,
+2145127,EA5ERC,EB3GHN Eduardo,Rodriguez,Polinya del valles,Valencia,Spain,
+2145128,EA5SW,Jose Lopez,EA5SW,Valencia,Valencia,Spain,
+2145129,EA5IDR,FRANCISCO JOSE PEaeAS PERAN,FRANCISCO JOSE,ALHAMA DE MURCIA,Murcia,Spain,
+2145130,EA5URB,Ea5urb U.R.B,EA5URB,Benidorm,Valencia,Spain,
2146001,EA6AFZ,Antonio Lopez,Antonio,Inca,Islas Baleares,Spain,
2146002,EA6AID,Ana Macian,Ana,Inca,Islas Baleares,Spain,
2146003,EA6AFZ,Antonio Lopez Segade,Antonio,Inca,Islas Baleares,Spain,
@@ -4152,6 +4272,8 @@
2146013,EB6MY,Valentin Guerrero Barcel,EB6MY,Felanitx,Islas Baleares,Spain,
2146014,EA6AJM,Jose Maria Rosello,Rosello,IBIZA,Islas Baleares,Spain,
2146015,EA6WQ,TOMAS ORZAEZ,Tomdmr,MANACOR,Islas Baleares,Spain,
+2146016,EB6AOK,Muriel Enrique,EB6AOK,Sant Joan de Labritj,Islas Baleares,Spain,
+2146017,EA6RF,Antonio Reynes Pons,Ea6rf toni,Algaida,Islas Baleares,Spain,
2147001,EA7UW,Rafael Ric Millan,Rafael,Malaga,Andalucia,Spain,
2147002,EA7CRA,Jose Manuel Alabarce,Jose Manuel,Granada,Andalucia,Spain,
2147003,EA7JRS,Manuel Canca Snchez,Manuel,Jerez de la frontera,Andalucia,Spain,
@@ -4253,6 +4375,24 @@
2147099,EC7MA,JOSE MANUEL PUYO,JOSE MANUEL,MALAGA,Andalucia,Spain,
2147100,EA7VN,Jose Federero,Jose,Sevilla,Andalucia,Spain,
2147101,EA7JTY,Rafael Calderon Gutierrez,Rafael,Sevilla,Andalucia,Spain,
+2147102,EA7JZD,Santos Carlos,EA7JZD,Marbella,Andalucia,Spain,
+2147103,EA7JRE,Merino Manuel,EA7JRE,San Pedro de Alcanta,Andalucia,Spain,
+2147104,EA7AJV,Alvaro Diego,EA7AJV,Marbella,Andalucia,Spain,
+2147105,EA7HCL,Gimenez Hugo,EA7HCL,Marbella,Andalucia,Spain,
+2147106,EA7BZO,JOSE RIVAS,PENDON,ALGARROBO,Andalucia,Spain,
+2147107,EA7IWD,MANUEL LUQUE,LOLO,Camas,Andalucia,Spain,
+2147108,EB7BPN,Alejandro Yague Moreno,Eb7bpn,La linea de la Conce,Andalucia,Spain,
+2147109,EB7FUF,FRANCISCO MANUEL ANTEQUERA,PACO TRIKELE,LAS PAJANOSAS,Andalucia,Spain,
+2147110,EA7JMP,GABRIEL PADILLA,RUIZ,EL EJIDO ALMERIA,Andalucia,Spain,
+2147111,EB7HEM,JOSE CARLOS MARiA GARRIDO,JOSE CARLOS,MALAGA,Andalucia,Spain,
+2147112,EA7HKO,FRANCISCO JOSE HERNANDEZ,FRAN,ALMERIA,Andalucia,Spain,
+2147113,EB7BSG,FRANCISCO LEDESMA SOLER,FRANCISCO,ALMERIA,Andalucia,Spain,
+2147114,EA7DDA,Jose Antonio Gallo Herrera,Antonioer,Cadiz,Andalucia,Spain,
+2147115,EA7KY,JULIO MALENO,JULIO,EL EJIDO,Andalucia,Spain,
+2147116,EA7JWQ,Julio Ortiz,Julio,Linares,Andalucia,Spain,
+2147117,EA7ALP,Alfonso Manuel Delgado Lozano,Ea7alp,Sevilla,Andalucia,Spain,
+2147118,EB7EZC,Antonio Pelaez,Antonio,Caleta de Velez,Andalucia,Spain,
+2147119,EA7HGL,Antonio Domingo Reina Garfia,ADRG,Mairena del Aljarafe,Andalucia,Spain,
2148001,EA8YAT,Alfred ,Alfred,Las Palmas,Islas Canarias,Spain,Portable
2148002,EA8EE,Jose ,Jose,Las Palmas,Islas Canarias,Spain,
2148003,EA8EE,Jose Manuel Martinez,Jose Manuel,Las Palmas,Islas Canarias,Spain,
@@ -4288,12 +4428,14 @@
2148033,EA8CBB,Tomas Aguilar Gutierrez,Tomas,Taco - La Laguna - T,Islas Canarias,Spain,
2148034,EA8II,Eduardo Diaz,Eduardo,La Laguna,Islas Canarias,Spain,
2148035,EA8TV,Juan Jose Tavio Gonzalez,Juan Jose,La Victoria de Acent,Islas Canarias,Spain,
+2148037,EA8AQI,ROGELIO MARTEL LOPEZ,ROGELIO,TELDE,Islas Canarias,Spain,
2149001,EA9PE,Alvaro ,Alvaro,Ceuta,Ceuta,Spain,Portable
2149002,EB9PB,Alejandro ,Alejandro,Ceuta,Ceuta,Spain,Mobile
2149003,EA9AAD,Lara Ostio Almudena,Lara Ostio,Ceuta,Ceuta,Spain,
2149004,EA9PE,Muela Aguilera Alvaro,Muela Aguilera,Ceuta,Ceuta,Spain,
2149005,EA9AI,FCO JAVIER ALVAREZ SEGURA,JAVIER ALVAREZ,Ceuta,Ceuta,Spain,
2149006,EA9UV,ANTONIO VILLALTA ANYA,EA9UV,Ceuta,Ceuta,Spain,
+2149007,EA9ABY,Antonio Miguel Canela Segura,Antonio,Melilla,Melilla,Spain,
2160002,HA4XA,Istvan ,Istvan,Budapest,Budapest,Hungary,
2160003,HA5KSP,Karl Powell,Karl,Budapest,Budapest,Hungary,
2161001,HA2TO,Arpad Orban,Arpad,Papa,Veszprum,Hungary,
@@ -4330,6 +4472,7 @@
2161032,HA2QE,Viktor Bredan,Viktor,Dorog,Komurom-Esztergom,Hungary,
2161033,HG2QGK,Attila Kozik,Attila,Esztergom Kertviros,Komarom-Esztergom,Hungary,
2161034,HA2BJ,Jozsef Babai,Joci,Hereg,Komarom-Esztergom,Hungary,
+2161035,HA4ULB,Gabor Gyorgyi,Gabor,Alap,Fejer,Hungary,
2163001,HG3GG,Gabor ,Gabor,Kaposvar,Somogy,Hungary,Portable#1
2163002,HG3GG,Gabor ,Gabor,Kaposvar,Somogy,Hungary,Portable#2
2163003,HA3KZ,Zoltan Herczeg,Zoltan,Kaposvar,Somogy County,Hungary,
@@ -4352,6 +4495,7 @@
2163020,HA3IN,Norbert Hegedues,Norbert,Pecs,cnty,Hungary,
2163021,HA3LMR,Kiss Meirosu Laszlo,Kiss Meirosu,Pecs,Baranya,Hungary,
2163022,HA3HJ,Jozsef Heiszler,Jozsef,Darany,Somogy,Hungary,
+2163023,HA3TQ,Gabor Dr Nagy,Gabor,Pecs,Baranya,Hungary,
2165001,HA5CJN,Ivan Nagy,Ivan,Budapest,Budapest,Hungary,
2165002,HA5BHX,Gabor Breitner,Gabor,Budapest,Budapest,Hungary,
2165003,HG5OHT,Tuende Herczegn Katona,Tuende,Budapest,Budapest,Hungary,
@@ -4424,6 +4568,7 @@
2165070,HA5CGB,Bela Tar,Bela,Budapest,Budapest,Hungary,
2165071,HA5RG,Gibor Rozsa,Gabi,Budapest,Budapest,Hungary,
2165072,HG5BYO,Zoltin Pidir,Zoltin,Budapest,Budapest,Hungary,
+2165073,HA5ASS,Zsolt Lombar,Zsolt,Budapest,Budapest,Hungary,
2167001,HG7JML,Otto Vincze,Otto,Erd,Calabarzon,Hungary,
2167002,HA5OGR,Lajos Horvath,Lajos,Dunavarsany,Pest County,Hungary,
2167003,HA7TP,Peter Till,Peter,Veresegyhaz,Pest County,Hungary,
@@ -4461,6 +4606,9 @@
2167035,HG7BUS,Janos Kovago,Jani,Jaszfelsoszentgyorgy,Jasz-Nagykun-Szolnok,Hungary,
2167036,HA7NS,Bela Kover,Bela,Jaszbereny,Jasz-Nagykun-Szolnok,Hungary,
2167037,HG6IJS,Istvan Farkas,Pisti,Hatvan,Heves,Hungary,
+2167038,HA6CX,Tibor Birkinyi,Tibor,Gyoengyoes,Heves,Hungary,
+2167039,HA6KL,Lajos Kralik,Lajos,Gyoengyoes,Heves,Hungary,
+2167040,HA7JZ,Zoltan Rigo,Zoli,Jasztelek,cnty,Hungary,
2168001,HA3TL,Laszlo Kardos,Laszlo,Debrecen,Veszprum,Hungary,
2168002,HA0BW,Imre Gardo,Imre,Debrecen,Hajdu-Bihar,Hungary,
2168003,HA0DR,Lajos Gergely,Lajos,Debrecen,Hajdu-Bihar,Hungary,
@@ -4469,6 +4617,7 @@
2168006,HA0DR,Lajos Gergely,Lajos,Debrecen,Hajdu-Bihar,Hungary,
2168007,HA8LN,Janos Csabai,Janos,Magyarbinhegyes,Buakuas County,Hungary,
2168008,HA8LN,Jinos Csabai,Janos,Magyarbinhegyes,Buakuas County,Hungary,
+2168009,HG8LW,Sandor Gyapjas,Sanyi,Nyregyhiza,cnty,Hungary,
2180001,E74OF,Pedja Jovanovic,Pedja,Sarajevo,,Bosnia and Hercegovi,
2180002,E73JN,Nenad Jovanovic,Nenad,Sarajevo,,Bosnia and Hercegovi,
2180003,E74NK,Nail Klisura,Nail,Fojnica,,Bosnia and Hercegovi,
@@ -4850,8 +4999,13 @@
2220356,IZ0PQE,Igor Calderari,IZ0PQE,Anticoli Corrado,Lazio,Italy,
2220357,IK0WRB,Vinicio Coletti,IK0WRB,Roma,Lazio,Italy,
2220358,IU0DZJ,Gerardo Stravato,Gerardo,Fondi,Lazio,Italy,
-2220359,IW0RBS,Federico ,,Perugia,Umbria,Italy,
-2220360,IZ0RDM,Williams ,,Ardea,Lazio,Italy,
+2220359,IW0RBS,Federico Paoletti,Federico,Perugia,Umbria,Italy,
+2220360,IZ0RDM,Williams Falco,Iz0rdm,Ardea,Lazio,Italy,
+2220361,IW0QGQ,Fabrizio Albi,Fabrizio,Bastia Umbra,Umbria,Italy,
+2220362,IW0EFI,Christian Pallucci,Chris,Gallinaro,Lazio,Italy,
+2220363,I0LYL,Lucio Perrone,ILYL,Pomezia,Lazio,Italy,
+2220364,IZ0WLI,BENVENUTI FRANCO,BENVENUTI,ROMA,Lazio,Italy,
+2220365,IW0DVV,Mariano ,,Civitavecchia,Lazio,Italy,
2220900,IW0UIF,Natale ,Natale,Oristano,Sardinia,Italy,Mobile
2220901,IS0XDA,Gianni ,Gianni,Sinnai,Sardinia,Italy,Mobile
2220902,IS0AYI,Paolo ,Paolo,Cagliari,Sardinia,Italy,Mobile
@@ -5147,12 +5301,22 @@
2221280,IK1JMJ,Carlo Poggio,Carlo,Torino,Piedmont,Italy,
2221281,IW1CMX,Pier Giorgio Martinetto,Piergiorgio57,CastellAlfero (AT),Piedmont,Italy,
2221282,IW1FYE,FABIO DI MARCO,Fabio,Grugliasco,Piedmont,Italy,
+2221283,IZ1VAZ,Samuel ,,Beinasco torino,Piedmont,Italy,
2221284,IZ1TGB,Andrea Pineschi,Andypin,LA Spezia,Liguria,Italy,
2221285,IZ1BCJ,Gianluca Crafa,IZ1BCJ,Torino,Piedmont,Italy,
-2221286,IU1DXU,ENNIO ,,CHIVASSO,Piedmont,Italy,
-2221287,IU1EVM,Nicola ,,Imperia,Liguria,Italy,
-2221288,IZ1GJH,Servente ,,Casarza ligure,Liguria,Italy,
-2221289,IZ1ERR,Piero ,,Favria,Piedmont,Italy,
+2221286,IU1DXU,ENNIO POLETTA,ENNIO,CHIVASSO,Piedmont,Italy,
+2221287,IU1EVM,Nicola Perelli,Niclahp1969,Imperia,Liguria,Italy,
+2221288,IZ1GJH,Servente Massimo,Iz1gjh,Casarza ligure,Liguria,Italy,
+2221289,IZ1ERR,Piero Baudino,Piero,Favria,Piedmont,Italy,
+2221290,IZ1YOV,Fabio Mantovani,IZ1YOV,Casale Monferrato,Piedmont,Italy,
+2221291,IU1GCK,Lorenzo Bigarelli,BIGA81,Casale Monferrato,Piedmont,Italy,
+2221292,IK1BXN,Giorgio Olei,Giorgio-ge,Busalla,Liguria,Italy,
+2221293,IZ1UKX,Emanuele REPETTO,Lumyn,Casella,Liguria,Italy,
+2221294,IZ1FUM,Davide Frino,Uek,Genova,cnty,Italy,
+2221295,IZ1GZF,Luca Feletti,IZ1GZF,Bussoleno (TO),Piedmont,Italy,
+2221296,IW1EYZ,P Paolo CARPINELLI,IW1EYZ,Genova,Liguria,Italy,
+2221297,IZ1VWE,Dario Occhiogrosso,Iz1vwe,Genova,Liguria,Italy,
+2221298,IK1TAQ,Benazzo ,,Alessandria,cnty,Italy,
2222001,IW2DCK,Germano ,Germano,Capriate San Gervasi,Lombardy,Italy,Portable
2222002,IW2BCF,Roberto ,Roberto,Milano,Lombardy,Italy,Mobile
2222003,IZ2JGB,Giorgio ,Giorgio,Legano,Lombardy,Italy,Portable
@@ -5584,10 +5748,26 @@
2222429,IU2BOD,Mauro Pradella,Mauro,Viadana,Lombardy,Italy,
2222430,IW2GHV,DONATO MARTONE,Max,CASTELVECCANA,Lombardy,Italy,
2222431,IW2FCH,Antonio Arzenton,IW2FCH,Brescia,Lombardy,Italy,
-2222432,I2NOS,Giuseppe ,,Brescia,Lombardy,Italy,
-2222433,IK2SOB,Fabio ,,Cornate dAdda,Lombardy,Italy,
-2222434,IW2FHP,Ilario ,,Botticino Mattina,Lombardy,Italy,
-2222435,IW2NTF,Andrea ,,Gaggiano,Lombardy,Italy,
+2222432,I2NOS,Giuseppe Pittella,Giuseppe,Brescia,Lombardy,Italy,
+2222433,IK2SOB,Fabio Cristoforoni,Fabio,Cornate dAdda,Lombardy,Italy,
+2222434,IW2FHP,Ilario Ferrari,Ilario,Botticino Mattina,Lombardy,Italy,
+2222435,IW2NTF,Andrea Fracassi,Andrea,Gaggiano,Lombardy,Italy,
+2222436,IW2DIW,SILVANO RIPAMONTI,Iw2diw,CARNATE,Lombardy,Italy,
+2222437,IW2KWV,Ezio None,Ezio,Milano,Lombardy,Italy,
+2222438,IZ2ZRJ,Gianluigi Contu Farci,IZ2ZRJ,Milano,Lombardy,Italy,
+2222439,IW2LZC,DAVIDE DAMATO,Davide,Milano,Lombardy,Italy,
+2222440,IW2CYS,GIANNI SIRONI,GIANNI,Santa maria ho,Lombardy,Italy,
+2222441,IZ2LPH,Nicola Persavalli,IZ2LPH,Prevalle,Lombardy,Italy,
+2222442,IZ2UQC,Lorenzo Zambelli,Lorenzo,Casto (Brescia),Lombardy,Italy,
+2222443,IZ2WSQ,Armando Sala,Armando Sala,Arcore,Lombardy,Italy,
+2222444,IW2LVG,LURATI CLAUDIO,IW2LVG,OLGIATE COMASCO,Lombardy,Italy,
+2222445,IW2DKU,Paolo Malerba,Malepao,Sondrio,Lombardy,Italy,
+2222447,IU2GFL,Maurizio Minali,IU2GFL,Brembate Sopra,Lombardy,Italy,
+2222448,IK2ARZ,TULLIO ,,CREMONA,Lombardy,Italy,
+2222449,IU2ABV,Fabio ,,Cusago,Lombardy,Italy,
+2222450,IZ2QEJ,Paolo ,,Milano,Lombardy,Italy,
+2222451,IZ2SRS,Federico Paolo ,,Milano,Lombardy,Italy,
+2222452,IZ2YWI,Marco ,,Oggiono,Lombardy,Italy,
2223001,IW3SRH,Stefano ,Stefano,Trieste,Friuli-Venetia Giuli,Italy,Portable
2223002,IV3DVE,Corrado ,Corrado,Trieste,Friuli-Venetia Giuli,Italy,Portable
2223003,IV3FHS,Antonio ,Antonio,Latisana,Friuli-Venetia Giuli,Italy,Portable
@@ -5912,6 +6092,7 @@
2223322,IW3GPO,PAOLO ROSIN,IW3GPO,Venezia,cnty,Italy,
2223323,IU3GMG,Michele Galantin,Michele,Mestrino,Veneto,Italy,
2223324,IN3AVB,Alberto Lazzarini,IN3AVB,Bolzano,Trentino-Alto Adige/,Italy,
+2223325,IU3GMC,Alessio Galantin,Alessio,Mirano,Veneto,Italy,
2223326,I3ZNI,GINO ZANANDREA,I3ZNI,Cassola (VI),Veneto,Italy,
2223327,IZ3WWF,Mauro Domenico Groppa,Mauro,San Tomaso Agordino,Veneto,Italy,
2223328,IV3NFC,Dario Teon,iv3nfc,Paularo,Friuli-Venetia Giuli,Italy,
@@ -5919,15 +6100,20 @@
2223330,IZ3ZLE,Antonio Sorgato,Antonio_Sorgato,Saonara,Veneto,Italy,
2223331,IZ3KUY,Giuseppe Michilin,IZ3KUY,Preganziol,Veneto,Italy,
2223332,IN3TGS,Andrea Trebo,Andrea,Bolzano,Trentino-Alto Adige,Italy,
-2223333,IK3ZBK,PIETRO ,,VALSTAGNA,Veneto,Italy,
-2223334,IU3BRK,Alberto ,,Polverara,Veneto,Italy,
-2223335,IN3SQW,Giorgio ,,BOLZANO,Trentino-Alto Adige,Italy,
-2223336,IU3CAK,Alessandro ,,San Nazario,cnty,Italy,
-2223337,IZ3NVU,Guillermo ,,Tezze sul Brenta,Veneto,Italy,
-2223338,IW3HIR,Alessandro ,,PADOVA,Veneto,Italy,
-2223339,IZ3KZX,Federico ,,Zelarino,cnty,Italy,
-2223340,IU3BXP,Loris ,,Martellago,Veneto,Italy,
-2223341,IZ3VTH,Alessandro ,,Favaro Veneto,Veneto,Italy,
+2223333,IK3ZBK,PIETRO PONTAROLLO,IK3ZBK,VALSTAGNA,Veneto,Italy,
+2223334,IU3BRK,Alberto Zanutto,Alberto,Polverara,Veneto,Italy,
+2223335,IN3SQW,Giorgio Scalabrin,Itauscag,BOLZANO,Trentino-Alto Adige,Italy,
+2223336,IU3CAK,Alessandro Cavalli,IU3CAK,San Nazario,cnty,Italy,
+2223337,IZ3NVU,Guillermo Diaz,Willy,Tezze sul Brenta,Veneto,Italy,
+2223338,IW3HIR,Alessandro Scroccaro,IW3HIR,PADOVA,Veneto,Italy,
+2223339,IZ3KZX,Federico Merlo,Federico,Zelarino,cnty,Italy,
+2223340,IU3BXP,Loris Siega,Loris,Martellago,Veneto,Italy,
+2223341,IZ3VTH,Alessandro Murador,Ale IZ3VTH,Favaro Veneto,Veneto,Italy,
+2223343,IK3FXK,Gaetano Schiavon,El Macia,Padova,Veneto,Italy,
+2223344,IN3GME,Moritz Amort,IN3GME Moritz,Brixen,Trentino-Alto Adige,Italy,
+2223345,IK3PDD,Umberto Querenghi,IK3PDD,Verona,cnty,Italy,
+2223346,IU3BUW,PAOLO ,,SCORZE,Veneto,Italy,
+2223347,IK3FXC,Giuseppe Luciano ,,Pozzoleone,Veneto,Italy,
2224001,IZ4RDT,Monica ,Monica,Piacenza,Emilia-Romagna,Italy,Mobile
2224002,IZ4YEP,Alex ,Alex,Piacenza,Emilia-Romagna,Italy,Mobile
2224003,IW4BVN,Paolo ,Paolo,Salsomaggiore Terme,Emilia-Romagna,Italy,Portable
@@ -5945,7 +6131,7 @@
2224015,IK4QMX,Daniele Morselli,Daniele,Cento,Emilia-Romagna,Italy,
2224016,IK4IEE,Giuseppe Rubini,Giuseppe,Vignola,Emilia-Romagna,Italy,
2224017,IK4GMI,Gianfranco Ronconi,Gianfranco,Ravenna,Emilia-Romagna,Italy,
-2224018,IW4EHJ,Andrea Pozzi,Andrea,Rimini,Emilia-Romagna,Italy,
+2224018,IW4EHJ,Andrea Pozzi,iw4ehj,Rimini,Emilia-Romagna,Italy,
2224019,IZ4ISN,Marco Stefano Duca,Marco Stefano,Montescudo,Emilia-Romagna,Italy,
2224020,IU4BXJ,Fabio Zannicol,Fabio,Verica,Emilia-Romagna,Italy,
2224021,IZ4YMS,Angelo Pantano,Angelo,Rimini,Emilia-Romagna,Italy,
@@ -6075,7 +6261,11 @@
2224145,IW4CEZ,Giorgio Roffi,Iw4cez,Piacenza,Emilia-Romagna,Italy,
2224146,IU4DTB,GIANLUCA DELLAPINA,GIANLUCA,Parma,Emilia-Romagna,Italy,
2224147,IK4JOD,Enrico Mordini,Enrico,Misano Adriatico,Emilia-Romagna,Italy,
-2224148,I4ZQS,Stefano ,,Coriano,Emilia-Romagna,Italy,
+2224148,I4ZQS,Stefano Muccini,Steve,Coriano,Emilia-Romagna,Italy,
+2224149,IK4LDZ,CLAUDIO GHERARDI,IK4LDZ,MISANO ADRIATICO,Emilia-Romagna,Italy,
+2224150,I4KYO,Giorgio Cavicchioli,Giocav,Carpi,Emilia-Romagna,Italy,
+2224151,IU4HMZ,Massimiliano Fiorillo,Massimiliano,FERRARA,Emilia-Romagna,Italy,
+2224152,IU4AOY,Davide Piazzi,Dade81fe (Iu4aoy),Ferrara,Emilia-Romagna,Italy,
2225001,IZ5IOM,Renzo ,Renzo,Quarrata,Tuscany,Italy,Portable
2225002,IZ5HRO,Emanuele ,Emanuele,Pistoia,Tuscany,Italy,Portable
2225003,IZ5YLV,Valentina ,Valentina,Pistoia,Tuscany,Italy,Portable
@@ -6202,7 +6392,11 @@
2225124,IZ5ULW,SERGIO SIMONI,SERGIO,Prato,Tuscany,Italy,
2225125,IZ5BIT,Giorgio Di paola,Giorgio,Livorno,Tuscany,Italy,
2225126,IU5HLG,Giovanni Storai,Gix,Prato,Tuscany,Italy,
-2225127,IZ5IYM,Massimo ,,Selvena,Tuscany,Italy,
+2225127,IZ5IYM,Massimo Scevoli,Max,Selvena,Tuscany,Italy,
+2225128,I5BAZ,Paolo Renzo Bellandi,I5BAZ,Prato,Tuscany,Italy,
+2225129,IU5HIW,Nino Gualdoni,Moooose,Castelnuovo berarden,Tuscany,Italy,
+2225130,IU5HTN,Paolo Pasquali,IU5HTN,Lastra a signa,Tuscany,Italy,
+2225131,IK5QQB,Riccardo Attina,IK5QQB,Monsummano Terme,Tuscany,Italy,
2226001,IZ6FGP,Mario ,Mario,Ortona,Abruzzo,Italy,Portable
2226002,IK6TTE,Plinio ,Plinio,Casalbordino,Abruzzo,Italy,Portable
2226003,IZ6FGP,Mario ,Mario,Ortona,Abruzzo,Italy,Mobile
@@ -6362,15 +6556,18 @@
2226157,IZ6RYR,Francesco Cerini,Francesco,Ortona,Abruzzo,Italy,
2226158,IZ6SDO,Giovanni Fabbiocchi,Gianni,Teramo,cnty,Italy,
2226159,IU6FOW,Alessandro Angeli,IU6FOW,Montecalvo In Foglia,Marche,Italy,
-2226160,IZ6EJY,Marco ,,Scoppito,Abruzzo,Italy,
+2226160,IZ6EJY,Marco Di Vittorio,Marco,Scoppito,Abruzzo,Italy,
2226161,IK6GBO,Sante Di Prinzio,IK6GBO,Guardiagrele,cnty,Italy,
2226163,IK6TUV,Schioppa Emidio,IK6TUV,Teramo,Abruzzo,Italy,
2226164,IU6EPG,Leo Di Paolo,Iu6epg,Crecchio,cnty,Italy,
-2226165,IU6EAX,Marco ,,Pedaso,Marche,Italy,
-2226166,IU6DWP,Daniele ,,Potenza Picena,Marche,Italy,
-2226167,IU6HKA,Giovanni ,,Pescara,cnty,Italy,
-2226168,IU6DJR,Christian ,,Genga Stazione,Marche,Italy,
-2226169,IZ6YQD,Guido ,,LAquila,Abruzzo,Italy,
+2226165,IU6EAX,Marco Basili,IU6EAX,Pedaso,Marche,Italy,
+2226166,IU6DWP,Daniele Ponziani,IU6DWP,Potenza Picena,Marche,Italy,
+2226167,IU6HKA,Giovanni Mauro,Giovanni,Pescara,cnty,Italy,
+2226168,IU6DJR,Christian Marinelli,Christian,Genga Stazione,Marche,Italy,
+2226169,IZ6YQD,Guido Torelli,IZ6YQD,LAquila,Abruzzo,Italy,
+2226171,IZ6PAF,Marco Angelozzi,Iz6paf,San Giovanni Teatino,Abruzzo,Italy,
+2226172,IU6FOW,Alessandro Angeli,Alex,Montecalvo In Foglia,Marche,Italy,
+2226173,IU6FOP,GIOVANNI PAOLINELLI,GIOVANNI,FANO,Marche,Italy,
2227001,IZ7OIX,Domingo ,Domingo,Bari,Apulia,Italy,Portable
2227002,IZ7GLL,Massimo ,Massimo,Bari,Apulia,Italy,Mobile
2227003,IZ7ZFT,Silvio ,Silvio,Rutigliano,Apulia,Italy,Mobile
@@ -6494,6 +6691,7 @@
2227121,IW7EHF,MICHELE COLAPRICE,MICHELE,Ruvo di puglia,Apulia,Italy,
2227122,IK7SEC,Alessandro Amedeo Bracciolini,Ik7sec,Triggiano - Bari,Apulia,Italy,
2227123,IW7DIG,Claudio Michele Liguori,Claudio Liguori,Neviano (LE),Apulia,Italy,
+2227124,IU7GHD,Pasquale Chiappinelli,Lino,Bari,Apulia,Italy,
2228001,IZ8IYJ,Nicola ,Nicola,Cosenza,Calabria,Italy,Portable
2228002,IW8XQP,Elio ,Elio,Isernia,Molise,Italy,Mobile
2228003,IZ8XSS,Federico ,Federico,Aversa,Campania,Italy,Mobile
@@ -6654,6 +6852,8 @@
2228158,IW8BDB,Fabio Lobascio,Fabio,Napoli,Campania,Italy,
2228159,IZ8TBR,Stefano Paolacci,IZ8TBR,Recale,Campania,Italy,
2228160,IZ8BXM,Roberto Pareto,Roberto,Santagapito,cnty,Italy,
+2228162,IZ8WDZ,Giuseppe Conte,Peppe,S.nicola la strada (,cnty,Italy,
+2228163,IZ8MBT,Claudio ,,Massa Lubrense,Campania,Italy,
2229001,IT9YFO,Andrea ,Andrea,Catania,Sicily,Italy,Mobile
2229002,IT9ZON,Francesco ,Francesco,Catania,Sicily,Italy,Mobile
2229003,IT9UUT,Salvo ,Salvo,Ispica,Sicily,Italy,Portable
@@ -6742,9 +6942,11 @@
2229086,IT9EIK,Agatino daniele Sacco,IT9EIK,Catania,Sicily,Italy,
2229087,IT9SAK,NUNZIO SAMBATARO,NUNZIO,BELPASSO,Sicily,Italy,
2229088,IT9HLC,Luigi Di chiara,Luigi,Palermo,Sicily,Italy,
+2229089,IW9CRG,Antonio agatino Russo,Antonio agatino,Catania,Sicily,Italy,
2229090,IT9GNC,Fabio Beffumo,IT9GNC,Catania,Sicily,Italy,
2229091,IW9HGZ,Giuseppe Raciti,Giuseppe,Catania,Sicily,Italy,
2229092,IT9GQB,Igor Giuffrida,Igor,San Gregorio di Cata,Sicily,Italy,
+2229093,IT9SWH,Alfredo ,,Catania,Sicily,Italy,
2261001,YO3GTS,Dan ,Dan,Bucharest,Bucharest,Romania,Mobile
2262001,YO2LOJ,Marius Petrescu,Marius,Timisoara,Judeul Timi,Romania,
2262002,YO2LIC,Vali Ungur,Vali,Timisoara,Judeul Timi,Romania,
@@ -6754,6 +6956,7 @@
2262006,YO2LOR,Ciprian Florea,Ciprian,Timisoara,Timis,Romania,
2262007,YO2LLQ,Dan Stoian,Dan,Timisoara,Timis,Romania,
2262008,YO2MIZ,Alin Fitu,Alin,Timisoara,Timis,Romania,
+2262009,YO2LOR,Ciprian Florea,Ciprian,Timisoara,Timis,Romania,
2263000,YO3KSR,ASRR ,ASRR,Bucharest,Bucharest,Romania,Mobile
2263001,YO3GTS,Dan ,Dan,Bucharest,Bucharest,Romania,Mobile
2263002,YO3HJV,Adrian ,Adrian,Bucharest,Bucharest,Romania,Mobile
@@ -6818,6 +7021,7 @@
2263061,YO3IXW,Bogdan Handrabura,Bogdan,Bucharest,Judeoul Ilfov,Romania,
2263062,YO3GON,Grososiu Vasile,Grososiu,Bucharest,Judeoul Ilfov,Romania,
2263063,YO3IUV,Cristian Varvas,Cristian,Bucuresti,Bucuresti,Romania,
+2263064,YO3DRK,Radu Oprisan,Radu,Bucuresti,cnty,Romania,
2264001,YO6FWI,Nagy Mihail,Nagy,Brasov,Judeul Braov,Romania,
2264002,YO4FRF,Constantin Benedic,Constantin,Constanta,Judeul Arad,Romania,
2264003,YO4WM,Gabriel Florin Mihaila,Gabi,Braila,Judeoul Timi,Romania,
@@ -6861,6 +7065,8 @@
2266033,YO6OGW,Werner Haraszti,Werner,Targu-Mures,Mures,Romania,
2266034,YO6IGM,GLIGA OVIDIU,GLIGA,Brasov,Brasov,Romania,
2266035,YO6HSH,Attila Covacs,Otty,Sacele,Brasov,Romania,
+2266036,YO6FLW,Arcire Viorel,Arcire,Sf.Gheorghe,Judeul Covasna,Romania,
+2266037,YO6CFB,Laszlo Bako-Szabo,Lacy,Miercurea-Ciuc,Harghita,Romania,
2268001,YO8TEH,Isidor Stirbu,Isidor,Bacau,Bacu County,Romania,
2268002,YO8RCM,Teodor RADU,Teodor,ROMAN,Neamo County,Romania,
2268003,YO8TES,Eduard Tamas,Edy,Bacau,Judeoul Timi,Romania,
@@ -7013,6 +7219,8 @@
2281126,HB9IIV,Beat Monnard,Boby,Porsel,Westschweiz-Sud,Switzerland,
2281127,HB9FPA,Juan Gomez,Juan G,Bouveret,Westschweiz-Sud,Switzerland,
2281128,HB9FWV,Pascal Porchet,Pascal,Villars-Sainte-Croix,Westschweiz-Sud,Switzerland,
+2281129,HB9FT,- -,FeederLine Team,Chotel-St-Denis,Westschweiz-Sud,Switzerland,
+2281130,HB9TON,Jean-Francois Varidel,Jean-Francois,Yvonand,Westschweiz-Sud,Switzerland,
2282001,HB9OOI,Stephan ,Stephan,Grenchen,Solothurn,Switzerland,Portable
2282002,HB9BEI,Bruno Knuchel,Bruno,Taeuffelen,Bern,Switzerland,Portable
2282003,HB9EZV,Michel Perrenoud,Michel,La Neuveville,Westschweiz-Nord,Switzerland,
@@ -7030,6 +7238,7 @@
2282015,HB9EZV,Michel Perrenoud,Mike,La Neuveville,Westschweiz-Nord,Switzerland,
2282016,HB3YPD,Serdal Oeztuerk,Serdal,Pieterln,Westschweiz-Nord,Switzerland,
2282017,HB9FSL,Marius Lehenne,Kinet,Le locle,Westschweiz-Nord,Switzerland,
+2282018,HB9SMU,Boldt Pedro,Pierre,Fretereules,Westschweiz-Nord,Switzerland,
2283000,HB9DUU,Christian ,,Ringgenberg,Interlaken,Switzerland,Portable#1
2283001,HB9DUU,Christian ,Christian,Ringgenberg,Interlaken,Switzerland,Portable#2
2283002,HB9DUU,Christian ,Christian,Ringgenberg,Interlaken,Switzerland,Mobile
@@ -7140,6 +7349,8 @@
2283107,HB9FIV,Markus Gasser,Markus,Hettiswil,Bern und Oberwallis,Switzerland,
2283108,HB9UVW,Daniel Schuler,Daniel,Zermatt,Bern und Oberwallis,Switzerland,
2283109,HB9DIA,Rudolf Wyss,Rudolf,Thun,Bern und Oberwallis,Switzerland,
+2283110,HB9EKB,Jonathan Kobel,Jonathan,Rubigen,Bern und Oberwallis,Switzerland,
+2283111,HB9JAM,Swiss JOTA,HB9JAM,Bern,Bern und Oberwallis,Switzerland,
2283200,HB9F, ,,Bern,Bern und Umgebung,Switzerland,Club
2284001,HB9EMQ,Andy ,Andy,Oberbuchsitten,Olten,Switzerland,Portable #1
2284002,HB9EMQ,Andy ,Andy,Oberbuchsitten,Olten,Switzerland,Mobile #1
@@ -7254,6 +7465,9 @@
2284111,HB3YZK,Fabian Biagini,Fabian,Langendorf,Basel/Solothurn,Switzerland,
2284112,HB9FZO,Christoph Ratavaara,Chrach,Liestal,Basel/Solothurn,Switzerland,
2284113,HB9COP,Fritz Spycher,Fritz,Rothrist,Basel/Solothurn,Switzerland,
+2284114,HB9NFB,Tom Braendle,Clubstation NFB,Reinach,Basel/Solothurn,Switzerland,
+2284115,HB9FRQ,German Geisslinger,German,Moehlin,Basel/Solothurn,Switzerland,
+2284116,HB9DLF,Sergio Quirici,Sergio,Oftringen,Basel/Solothurn,Switzerland,
2285001,HB9CNT,Paul ,Paul,Untersiggenthal,Baden,Switzerland,Portable#1
2285002,HB9CNT,Paul ,Paul,Untersiggenthal,Baden,Switzerland,Portable#2
2285003,HB9CNT,Paul ,Paul,Untersiggenthal,Baden,Switzerland,Mobil
@@ -7420,6 +7634,8 @@
2286129,HB9GHU,Francesca Meli,Francesca,Castel San Pietro,Zentralschweiz und T,Switzerland,
2286130,HB3YRZ,Renzo Merelli,Renzo,Prosito,Zentralschweiz und T,Switzerland,
2286131,HB9FKL,Claudia Fava,Claudia,Lugano,Zentralschweiz und T,Switzerland,
+2286132,HB9ODI,Rolf Gasser,Rolf,Riva San Vitale / Ti,Zentralschweiz und T,Switzerland,
+2286133,HB9ODK,Manuel Donati,Melindo,Pianezzo,Zentralschweiz und T,Switzerland,
2287001,HB9FPO,Stefano ,Stefano,Poschiavo,Graubuenden,Switzerland,
2287002,HB9HAN,Roland Peter,Roland,Sargans,Graubuenden,Switzerland,
2287003,HB9FPO,Stefano Foppoli,Stefano,Poschiavo,Graubuenden,Switzerland,
@@ -7440,6 +7656,7 @@
2287018,HB9ADC,Jack Polinelli,Jack,Felsberg,Graubuenden,Switzerland,
2287019,HB9HAT,Mario Pasini,Mario,St. Moritz,Graubuenden,Switzerland,
2287020,HB9MAD,Fabio Rossi,Fabio,San Bernardino,Zentralschweiz und T,Switzerland,
+2287021,HB9TVL,Ralph Potztal,Ralph,Bad Ragaz,Graubuenden,Switzerland,
2288001,HB3YEJ,Andreas ,Andreas,Schleitheim,Schaffhausen,Switzerland,Portable#1
2288002,HB9WOF,Reto ,Reto,Winterthur,Winterthur,Switzerland,Portable#1
2288003,HB9WOF,Reto ,Reto,Winterthur,Winterthur,Switzerland,Mobile#1
@@ -7596,6 +7813,9 @@
2288154,HB9CAC,Konrad Bruetsch,Konrad,Thayngen,Zuerich und Thurgau,Switzerland,
2288155,HB9DUF,Christoph Baer,Christoph,Bachenbuelach,Zuerich und Thurgau,Switzerland,
2288156,HB9DNI,Stefano Pranzo,Stefano,Langnau am Albis,Zuerich und Thurgau,Switzerland,
+2288157,HB3YDP,Mike Patthey,Mike,Oberglatt,Zuerich und Thurgau,Switzerland,
+2288158,HB9LDA,Hansjoerg Bachmann,Hansjoerg,Bauma,Zuerich und Thurgau,Switzerland,
+2288159,HB9JNH,Markus Zimmermann,Markus,Aadorf,Zuerich und Thurgau,Switzerland,
2288542,HB9ANF,Hans-Joerg Spring,Hans-Joerg,Wiesendangen,Zuerich und Thurgau,Switzerland,
2288822,HB9SDB,Rolf Tschumi,Rolf,Waedenswil,Zuerich und Thurgau,Switzerland,
2288867,HB9BXQ,Renato Schlittler,Renato,Zuerich,Zuerich und Thurgau,Switzerland,
@@ -7689,6 +7909,7 @@
2301058,OK3MD,David Miklas,David,Prague,cnty,Czech Republic,
2301059,OK1JPQ,Tomas Privratsky,Tomas,Praha 4,cnty,Czech Republic,
2301060,OK1DBE,Daniel Cermak,Dan,Hostivice,cnty,Czech Republic,
+2301061,OK1OO,Pavel Zelezo,Pavel,Sestajovice,Stredocesky,Czech Republic,
2302001,OK8APJ,Torsten Schlegel,Torsten,Marianske Lazne,Karlovy Vary Region,Czech Republic,
2302002,OK1BLG,Peter Krissak,Peter,Rokycany,Plze Region,Czech Republic,
2302003,OK1VHB,Martin Cerny,Martin,Psek,Jihocesky,Czech Republic,
@@ -7812,7 +8033,7 @@
2312005,OM1ACL,Robert Kucera,Robert,Sekule,Trnava Region,Slovakia,
2312006,OM4ABC,Martin Kurpel,Martin,Trencin,Trenciansky,Slovakia,
2312007,OM4AVB,Jozef Kulich,Jossi,Trencin,Trenciansky,Slovakia,
-2312008,OM4AMZ,Marcel ,Marcel,Motesice,Trenciansky,Slovakia,
+2312008,OM4AMZ,Marcel Zeravik,Marcel,Motesice,Trenciansky,Slovakia,
2313001,OM6AXE,Jan Majoros,Jan,Zilina,ilina Region,Slovakia,
2313002,OM6ADQ,Erik Nagy,Erik,Zilina,ilina Region,Slovakia,
2313003,OM7TW,Dusan Buda,Dusan,Banska Bystrica,Banskobystricky,Slovakia,
@@ -7839,6 +8060,7 @@
2314015,OM0RW,Eduard Bovan,Ed,Snina,Presovsky,Slovakia,
2314016,OM8AFR,Frantisek Rechka,Frankie,Kosice,Kosicky,Slovakia,
2314017,OM8FT,Jaroslav Stehlik,Stehlo,Medzev,Kosicky,Slovakia,
+2314018,OM8AGG,Gustav Gergely,Gusto,Koiice,Kosicky,Slovakia,
2320001,DG1HT,Torsten ,,Hamburg,,Germany,
2320010,OE1XAR,Datengateway ,Datengateway,Wien,Wien,Austria,Mobile
2321001,OE1KBC,Kurt ,Kurt,Wien,Wien,Austria,Portable#1
@@ -8079,6 +8301,8 @@
2323092,OE3MTB,Manuel Strobl,Manue,St. Poelten,Niederoesterreich,Oesterreich/Austria,
2323093,OE3RNA,Rene Nykodem,Rene,Gaming,Niederoesterreich,Oesterreich/Austria,
2323094,OE3JJS,Josef Jahn,Josef,Boeheimkirchen,Niederoesterreich,Oesterreich/Austria,
+2323095,OE3LOA,Andreas Loetsch,Andreas,Berndorf,Niederoesterreich,Oesterreich/Austria,
+2323096,OE3MBU,Marcus Bednar,Marcus,Langenzersdorf,Niederoesterreich,Oesterreich/Austria,
2323101,OE3GRU,Gerhard ,Gerhard,Guenselsdorf,Niederoesterreich,Austria,Portable
2323102,OE3BOB,Robert ,Robert,Baden,Niederoesterreich,Austria,Portable
2323103,OE3EHS,Ernst ,Ernst,Enzesfeld,Niederoesterreich,Austria,Portable
@@ -8271,6 +8495,7 @@
2326040,OE6WWG,Siegfried Werlitsch,Siegi,Graz,Steiermark,Oesterreich/Austria,
2326041,OE6EMF,Thomas ,Thomas,Hartberg,Steiermark,Austria,Portable
2326042,OE6KSE,Kurt Schubert,Kurt,Kalsdorf bei Graz,Steiermark,Oesterreich/Austria,
+2326043,OE6MGG,Gerald Meister,Gerald,Graz,Steiermark,Oesterreich/Austria,
2326051,OE6DJG,Dieter ,Dieter,Kainbach,Steiermark,Austria,Portable#1
2326052,OE6DJG,Dieter ,Dieter,Kainbach,Steiermark,Austria,Mobile
2326053,OE6WTF,Christian ,Christian,Birkfeld,Steiermark,Austria,Portable
@@ -8401,6 +8626,8 @@
2327090,OE7GPI,Gerhard Petzl,Gerry,Innsbruck,Tirol,Oesterreich/Austria,
2327091,OE7DHT,Hermann Daum,Hermann,Fuegen,Tirol,Oesterreich/Austria,
2327092,OE7EAJ,Reinhart Walter,Reini,Schwaz,Tirol,Oesterreich/Austria,
+2327093,OE7XTR,Michael Koller,Michael,Landeck,Tirol,Oesterreich/Austria,
+2327094,OE7LMT,Hans Stoeckl,Hans,Hippach,Tirol,Oesterreich/Austria,
2327101,OE7ANH,Alois ,Alois,Wiesing,Tirol,Austria,Portable
2327102,OE7ANH,Alois ,Alois,Wiesing,Tirol,Austria,Mobile
2327141,OE7ERJ,Erwin ,Erwin,Zams,Tirol,Austria,Portable
@@ -8531,8 +8758,6 @@
2329055,OE9VMR,Markus Riedesser,Markus,Bregenz,Vorarlberg,Oesterreich/Austria,
2329056,OE9DEV,Dominique Eberle,Dominique,Lauterach,Vorarlberg,Oesterreich/Austria,
2329057,OE9TNT,Wilfried Mollina,OE9TNT,Bregenz,Vorarlberg,Oesterreich/Austria,
-2340001,G0RDI,Iain Philipps,Iain,Pointon,,,
-2340002,G8SJP,Iain ,Iain,Aylesbury,,United Kingdom,
2341001,M0ADI,Iain Philipps,Iain,Bourne,England,United Kingdom,
2341002,G4NEY,Jonathan Jarvis,Jonathan,Cambridge,England,United Kingdom,
2341003,M6NAE,NEIL RYDINGS,NEIL,Manchester,England,United Kingdom,
@@ -9626,7 +9851,7 @@
2342091,M6WJD,William Sparrow,Jim,Lincoln,England,United Kingdom,
2342092,G1BIA,Harold Wilmshurst,Harold,Darlington,England,United Kingdom,
2342093,M3KKI,Rod Young,Rodrossuk,Rossendale,England,United Kingdom,
-2342094,M6RPV,Rob Connolly,Rob,Coventry,England,United Kingdom,
+2342094,2E0TSP,Rob Connolly,Rob,Coventry,England,United Kingdom,
2342095,M3BJR,Brian Reynolds,Brian,Higham Ferrers,England,United Kingdom,
2342096,M0NOC,Paul Bolton,M0NOC,Ipswich,England,United Kingdom,
2342097,G8KHF,John Dove,Engineer,Daventry,England,United Kingdom,
@@ -10025,14 +10250,17 @@
2342491,MB6INW,Frank Taylor,Frank,North Wingfield,England,United Kingdom,
2342492,M0WBK,Wayne Knapp,Wayne,Shoeburyness,England,United Kingdom,
2342493,M0HZQ,Grzegorz Maciejewski,Greg,London,England,United Kingdom,
+2342494,2E0DQD,Paul ,,Dewsbury,England,United Kingdom,
2342495,2E0ELW,Elwyn York,Elwyn,Coventry,England,United Kingdom,
2342496,G6MNB,Mark Bulmer,G6MNB,Hale, Cheshire,England,United Kingdom,
2342497,G0RNB,Neil Brooks,Wappy,Sheffield,England,United Kingdom,
+2342498,G7HID,Mike ,,Slough,England,United Kingdom,
2342499,M6RNZ,Richard Baldwin,Ghostwarrior,Essex,England,United Kingdom,
2342500,G6BRH,Melvin Kendall,BADARS,Braintree,England,United Kingdom,
2342501,M6HGR,Steven Yardley,Stizz,Manchester,England,United Kingdom,
2342502,G7CKX,Martin Steele,MartinS,Stoke On Trent,England,United Kingdom,
2342503,M3GFO,NIGEL FOX,NIDGE,DONCASTER,England,United Kingdom,
+2342504,2E0XVX,Mick ,,Market Harborough,England,United Kingdom,
2342505,MB6PF,Paul Foster Foster,Paul Foster,Liverpool,England,United Kingdom,
2342506,G0HPZ,Frank Derbyshire,Biker,Oldham,England,United Kingdom,
2342507,G7DNT,Keith Handscombe,Keith,Ipswich,England,United Kingdom,
@@ -10050,7 +10278,7 @@
2342519,M0RYN,Ryan Ogden,Ry,Manchester,England,United Kingdom,
2342520,G1FRM,Robert Doughty,Bob,Wisbech,England,United Kingdom,
2342521,G0IAG,Anthony King,Tony,Peterborough,England,United Kingdom,
-2342522,M6BYS,Adrian ,,South Normanton,England,United Kingdom,
+2342522,M6BYS,Adrian Marriott,Adi,South Normanton,England,United Kingdom,
2342523,G8CRZ,Paul Hunt,Paul,Bournemouth,England,United Kingdom,
2342524,G7ORT,Derek Buckley,Starman,Birmingham,England,United Kingdom,
2342525,M6USL,Joe Dossantos,Joe90,Bolton,England,United Kingdom,
@@ -10064,10 +10292,10 @@
2342533,2E0JPM,James Monahan,James,Reading,England,United Kingdom,
2342534,G1FNS,Brian Cutts,Brianc,Sandhurst,England,United Kingdom,
2342535,M6RHJ,Jason Anderson,Jason,Hartlepool,England,United Kingdom,
-2342536,G7IXO,Paul ,,Shirebrook,England,United Kingdom,
+2342536,G7IXO,Paul Stephenson,Chris,Shirebrook,England,United Kingdom,
2342537,G7TCW,Christopher Haslewood,Chrish,Cannock,England,United Kingdom,
2342538,G1CVR,David Paine,G1cvr,Burnley,England,United Kingdom,
-2342539,2E0KGX,Jon ,,Worthing,England,United Kingdom,
+2342539,2E0KGX,Jon Gibbs,Jon,Worthing,England,United Kingdom,
2342540,M6AWT,Christian Markland,Chris,Manchester,England,United Kingdom,
2342541,G6EUY,William Shadwell,Radioman,Peterborough,England,United Kingdom,
2342542,G4GQL,Alan Schiffman,Alan,London,England,United Kingdom,
@@ -10075,8 +10303,10 @@
2342544,M0MLY,John Malley,M0MLY,Seaton Delaval,England,United Kingdom,
2342545,G8MFI,Stephen McGuigan,Steve,Maidstone,England,United Kingdom,
2342546,M6VMR,Martin Roberts,Jab,Brighton,England,United Kingdom,
+2342547,M0KYW,Manuel Ferreira,MF,Leicester,England,United Kingdom,
2342548,2E0SIB,Darren Sibley,Darren,Leighton Buzzard,England,United Kingdom,
2342549,2E0DZT,John Emery,John,Combe St Nicholas,England,United Kingdom,
+2342550,M5DZH,Jonathan Lynch,Jon,Manchester,England,United Kingdom,
2342551,M6HPJ,Jason Dodds,Jay,Uttoxeter,England,United Kingdom,
2342552,M6KTP,Tony Purnell,Tiny,Deepcar,England,United Kingdom,
2342553,G0STF,Tom Clements,Tom,Liverpool,England,United Kingdom,
@@ -10086,6 +10316,7 @@
2342557,M0MRI,Andrew Titmus,M0MRI,Worthing,England,United Kingdom,
2342558,2E0FCC,Dave Stockton,Dave,Cheshire,England,United Kingdom,
2342559,G0CDB,John May,John,PAIGNTON,England,United Kingdom,
+2342560,G4BIP,Brian Hardy,Brian,Hemel Hempstead,England,United Kingdom,
2342561,M6KEY,Dean Hughes,M6KEY,Staffordshire,England,United Kingdom,
2342562,M6LFP,PETER KOZLOWSKI,Radioman75,Grimsby,England,United Kingdom,
2342563,G0WLG,PAUL BLIZZARD,PAUL,MALVERN,England,United Kingdom,
@@ -10098,17 +10329,23 @@
2342570,M6UKW,Jerry Waldo k,Jerry,Cambridge,England,United Kingdom,
2342571,M0ECB,KEN GAUL,KEN,CHESTER,England,United Kingdom,
2342572,M3JUX,Clifford Quilter,Clifford,London,England,United Kingdom,
+2342573,G0VHT,Paul Morrison,Paul,Windsor,England,United Kingdom,
2342574,G4HLF,Paul Westwell,G4HLF,Bracknell,England,United Kingdom,
+2342575,2E0TSP,Rob ,,Coventry,England,United Kingdom,
+2342576,G0TNC,George ,,Sittingbourne,England,United Kingdom,
2342577,G7BRV,Mark Hackett,Mark,Bognor Regis,England,United Kingdom,
2342578,M1BWN,STEVE JARRETT,STEVE,CHELMSFORD,England,United Kingdom,
2342579,2E1MPC,Michael Clewes,Michael,Stoke on trent,England,United Kingdom,
2342580,M0OYG,Brian Nuttall,Brian,Blackpool,England,United Kingdom,
2342581,G4BUD,Barry Underwood,Baz,Warwick,England,United Kingdom,
+2342582,2E0ONV,John ,John,Minehead,England,United Kingdom,
2342583,M3EEY,Chris Hall,Chris,Leeds,England,United Kingdom,
2342584,G0IBD,Dave Ball,Dave,Dudley,England,United Kingdom,
2342585,2E0ZPM,Christopher Williams,Christopher,Southam,England,United Kingdom,
2342586,G6AIO,Philip Hillier,Phil,Norwich,England,United Kingdom,
2342587,G0MDV,Mark Bellas,Mark,Penrith,England,United Kingdom,
+2342588,G1FGB,Colin ,,Wokingham,England,United Kingdom,
+2342589,G7VRI,Jon ,,Glossop,England,United Kingdom,
2342590,G2DGB,George Short,George,Dorchester,England,United Kingdom,
2342591,M6TRW,Tom Wheatley,Tractor tom,Nottinghamshire,England,United Kingdom,
2342592,2E0PDP,JOHN ,,COVENTRY,England,United Kingdom,
@@ -10136,29 +10373,69 @@
2342618,G6BD,Martin Farmer,Martin,Lincoln,England,United Kingdom,
2342619,G1WVS,Peter Gibson,Gibby,Daventry,England,United Kingdom,
2342621,M5ZAP,Andrew Morgan,Andy,Coventry,England,United Kingdom,
-2342622,G7FSC,Keith John ,,Nuneaton,England,United Kingdom,
-2342624,G1ONV,Robert ,,Minehead,England,United Kingdom,
-2342625,M0EBX,Matt ,,Haslemere,England,United Kingdom,
-2342626,G6VOV,Richard ,,North Walsham,England,United Kingdom,
-2342629,G4HZN,Terence ,,Doncaster,England,United Kingdom,
-2342632,M0GWI,Stephen ,,St Leonards on Sea,England,United Kingdom,
-2342633,2E1PAW,Paul ,,Essex,England,United Kingdom,
-2342634,2E1WEB,Christopher ,,Cambridge,England,United Kingdom,
-2342635,M0ZZM,Raul ,,London,England,United Kingdom,
-2342636,2E1GQX,Andrew ,,Chippenham,England,United Kingdom,
-2342637,M0LJP,Lawrence ,,Birmingham,England,United Kingdom,
-2342638,G0BEQ,Andrew ,,South Cerney,England,United Kingdom,
-2342639,M0MTD,TONY ,,ROTHERHAM,England,United Kingdom,
-2342640,M6NOV,Tom ,,Blackpool,England,United Kingdom,
-2342641,M6HVM,Paul ,,Ollerton,England,United Kingdom,
-2342642,M6FWV,Roger ,,Hayle,England,United Kingdom,
-2342643,2E0AAI,David ,,Cofton Hackett,England,United Kingdom,
-2342644,2E0RRC,Richard ,,Coventry,England,United Kingdom,
-2342646,M3ZND,Steven ,,Manchester,England,United Kingdom,
-2342647,2E0KMK,Keith ,,Nottingham,England,United Kingdom,
-2342648,G6SPC,Mark ,,Cambridge,England,United Kingdom,
-2342649,M0BOX,Simone ,,Cambridge,England,United Kingdom,
-2342650,G0DUU,Christopher ,,Bristol,England,United Kingdom,
+2342622,G7FSC,Keith John Davis,Keith John,Nuneaton,England,United Kingdom,
+2342624,G1ONV,Robert Bonar,Bob,Minehead,England,United Kingdom,
+2342625,M0EBX,Matt Tween,Matt,Haslemere,England,United Kingdom,
+2342626,G6VOV,Richard Leavold,Richard,North Walsham,England,United Kingdom,
+2342629,G4HZN,Terence Lockwood,Terry,Doncaster,England,United Kingdom,
+2342632,M0GWI,Stephen Hill,Stephen,St Leonards on Sea,England,United Kingdom,
+2342633,2E1PAW,Paul Woodward,Woody,Essex,England,United Kingdom,
+2342634,2E1WEB,Christopher WEBB,Christopher,Cambridge,England,United Kingdom,
+2342635,M0ZZM,Raul Di Calisto,M0ZZM,London,England,United Kingdom,
+2342636,2E1GQX,Andrew Henly,Andy,Chippenham,England,United Kingdom,
+2342637,M0LJP,Lawrence Phillips,Jem,Birmingham,England,United Kingdom,
+2342638,G0BEQ,Andrew Taylor,Andy,South Cerney,England,United Kingdom,
+2342639,M0MTD,TONY DAVIDSON,M0MTD,ROTHERHAM,England,United Kingdom,
+2342640,M6NOV,Tom McGowan,TM1,Blackpool,England,United Kingdom,
+2342641,M6HVM,Paul Ashton,Paul,Ollerton,England,United Kingdom,
+2342642,M6FWV,Roger Sage,Kernow rog,Hayle,England,United Kingdom,
+2342643,2E0AAI,David Simmons,Blakey37,Cofton Hackett,England,United Kingdom,
+2342644,2E0RRC,Richard Wilson,Dave Wilson,Coventry,England,United Kingdom,
+2342646,M3ZND,Steven Hunter,Hunter0161,Manchester,England,United Kingdom,
+2342647,2E0KMK,Keith Key,Keith,Nottingham,England,United Kingdom,
+2342648,G6SPC,Mark Challis,Landy,Cambridge,England,United Kingdom,
+2342649,M0BOX,Simone Wilson,BOX,Cambridge,England,United Kingdom,
+2342650,G0DUU,Christopher Banks,Christopher,Bristol,England,United Kingdom,
+2342653,G6LGR,Alan Picot,Alanp,Orpington,England,United Kingdom,
+2342654,M1TLK,Robert Sanderson,Andy,Milton Keynes,England,United Kingdom,
+2342656,G1KHH,Harry Mosley,Harry,Nottingham,England,United Kingdom,
+2342657,G6PRL,DENNIS BROWN,HOVIS,CAMBRIDGESHIRE,England,United Kingdom,
+2342658,M6LYY,Andy Allgood,Andy,Chatteris,England,United Kingdom,
+2342659,M6GTD,Dave Garratt,M6GTD,Walsall,England,United Kingdom,
+2342660,G0EQE,David Cunningham,Dave,Wirral,England,United Kingdom,
+2342661,M6XTM,TRISTAN TRISTAN,TRISTAN,BATH,England,United Kingdom,
+2342662,M0CNL,Paul Glover,M0CNL,Clacton on sea,England,United Kingdom,
+2342663,M6WYX,Neil Soane,Neil S,Burgess Hill,England,United Kingdom,
+2342664,G4EHN,Julian Axe,Julian,London,England,United Kingdom,
+2342665,M6NBP,Norman ,,Brighton,England,United Kingdom,
+2342666,G7DSU,Chris Tong,Chris,ROCHESTER,England,United Kingdom,
+2342667,G0USL,Mark Orchard,BlueGoblin,Cheltenham,England,United Kingdom,
+2342669,G8JGU,Raymond Hallam,Ray,Wigan,England,United Kingdom,
+2342670,G0PJO,Martin Waller,Martin,Ipswich,England,United Kingdom,
+2342671,M6GTE,Graham Tomkns,Tommo,Orpington,England,United Kingdom,
+2342672,M6CRE,Cyril Etches,Cyril,Boston,England,United Kingdom,
+2342674,M6LMT,Gary Wilson,Gary,London,England,United Kingdom,
+2342675,G7EQM,Nick Buckley,Nick,Banbury,England,United Kingdom,
+2342676,M1AJB,Alex Bloor,Alex,Westerham,England,United Kingdom,
+2342677,G0AJJ,Linda Leavold,Linda,North Walsham,England,United Kingdom,
+2342678,M6GRH,GRAHAM HOOPER,GRAHAM,ORPINGTON,England,United Kingdom,
+2342679,G4CMT,Raywell Park Scouts C/o Andy G0VRM,Raywell Park Scouts,North Newbald,England,United Kingdom,
+2342680,M0TRY,Robert Barnes,Rob,Derby,England,United Kingdom,
+2342681,M0DYA,Oliver Haselden,Ollie,Southampton,England,United Kingdom,
+2342682,G7MEX,James Saiger,James,Doncaster,England,United Kingdom,
+2342683,G7WBE,Denis Welch,Denis,Yeovil,England,United Kingdom,
+2342684,M0XXJ,Jonathan Creaser,Jcreaser,HOUNSLOW,England,United Kingdom,
+2342685,M6GPM,Gary Mayell,Six Inch Legs,Grays,England,United Kingdom,
+2342686,M1CGI,Andrew Fishwick,Andrew,Heapey/Chorley,England,United Kingdom,
+2342687,M3HQG,Richard Coates,RichC,Birmingham,England,United Kingdom,
+2342688,2E1EXP,Catherine Staerck,Cath,Worksop,England,United Kingdom,
+2342689,G7THI,Frank Gillespie,Frank,Appleby,England,United Kingdom,
+2342690,G7RZU,Simon ,,Worthing,England,United Kingdom,
+2342691,2E0VTT,John ,,Bristol,England,United Kingdom,
+2342692,G6IBQ,Stephen ,,Lincoln,England,United Kingdom,
+2342693,G4FCN,Colin ,,Ipplepen,England,United Kingdom,
+2342696,G4KXG,Ken ,,Kettering,England,United Kingdom,
+2342697,G0CBM,Charles ,,Sutton on Sea,England,United Kingdom,
2351001,G0PRF,John ,John,Huddersfield,West Yorkshire,United Kingdom,Portable
2351002,G0PRF,John Goodwin ,,Huddersfield,West Yorkshire,United Kingdom,Mobile
2351003,G7LWT,Darren ,Darren,Manchester,North West England,United Kingdom,Portable #1
@@ -11734,7 +12011,7 @@
2352574,G6HMF,Roger Venison,Roger,Bedford,England,United Kingdom,
2352575,M6OAS,Les Rowlands,Les,Clevedon,England,United Kingdom,
2352576,M0KJA,Keith Anderson,Keith,Maidstone,England,United Kingdom,
-2352577,G0GGU,Steven Anstey,Steven,Northampton,England,United Kingdom,
+2352577,G0GGU,Steve Anstey,Steve,Northampton,,United Kingdom,
2352578,G3ZXZ,Martin Stokes,Martin,Mirfield,England,United Kingdom,
2352579,M6RNI,Robert Hillier,Robert,Folkestone,England,United Kingdom,
2352580,G6LUU,Alan Marshall,Alan,Berkhamsted,England,United Kingdom,
@@ -12009,7 +12286,7 @@
2352849,M0HPP,Gerard Fleming,Gerard,Leeds,England,United Kingdom,
2352850,G0FEA,Keith Hotchkiss,Keith,Mendlesham,England,United Kingdom,
2352851,G7VHJ,Pete Gow,Pete,Gloucester,England,United Kingdom,
-2352852,2E0FEI,Bill Darvill,William,Northampton,,United Kingdom,
+2352852,2E0FEI,Bill Darvill,Bill,Northampton,,United Kingdom,
2352853,G6MJQ,Adrian Peake,Adrian,Leicester,England,United Kingdom,
2352854,M0XBE,Carl Leake,Carl,Taverham,England,United Kingdom,
2352855,G4HFG,Graham Eckersall,Graham,Oldham,England,United Kingdom,
@@ -12386,10 +12663,13 @@
2353231,MW0VTK,John Martin,John,Tal Y Bont,Wales,United Kingdom,
2353232,MW6XGD,Gareth Jukes,Gary,Cardiff,Wales,United Kingdom,
2353233,2W1EPO,Francis Hodge,Stuttera,Rhyl,denbighshire,Wales,United Kingdom,
-2353235,2W0PJM,Philip ,,Ruthin,Wales,United Kingdom,
-2353236,GW7SSN,Nigel ,,Cwmbran,Wales,United Kingdom,
-2353238,MW0DSV,Roland ,,PEmbroke,Wales,United Kingdom,
-2353239,GW0PYN,Charles ,Charles,Rhyl denbighshire,Wales,United Kingdom,
+2353235,2W0PJM,Philip Mclaren,Phil,Ruthin,Wales,United Kingdom,
+2353236,GW7SSN,Nigel Cole,Nigel,Cwmbran,Wales,United Kingdom,
+2353238,MW0DSV,Roland Price,Roland,PEmbroke,Wales,United Kingdom,
+2353239,GW0PYN,Charles Rogers,Charles,Rhyl denbighshire,Wales,United Kingdom,
+2353240,MW0KEQ,KEVIN MOGFORD,MOGGY,Newport,Wales,United Kingdom,
+2353241,MB6BA,Dave Thomas,Dave Thomas,Barry,Wales,United Kingdom,
+2353243,MW0GUK,George ,,Abergavenny,Wales,United Kingdom,
2354001,MM0MBK,Mark ,Mark,Cairneyhill,Scotland,United Kingdom,Base
2354002,MM0MBK,Mark ,Mark,Cairneyhill,Scotland,United Kingdom,Mobile
2354003,MM0MBK,Mark ,Mark,Cairneyhill,Scotland,United Kingdom,Portable
@@ -12584,9 +12864,9 @@
2354195,GM8DKB,Eric Taynton,Eric,Edinburgh,Scotland,United Kingdom,
2354196,2M0KNY,Kenny Macrae,Kenny,Glasgow,Scotland,United Kingdom,
2354197,MM6BYJ,Marcin Stypka,Marcin,EDINBURGH,Scotland,United Kingdom,
-2354198,MM0CXA,Andy ,,Forfar,Scotland,United Kingdom,
-2354199,MM6IPO,Paddy ,,Glasgow,Scotland,United Kingdom,
-2354200,MM6CHM,Robert ,,Glasgow,Scotland,United Kingdom,
+2354198,MM0CXA,Andy Burns,Andy,Forfar,Scotland,United Kingdom,
+2354199,MM6IPO,Paddy OHara,Paddy,Glasgow,Scotland,United Kingdom,
+2354200,MM6CHM,Robert Russell,Cyrus,Glasgow,Scotland,United Kingdom,
2355001,MI3WWF,Mark ,Mark,Bangor,Northern Ireland,United Kingdom,
2355002,GI8VKA,Roy Coulter,Roy,Ballynure,Northern Ireland,United Kingdom,
2355003,MI0AAZ,John Anderson,John,Kilrea, Coleraine,Northern Ireland,United Kingdom,
@@ -12840,7 +13120,8 @@
2355251,MI6XBA,Thomas Agnew,Hugh,Larne,Northern Ireland,United Kingdom,
2355252,2I0SJV,Dave Parkinson,Big Dave,Moira,Northern Ireland,United Kingdom,
2355253,MI6HQS,William Mckenna,William,Larne,Northern Ireland,United Kingdom,
-2355254,GI4SZW,Michael James ,,Newry,Northern Ireland,United Kingdom,
+2355254,GI4SZW,Michael James Keenan,Seamus GI4SZW,Newry,Northern Ireland,United Kingdom,
+2355256,GI0UTV,Ian Ross,Ian,Belfast,Northern Ireland,United Kingdom,
2356001,GD6XHG,Ed ,Ed,Douglas,Isle of Man,United Kingdom,Portable#1
2356002,GD6XHG,Ed ,Ed,Douglas,Isle of Man,United Kingdom,Portable#2
2356003,GD0NFN,John Butler,John,Isle of Man,Isle of Man,United Kingdom,
@@ -12950,7 +13231,7 @@
2381074,OZ3TL,Torben Larsen,Torben,Hobro,Nordjylland,Denmark,
2381075,OZ3DVM,Ole Andersen,Ole,Aalborg st,Nordjylland,Denmark,
2381076,OZ1FSI,Jens Groenfeldt,Greenbean,Frederikshavn,Nordjylland,Denmark,
-2381077,OZ5PZ,Poul ,,Nibe,Nordjylland,Denmark,
+2381077,OZ5PZ,Poul Rosenbeck,Poul,Nibe,Nordjylland,Denmark,
2382001,OZ6C,Kim ,Kim,Silkeborg,Midtjylland,Denmark,
2382002,OZ1JN,Jesper ,Jesper,Aarhus,Midtjylland,Denmark,
2382003,OZ3HP,Hardy ,Hardy,Aarhus,Midtjylland,Denmark,
@@ -13048,8 +13329,10 @@
2382095,OZ1TSR,Thomas Rasmussen,OZ1TSR - Thomas,Brdstrup,Midtjylland,Denmark,
2382096,OZ7PBI,Peter Bregenov,Peter,Horsens,Midtjylland,Denmark,
2382097,OZ6GA,Soeren Loekkegaard,Soeren,Struer,Midtjylland,Denmark,
+2382098,OZ3PN,Peter Nielsen,Oz3pn peter,Silkeborg,Midtjylland,Denmark,
2382099,OZ1FOJ,Hans Jensen,Hans,Holstebro,Midtjylland,Denmark,
-2382100,OZ3KTE,Kim ,,Silkeborg,Midtjylland,Denmark,
+2382100,OZ3KTE,Kim Espersen,Kim silkeborg,Silkeborg,Midtjylland,Denmark,
+2382101,OZ3FTE,Finn Espersen,Oz3fte finn,Silkeborg,Midtjylland,Denmark,
2383001,OZ1BM,Brian ,Brian,Odense,Syddanmark,Denmark,Portable
2383002,OZ1KFY,Christian ,Christian,Fredericia,Syddanmark,Denmark,
2383003,OZ3DM,Dennis ,Dennis,Haarby,Syddanmark,Denmark,
@@ -13088,7 +13371,7 @@
2383036,OZ3K,Erik Poulsen,Erik,Snder Stenderup,Syddanmark,Denmark,
2383037,OZ1IOM,Allan Thorsen,Allan,Blaavand,Syddanmark,Denmark,
2383038,OZ9DG,Dan Gregersen,Dan,Fredericia,Syddanmark,Denmark,
-2383039,OZ6HQ,Per Posselt,Per,Middelfart,Syddanmark,Denmark,
+2383039,OZ6HQ,Per Rosselt,Per,Middelfart,Syddanmark,Denmark,
2383040,OZ1MSJ,Mark Jaegum,Mark,Odense,Syddanmark,Denmark,
2383041,OZ1KAA,Ivan Kjaer,Ivan,Odense N,Syddanmark,Denmark,
2383042,OZ1HGV,Michael Bigum,Michael,Esbjerg,Syddanmark,Denmark,
@@ -13198,6 +13481,7 @@
2383146,OZ1LXW,Benny Kronborg,OZ1LXW,Kvrndrup,Syddanmark,Denmark,
2383147,OZ1MIC,Michael ,,Frederiksberg,Hovedstaden,Denmark,
2383148,OZ4TE,Frank Tom Henriksen,Frank,Bogense,Syddanmark,Denmark,
+2383149,OZ8OL,Ove Lundvald,Ove,Tommerup St.,Syddanmark,Denmark,
2384001,OZ3MAJ,Martin ,Martin,Herlev,Hovestaden,Denmark,Portable
2384002,OZ3MAJ,Martin ,Martin,Herlev,Hovestaden,Denmark,Mobile
2384003,OZ1BZJ,Michael ,Michael,Sengeloese,Hovestaden,Denmark,Portable
@@ -13412,6 +13696,9 @@
2384212,OZ2JSN,Jackie Smedegaard,Jackie,Jyllinge,Hovedstaden,Denmark,
2384213,OZ1MIC,Michael Wichmann,Michael,Frederiksberg,Hovedstaden,Denmark,
2384214,OZ4LN,Lars rathmann Nielsen,Oz4ln,Kbenhavn s,Hovedstaden,Denmark,
+2384215,OZ7R,Jens Krogh,Jensk,Kbenhavn,Hovedstaden,Denmark,
+2384216,OZ1LET,Bo Weiland,Bo,Jaegerspris,Hovedstaden,Denmark,
+2384217,OZ13JK,Torben Brandstrup,TBP,Kbenhavn S,Hovedstaden,Denmark,
2384400,OZ3MAJ,Martin ,,Herlev,Hovedstaden,Denmark,
2384444,OZ0GC,Gifted Children DK,Gifted Children,Hvidovre,Hovedstaden,Denmark,
2384500,OZ1HWN,Einar T,Einar,Alleroed,Hovedstaden,Denmark,
@@ -13420,7 +13707,7 @@
2385001,OZ5X,Hans ,Hans,Nykoebing,,Denmark,Base
2385002,OZ5X,Hans ,Hans,Nykoebing,Sjaelland,Denmark,Portable
2385003,OZ5X,Hans ,Hans,Nykoebing,Sjaelland,Denmark,Mobile
-2385004,OZ1BCG,Soren ,Soren,Holbaek,,Denmark,
+2385004,OZ1BCG,Soren ,Soren,Holbaek,,Denmark,Portable#1
2385005,OZ1BCG,Soren ,Soren,Holbaek,Sjaelland,Denmark,Mobile#1
2385006,OZ1BCG,Soren ,Soren,Holbaek,Sjaelland,Denmark,Portable#2
2385007,OZ4L,Lars ,Lars,Havdrup,Sjaelland,Denmark,Portable
@@ -13575,9 +13862,11 @@
2385156,OZ1CBW,Peter Andreasen,Peter,Stenloese,Sjaelland,Denmark,
2385157,OZ2SL,Steen Lundsteen,Steen,Ringsted,Sjaelland,Denmark,
2385159,OZ1IOA,Knud Nielsen,Oz1ioa,Vemmelev,Sjaelland,Denmark,
+2385160,OZ1GZZ,Soeren Thornberg Petersen,Soeren,Aalsgaarde,Sjaelland,Denmark,
+2385161,OZ4WOK,Frank ,,Tune,Sjaelland,Denmark,
2385555,OZ3BB,Mogens Johansson,Mogens,Roedby,Sjaelland,Denmark,
2385999,5Q5XX,Hans ,,Nyk Sj,Sjaelland,Denmark,
-2388888,CBRIDGE,CBridgeOZTest HansAndersen,CBrigdeOZ,Vig,Sjaelland,Denmark,
+2388888,CBRIDGE,CBridgeOZTest Parrot,CBrigdeOZ,Vig,Sjaelland,Denmark,
2400001,SM0TSC,Johan ,Johan,Tyresoe,Stockholms Laen,Sweden,Portable#1
2400002,SM0TUI,Jonas ,Jonas,Tyresoe,Stockholms Laen,Sweden,Portable
2400003,SM0SCB,Patrik ,Patrik,Haninge,Stockholms Laen,Sweden,Portable
@@ -13779,8 +14068,11 @@
2400199,SE0P,Per Pahlen,Palle,Upplands Vaesby,Stockholm Laen-B,Sweden,
2400200,SM0IES,Lennart Einarsson,Dioden,Jaerna,Stockholm Laen-B,Sweden,
2400201,SM0RVV,Erik Linder,Erik,Jaerfaella,Stockholm Laen-B,Sweden,
-2400202,SM0VXI,Tobias ,,STOCKHOLM,Stockholm City-A,Sweden,
-2400203,SA0MBA,Mathias ,,Taeby,Stockholm City-A,Sweden,
+2400202,SM0VXI,Tobias Wallin,SM0VXI,STOCKHOLM,Stockholm City-A,Sweden,
+2400203,SA0MBA,Mathias Anefelt,SA0MBA,Taeby,Stockholm City-A,Sweden,
+2400204,SM0YXI,Robert Lind,Rhl,Skogas,New York,Sweden,
+2400205,SG0RPF,Uffe ,,Sigtuna,Stockholm Laen-B,Sweden,
+2400206,SA0FBR,Fredrik ,,Stockholm,Stockholm City-A,Sweden,
2401001,SM6UDU,Marcus ,,Uddevalla,Gotland-I,Sweden,
2402001,SA2CMY,Tomas Isaksson,Tomas,Lulea,Norrbotten,Sweden,
2402002,SA2BNO,Peter Larsson,Peter,Kiruna,Norrbotten County,Sweden,
@@ -13957,6 +14249,7 @@
2404062,SA4BHE,Johan Ekeheien,Johan,Ludvika,cnty,Sweden,
2404063,SG4OUF,Per Helmfridsson,Per,JP70QM,Koppaberg-W,Sweden,
2404064,SA4MDN,Michael Newbury,Mick,Olshammar,Oerebro-T,Sweden,
+2404065,SM4EPR,Mats ,,Lindesberg,Oerebro-T,Sweden,
2405001,SM5OEM,Ronny ,Ronny,Aby,Oestergoetland Laen,Sweden,Portable
2405002,SM5BMK,Anders ,Anders,Torshalla,Soedermanland County,Sweden,
2405003,SM5ULX,Morgan ,Morgan,Eskilstuna,Soedermanland County,Sweden,
@@ -14177,7 +14470,9 @@
2406141,SM6DAS,Per Hjorth,Pelle i Goeteborg,Goeteborg,Goeteborg och Bohus-,Sweden,
2406142,SM6TQB,Jonas Kulneff,Jonas,Tranemo,Aelvborg-P,Sweden,
2406143,SM6GEV,Nils Husberg,SM6GEV,Moelnlycke,Goeteborg och Bohus-,Sweden,
-2406144,SA6CCZ,Niklas ,,Kungaelv,Goeteborg och Bohus-O,Sweden,
+2406144,SA6CCZ,Niklas Goeransson,2080,Kungaelv,Goeteborg och Bohus-,Sweden,
+2406145,SA6AUO,Joergen Andersson,Joergen,VNrgNrda,Aelvborg-P,Sweden,
+2406146,SM6VZU,Mikael Karlander,Mikael,Trollhattan,cnty,Sweden,
2407001,SM7URN,Patrik ,Patrik,Sölvesborg,Blekinge Laen,Sweden,Portable
2407002,SM7URN,Patrik ,Patrik,Sölvesborg,Blekinge Laen,Sweden,Mobile
2407003,SA7BRM,Robert ,Robert,Malmoe,Skane,Sweden,Portabel
@@ -14366,7 +14661,8 @@
2407186,SA7DYK,Anders Nilsson,Gaiadiver,ESLOV,Malmoehus-M,Sweden,
2407187,SM7MBD,Bengt Erlandsson,Ben,Oxie Malmoe,Malmoehus-M,Sweden,
2407188,SG7IKJ,Ronny Strandh Strandh,Ronny,JO76DJ, Lonsboda,Skune County,Sweden,
-2407189,SM7AWE,Leif ,,Simrishamn,Malmoehus-M,Sweden,
+2407189,SM7AWE,Leif Holst,SM7AWE,Simrishamn,Malmoehus-M,Sweden,
+2407190,SA7LNK,Kasper ,,Naesum,Kristianstad-L,Sweden,
2420001,LA3RIA,Mushtaq ,Mushtaq,Oslo,Oslo,Norway,
2420002,LA1KP,Oivind ,Oivind,Oslo,Oslo,Norway,
2420003,LA4JL,Per Eftang,Per,Oslo,Oslo,Norway,
@@ -14397,6 +14693,8 @@
2420028,LA9YKA,Yvind Skaane,Yvind,Oslo,Oslo,Norway,
2420029,LB5VA,Stig Rasmussen,Stetch,Oslo,Oslo,Norway,
2420030,LA1KP,Oivind Solli,La1kp,Oslo,Oslo,Norway,
+2420031,LA9RT,Bent Vangli,LA9RT,Oslo,Oslo,Norway,
+2420032,LB3AH,Anders DegNrd,LB3AH,Oslo,Oslo,Norway,
2421001,LA6VMA,Tommy ,Tommy,Dal,Akershus,Norway,
2421002,LA7ZKA,Arve Moller,Arve,Trollasen,Akershus,Norway,
2421003,LA2YUA,Robin Holm,Robin,Strmmen,Akershus,Norway,
@@ -14502,6 +14800,7 @@
2423037,LB3DH,Vidar B. Schanche,Vidar,Stavanger,Rogaland,Norway,
2423038,LA2PIA,Petter Sorensen,Petter,Kvernaland,Rogaland,Norway,
2423039,LA1ONA,Inge Hagen,LA1ONA,Bryne,Rogaland,Norway,
+2423040,LA6YMA,Rune Bjorlo,Rune,Jorpeland,Rogaland,Norway,
2424001,LA7TMA,Torstein Olsen,Torstein,Flornes,Nord-Trondelag,Norway,
2424002,LB3AG,Kre Arnfinn Fostad,Kre Arnfinn,Levanger,Nord-Trondelag,Norway,
2424003,LA3KL,Tore Barlindhaug,Tore,Trondheim,Sur-Trundelag,Norway,
@@ -14598,6 +14897,8 @@
2426067,LA9TKA,Ivar J Haanes,LA9TKA,HEGGEDAL,Akershus,Norway,
2426068,LA6ETA,Henrik Solhaug,La6eta,Hunndalen,Oppland,Norway,
2426069,LB4GH,Torkell Opedal Wullum,LB4GH,Heidal,Oppland,Norway,
+2426070,LB4WD,Thor Anton Torkehagen,Thor Anton,Gjvik,Oppland,Norway,
+2426071,LB1BF,Ebbe ,,Lillehammer,Oppland,Norway,
2427001,LA3VW,Odd Skogjordet,Odd,ARENDAL,Aust-Agder,Norway,
2427002,LA4CSA,Tarjei Lundarvollen,Tarjei,Vinje,Telemark,Norway,
2427003,LA7LW,Ole Andreas Olsen,Ole Andreas,Arendal,Aust-Agder,Norway,
@@ -14641,6 +14942,7 @@
2428026,LA7MHA,Tord Kaupang,Tord,Noetteroey,Vestfold,Norway,
2428027,LA4JNA,Nils Kristoffer Rren,Johan Paa Snippen,Tolvsrd,Vestfold,Norway,
2428028,LA9GN,Tom Arild Magnussen,Arild,Halden,stfold,Norway,
+2428029,LB3SA,Are Barstad,Are,Skoppum,Vestfold,Norway,
2429001,LA5LIA,Steinar Hanssen,Steinar,Sandnessjoen,Nordland,Norway,
2429002,LA1PHA,Tom Arntzen,Tom,Mo i Rana,Nordland,Norway,
2429003,LA5JK,Jan Gunnar Johannessen,Jan Gunnar,Mo i Rana,Nordland,Norway,
@@ -14682,14 +14984,15 @@
2429039,LA4ITA,Truls Hofstad,LA4ITA,Narvik,Nordland,Norway,
2429040,LB2GH,Bjrn Einar Helland,Ice Narvik,Narvik,Nordland,Norway,
2429041,LB3HH,Christer Sollie,LB3HH,Setermoen,Troms,Norway,
-2429042,LA9YBA,Aage ,,Lodingen,Nordland,Norway,
-2429043,LA8FSA,Aage ,,Harstad,Troms,Norway,
-2429044,LA8GSA,Rjan ,,Harstad,Troms,Norway,
-2429045,LA6LOA,Roy ,,Harstad,Troms,Norway,
-2429046,LA8RHA,Jann HNvard ,,Ldingen,Nordland,Norway,
-2429047,LA8HSA,Kristoffer ,,Harstad,Troms,Norway,
-2429048,LA8ISA,Jon-yvind ,,Harstad,Troms,Norway,
-2429049,LA8DSA,Jon ,,Harstad,Troms,Norway,
+2429042,LA9YBA,Aage Danielsen,Aage,Lodingen,Nordland,Norway,
+2429043,LA8FSA,Aage Hofstad,Jr,Harstad,Troms,Norway,
+2429044,LA8GSA,Rjan Hofstad,Rjan,Harstad,Troms,Norway,
+2429045,LA6LOA,Roy Veimoen,Roy,Harstad,Troms,Norway,
+2429046,LA8RHA,Jann HNvard Martinsen,Jann,Ldingen,Nordland,Norway,
+2429047,LA8HSA,Kristoffer Hofstad,Kris,Harstad,Troms,Norway,
+2429048,LA8ISA,Jon-yvind Windstad,Jon,Harstad,Troms,Norway,
+2429049,LA8DSA,Jon Windstad,Jon,Harstad,Troms,Norway,
+2429050,LA4NL,Svein ,,Harstad,Troms,Norway,
2440001,OH0CD,Mikael ,Mikael,Finstrom,Aland Is,Finland,
2440002,OH0KCE,Leif Perjus,Leif,Palsbole,Aland Is,Finland,
2440003,OH0AZX,Roland Danielsson,Roland,Mariehamn,Aland Is,Finland,
@@ -14971,7 +15274,8 @@
2446032,OH6GSI,Toni Poellaenen,Toni,Seinaejoki,Vaasa,Finland,
2446033,OH6FJA,Seppo Turunen,Seppo,Kangashakki,Keski-Suomi,Finland,
2446034,OH6HLH,Hannu Virtanen,Hannuvir,Jaemsae,Keski-Suomi,Finland,
-2446035,OH6MWQ,Jukka ,,Viitasaari,cnty,Finland,
+2446035,OH6MWQ,Jukka Pappinen,Jukka,Viitasaari,cnty,Finland,
+2446036,OH6WD,Jaakko Pekkarinen,Jaska,Viitasaari,cnty,Finland,
2447000,OH3HAM,Radio ,Radio,Kuopio,Kuopio,Finland,Club
2447001,OH7EOW,Jani Kontturi,Jands,Joensuu,cnty,Finland,
2447002,OH7KFA,Veini Airaksinen,OH7KFA,TERVO,Kuopio,Finland,
@@ -15019,6 +15323,8 @@
2448035,OH8TM,Timo Malo,Timppa,Oulu,Oulu,Finland,
2448036,OH8KAW,Kai Salo,Kaitsu,OULU,Oulu,Finland,
2448037,OH8KW,Vesa Jaervelaeinen,Vesa,Oulu,Oulu,Finland,
+2448038,OH6EZF,Kari Saarela,Kari OH6EZF,Kalajoki,Oulu,Finland,
+2448039,OH8EVG,Petteri ,,Haapajaervi,Oulu,Finland,
2449001,OH9LNA,Jari Lammi,Jari,Tornio,Lappi,Finland,
2449002,OH9NGW,Markku Mokko,Markku,Tornio,Lappi,Finland,
2449003,OH9ELA,Jouni Jaakkola,Jones,TORNIO,Lappi,Finland,
@@ -15034,6 +15340,9 @@
2470006,YL3IM,Inga Muste,Inga,Riga,,Latvia,
2470007,YL3GY,Miks Apinis,Miks,Riga,,Latvia,
2470008,YL3FK,Vitalijs Krusts,Vitaly,Riga,,Latvia,
+2470009,YL2UI,Egils Ivcenko,Egils,Liepaja,,Latvia,
+2470010,YL3HI,Vladislavs Himins,Vladislavs,Riga,,Latvia,
+2470011,YL3GIE,Valdis Sunakslis,Valdis,Liepaja,,Latvia,
2480001,ES2AST,Marek Astrik,SiiliOnu,Kose,,Estonia,
2480002,ES1FJR,Ivan Shebanov,Ivan,Tallinn,,Estonia,
2480003,ES1BRD,Dmitri Sinitsa,Dmitri,Tallinn,,Estonia,
@@ -15064,6 +15373,7 @@
2502010,R2DFR,Mikhail ,Mikhail,,,Russia,
2502011,R2DFR,Mikhail ,Mikhail,,,Russia,
2502018,R2ALJ,Vitaliy ,Vitaliy,,,Russia,
+2502027,R2FAF,Valentin ,Valentin,,,Russia,
2503001,R3ABM,Artem ,Artem,,,Russia,
2503002,R3ABM,Artem ,Artem,,,Russia,
2503004,RZ3AIQ,Alexey ,Alexey,,,Russia,
@@ -15100,6 +15410,7 @@
2508012,R8AAK,Aleksey ,Aleksey,,,Russia,
2508013,UB8CEV,Roman ,Roman,,,Russia,
2508019,R8ABX,Ivan ,Ivan,,,Russia,
+2508021,UB8CDY,Andrey ,Andrey,,,Russia,
2509001,R9XU,Yakov ,Yakov,,,Russia,
2509002,UA9KDF,Igor ,Igor,,,Russia,
2509003,R9CIR,Ivan ,Ivan,,,Russia,
@@ -15225,6 +15536,9 @@
2550115,UY5UF,Valentin Hakalo,Valec,Motowilovka,,Ukraine,
2550116,UT5UAW,Igor Stepanov,Igor,Kiev,,Ukraine,
2550117,UT3UGR,Dmytro Isaienko,Dmytro,Kyiv,,Ukraine,
+2550118,UT3UHV,Roman Borys,Borman,Kyiv,,Ukraine,
+2550119,UW5EDP,Pavel Khorishko,Pavel,Dnipro,,Ukraine,
+2550120,UX2LX,Oleksandr Logvinov,Alex,Kharkiv,,Ukraine,
2570001,EW7AS,Vladimir Zakharchenko,Vladimir,Klimovichi,,,
2570002,EW7AS,Vladimir Zakharchenko,Vladimir,Klimovichi,,Belarus/Belorussia,
2601001,SP1XNE,Maciek ,Maciek,Szczecin,Zachodniopomorskie,Poland,
@@ -15262,6 +15576,7 @@
2601033,SP1N,Maciej Olechnowicz,Maciej,Szczecin,Zachodniopomorskie,Poland,
2601034,SP1XNJ,Malgorzata Debicz,Malgorzata,Stargard,Zachodniopomorskie,Poland,
2601035,SP1B,Lukasz Berejowski,Lukasz,Szczecin,Zachodniopomorskie,Poland,
+2601036,SQ1PRA,Seawomir Misiak,Seawomir,Broczyno,Zachodniopomorskie,Poland,
2602001,SP2WGN,Maciej Zamojski,Maciej,Gdask,Pomeranian Voivodesh,Poland,
2602002,SP2FRN,Sebastian Stian,Sebastian,Gdynia,Pomeranian Voivodesh,Poland,
2602003,SP2CA,Andrzej Czapczyk,Andrzej,Bydgoszcz,Kuyavian-Pomeranian,Poland,
@@ -15279,6 +15594,7 @@
2602015,SP2GDK,Radek Kubik,Radek,Gdynia,pomorskie,Poland,
2602016,SQ2KLT,Kamil Michalak,Kamil,Juncewo,Kuyavian-Pomeranian,Poland,
2602017,SQ2ICT,Tomasz Kuklinski,Tomasz,Bydgoszcz,Kujawsko-Pomorskie,Poland,
+2602018,SP2SWA,Arkadiusz Malachowski,Arek,Wloclawek,Kujawsko-Pomorskie,Poland,
2603001,SQ3CLK,Michal ,Michal,Poznan,Wielkopolska,Poland,Portable
2603002,SQ3GJH,Chrystian ,Chrystian,Srem,Wielkopolska,Poland,Portable
2603003,SP3WBY,Artur ,Artur,Poznan,Wielkopolska,Poland,Mobile
@@ -15321,6 +15637,8 @@
2603040,SQ3OGO,Arkadiusz Galiski,Arkadiusz,Pozna,Greater Poland Voivo,Poland,
2603042,SO3AK,Greg Jung,Greg,Biedrusko,Wielkopolskie,Poland,
2603044,SQ3LVD,Tomasz Zawarty,Tomek,Poznan,Wielkopolskie,Poland,
+2603045,SQ8IFI,Krzysztof Przybylski,Krzysztof,Tomaszow Lubelski,Wielkopolskie,Poland,
+2603046,SQ8IFI,Krzysztof Przybylski,Krzysztof,Tomaszw Lubelski,Wielkopolskie,Poland,
2604001,SQ4HRL,Przemyslaw Kander,Przemyslaw,Ostroda,Warmian-Masurian Voi,Poland,
2604002,SQ4LWO,Krzysztof Sekowski,Krzysztof,Olsztyn,warmisko-mazurskie,Poland,
2604003,SQ4OJA,Adam Margieta,Adam,Olsztyn,Warmian-Masurian Voi,Poland,
@@ -15356,6 +15674,7 @@
2604033,SP4XKB,Konrad Czaplicki,Konrad,Grajewo,Podlaskie,Poland,
2604034,SQ4RSU,Barteomiej Gres,Gryf,Sokeka,Podlaskie,Poland,
2604035,SP4XKB,Konrad Czaplicki,Cezar,Grajewo,Podlaskie,Poland,
+2604036,SP4WRZ,Ireneusz Zacharewicz,Irek,Bialowieza,Podlaskie,Poland,
2605001,SP5GDM,Jan ,Jan,Wierzbica,Mazowieckie,Poland,Portable#1
2605002,SP5GDM,Jan ,Jan,Wierzbica,Mazowieckie,Poland,Portable#2
2605003,SP5GDM,Jan ,Jan,Wierzbica,Mazowieckie,Poland,Mobile
@@ -15376,7 +15695,7 @@
2605018,SP5RDU,Wojciech Paszkowski,Wojciech,Brwinow,Mazowieckie,Poland,
2605019,SQ5OMO,Marcin Urbaski,Marcin,Marki/Warszawa,Mazowieckie,Poland,
2605020,SQ5CJZ,Robert Ojrzynski,Robert,Pruszkow,Mazowieckie,Poland,
-2605021,SQ5GLU,Radoslaw Padzik,Radoslaw,Warsaw,Mazowieckie,Poland,
+2605021,SQ5GLU,Radoslaw Padzik,Radek,Warsaw,Mazowieckie,Poland,
2605022,SP5FBJ,Marcin Szmit,Marcin,Warszawa,Mazowieckie,Poland,
2605023,SP5QWV,Jarek Zbrzeniak,Jarek,Kobyka,Mazowieckie,Poland,
2605024,SQ5MJF,Michal Rzeplinski,Michal,Warszawa,Mazowieckie,Poland,
@@ -15497,6 +15816,7 @@
2605139,SQ5SAJ,Jan Sak,Saenta,Konstancin,Mazowieckie,Poland,
2605140,SQ5IRI,Grzegorz Golebiewski,Grzegorz,Rzekun,Mazowieckie,Poland,
2605141,SP5TDK,Tadeusz Dymerski,Tadeusz,Kadzidlo,Mazowieckie,Poland,
+2605142,SP5IOU,Marcin Boboli,Marcin,Warszawa,Mazowieckie,Poland,
2606001,SQ6ROK,Andrzej ,Andrzej,Wroclaw,Lower Silesian Voivo,Poland,
2606002,SQ6NCJ,Jacek Diaczek,Jacek,Olawa,Lower Silesian Voivo,Poland,
2606003,SQ6IUB,Kamil Szmajda,Kamil,Opole,Opole Voivodeship,Poland,
@@ -15534,6 +15854,9 @@
2606035,SQ6IYC,Mariusz Kwaonik,Mariusz,Legnica,Dolnoslaskie,Poland,
2606036,SQ6POG,Pawel Gomulka,Pawel,Legnica,Dolnoslaskie,Poland,
2606037,SO6AFT,Marek Kozak,Marek,Wroclaw,Dolnoslaskie,Poland,
+2606038,SQ6POG,Pawel Gomulka,Pawel,Legnica,Dolnoslaskie,Poland,
+2606039,SP6VXU,Jacek Dziuban,Jacek,Wroclaw,Lower Silesian Voivo,Poland,
+2606040,SQ6LAE,Jarek Koper,Jarek,Legnica,cnty,Poland,
2607001,SQ7FKT,Bartek ,Bartek,Lodz,Lodzki,Poland,Portable
2607002,SQ7SCC,Arek ,Arek,Lodz,Lodzki,Poland,
2607003,SQ7LRX,Adam ,Adam,Lodz,Lodzki,Poland,
@@ -15571,6 +15894,7 @@
2607035,SQ7NHR,Grzegorz Ryl,Grzegorz,Lodz,cnty,Poland,
2607036,SP7EP,Maciej Herman,Maciej,Piotrkw Trybunalski,Lodzkie,Poland,
2607037,SP7LAK,Krzysztof Pawlowski,Krzysztof,Kutno,Lodzkie,Poland,
+2607038,SQ7RJX,Jacek Chruscinski,Jacek,Dzialoszyn,Lodzkie,Poland,
2608001,SP8WJS,Andrzej Pencarski,Andrzej,Ustrzyki Dolne,Wojewudztwo podkarpa,Poland,
2608002,SQ8NXF,Grzegorz Kowalski,Grzegorz,Zamosc,lubelskie,Poland,
2608003,SQ8LUN,Lukasz Kuzma,Lukasz,LUBLIN,Lublin Voivodeship,Poland,
@@ -15691,6 +16015,12 @@
2609094,SP9VJ,Bohdan Trych,Bohdan,Czestochowa,Slaskie,Poland,
2609095,SQ9APY,Zbigniew Choroba,Zbigniew,Delastowice,cnty,Poland,
2609096,SQ9NOO,Marcin Bagienski,Marcin,Cieszyn,Slaskie,Poland,
+2609097,SQ9MUP,Andrzej Czuma,Andrzej,Podee,Malopolskie,Poland,
+2609098,SQ9RPX,Marcin Ciochon,Marcin,Krakow,Malopolskie,Poland,
+2609099,SQ9GAT,Andrzej Ciemniak,Andrzej,Cieszyn,Slaskie,Poland,
+2609100,SQ9LBT,Tomasz Miksa,Tomasz,Ory,Slaskie,Poland,
+2609101,SQ9OZM,Marcin Bajer,Marcin,Dobczyce,Malopolskie,Poland,
+2609102,SQ9NKH,Lukasz Czaplak,Lukasz,Zakrzowiec,Malopolskie,Poland,
2620001,DD8OA,Jan ,Jan,Friedrichsbrunn,Sachsen-Anhalt,Germany,Portable
2620002,DB1JBA,Jens ,Jens,Wismar,Mecklenburg-Vorpomme,Germany,Mobile
2620003,DG0CCO,Joerg ,Joerg,Tangermuende,Sachsen-Anhalt,Germany,Portable
@@ -15781,6 +16111,9 @@
2620088,DM1ZP,Dietrich Weiss,Dietrich,Ostseebad Sellin,Mecklenburg-Vorpomme,Germany,
2620089,DG7MZA,Michael Ziehm,Michael,Arneburg,Sachsen-Anhalt,Germany,
2620090,DL2HSI,Miki Stengel,Miki,Tangerhuette,Sachsen-Anhalt,Germany,
+2620091,DL7JMJ,Juergen Jesche,Juergen,Glowe,Mecklenburg-Vorpomme,Germany,
+2620092,DG7MZA,Michael Ziehm,Michael,Arneburg,Sachsen-Anhalt,Germany,
+2620094,DB0WOF,Guenter Boehm,Guenter,Bitterfeld-Wolfen,Sachsen-Anhalt,Germany,
2621001,DL7AJ,Wolfgang ,Wolfgang,Berlin,Berlin,Germany,
2621002,DG4FEY,Thomas ,Thomas,Berlin,Berlin,Germany,
2621003,DL7ATA,Frank ,Frank,Berlin,Berlin,Germany,Portable
@@ -15961,6 +16294,7 @@
2621178,DL7AG,Christian Henkel,Christian,Berlin,cnty,Germany,
2621179,DO2TO,Uwe Skaerke,Uwe,Ahrensfelde/OT Blumb,Brandenburg,Germany,
2621180,DG2BZE,Guenter Mueller,Guenter,Neuenhagen,Brandenburg,Germany,
+2621181,DC7BWK,Joerg Schaeffer,Joerg,Berlin,Berlin,Germany,
2622000,DF4HN,Joerg Neugebauer,Joerg,Hamburg,HAMBURG/SCHLESWIG-HO,Germany,
2622001,DL6LIM,Iven ,Iven,Twedt/Schleswig,Schleswig-Holstein,Germany,Portable
2622002,DJ3HZ,Klaus ,Klaus,Norderstedt,Schleswig-Holstein,Germany,Portable
@@ -16098,7 +16432,7 @@
2622134,DD2HZ,Hans-Juergen Zacharias,Hans-Juergen,Luetjensee,Schleswig-Holstein,Germany,
2622135,DH1HAB,Dieter Ohm,Dieter,Luebeck,Schleswig-Holstein,Germany,
2622136,DL4HF,Juergen Friemann,Juergen,Hamburg,Hamburg,Germany,
-2622137,DL3LED,Ralph Marzusch,Ralph,Grosshansdorf,Schleswig-Holstein,Germany,
+2622137,DO8SHL,Marco Mueller,Marco,Luebeck,Schleswig-Holstein,Germany,
2622138,DH0HAK,Kirsten Thon,Kirsten,Hamburg,Hamburg,Germany,
2622139,DD2HS,Lothar Stolle,Lothar,Bad Oldesloe,Schleswig-Holstein,Germany,
2622140,DO7PRB,Peter Rath,Peter,Gudow,Schleswig-Holstein,Germany,
@@ -16306,6 +16640,12 @@
2622342,DB0FS,SIP-Gateway ,SIP-Gateway,Hamburg,Hamburg,Germany,
2622343,DD2LU,Uwe Scharweit,Uwe,Gettorf,Schleswig-Holstein,Germany,
2622344,DB0ZE,SIP-Gateway ,SIP-Gateway,Hamburg,Hamburg,Germany,
+2622345,DO1FBH,Florian Bauhaus,Florian,Hamburg,Hamburg,Germany,
+2622346,DB4LW,Werner Wilkat,Werner,Kiel,Schleswig-Holstein,Germany,
+2622347,DB5LAD,Norbert Hansen,Norbert,Klappholz,Schleswig-Holstein,Germany,
+2622348,DL5LY,Lydia Cordsen,Lydia,Neuberend,Schleswig-Holstein,Germany,
+2622349,DJ4LC,Thomas Littmann,Thomas,Breitenburg-Nordoe,cnty,Germany,
+2622350,DL5LA,Paolo Altamura,Paolo,Soerup,Schleswig-Holstein,Germany,
2623001,DL4BCG,Paul Hag ,,Schneverdingen,Niedersachsen,Germany,Portable
2623002,DG5AV,Gerd May,Gerd,Einbeck,Lower Saxony,Germany,
2623003,DO1HSN,Hendrik ,Hendrik,Pewsum,Niedersachsen,Germany,Portable
@@ -16997,7 +17337,7 @@
2623689,DJ3KC,Cetinalp Kavci,Cetin,Wolfsburg,Lower Saxony,Germany,
2623690,DO4TBH,Thomas Blinde,Tom,Hannover,Lower Saxony,Germany,
2623691,DO6OTH,Thomas Wagner,Thomas,Goettingen,Lower Saxony,Germany,
-2623692,DB4BIN,Ingo Nieth,Bert,Holdorf,Niedersachen,Germany,
+2623692,DB4BIN,Ingo Ernsting,Ingo,Holdorf,Niedersachen,Germany,
2623693,DF5AH,Reinhard Niedere,Yogi,Bovenden-Reyershause,Niedersachsen,Germany,
2623694,DO3SP,Sven Peters,Sven,Wilhelmshaven,Lower Saxony,Germany,
2623695,DO3WAL,Waldemar Mehring,Waldemar,Lueneburg,Lower Saxony,Germany,
@@ -17112,7 +17452,7 @@
2623804,DB2OE,Dennis Boniakowsky,Dennis,Staufenberg,Lower Saxony,Germany,
2623805,DL1EJ,Thomas Liedtke,Thomas,Sachsenhagen,Lower Saxony,Germany,
2623806,DO7SE,Sven Ehelebe,Sven,Koenigslutter,Niedersachsen,Germany,
-2623807,DO6MPI,Matthias Pianta,Matthias,Vechta,Lower Saxony,Germany,
+2623807,DL6BAI,Olaf Exner,Olaf,Bremervoerde,cnty,Germany,
2623808,DO4WW,Juergen Rosskamp,Juergen,Loxstedt,Lower Saxony,Germany,
2623809,DH2BAD,Herbert Luehmann,Herbert,Klein Meckelsen,Lower Saxony,Germany,
2623810,DJ6ML,Meinert Leinigen,MBL,Oldenburg,Lower Saxony,Germany,
@@ -17202,6 +17542,17 @@
2623894,DJ5JD,Hans-Gerd Spohler,Hans-Gerd,Norden,Niedersachen,Germany,
2623895,DB1OFH,Peter Gerland,Peter,Northeim,cnty,Germany,
2623896,DL1BAH,Karl-Heinz Schirmer,Karl-Heinz,Norden,Niedersachen,Germany,
+2623897,DF4AI,Volker Biermann,Volker,Meinersen,cnty,Germany,
+2623898,DL2AB,Daniel Wendt-Froehlich,Daniel,Bremen,cnty,Germany,
+2623899,DG9BFE,Marc Heinze,Marc,Ihlow,Niedersachen,Germany,
+2623900,DK1XAM,Manfred Graebner,Manfred,Colnrade,Niedersachen,Germany,
+2623901,DL5BN,Bert Nieth,DL5BN,Bassum,Niedersachen,Germany,
+2623902,DO4IG,Kai Hornberg,Kai,Goettingen,Niedersachen,Germany,
+2623903,DL4BBX,Alfred Brueggemann,Alfred,Syke,Lower Saxony,Germany,
+2623904,DF2AD,Dieter Spoerhase,Dieter,Bad Sachsa,Niedersachen,Germany,
+2623905,DL4DD,Uli Lahme,Uli,Krummendeich,Niedersachen,Germany,
+2623906,DH8RS,Rainer Schenkemeier,Rainer,Hildesheim,Niedersachen,Germany,
+2623907,DJ2XW,Werner Buss,Werner,Hildesheim,Niedersachen,Germany,
2624001,DF2ER,Walter ,Walter,Heiligenhaus,Nordrhein-Westfalen,Germany,Portable
2624002,DD2JU,Rudolf ,Rudolf,Ratingen,Nordrhein-Westfalen,Germany,Portable
2624003,DL1YBL,Jochen ,Jochen,Marl,Nordrhein-Westfalen,Germany,Portable
@@ -18229,7 +18580,7 @@
2625026,DO1ACR,Roman ,Roman,Herxheim,Rheinland-Pfalz,Germany,Mobile
2625027,DK8PR,Peter ,Peter,Ellerstadt,Rheinland-Pfalz,Germany,Mobile
2625028,DO7PA,Klaus ,Klaus,Hessheim,Rheinland-Pfalz,Germany,Mobile
-2625029,DK1PM,Michael ,Michael,Langweiler,Rheinland-Pfalz,Germany,Portable
+2625029,DL7GG,German Geisslinger,German,Bad Kreuznach,Rheinland-Pfalz,Germany,Portable
2625030,DK1PM,Michael ,Michael,Langweiler,,Germany,Mobile
2625031,DD1IZ,Mike ,Mike,Landau,Rheinland-Pfalz,Germany,
2625032,DJ3UE,Achim Schaefer,Achim,Ludwigshafen,,Germany,
@@ -18576,6 +18927,8 @@
2625373,DL5PP,Dieter Fischer,Dieter,Niederhambach,Rheinland-Pfalz,Germany,
2625374,DF7WA,Berthold Bahl,Berthold,Kaltenengers,cnty,Germany,
2625375,DO8CN,Christian Nagel,Christian,Neustadt / Weinstras,Rheinland-Pfalz,Germany,
+2625376,DC8VA,Robert Wilhelm,Robert,Rodalben,Rheinland-Pfalz,Germany,
+2625377,DK8VD,Dieter Hoffmann,Dieter,Bernkastel-Kues,Rheinland-Pfalz,Germany,
2625998,DB0MYK,Hans-Juergen ,Hans-Juergen,Gaensehals,Thuaringen,Germany,
2625999,DB0LJ,D-Star-Gateway Barthen,DSTAR-DMR-Gateway,Kruft,Rhineland-Palatinate,Germany,
2626000,DF6RK,Ralf ,Ralf,Glashuetten,Hessen,Germany,Base Station
@@ -19142,6 +19495,11 @@
2626561,DD1IWX,Tin Chulajata,Tin,Glashutten,Hessen,Germany,
2626562,DC2ZN,Klaus Maelzner,KMBOS,Biedenkopf,Hessen,Germany,
2626563,DO7TH,Thomas Hardt,Thomas,Haiger,Hessen,Germany,
+2626564,DO2THK,Thomas Koch,Thomas,Lautertal,Hessen,Germany,
+2626565,DG5ZQ,Joerg Sudheimer,Joerg,Biebesheim,Hessen,Germany,
+2626566,DL6FAK,Wolfgang Schilling,Wolfgang,Freigericht,Hessen,Germany,
+2626567,DO1OKM,Simon Maiberger,Simon,Biebergemuend,Hessen,Germany,
+2626568,DL2FHM,Horst Umbach,Horst,Immenhausen,Hessen,Germany,
2627001,DC4GD,Claus ,Claus,Villingen-Schwenning,Baden-Wuerttemberg,Germany,Mobile #1
2627002,DC4GD,Claus ,Claus,Villingen-Schwenning,Baden-Wuerttemberg,Germany,Mobile #2
2627003,DC4GD,Claus ,Claus,Villingen-Schwenning,Baden-Wuerttemberg,Germany,Portable
@@ -19794,7 +20152,7 @@
2627650,DH2WA,Andreas Will,Andreas,Daisendorf,Baden-Wuerttemberg,Germany,
2627651,DL2SM,Klaus Mueller,Klaus,Kornwestheim,Baden-Wuerttemberg,Germany,
2627652,DD9SH,Horst Kleiner,Horst,Schoeckingen,Baden-Wuerttemberg,Germany,
-2627653,DO6UWE,Uwe Schikowski,Uwe,Grosserlach,Baden-Wuerttemberg,Germany,
+2627653,DL1SAB,Sebastian Bachmaier,Sebastian,Ludwigsburg,Baden-Wuerttemberg,Germany,
2627654,DL1GBB,Winni Dreyfuerst,Winni,Langenargen,Baden-Wuerttemberg,Germany,
2627655,DJ5MW,Manfred Wolf,Manfred,Wangen,Baden-Wuerttemberg,Germany,
2627656,DL5GBW,Wunny Kieber,Wunny,Wangen/ Allgaeu,Baden-Wuerttemberg,Germany,
@@ -19835,6 +20193,22 @@
2627691,DF8IU,Hans Hilkert,Hans,Hoepfingen,Baden-Wuerttemberg,Germany,
2627692,DL9SK,Ralf Fanz,Ralf,Neckarwestheim,Baden-Wuerttemberg,Germany,
2627693,DK3PT,Heinz Schmidgall,Heinz,Murr,Baden-Wuerttemberg,Germany,
+2627694,DM3AT,Stephan Eisenbeiss,Stephan,Ludwigsburg,Baden-Wuerttemberg,Germany,
+2627695,DO9MN,Michael Neumann,Michael,Stuttgart,Baden-Wuerttemberg,Germany,
+2627696,DG9SFF,Ewald Huebl,Ewald,Schwieberdingen,Baden-Wuerttemberg,Germany,
+2627697,DK6SG,Rudi Zintl,Rudi,Vaihingen/Enz,Baden-Wuerttemberg,Germany,
+2627698,DL1GKK,Karl-Heinz Krawczyk,Karl-Heinz,Freiburg,Baden-Wuerttemberg,Germany,
+2627699,DC4TX,Rolf Zott,Rolf,Beilstein,Baden-Wuerttemberg,Germany,
+2627700,DL1GEA,Alfons Huber,Alfons,Fluorn-Winzeln,Baden-Wuerttemberg,Germany,
+2627701,DH1UZ,Uwe Zerbe,Uwe,Waiblingen,Baden-Wuerttemberg,Germany,
+2627702,DK1SV,Ekkehart Winkler,Ekkehart,Ludwigsburg,Baden-Wuerttemberg,Germany,
+2627703,DK8SN,Ilmar Reisman,Ilmar,Dornstadt,Baden-Wuerttemberg,Germany,
+2627704,DF6SH,Guenther Dihlmann,Guenther,Marbach,Baden-Wuerttemberg,Germany,
+2627705,DG4SBZ,Konrad Schnaible,Konrad,Weil der Stadt,Baden-Wuerttemberg,Germany,
+2627707,DG2ST,Bernd Knobel,Bernd,Heilbronn,Baden-Wuerttemberg,Germany,
+2627708,DO7SJ,Jochen Schwalb,Jochen,Abstatt,Baden-Wuerttemberg,Germany,
+2627709,DO7SA,Angelika Schwalb,Angelika,Abstatt,Baden-Wuerttemberg,Germany,
+2627710,DK9WF,Fred Wagner,Fred,Ulm,Baden-Wuerttemberg,Germany,
2628001,DL1BNO,Bernd ,Bernd,Geiselbach,Bayern,Germany,Mobile
2628002,DL5NBZ,Rainer ,Rainer,Nuernberg,Bayern,Germany,Mobile
2628003,DK7NKR,Ralf ,Ralf,Nuernberg,Bayern,Germany,Portable
@@ -20672,6 +21046,16 @@
2628835,DH9RCG,Uli Weidinger,Uli,Salzweg,Bayern,Germany,
2628836,DK4TN,Uwe Wieteck,Uwe,Traunstein,Bayern,Germany,
2628837,DO6ZM,Michael Zajaczuk,Michael,Weissenhorn,Bayern,Germany,
+2628838,DG4RBP,Juergen Minks,Juergen,Fensterbach,Bayern,Germany,
+2628839,DG4RBS,Stefan Josef Wirth,Stefan (Steve),Hohenfels,Bayern,Germany,
+2628840,DO1RE,Johannes Landerer,Johannes,Eichstaett,Bayern,Germany,
+2628841,DL2MUC,Alex Auer,Alex,Muenchen,Bayern,Germany,
+2628842,DL7UP,Joerg Hoeben,Joerg,Neubiberg,Bayern,Germany,
+2628843,DL1MSB,Michi Sonner,Michi,Bichl,Bayern,Germany,
+2628844,DF3NJ,Norbert Dotterweich,Norbert,Stappenbach,Bayern,Germany,
+2628845,DF4RMI,Michael Farmbauer,Michael,Obertraubling,Bayern,Germany,
+2628846,DO2DMB,Didi Rosenlehner,Didi,Falkenberg,Bayern,Germany,
+2628847,DG4AO,Anton Oeder,Anton,Markt Frickenhausen,Bayern,Germany,
2629001,DC8YM,Maik ,Maik,Leipzig,Sachsen,Germany,Portable#1
2629002,DC8YM,Maik ,Maik,Leipzig,Sachsen,Germany,Portable#2
2629003,DC8YM,Maik ,Maik,Leipzig,Sachsen,Germany,Mobile
@@ -20810,6 +21194,9 @@
2629136,DO7NE,Marco Mutsches,Marco,Leipzig,Sachsen,Germany,
2629137,DO5RRS,Reinwald Richter,Reinwald,Sonneberg,Thueringen,Germany,
2629138,DL1JDH,Detlef Gypser,Detlef,Zschorlau,Sachsen,Germany,
+2629139,DG0AG,Siegmar Hecht,Siegmar,Ilmenau,Thueringen,Germany,
+2629140,DL4ZJ,Mathias Moersch,Mathias,Saalfeld,Thueringen,Germany,
+2629142,DG0OKV,Jens Eppler,Jens,Roemhild, OT Haina,Thueringen,Germany,
2634001,DL6NW,Nicole Wiesner,Nicole,Ratingen,Nordrhein-Westfalen,Germany,
2634002,DL1HC,Michael Kronenberg,Michael,Bergisch Gladbach,Nordrhein-Westfalen,Germany,
2634003,DH5JR,Hannelore Warnecke,Hannelore,Velbert,Nordrhein-Westfalen,Germany,
@@ -21145,10 +21532,21 @@
2634334,DO4DAX,Markus Dietrich,Markus,Koeln,Nordrhein-Westfalen,Germany,
2634335,DF3DH,Wilfried Longwitz,Wilfried,Castrop-Rauxel,Nordrhein-Westfalen,Germany,
2634336,DO2BHE,Burkhard Hekers,Burkhard,Voerde,Nordrhein-Westfalen,Germany,
+2634337,DO8PP,Patrick Plettau,Patrick,Mettmann,Nordrhein-Westfalen,Germany,
2634338,DO1EPM,Matthias Parei,Matthias,Anroechte,Nordrhein-Westfalen,Germany,
2634339,DM5GZ,Juergen Mattausch,Juergen,Dorsten,Nordrhein-Westfalen,Germany,
2634340,DM6TK,Thomas Kaimann,Thomas,Warstein,Nordrhein-Westfalen,Germany,
2634341,DL9YAZ,Ralf Schindowski,Ralf,Leopoldshoehe,Nordrhein-Westfalen,Germany,
+2634342,DC1KO,Olaf Bahr,Olaf,Alfter,Nordrhein-Westfalen,Germany,
+2634343,DJ2YSR,Rainer Siepert,Rainer,Greven,Nordrhein-Westfalen,Germany,
+2634344,DO1LH,Hinrich Lamp,Hinrich,Ratingen,Nordrhein-Westfalen,Germany,
+2634345,DO7FF,David Temmers,David,Eschweiler,Nordrhein-Westfalen,Germany,
+2634346,DF4JM,Julian Wild,Julian,Krefeld,Nordrhein-Westfalen,Germany,
+2634347,DO1WMW,Markus Wegel,Markus,Castrop-Rauxel,Nordrhein-Westfalen,Germany,
+2634348,DO6BL,Boris Liwowski,Boris,Berlar,Nordrhein-Westfalen,Germany,
+2634349,DO6BD,Daniel Battke,Daniel,Bergheim,Nordrhein-Westfalen,Germany,
+2634350,DL9DBB,Friedhelm Siepe,Friedhelm,Hallenberg,Nordrhein-Westfalen,Germany,
+2634351,DM1EE,Rolf Moellmann,Rolf,Dorsten,Nordrhein-Westfalen,Germany,
2681001,CT2HMR,Manuel ,Manuel,Amarante,Porto District,Portugal,
2681002,CT1DQV,Eduardo Goncalves,Eduardo,Chaves,Vila Real,Portugal,
2681003,CT2GSW,Rui Calada,Rui,Maia,Porto District,Portugal,
@@ -21195,6 +21593,8 @@
2681044,CT5IJF,Angelina Carvalho,Angelina,Valongo,Porto,Portugal,
2681045,CT1HNF,Luis Carvalho,Luis,Valongo,Porto,Portugal,
2681046,CT4OI,Rui Lopes,Rui,Porto,cnty,Portugal,
+2681047,CT1HFS,Rui Alves,Ruca,Espinho,Porto,Portugal,
+2681048,CT1HXJ,Vitor Ferreira,Vitor,Maia,Porto,Portugal,
2682001,CS7ACF,Nuno ,Nuno,Viseu,Viseu,Portugal,
2682002,CT1BAT,Jose Machado,Jose,Coimbra,Coimbra,Portugal,
2682003,CT2JWV,Carlos Marques,Carlos,Estarreja,Aveiro,Portugal,
@@ -21251,6 +21651,8 @@
2682054,CT1ASM,Joaquim Jose Jorge,Jo,Viseu,Viseu,Portugal,
2682055,CS7ALB,Rui Brito da Silva,Rui,Viseu,Viseu,Portugal,
2682056,CT1ESJ,Henrique Portas,Henrique,Sabugal,Guarda,Portugal,
+2682057,CS7AFA,Pedro Ferraz,Pedro,Guia PBL,Leiria,Portugal,
+2682058,CT1HFW,Nuno Miguel Duarte Mendes,Nuno Miguel,Tomar,Leiria,Portugal,
2683001,CT1HDC,Paulo ,Paulo,Lisboa,Lisboa,Portugal,Portable
2683002,CR7AIC,Fernando ,Fernando,Lisboa,Lisbon,Portugal,
2683003,CS7AFO,Hugo ,Hugo,Amadora,Lisbon,Portugal,
@@ -21413,6 +21815,10 @@
2683160,CT1EDG,Jose Eduardo O Pinto,Jose,Cascais,Lisboa,Portugal,
2683161,CT1CDN,Valdemar Soares,Valdemar,Massami,cnty,Portugal,
2683162,CT1ETY,Pedro Nogueira,Pedro,Agualva,Lisboa,Portugal,
+2683164,CT5GJH,Jose Cardoso,Jose,Povoa St Iria,Lisboa,Portugal,
+2683165,CT1AWR,Manuel Santos,Manuel,Buraca,Lisboa,Portugal,
+2683166,CT1EBZ,Jouo Encarnauo,Jouo,Carnaxide,Lisboa,Portugal,
+2683167,CT1FW,Manuel Antunes,Manuel,Portela de Sintra,Lisboa,Portugal,
2684001,CT2BXN,Jose ,Jose,Beja,Alentejo,Portugal,Mobile#1
2684002,CT2BXN,Jose ,Jose,Beja,Alentejo,Portugal,Mobile#2
2684003,CT1DUM,Carlos ,Carlos,Elvas,Portalegre District,Portugal,
@@ -21531,6 +21937,7 @@
2701076,LX1HP,Paul Hetting,Paul,Wiltz,Luxemburg,Luxemburg,
2701077,LX1CD,Carlo Diedert,Carlo,Fentange,Luxemburg,Luxemburg,
2701078,LX6RG,Rene Grignard,Rene,Hagen,Luxemburg,Luxemburg,
+2701079,LX1QF,Peter Vekinis,Peter,Canach,Luxemburg,Luxemburg,
2701120,LX4E,LARU EMC WG LARU,LARU EMC WG,Diekirch,,Luxemburg,
2701121,LX4E,LARU EMC WG LARU,LARU EMC WG,Diekirch,,Luxemburg,
2701122,LX4E,LARU EMC WG LARU,LARU EMC WG,Diekirch,,Luxemburg,
@@ -21570,6 +21977,7 @@
2720027,EI9FVB,Declan Horan,Declan,Cork,,Ireland,
2720028,EI2KL,Henry Patrick OLoughlin,Harry,Shannon,,Ireland,
2740001,TF3PKN,Pier Kaspersma,Pier,Reykjavik,,Iceland,
+2740002,TF8KP,Krzysztof Przybylski,Kristof,Keflavik,,Iceland,
2780001,9H1US,Antoine Debattista,Antoine,Birkirkara,,Malta,
2780002,9H1DH,Herbert Debattista,Herbert,Gwardamangia,,Malta,
2780003,9H1DH,Herbert Debattista,Herbert,Gwardamangia,,Malta,
@@ -21652,9 +22060,12 @@
2840062,LZ1LCD,Tsvetomir Simeonov,LZ1LCD,Sofia,,Bulgaria,
2840063,LZ2HPC,Stanislav Zlatinov,Stanislav,Veliko Turnovo,,Bulgaria,
2840064,LZ1DGM,Dimitar Martinov,Mitko,Sofia,,Bulgaria,
+2840065,LZ1CLD,Dimitar Ilkov,Dimitar,Sofia,,Bulgaria,
+2840066,LZ1SDF,Svetlin Haralampiev,Svetlin,Sofia,,Bulgaria,
2860001,TA2AWV,Mirac YILMAZ,Mirac,Istanbul,,Turkey,
2860002,TA5ACC,Cihan Culha,Cihan,Adana,,Turkey,
2860003,TA2UKC,Cem Burak Kocak,Cem Burak,Istanbul,,Turkey,
+2860004,TA2LLS,Seyit Tekirdag,Seyit,Kocaeli,,Turkey,
2862001,TA2OI,Özel ,Özel,Sulakyurt,Kirikkale,Turkey,Portable
2900001,OX3HI,Holger Hey Mortensen,Holger Hey,Kangerlussuaq,,Greenland,
2920001,T77GR,Renato Giovagnoli,Renato,San marino,,San Marino,
@@ -21666,6 +22077,8 @@
2930004,S52SG,Ewald Laznik,Ewald,Slovenj Gradec,,Slovenia,
2930005,S56LLB,Andrej Znidaric,Andrej,Krizevci,,Slovenia,
2930006,S56KZ,Beno Sever,Beno,Sentjur,,Slovenia,
+2930007,S57BMU,Milan Urbanija,Milan,Zagorje ob Savi,,Slovenia,
+2930008,S58DB,Danilo Bozic,Danilo,Sevnica,,Slovenia,
2940001,Z36AEC,Herolind Useini,Herolind,Gostivar,Gostivar,Macedonia,
2940002,Z32IT,Dragan Spiroski,Dragan,Skopje,,Macedonia,
2940003,Z32IT,Dragan Spiroski,Dragan,Skopje,,Macedonia,
@@ -21694,6 +22107,7 @@
3021005,VE1JCS,James Salamone,,Antigonish,Nova Scotia,Canada,Other
3021006,VE1ZC,Ron Reashore,,Dartmouth,Nova Scotia,Canada,DMR
3021007,VE1CCC,Andrew Cornwall,,Sackville,Nova Scotia,Canada,DMR
+3021008,VE1PJS,Peter Surette,,Truro,Nova Scotia,Canada,DMR
3022000,VA2XPR,CAN-TRBO .,CAN-TRBO,Montreal,Quebec,Canada,DMR
3022001,VA2TDF,Daniel Trillaud,,Montreal,Quebec,Canada,Portable
3022002,VE2NBZ,Eric Gauvin-dufour,,Trois-Rivires,Quebec,Canada,Portable
@@ -22010,6 +22424,19 @@
3022318,VE2EVH,Raymond Laroche,,Sherbrooke,Quebec,Canada,DMR
3022319,VA2KOS,Daniel D,,Laval,Quebec,Canada,DMR
3022320,VE2VHM,Alain Borduas,,St-Eustache,Quebec,Canada,DMR
+3022321,VE2RXD,Mario Desruisseaux,,Princeville,Quebec,Canada,DMR
+3022322,VE2ARA,Rene Lamoureux,,Sherbrooke,Quebec,Canada,DMR
+3022323,VA2NRJ,Robin Delauney,,Boucherville,Quebec,Canada,DMR
+3022324,VE2ILM,Gaston Gagné,,Sorel-Tracy,Quebec,Canada,DMR
+3022325,VE2XFM,Jean-Claude Bard,,Manseau,Quebec,Canada,DMR
+3022326,VA2NRJ,Robin Delauney,,Boucherville,Quebec,Canada,DMR
+3022327,VE2LM,Pierre Beaulieu,,Montreal,Quebec,Canada,DMR
+3022328,VE2ZPQ,Patrice Quenneville Quenneville,,L'Epiphanie,Quebec,Canada,DMR
+3022329,VE2SKR,Reginald Barnes,RéGy,Saint-Joachim De She,Quebec,Canada,DMR
+3022330,VE2MDC,Michel C Dore,,Montreal,Quebec,Canada,DMR
+3022331,VE2BIN,Eric Preston,,Montreal,Quebec,Canada,DMR
+3022332,VA2PBI,Pierre Beaulieu,,Montreal,Quebec,Canada,DMR
+3022333,VE2MDC,Michel C Dore,,Boucherville,Quebec,Canada,DMR
3023001,VE3XF,Steve Jones,,Stayner,Ontario,Canada,Mobile
3023002,VE3KFQ,Doug Hodgson,,Toronto,Ontario,Canada,Mobile
3023003,VE3SAQ,Marshall Mcbride,,Cornwall,Ontario,Canada,Portable
@@ -22691,6 +23118,19 @@
3023684,VA3JOU,Joseph Golobic,,Newcastle,Ontario,Canada,Other
3023685,VE3CKN,Donald Greene,,Ottawa,Ontario,Canada,DMR
3023686,VE3NN,David Allin Stevens,Dave,Brantford,Ontario,Canada,DMR
+3023687,VA3SFA ,Syed Faisal Akber,Faisal ,Toronto ,Ontario,Canada,DMR
+3023688,VE3YH,Christopher A Foster,,Toronto,Ontario,Canada,DMR
+3023689,VA3OP,Gary Notto,,Hamilton,Ontario,Canada,DMR
+3023690,VE3JSJ,Gordon E Murray,,Hamilton,Ontario,Canada,DMR
+3023691,VE3PPO,George Musikov Musikov,Marshall,Tillsonburg,Ontario,Canada,DMR
+3023692,VA3NTH,Christopher Netherton,,Toronto,Ontario,Canada,DMR
+3023693,VA3CQC,Jeff Rishea Rishea,,Burlington,Ontario,Canada,DMR
+3023694,VE3VDK,Joseph Peter Valente,,Brampton,Ontario,Canada,DMR
+3023695,VE3SCP,Scott C Price,,Grand Valley,Ontario,Canada,DMR
+3023696,VA3HP,Gary Allan Chase,,St. Thomas,Ontario,Canada,DMR
+3023697,VE3SLA,Slava Pomerants,Slavap75,Maple,Ontario,Canada,DMR
+3023698,VE3SVE,Sveta Pomerants,Bsvetik,Maple,Ontario,Canada,DMR
+3023699,VA3SU,Kevin Kibbe,,Waterloo,Ontario,Canada,DMR
3024001,VE4RRB,Rob Boux,,Blumenort,Manitoba,Canada,DMR
3024002,VE4RRB,Rob Boux,,Blumenort,Manitoba,Canada,DMR
3024003,VE4AI,Shaun Mcleod,,Winnipeg,Manitoba,Canada,Portable
@@ -22994,6 +23434,9 @@
3027108,VE7FFP,Robin Fry Fry,,Coquitlam,British Columbia,Canada,DMR
3027110,VE7LPG,Lindsay Gavel,,Vernon,British Columbia,Canada,DMR
3027111,VA7CBD,Duncan Clark,,Nanaimo,British Columbia,Canada,DMR
+3027112,VE7ALB,Christopher Munz-Michielin,,Saanich,British Columbia,Canada,DMR
+3027113,VA7CRO,Dom Kapac,,Victoria,British Columbia,Canada,DMR
+3027114,VE7VSL,Charla Mason,,Victoria,British Columbia,Canada,DMR
3027198,VE7ZZT,Kevin Wright,,New Westminster,British Columbia,Canada,Portable
3027199,VE7ZZT,Kevin Wright,,New Westminster,British Columbia,Canada,Mobile
3028001,VY1CA,Kelly Quocksister,,Whitehorse,Yukon,Canada,Mobile
@@ -23207,6 +23650,10 @@
3101171,W4SAF,Scott A Fassina,,Fultondale ,Alabama,United States,DMR
3101172,W9SGM,Gary Suckow Suckow,,Toney,Alabama,United States,DMR
3101173,N4UGD,Gregory W Golden,Greg,Mobile,Alabama,United States,DMR
+3101174,W4KXX,Steve Dutton,,Jasper,Alabama,United States,DMR
+3101175,KD4TFP,Nikki Baker Baker,Nikki,Birmingham,Alabama,United States,DMR
+3101176,WD4NBN,William S Baker,Scott,Birmingham,Alabama,United States,DMR
+3101177,KM4KTC,William C Weir,Chris,Madison,Alabama,United States,DMR
3102001,KL2AV,Brian Corty,,Delta Junction ,Alaska,United States,Portable
3102002,KL7PS,Paul Spatzek,,Ancorage,Alaska,United States,Portable
3102003,KL7RW,Ralph Wilkerson,Ralph,Anchorage,Alaska,United States,Portable
@@ -23217,6 +23664,7 @@
3102008,KL2NL,Jeffrey Kinsman,Jeff,Delta Junction,Alaska,United States,DMR
3102009,AL7U,Andrew Rosenberger,,Chugiak,Alaska,United States,DMR
3102010,KL4GR,Larry A Zuccaro,,Homer,Alaska,United States,DMR
+3102011,KL2JE,Keith Austin,Keith,Anchorage,Alaska,United States,DMR
3104001,WB9EXL,Ron Peters,,Scottsdale,Arizona,United States,Portable
3104002,N7MK,Mark Krotz,,Mesa,Arizona,United States,Portable #1
3104003,N7TWW,Chris Radicke,,Scottsdale,Arizona,United States,Portable #1
@@ -23700,6 +24148,9 @@
3104485,KG7NCV,David A Waller,,Mesa,Arizona,United States,DMR
3104486,KI7CIX,Rodger L Martens,,Mesa,Arizona,United States,DMR
3104487,KI7UP,Norman Seeley Jr,Normanseeleyjr,Scottsdale,Arizona,United States,DMR
+3104488,W2AD,Norman W Rich Jr Rich,Norm,Phoenix,Arizona,United States,DMR
+3104489,N7UJY,Brian K Lehmann,,Phoenix,Arizona,United States,DMR
+3104490,KG7ISX,Kevin Cockerham,,Goodyear,Arizona,United States,DMR
3105001,N5QM,Robert Garcia,,Little Rock,Arkansas,United States,Portable
3105002,KB6FO,George Roher,,Edgemont,Arkansas,United States,Portable
3105003,W5KEC,Kenneth Carpenter,,Edgemont,Arkansas,United States,Portable
@@ -23892,6 +24343,13 @@
3105191,KC5GLP,Margaret E Edwards,Liz,Centerton,Arkansas,United States,DMR
3105192,K5FGQ,Curtis Mcdaniel Mcdaniel,,Benton,Arkansas,United States,DMR
3105193,WA7ERY,Frederick D Stufflebeam,,Mountain Home,Arkansas,United States,CCS7
+3105194,W5STO,Brad Stone,,Conway,Arkansas,United States,DMR
+3105195,KG6UFN,Kim C. Callis Callis,,Little Rock,Arkansas,United States,DMR
+3105196,KG5PEB,Thomas S Avery,Tom,Bryant,Arkansas,United States,DMR
+3105197,N5QS,Roger W Gray,,Searcy,Arkansas,United States,DMR
+3105198,N5QT,Dawn Gray,,Searcy,Arkansas,United States,DMR
+3105199,N5GK,Glenn A King,Glenn,Conway,Arkansas,United States,DMR
+3105200,N5QKH,Judy M Hambuchen,Judy,Conway,Arkansas,United States,DMR
3106001,K6EH,Paul Metzger,,Downey,California,United States,Portable #1
3106002,K6EH,Paul Metzger,,Downey,California,United States,Mobile
3106003,K6EH,Paul Metzger,,Downey,California,United States,Base
@@ -25759,6 +26217,54 @@
3107874,AG6YH,Daniel K Humlick,,Yuba City,California,United States,DMR
3107875,KJ6UJO,Philip M Malouf,Phil,San Pedro,California,United States,DMR
3107876,KJ6LEO,David M Pugh,David,Milpitas,California,United States,DMR
+3107877,KM6ECD,Justin D Slatten Slatten,,Poway,California,United States,DMR
+3107878,KE6CAG,Theodore R. Jones Jr. Jones Jr.,Theodore R.,Inglewood,California,United States,CCS7
+3107879,K6IJ,Frederic K Honnold,,Pine Grove,California,United States,CCS7
+3107880,KE6EQJ,William S Tracy,Bill,Glendale,California,United States,DMR
+3107881,WB6AJX,Douglas J Huggard,Doug,Ramona,California,United States,DMR
+3107882,N6JDS,Justin Slatten,Justin,Poway,California,United States,DMR
+3107883,W6ARH,Alan Hill,Alan.R.Hill,Huntington Beach,California,United States,DMR
+3107884,KE6BK,Eddie A Orosco,,Porterville,California,United States,DMR
+3107885,KK6SEI,Kerop Manoukian,,Valley Village,California,United States,DMR
+3107886,KF6QNC,Kurt Kiesow,,San Jose,California,United States,DMR
+3107887,WB6PFJ,James Branum,,San Jose,California,United States,DMR
+3107888,WW6SE,Steven Elliott,,Redwood City,California,United States,DMR
+3107889,AG6ZH,Richard Souza,,San Jose,California,United States,DMR
+3107890,K6KWR,Keith Riley,,Orinda,California,United States,DMR
+3107891,KJ6ROT,Jason U Abando,,Canoga Park,California,United States,DMR
+3107892,K6BAA,Bruce Anderson,,Rocklin,California,United States,DMR
+3107893,KI6BEQ,David Eklove,,Pittsburg,California,United States,DMR
+3107894,KE6FIQ,John Hart,,Grass Valley,California,United States,DMR
+3107895,NN6H,Tom Newman,,Discovery Bay,California,United States,DMR
+3107896,KT6Y,Jay Caldis,,Walunut Creek,California,United States,DMR
+3107897,K4NZD,Adam Arzani,,Hawthorne,California,United States,DMR
+3107898,N6HRO,Jon Ham Radio Outlet Sunnyvale Arc,Hro,Sunnyvale,California,United States,DMR
+3107899,KC7VFT,Melanie A Mariotti,,Westminster,California,United States,DMR
+3107900,WB9RER,Duane A Mariotti,,Westminster,California,United States,DMR
+3107901,W9KKN,William D Fehring,Bill,Sunnyvale,California,United States,DMR
+3107902,KA6SIP,Tom Deeble,,Antioch,California,United States,DMR
+3107903,KK6POK,Joseph Chiu,,San Gabriel,California,United States,DMR
+3107904,K6KPQ,Nathan Dinitz,,Palo Alto,California,United States,DMR
+3107905,K6TMS,Tommy Seidel,,Palo Alto,California,United States,DMR
+3107906,KA5HPZ,Jeffrey Cornehl,,San Jose,California,United States,DMR
+3107907,KB6BA,Oliver Barrett,,Sunnyvale,California,United States,DMR
+3107908,KK6PLC,Jeff Moore,,San Jose,California,United States,DMR
+3107909,W6OSS,John B Goss,Johnny B,Twentynine Palms,California,United States,DMR
+3107910,KE6RRU,Dan Cater,,San Jose,California,United States,DMR
+3107911,KD6DRS,Devin D Butterfield,,Corona,California,United States,DMR
+3107912,KA6UIX,Jeff L Norris,,Redwood City,California,United States,DMR
+3107913,KE6RRU,Dan R Cater,,San Jose,California,United States,DMR
+3107914,W6RHJ,Cheryl A Miller,Cheryl2,Redwood City,California,United States,DMR
+3107915,KC6OGK,Lawrence A Altomare,,Alameda,California,United States,DMR
+3107916,AK6O,Rodolfo Ramos,Rod,Sacramento,California,United States,DMR
+3107917,K2KK,Salahuddin A Kamran,,San Francisco,California,United States,DMR
+3107918,AI6SX,Eric Zeller,,Rohnert Park,California,United States,DMR
+3107919,W6OSO,Michael R Anderson,,Moreno Valley Ca.,California,United States,DMR
+3107920,KK6VZO,Denny G Viloria,,Fresno,California,United States,DMR
+3107921,KC3BQL,James W Alley,,San Clemente,California,United States,CCS7
+3107922,N6AYF,Steven Hronek Hronek,Steve,La Canada,California,United States,DMR
+3107923,N6HEW,Glen T Caine,,Fresno,California,United States,DMR
+3107924,AE6GM,Richard J Murdock,Jeff,Carlsbad,California,United States,DMR
3108001,NR2Y,Marinus Jacobs,,Colorado Springs,Colorado,United States,Portable
3108002,WA2YZT,Paul Deeth,,Golden,Colorado,United States,Mobile
3108003,K0JSC,Jeff Carrier,,Canon City,Colorado,United States,Portable #1
@@ -26412,7 +26918,7 @@
3108653,KD0FKN,Jesse ,Jesse,Loveland,Colorado,United States,
3108654,KD0GWU,Kirsten ,Kirsten,Loveland,Colorado,United States,
3108655,KD0ZMI,Alexander ,KD0ZMI,Denver,Colorado,United States,
-3108656,KE0CNI,Cary ,Cary,Wellington,Colorado,United States,
+3108656,W0SJR,Cary Rutherford,Cary,Wellington,Colorado,United States,DMR
3108657,W5IDT,Isaac Trujillo,Isaac,Westminster,Colorado,United States,
3108658,KE0CWM,Jay Jay Preston Davis,Jay,Fort Collins,Colorado,United States,
3108659,K0AE,John Polson,John,Denver,Colorado,United States,
@@ -26574,10 +27080,10 @@
3108816,KE0HGS,Jeffrey B Potter,Jeff,Aurora,Colorado,United States,DMR
3108817,KD0YMC,Robert Ray,,Colorado Springs,Colorado,United States,DMR
3108818,KJ6DMS,David M Smith,,Colorado Springs,Colorado,United States,DMR
-3108819,KE0RCJ,Richard Jones,,Castle Rock,Colorado,United States,DMR
+3108819,N0RCJ,Richard Jones,,Castle Rock,Colorado,United States,DMR
3108820,K9MAP,Jeremy T Williams,,Castle Rock,Colorado,United States,CCS7
3108821,KE0OC,Thomas S Evans,,Lakewood,Colorado,United States,DMR
-3108822,K0ATF,James Winchester Winchester,James,Castle Rock,Colorado,United States,DMR
+3108822,K0ATF,James W Winchester,Jim,Castle Rock,Colorado,United States,DMR
3108823,W0ARP,Wayne R Graves Graves,Wayne,Parker,Colorado,United States,DMR
3108824,N0CFM,Robert F Polson,,Westminster,Colorado,United States,DMR
3108825,K0BJR,Brad Ramsey Ramsey,,Westminster,Colorado,United States,DMR
@@ -26590,7 +27096,7 @@
3108832,KD0BES,John F Murphy,,Berthoud,Colorado,United States,DMR
3108833,KC0GBH,Timothy K Rader,,Aurora,Colorado,United States,DMR
3108834,KD0TRY,Ronald M Coffee,,Highlands Ranch,Colorado,United States,DMR
-3108835,K0ATF,James Winchester Winchester,Jim,Castle Rock,Colorado,United States,DMR
+3108835,K0ATF,James W Winchester,Jim,Castle Rock,Colorado,United States,DMR
3108836,KD0EUH,Boston Cartwright,,Castle Rock,Colorado,United States,DMR
3108837,W0AKO,Adam Cartwright,,Castle Rock,Colorado,United States,DMR
3108838,K0PET,Pete E Thompson,,Littleton,Colorado,United States,DMR
@@ -26606,6 +27112,10 @@
3108848,KF6AAR,John C Anderson,,Littleton,Colorado,United States,DMR
3108849,N0MEU,Jay R Witthuhn,,Thornton,Colorado,United States,DMR
3108850,KD0QLV,Keith Barto,,Littleton,Colorado,United States,DMR
+3108851,KC2VJW,Benjamin A Matthews,,Boulder,Colorado,United States,DMR
+3108852,N0DRC,Dustin Cox,,Trinidad,Colorado,United States,DMR
+3108853,N0PKT,Jerrold F Cummings,Jay,Colorado Springs,Colorado,United States,DMR
+3108854,AC0SL,Dorian M Silva,,Denver,Colorado,United States,DMR
3109001,WA2WCB,Michael D. Arsenie,,Roxbury,Connecticut,United States,Portable
3109002,N1MCC,Kit Kocielo,,Old Lyme,Connecticut,United States,Portable
3109003,N1MCC,Kit Kocielo,,Old Lyme,Connecticut,United States,Mobile
@@ -27198,6 +27708,19 @@
3109591,W1INF,Bob Arrl Hq Operators Club,,Newington,Connecticut,United States,DMR
3109592,K1TSB,Timothy Belmonte,,Tolland,Connecticut,United States,DMR
3109593,K1JFT,John F Turner,,Putnam,Connecticut,United States,DMR
+3109594,KC1EKZ,Michael A Radford,,Cheshire,Connecticut,United States,DMR
+3109595,KC1EKZ,Michael A Radford,,Cheshire,Connecticut,United States,DMR
+3109596,KB1VBB,William East Granby Emergency Communications Tea,,East Granby,Connecticut,United States,DMR
+3109597,N1UIS,Austin Mongillo,,Southington,Connecticut,United States,DMR
+3109598,N1QLN,Michael F Sanders,Mike,New Britain,Connecticut,United States,DMR
+3109599,KC1CHB,Region 1 Demhs,,Bridgeport,Connecticut,United States,DMR
+3109600,KC1CHB,Region 2 Demhs,,Middletown,Connecticut,United States,DMR
+3109601,KC1CHB,Region 3 Demhs,,Hartford,Connecticut,United States,DMR
+3109602,KC1CHB,Region 4 Demhs,,Colchester,Connecticut,United States,DMR
+3109603,KC1CHB,Region 5 Demhs,,Waterbury,Connecticut,United States,DMR
+3109604,KC1CHB,Armory Eoc Demhs,,Hartford,Connecticut,United States,DMR
+3109605,KC1BWR,Gregory E Hanson,Greg,Milford,Connecticut,United States,DMR
+3109606,KB1OQR,Stuart I Cobb,,Willington,Connecticut,United States,DMR
3110001,N2VRQ,David Larson,,Bear,Delaware,United States,DMR
3110002,KB3WQH,Robert Dobie,,Newark,Delaware,United States,Portable
3110003,KC3BNZ,Street, Earl,,Claymont,Delaware,United States,Portable
@@ -27216,6 +27739,7 @@
3110016,K3JCT,John C Tillinghast,,Magnolia,Delaware,United States,DMR
3110017,N3YDN,Edward P Aragon,,Bear,Delaware,United States,DMR
3110018,KB3REU,Michael Federico,Mike,Bear,Delaware,United States,DMR
+3110019,N3OB,Edward L Porter Porter,Ed,Millsboro,Delaware,United States,DMR
3111001,W2NJS,Tom Donohoe,,Washington,District of Columbia,United States,Portable
3111002,W3DCA,Michael Kiron,,Washington,District of Columbia,United States,Mobile
3111003,WA1ESQ,Jason Wareham,,Washington,District of Columbia,United States,Portable
@@ -27780,7 +28304,7 @@
3112552,AE4WG,Warren Greenberg,,Ormond Beach,Florida,United States,Portable
3112553,KB4T,Frank Haas,,Holly Hill,Florida,United States,Mobile
3112554,KE4QYM,David Lawton,,Jacksonville,Florida,United States,Portable
-3112555,KE4FZM,Duane Taylor,,Jacksonville,Florida,United States,Portable
+3112555,W4FZM,Duane Taylor,,Jacksonville,Florida,United States,DMR
3112556,N4ZZN,Gregory Geist,,DeLand,Florida,United States,Portable
3112557,W4RBW,Frank Halas,,Naples,Florida,United States,Portable
3112558,KB4LSL,Joseph T.ryba,,Crestview,Florida,United States,Mobile
@@ -27861,7 +28385,7 @@
3112633,WQ4M,Donna J. Barker,,Tallahassee,Florida,United States,Portable
3112634,WQ4M,Donna J. Barker,,Tallahassee,Florida,United States,Mobile
3112635,N4XUX,William Allen,,hilliard,Florida,United States,Portable
-3112636,KB1PA,Barry Porter,,Delray Beach,Florida,United States,Non-DMR
+3112636,KB1PA,Barry Porter,,Delray Beach,Florida,United States,DMR
3112637,K1CW,Michael Gibbemeyer,,Deerfield Beach,Florida,United States,Portable
3112638,KL7HX,Glenn Alvord,,Sarasota,Florida,United States,Portable
3112639,WA2PVI,Nicholson David J,,St James City,Florida,United States,Mobile
@@ -28614,7 +29138,6 @@
3113395,KM4WEK,Robert J Bennett,Bob,Dallas,Georgia,United States,DMR
3113396,KA4HLE,Richard A Taylor,,Marietta,Georgia,United States,DMR
3113397,KM4KPI,Jeffrey D Hochberg,,Atlanta,Georgia,United States,DMR
-3113398,KW4KWJ,Kevin W Jones,,Gainesville,Georgia,United States,DMR
3113399,KM4VGM,Brian Cleary,,Milton,Georgia,United States,DMR
3113400,AB4MM,Marvin A Mealer,,Tunnel Hill ,Georgia,United States,DMR
3113401,KG4TTT,Jeffrey K Palmer,,Cumming,Georgia,United States,DMR
@@ -28636,6 +29159,11 @@
3113417,KW4WP,Stephen Smith,,Stone Mountain,Georgia,United States,DMR
3113418,KE4FAT,Joseph Perry,Joe,Saint Marys,Georgia,United States,DMR
3113419,K4ZRI,Shawn Walsh Walsh,,Canton,Georgia,United States,DMR
+3113420,KM4UJP,Jonathan Goodson Goodson,Jonathan,Avondale Est,Georgia,United States,DMR
+3113421,KM4YHN,Houston Davidson,Houston,Austell,Georgia,United States,DMR
+3113422,KC3DEZ,William G Jones,Bill,Saint Marys,Georgia,United States,DMR
+3113423,N1PDR,Robert J Alred,,Marietta,Georgia,United States,DMR
+3113425,KK4KHS,Robert M Smith,,Lilburn,Georgia,United States,DMR
3115001,NH7YS,Tad Miura,,Lihue,Hawaii,United States,Mobile
3115002,KH6DQ,Jack Tsujimura,,Honolulu,Hawaii,United States,Portable
3115003,AH6PR,Mark Pascal,,Kailua,Hawaii,United States,Portable
@@ -28858,6 +29386,8 @@
3116045,W7ELE,Richard A Wagner,,Mccall,Idaho,United States,DMR
3116046,W7AMI,Terry L Dobler,,Boise,Idaho,United States,DMR
3116047,N7BMH,Brian M Hamilton,Backroad Explorer,Mccall,Idaho,United States,DMR
+3116048,KG7VMB,Patrick M Mclaughlin,Patwackp01,Boise,Idaho,United States,DMR
+3116049,W6LOR,Mandi Grantham,,Middleton,Idaho,United States,DMR
3117001,KB9LIQ,Ben Manley,,Moweaqua,Illinois,United States,Portable
3117002,KB9LIQ,Ben Manley,,Moweaqua,Illinois,United States,V-Portable
3117003,KB9LIQ,Ben Manley,,Moweaqua,Illinois,United States,V/U Mobiles
@@ -29599,6 +30129,18 @@
3117740,WB9RKD,Jeffrey Hopkins,,Lake Villa,Illinois,United States,DMR
3117741,N9NLE,Donald H Bryant,,West Dundee,Illinois,United States,DMR
3117742,N9EMS,Richard A Vanderwerker,Rich,Antioch,Illinois,United States,DMR
+3117743,N9VHL,Christopher N Wewetzer,,Bethalto,Illinois,United States,CCS7
+3117744,KC9IFP,Robert J Stallwitz,Bob,Pekin,Illinois,United States,DMR
+3117745,KC9AYH,John E Lichtenauer,,Antioch,Illinois,United States,DMR
+3117746,WB9RKD,Jeffrey Hopkins,Jeff,Lake Villa,Illinois,United States,DMR
+3117747,KD9FAC,Shannon P Mcmahon,,Urbana,Illinois,United States,DMR
+3117748,KC9IMF,Alan Moyzis,,Chicago,Illinois,United States,DMR
+3117749,KD9GYW,Charles A Miggins,Chuck,Chicago,Illinois,United States,DMR
+3117750,KD9GYW,Charles A Miggins,Chuck,Chicago,Illinois,United States,DMR
+3117751,KU9Z,Adam A Strack,,Evanston,Illinois,United States,DMR
+3117752,KC9DNH,Brandon F Krozel,,Antioch,Illinois,United States,DMR
+3117753,N9OZB,Aaron A Collins,,Arlington Heights,Illinois,United States,DMR
+3117754,KB9MAC,Kent Vanderploeg,,Minooka,Illinois,United States,DMR
3118001,KK9EJ,Ej Caylor,,Noblesville,Indiana,United States,Portable
3118002,KG9NN,Robert Long,,Auburn,Indiana,United States,Portable
3118003,KC8PTE,David Wild,,Bloomington,Indiana,United States,Portable
@@ -29696,7 +30238,7 @@
3118095,NA9L,Vernon Austermiller,,Mooresville,Indiana,United States,Portable
3118096,KA9PAZ,Samuel Cummings,,Plainfield,Indiana,United States,Mobile
3118097,KB9RBF,Michael Carmer,,Indianapolis,Indiana,United States,Portable
-3118098,WC9D,Mark Buchanan,,Carmel,Indiana,United States,DMR
+3118098,K9WTH,Mark Buchanan,,Carmel,Indiana,United States,DMR
3118099,WV9O,Marvin Boetcher,,Hobart,Indiana,United States,Portable
3118100,KC9RTJ,Jayson Bauernfiend,,Mooresville,Indiana,United States,Portable
3118101,KE9TC,Kenneth Brown,,Crown Point,Indiana,United States,Portable
@@ -30086,7 +30628,7 @@
3118485,WB9EMT,Andrew Baugh,Andrew,Walkerton,Indiana,United States,
3118486,NU9I,David Kaufman,Dave,Walkerton,Indiana,United States,
3118487,K9ITX,Glenn Bickett,Glenn,Lafayette,Indiana,United States,
-3118488,KD9FJQ,Greg Haschel,Greg,Argos,Indiana,United States,DMR
+3118488,W9GND,Greg Haschel,Greg,Argos,Indiana,United States,DMR
3118489,W9KXP,Mike Townsend,Mike,Evansville,Indiana,United States,
3118490,KB9BCO,Charles Ewing,Chuck,Harlan,Indiana,United States,
3118491,KD9BCO,Charles Ewing,Chuck,Harlan,Indiana,United States,
@@ -30368,6 +30910,15 @@
3118768,KC9URP,David P Keiser,,Greenfield,Indiana,United States,DMR
3118769,KC9JOU ,Kevin Blum,,Whiteland,Indiana,United States,DMR
3118770,KC9KTV,James B Beckner,,Rensselaer,Indiana,United States,DMR
+3118771,K9BRO,Jeffrey M Brown,,Morocco,Indiana,United States,DMR
+3118772,KD9ECG,Timothy G Renshaw,,New Palestine,Indiana,United States,DMR
+3118773,N9NGB,Keith Smith Smith,,Jeffersonville,Indiana,United States,DMR
+3118774,KC9FVE,Donald R Cannon,,Sellersburg,Indiana,United States,DMR
+3118775,KC9CUY,Andrew J Fager,Aj,Greenfield,Indiana,United States,DMR
+3118776,N9ALD,Aaron L Donaldson,,Indianapolis,Indiana,United States,DMR
+3118777,KB9OGU,Harold W. Williams Williams,,Morocco,Indiana,United States,DMR
+3118778,KD9FQT,Matthew T Knouff Knouff,,Lafayette,Indiana,United States,DMR
+3118779,K9GX,Mark S Williams,,Elizabeth,Indiana,United States,DMR
3119002,WD0FIA,Keith Carpenter,Keith,Bridgewater,Iowa,United States,
3119003,W0DT,Donald Talaska,,Cedar Falls,Iowa,United States,Portable
3119004,KD0WY,Roger Gorzney,,CLINTON,Iowa,United States,Mobile
@@ -30400,6 +30951,7 @@
3119031,N0SKF,Dusty L Proctor,,Ottumwa,Iowa,United States,CCS7
3119032,AD0AM,Adam R Rennison,,Dyersville,Iowa,United States,Other
3119033,AD0AM,Adam R Rennison,,Dyersville,Iowa,United States,CCS7
+3119034,N0ZJT,Eric A Grams,,Oelwein,Iowa,United States,DMR
3119100,WB0VHB,Randy Nelson,,Mt. Union,Iowa,United States,Mobile #1
3119101,K0TSK,Timothy Kilbride,,Victor,Iowa,United States,Portable
3119102,K7PEM,Paul Mccoy,,Anamosa,Iowa,United States,Portable
@@ -30533,6 +31085,13 @@
3120091,KD0IJT,John Ross,,Prairie Village,Kansas,United States,DMR
3120092,KE0AOU,David W Gamel,,Merriam,Kansas,United States,DMR
3120093,KC0PUK ,John A Borzen,,Mission ,Kansas,United States,DMR
+3120094,KU0FAN,Bradley W Kelsey,,Prairie Village,Kansas,United States,DMR
+3120095,KB0UIP,William S England,,Basehor,Kansas,United States,DMR
+3120096,N0FB,Jay H Burgherr,Jay,Olathe,Kansas,United States,DMR
+3120097,NM0N,Thomas J Rhodelander,,Shawnee,Kansas,United States,DMR
+3120098,WD0GQA,Charles R Lovgren,Charlie,Kansas City,Kansas,United States,DMR
+3120099,K0IMP,Allen B Rawitch,Al,Stilwell,Kansas,United States,DMR
+3120100,NM0N,Thomas J Rhodelander,Tom,Shawnee,Kansas,United States,DMR
3120101,N0MJS,Cort Buffington,,Lawrence,Kansas,United States,Portable
3120102,KD0CYJ,Shannon O’connor,,Lawrence,Kansas,United States,Portable
3120103,N0MJS,Cort Buffington,,Lawrence,Kansas,United States,Portable
@@ -30540,6 +31099,7 @@
3120105,WV0T,Phil Leonard,,Overland Park,Kansas,United States,Portable
3120106,WV0T,Philip Leonard,,Overland Park,Kansas,United States,Mobile
3120107,KC0IDF,Lou Eckler,,Lawrence,Kansas,United States,Portable
+3120108,N0PGH,Brian K Scott,,De Soto,Kansas,United States,DMR
3120109,WD0EMR,Ken Johnson,,Lawrence,Kansas,United States,Portable
3120110,WD0BWE,Don Morris,,Linwood,Kansas,United States,Portable
3120113,KA2RZO,Rob Perez,,Lawrence,Kansas,United States,Portable
@@ -30696,7 +31256,7 @@
3121078,KC8VYJ,Trevor T Shibley,,Crescent Springs,Kentucky,United States,DMR
3121079,KC8VYJ,Trevor T Shibley,,Erlanger,Kentucky,United States,DMR
3121080,KC4ALV,Anthony L Drane,,Louisville,Kentucky,United States,DMR
-3121081,KK4QL,Kenneth T Son,,Etown,Kentucky,United States,DMR
+3121081,KK4QL,Kenneth T Son .,,Elizabethtown,Kentucky,United States,DMR
3121082,K4TCD,Thomas C Dennis,Cecil,Covington,Kentucky,United States,DMR
3121083,KI4FRJ,Billy D Pennington,,London,Kentucky,United States,DMR
3121084,KI4JWK,Robert G Brown,Bob,Lexington,Kentucky,United States,DMR
@@ -30811,12 +31371,18 @@
3121193,KK4FIH,William E Downs,Bill,Louisville,Kentucky,United States,DMR
3121194,KM4VHI,Bruce W Cory,,Barbourville,Kentucky,United States,DMR
3121195,KK4UDJ,Billy L England,,Richmond,Kentucky,United States,DMR
-3121196,WA4UIF,Toby E Wofford,,Rockfield,Kentucky,United States,DMR
3121197,KJ4HEF,Revil Pharris,Jay,Louisville,Kentucky,United States,DMR
3121198,KI4UMF,Tim J Morgan,,Whitley,Kentucky,United States,DMR
3121199,W4ALD,Austin L Denyer,Ozz,Prestonsburg,Kentucky,United States,DMR
3121200,KC4ZMZ,William M Shive,Bill,Goshen,Kentucky,United States,DMR
3121201,KI4QQF,Tristan D Wilson,,Versailles,Kentucky,United States,DMR
+3121202,AD4WB,Randall E Gilreath,Randy,Strunk,Kentucky,United States,DMR
+3121203,AG4ST,Philip R Boerger,,Lawrenceburg,Kentucky,United States,Other
+3121204,KM4RGU,Anthony A Coker,,Lexington,Kentucky,United States,DMR
+3121205,W4VJE,James H Ball,,East Point,Kentucky,United States,DMR
+3121206,KB4CF,Daniel W Hund,,Louisville,Kentucky,United States,DMR
+3121207,KK4AHJ,James W Mills,,Utica,Kentucky,United States,DMR
+3121208,AG4ST,Philip R Boerger,,Lawrenceburg,Kentucky,United States,DMR
3122001,KD5SSQ,Anthony Tango,,Covington,Louisiana,United States,Portable
3122002,W5ELM,Earl Morrow,,Oberlin,Louisiana,United States,Portable
3122003,KB5UDF,Jean Boudreaux,,Lafayette,Louisiana,United States,Portable
@@ -30848,9 +31414,11 @@
3122030,KF5HQB,Cameron S Smith,Camo,Haughton,Louisiana,United States,DMR
3122031,KF5HQB,Cameron S Smith,Camo,Haughton,Louisiana,United States,CCS7
3122032,W5TMP,Terry M Partigianoni,,Leesville,Louisiana,United States,CCS7
-3122033,KG5NGJ,Troy L Rogers,,Winnfield,Louisiana,United States,DMR
+3122033,K5TLR,Troy L Rogers,,Winnfield,Louisiana,United States,DMR
3122034,WB5CCO,Richard W Wheat,Rick,Bush,Louisiana,United States,DMR
3122035,WA5KBH,Deacon George Carr Carr,,Lake Charles,Louisiana,United States,DMR
+3122036,KG5BTN,James E Ogden,,Bastrop,Louisiana,United States,DMR
+3122037,KG5PRP ,Sandra R Griffin,Renee,West Monroe,Louisiana,United States,DMR
3123001,N1XBM,Robert Newberry,,Raymond,Maine,United States,Portable
3123002,WJ1D,James Delancy,,Saint Francis,Maine,United States,Portable
3123003,WJ1D,James Delancy,,Saint Francis,Maine,United States,Mobile
@@ -31084,7 +31652,7 @@
3123232,NT1N,William A Akins,Bill,Winthrop,Maine,United States,DMR
3123233,K1SRE,Mark F Reinen,Mark,Phippsburg,Maine,United States,Other
3123234,W1JIW,Joseph I Wallingford,Ian,Minot,Maine,United States,DMR
-3123235,KF1G,Leroy A Jason,,Steep Falls ,Maine,United States,DMR
+3123235,KF1G,Lee Jason,,Steep Falls ,Maine,United States,DMR
3123236,W1OCA,Robert Gould,,South Paris,Maine,United States,DMR
3123237,N1ZNJ,Gary L Gilman,,Naples,Maine,United States,DMR
3123238,WA1REQ,Michael Pushard,,Newport,Maine,United States,DMR
@@ -31131,6 +31699,11 @@
3123279,KC1DI,David O Rowe,Dave,Gorham,Maine,United States,DMR
3123280,KB1HUU,David R Francoeur,,Alfred,Maine,United States,DMR
3123281,W2VAN,Michael Mooney,,Portland,Maine,United States,DMR
+3123282,K1AQE,Courtney P Chandler,,Fairfield,Maine,United States,DMR
+3123283,N1NOW,Jon K Rowe,,Vassalboro ,Maine,United States,DMR
+3123284,N1BMB,Daryl W Cook,,Scarborough,Maine,United States,DMR
+3123285,KC1FLF,Sean P Brown,,Bingham,Maine,United States,DMR
+3123286,W1XXV,Joseph Shortill,,East Waterboro,Maine,United States,DMR
3124001,N3LHD,Tom Provenza,,Davidsonville,Maryland,United States,Portable & Mobile
3124002,N3LHD,Tom Provenza,,Davidsonville,Maryland,United States,Control Station
3124003,N3LHD,Tom Provenza,,Davidsonville,Maryland,United States,Demo
@@ -31391,6 +31964,8 @@
3124258,W3JSD,John J Pecoraro,,Laurel,Maryland,United States,DMR
3124259,KC3BWH,Walter S Mangra,,Bowie,Maryland,United States,Other
3124260,KB3WRT,Larry L Goodwin,,Laytonsville,Maryland,United States,DMR
+3124261,KC3HSY,Carlos M Pacho,,Bethesda,Maryland,United States,DMR
+3124262,KA3YSN,Michael F Delauney,,Baltimore,Maryland,United States,DMR
3125001,W1NAU,Tim Nau,,Boston,Massachusetts,United States,Portable
3125002,KT1U,Vivian Podsiadlo,,Mendon,Massachusetts,United States,Portable
3125003,AE1C,Jim Podsiadlo,,Mendon,Massachusetts,United States,Mobile
@@ -31758,7 +32333,7 @@
3125366,N1PMA,Craig A Gagne,,Granby,Massachusetts,United States,DMR
3125367,W1ATF,Philip M Clark,Phil,Framingham,Massachusetts,United States,DMR
3125368,KC1DBH,Andrew Dimare,,Marblehead,Massachusetts,United States,DMR
-3125369,KB1OBG,Kevin J Lisciotti,,Shrewsbury,Massachusetts,United States,DMR
+3125369,W1KJL,Kevin J Lisciotti,,Shrewsbury,Massachusetts,United States,DMR
3125370,KB1GTG,Jorge J Colina,,Bass River,Massachusetts,United States,DMR
3125371,WA1DRQ,Robert J Zylinski,Bob,Sandwich,Massachusetts,United States,DMR
3125372,KB1YAP,Art Wilcox,,Dennis,Massachusetts,United States,DMR
@@ -31794,7 +32369,21 @@
3125402,N1PMB,Donald T Manley,,New Bedford,Massachusetts,United States,DMR
3125403,KB1KLA,Keith G Vetreno,,Sudbury,Massachusetts,United States,DMR
3125404,W2FBI,Michael A Mcginty,,Sandwich,Massachusetts,United States,DMR
+3125405,W2FBI,Michael Mcginty,Mike,Sandwich,Massachusetts,United States,DMR
3125406,KC1GGN,Glenn A Mcginty,,Sandwich,Massachusetts,United States,DMR
+3125407,N2YHK,John Ruggiero,,Worcester,Massachusetts,United States,DMR
+3125408,N1NIG,John Palaima,,Beverly,Massachusetts,United States,DMR
+3125409,N1GSC,David G Earle,,Beverly,Massachusetts,United States,DMR
+3125410,N1GSC,David G Earle,,Beverly,Massachusetts,United States,DMR
+3125411,KB1QHV,Bill T Thompson,Trish,Malden,Massachusetts,United States,DMR
+3125412,N1YHS,Ralph Swenson,,East Falmouth,Massachusetts,United States,DMR
+3125413,W1EXP,W1EXP-JOTAÂ Barnstable Amateur Radio Club,,Osterville,Massachusetts,United States,DMR
+3125414,W1KQ,JJ Martin,,Dracut,Massachusetts,United States,DMR
+3125415,KB1IHU,Chuck Cotnoir,,Vineyard Haven,Massachusetts,United States,DMR
+3125416,K1RWS,Ricghard T Macdonald Macdonald,Dick,Hopedale,Massachusetts,United States,DMR
+3125417,KC1EFX,Anthony R Gould,Tony,Edgartown,Massachusetts,United States,DMR
+3125418,KC1JET,James E Tynan,,Rehoboth ,Massachusetts,United States,DMR
+3125419,WS1K,Jonathan H Jesse,Jon,Plymouth,Massachusetts,United States,DMR
3126001,N8CN,Joe Erlewein,,Traverse City,Michigan,United States,Portable
3126002,KD8EYF,David Kierzkowski,,Detroit,Michigan,United States,Portable#1
3126003,W8FSM,Fred Moses,,Fenton,Michigan,United States,Portable #1
@@ -32748,6 +33337,10 @@
3126952,AB8DT,Ronald J Karger,,Cedar Springs,Michigan,United States,CCS7
3126953,AB8DT,Ronald Karger,Ron,Cedar Springs,Michigan,United States,DMR
3126954,KD8AYE,Kirk P Graham,,Big Rapids,Michigan,United States,DMR
+3126955,KC8MDM,Donald L Vanderkooi,,Norton Shores,Michigan,United States,DMR
+3126956,N8NOE,Jeffrey M Swiger,,Waterford,Michigan,United States,DMR
+3126957,KC8SZS,Stephen C Folk,,Clinton Township,Michigan,United States,DMR
+3126958,AC8JN,Frank Dusenbury Dusenbury,,Flint,Michigan,United States,DMR
3127001,N0NMZ,Shep Shepardson,,Roseville,Minnesota,United States,Mobile
3127002,NH7CY,Jason Ballesteros,,Saint Paul,Minnesota,United States,Portable
3127003,NH7CY,Jason Ballesteros,,Saint Paul,Minnesota,United States,Demo
@@ -32985,11 +33578,11 @@
3127238,KD0MLO,Harold Middleton,Harold,Brooklyn Center,Minnesota,United States,DMR
3127239,WY0H,Steven J Bernhardt,,Lakeville,Minnesota,United States,DMR
3127240,KE0OR,Daniel J Royer,Dan,Bloomington,Minnesota,United States,DMR
-3127241,KC0EQF,Chad J Gross,,Sartell,Minnesota,United States,DMR
+3127241,W0SAV,Chad J Gross,,Sartell,Minnesota,United States,DMR
3127242,KD0DFG,Thomas J Simota,Tom,Eagan,Minnesota,United States,DMR
3127243,KC0RIS,Chris R Zellman,,Cologne,Minnesota,United States,DMR
3127244,KE0CRW,Gregory C Weamer,,Plymouth,Minnesota,United States,DMR
-3127245,KC0EQF,Chad J Gross,,Sartell,Minnesota,United States,DMR
+3127245,W0SAV,Chad J Gross,,Sartell,Minnesota,United States,DMR
3127246,KD0DOS,Thomas H Weyhrauch,Tom,Saint Cloud,Minnesota,United States,DMR
3127247,K9APL,Trenton Lyden Lyden,Trenton,Cottage Grove,Minnesota,United States,DMR
3127248,K0BBC,Matthew T Holden,Matt,Bloomington,Minnesota,United States,DMR
@@ -33006,6 +33599,18 @@
3127259,KF0DW,Dave A Walden,,Blaine,Minnesota,United States,DMR
3127260,W0GAF,Robert A Jensen,Bob,Oakdale,Minnesota,United States,DMR
3127261,KC0SMO,Paul H Ritter,,Saint Stephen,Minnesota,United States,DMR
+3127262,WJ0L,Randy A Welsand,,St. Cloud,Minnesota,United States,DMR
+3127263,KC0LQL,Tim J Neu,,Lino Lakes,Minnesota,United States,DMR
+3127264,W0DRF,Dan Fredell Fredell,,Excelsior,Minnesota,United States,DMR
+3127265,N0SBU,George D Lavallee,,Hugo,Minnesota,United States,DMR
+3127266,N0SBU,George D Lavallee,,Hugo,Minnesota,United States,DMR
+3127267,KC0TAB,Jesse L Abfalter,,Sartell,Minnesota,United States,DMR
+3127268,WB9CFN,Aaron J Larson,Aj Storm ,Maple Grove ,Minnesota,United States,DMR
+3127269,KB0CEF,Kay M Welsand,,St Cloud,Minnesota,United States,DMR
+3127270,N0JOL,Joe L Showalter,,Isanti,Minnesota,United States,DMR
+3127271,N0JOL,Joe Showalter,,Isanti,Minnesota,United States,DMR
+3127272,KD0DAC,Doug Jungels,,St. Cloud,Minnesota,United States,DMR
+3127273,KC0NPA,Richard G Bopp,,Shakopee,Minnesota,United States,DMR
3128001,KF5MWE,Gary White,,Quitman,Mississippi,United States,Portable
3128002,K5WSM,Lemuel Smith,,Fulton,Mississippi,United States,
3128003,KD4VVZ,General Dailey,,Lucedale,Mississippi,United States,Portable
@@ -33236,6 +33841,18 @@
3129180,KB0SEP,Branden Richeson Richeson,,Peculiar,Missouri,United States,DMR
3129181,N6TDM,Donald Nutt,Don,Peculiar,Missouri,United States,DMR
3129182,WA0TJT,Keith D Kaiser,,Kansas City,Missouri,United States,DMR
+3129183,W0DMT,Keith Rushing,,Grandview,Missouri,United States,DMR
+3129184,KE0DSV,David Albright,,Kansas City,Missouri,United States,DMR
+3129185,WB0LBZ,Jacob T Mc Ginnis,Chip,Kansas City,Missouri,United States,DMR
+3129186,KE0GRG,Howard C Hoyt,,Lees Summit,Missouri,United States,DMR
+3129187,AD0HW,Gailen L Gillespie,Lee,Peculiar,Missouri,United States,DMR
+3129188,W0WFX,Jeffrey L Miller,,Chilhowee,Missouri,United States,DMR
+3129189,KB0VRM,Gary Herstein Herstein,,Nevada,Missouri,United States,DMR
+3129190,KE0KEY,James Pfeifer Pfeifer,,Aurora,Missouri,United States,DMR
+3129191,W0NQX,Robert R ( Bob ) Brown,Drsm0ke,Kansas City Metro,Missouri,United States,DMR
+3129192,KS1ANG,Judith A Brown,,Kansas City Metro,Missouri,United States,DMR
+3129193,N0NUT,Richard R Brown,,Kansas City Metro,Missouri,United States,DMR
+3129194,KE0FVN,Archiebald Croux,Archie,Belton,Missouri,United States,DMR
3130001,K7MT,Bill Erhardt,Bill,Helena,Montana,United States,DMR
3130002,KG6MQE,Jim Robinson,,Hamilton,Montana,United States,Portable
3130003,AE7OD,Jeff Cherry,,HAMILTON,Montana,United States,Portable
@@ -33812,6 +34429,7 @@
3132408,K7UAS,John D Dunn,,Reno,Nevada,United States,DMR
3132409,AF7CE,Eric J Christianson,Chris,Cold Springs,Nevada,United States,DMR
3132410,N5TYH,Johnny M Sappington,,Boulder City,Nevada,United States,DMR
+3132411,KD7QDG,James A Deane,,Minden,Nevada,United States,DMR
3133001,NE1B,Bill Barber,,Hudson,New Hampshire,United States,Portable
3133002,NE1B,Bill Barber,,Hudson,New Hampshire,United States,Mobile
3133003,WA2IYO,Pat Barber,,Hudson ,New Hampshire,United States,
@@ -34025,7 +34643,7 @@
3133211,W1HS,Steve Goldsmith,,Grantham,New Hampshire,United States,CCS7
3133212,N7ECM,Eric Montague,,Hudson,New Hampshire,United States,DMR
3133213,KA1KST,James B Whittaker,,Walpole,New Hampshire,United States,DMR
-3133214,K1RJZ,Richard J Zach,Rick,Gilford,New Hampshire,United States,DMR
+3133214,K1RJZ,Rick Zach,Rick,Gilford,New Hampshire,United States,DMR
3133215,W1BST,LRRA Lakes Region Repeater Association,Lrra,Gilford,New Hampshire,United States,DMR
3133216,KA1VGM,Lawrence A Levesque,Larry,Surry,New Hampshire,United States,DMR
3133217,N1MXJ,Michael J Paulin,,Dublin,New Hampshire,United States,DMR
@@ -34080,6 +34698,18 @@
3133267,K1FDD,John E Marcel,,Penacook,New Hampshire,United States,DMR
3133268,KB1HHI,Stephen J Kalil,Steve,Bedford,New Hampshire,United States,DMR
3133269,K1UAF,John R Gotthardt,,Wolfeboro,New Hampshire,United States,DMR
+3133270,N1AAM,Scott Larose,,Hudson,New Hampshire,United States,DMR
+3133271,KB1FZN,Dave Law,Dave,Pelham,New Hampshire,United States,DMR
+3133272,W1EBC,Edward H Cunningham,Ed,Candia,New Hampshire,United States,DMR
+3133273,WA1NLR,Bill Thorpe,Bill,Allenstown,New Hampshire,United States,DMR
+3133274,K8TOW,James E Bray,,Hampton,New Hampshire,United States,DMR
+3133275,KC1AMY,Justin D Janvrin,,Seabrook,New Hampshire,United States,DMR
+3133276,N1HNE,Justin T Horan,Tom,Stratham,New Hampshire,United States,DMR
+3133277,KB1YWL,Donald A Richardson,,Nashua,New Hampshire,United States,DMR
+3133278,N1ZGI,Larry Wickens Wickens,Larry,Newmarket,New Hampshire,United States,DMR
+3133279,W1DAY,David E Day,Dave,Epping,New Hampshire,United States,DMR
+3133280,W1QKR,Mark W Barker,,Boscawen,New Hampshire,United States,DMR
+3133281,N1DQQ,Dennis C Donah,Pawnsax,Hudson,New Hampshire,United States,DMR
3134001,K2XTS,Alex Chadis-ny Sysop,,Hoboken,New Jersey,United States,Portable
3134002,K2XTS,Alex Chadis-ny Sysop,,Hoboken,New Jersey,United States,Mobile
3134003,KC2WNG,Israel Goldstein,,East Brunswick,New Jersey,United States,Portable
@@ -34094,7 +34724,7 @@
3134012,N2OVA,Thomas Dahlstrom,,Bayonne,New Jersey,United States,Portable
3134013,K2KEG,Kyle Grace,,Point Pleasant,New Jersey,United States,Portable #1
3134014,K2KEG,Kyle Grace,,Point Pleasant,New Jersey,United States,Portable #2
-3134015,K2XPX,Bill Johnson,,East Brunswick,New Jersey,United States,Portable
+3134015,K2APX,Bill Johnson,,East Brunswick,New Jersey,United States,DMR
3134016,KC2KLW,Kenneth Link,,Edison,New Jersey,United States,Portable
3134017,W2RN,Tom Marrin,,Wood-Ridge,New Jersey,United States,Portable
3134018,N2RDA,Robert Arms,,Wayne,New Jersey,United States,Portable
@@ -34678,6 +35308,13 @@
3134596,KD2HWH,Brian Finch Finch,,Moorestown,New Jersey,United States,DMR
3134597,KD2ION,Robert L Scott,Scotty,Paterson,New Jersey,United States,DMR
3134598,KD2JUL,Eric Schwab Schwab,Eric,Toms River,New Jersey,United States,DMR
+3134599,KM4WUD ,Motodmr Network ,,Paramus,New Jersey,United States,Club Fleet
+3134600,KD2LZW,Piotr Gawel,,Bloomfield,New Jersey,United States,DMR
+3134601,KD2LZW,Piotr Gawel,,Bloomfield,New Jersey,United States,DMR
+3134602,AC2ST,Steve R Thomas,Wheeler,Brick,New Jersey,United States,DMR
+3134603,W2HRW,Gary Shore Points Amateur Radio Club,,Brigantine,New Jersey,United States,DMR
+3134604,K1WS,Kenneth W Smalley,,Kinnelon,New Jersey,United States,DMR
+3134605,KD2LZT,Jonathan P Jonach,Jay,Newton,New Jersey,United States,DMR
3135001,N5BG,Larry Griggs,,Virden,New Mexico,United States,Mobile
3135002,N5BG,Larry Griggs,,Virden,New Mexico,United States,Mobile
3135003,N5UBJ,William Van Huss,,Farmington,New Mexico,United States,Mobile
@@ -34745,6 +35382,7 @@
3135065,K5RHD,Randolph H Diddel,Randy,Albuquerque,New Mexico,United States,CCS7
3135066,KD0WHB,Skyler Fennell Fennell,,Socorro,New Mexico,United States,DMR
3135067,KD0WHB,Skyler Fennell,,Socorro,New Mexico,United States,DMR
+3135068,KG5HDJ,Phil Holland Holland,Phil,Rio Rancho,New Mexico,United States,DMR
3136001,W2KTU,Keivan Keihani,,Fresh Meadows,New York,United States,Portable #1
3136002,N2WGC,Michael Gomez,,Queens,New York,United States,Portable
3136003,K2XTS,Alex Chadis-ny Sysop,,Queens,New York,United States,Portable
@@ -36945,8 +37583,8 @@
3139204,N8WAC,Tony Everhardt,,Walbridge,Ohio,United States,Mobile
3139205,K8IGU,Brian Snyder,,Luckey,Ohio,United States,Portable
3139206,K8IGU,Brian Snyder,,Luckey,Ohio,United States,Mobile
-3139207,KD8EAD,Justin Drummond,,Londonderry,Ohio,United States,Portable
-3139208,KD8EAD,Justin Drummond,,Londonderry,Ohio,United States,Portable
+3139207,W8JDA,Justin Drummond,,Londonderry,Ohio,United States,DMR
+3139208,W8JDA,Justin Drummond,,Londonderry,Ohio,United States,DMR
3139209,KD8CHP,Jesse Stanley,,Chillicothe,Ohio,United States,Portable
3139210,N8YAE,Michael Kleinfelt,,Walbridge,Ohio,United States,Portable
3139211,N8YAE,Michael Kleinfelt,,Walbridge,Ohio,United States,Mobile
@@ -37594,6 +38232,22 @@
3139858,W8IH,Steven Mainger Mainger,Steven,Westlake,Ohio,United States,DMR
3139859,KC8MQO,Daniel W Clay,Dan,Columbus,Ohio,United States,DMR
3139860,N8BD,Benjamin J Doran,,Millersport,Ohio,United States,DMR
+3139861,KC8SLZ,Paul L Walker,,Miamisburg,Ohio,United States,DMR
+3139862,AB8OU,Allan Zadiraka Zadiraka,Zeke,Akron,Ohio,United States,DMR
+3139863,N8YD,Adam T Liette,,Greenville,Ohio,United States,DMR
+3139864,KC8MQO,Daniel Clay,Dan,Columbus,Ohio,United States,DMR
+3139865,KE8RIN,Michael R Kerin,,Toledo,Ohio,United States,DMR
+3139866,N8NJ,Larry Weaver,Larry,Northwood,Ohio,United States,DMR
+3139867,W8JKC,Justin Corner,,Canton,Ohio,United States,DMR
+3139868,KC8PNY,Aaron L Orr,,Union City,Ohio,United States,DMR
+3139869,WD9FTZ,Gregory Drezdzon,Zman,Akron,Ohio,United States,DMR
+3139870,WD9FTZ,Gregory Drezdzon,Zman,Akron,Ohio,United States,DMR
+3139871,KE8DPC,Cynthia Thompson,Cat,Wadsworth,Ohio,United States,DMR
+3139872,KB8WVH,Nicholas J Osterwyk,Nick,Westerville,Ohio,United States,DMR
+3139873,KE8FEV,Joshua J Kresser,,Findlay,Ohio,United States,DMR
+3139874,K8CBC,Christopher B Calhoun,,Newark,Ohio,United States,DMR
+3139875,WD8LEI,Eric R Willman,,Bowling Green,Ohio,United States,DMR
+3139876,KK4CTF,Bryan R Snatchko,Eno00wen,Lexington,Ohio,United States,DMR
3140001,AE5DN,Mark Matalik,,Oklahoma City,Oklahoma,United States,Portable
3140002,AE5DN,Mark Matalik,,Oklahoma City,Oklahoma,United States,Mobile
3140003,KE5BDG,Leah Matalik,,Oklahoma City,Oklahoma,United States,Portable
@@ -37925,7 +38579,7 @@
3140329,KB7QQQ,Samuel Roe Roe,,Midwest City,Oklahoma,United States,DMR
3140330,AA0NI,Daniel M Reynolds,,Oklahoma City,Oklahoma,United States,DMR
3140331,W3RXO,Daniel K Galligan,Dan,Evening Shade,Oklahoma,United States,DMR
-3140332,AG5EU,Jesse M Painter,,Edmond,Oklahoma,United States,DMR
+3140332,KD5JP,Jesse M Painter,,Edmond,Oklahoma,United States,DMR
3140333,K5DLR,David Richard Richard,,Edmond,Oklahoma,United States,DMR
3140334,W5KLD,Kenneth L Drehman,Ken,Bartlesville,Oklahoma,United States,DMR
3140335,WA5ETV,Gary L Mc Cormick,,Okla City,Oklahoma,United States,DMR
@@ -38014,7 +38668,7 @@
3140418,KG5MBX,Brent W Pendergrass,,Haskell,Oklahoma,United States,DMR
3140419,KG5HSZ,Nathan A Boren,Altus,Norman,Oklahoma,United States,DMR
3140420,WA5SEC,Wayne R Smith,,Sand Springs,Oklahoma,United States,DMR
-3140421,AG5EU,Jesse M Painter,,Edmond,Oklahoma,United States,DMR
+3140421,KD5JP,Jesse M Painter,,Edmond,Oklahoma,United States,DMR
3140422,K5WCA,William C Aycock,,Disney,Oklahoma,United States,DMR
3140423,N5UUA,Jon M Edwards,N5uua-2,Wagoner,Oklahoma,United States,DMR
3140424,N5ZIW,Chris Schuknecht,,Oklahoma City,Oklahoma,United States,DMR
@@ -38022,6 +38676,11 @@
3140426,KK4EWY,Club User 2 Families Amateur Radio Emergency Service,F.A.R.E.S.,Owasso,Oklahoma,United States,DMR
3140427,KK4EWY,Club User 3 Families Amateur Radio Emergency Service,F.A.R.E.S.,Owasso,Oklahoma,United States,DMR
3140428,KK4EWY,Club User 4 Families Amateur Radio Emergency Service,F.A.R.E.S.,Owasso,Oklahoma,United States,DMR
+3140429,KG5PSX,Tera Simon,,Broken Arrow,Oklahoma,United States,DMR
+3140430,KF5YAP,Michael L Evans,,Mcloud,Oklahoma,United States,DMR
+3140431,KD5WPU,Ronald R Sweeten,,Bartlesville,Oklahoma,United States,DMR
+3140432,KD5WPU,Ronald R Sweeten,,Bartlesville,Oklahoma,United States,DMR
+3140433,K5KBA,James S Broom,,Tulsa,Oklahoma,United States,DMR
3141001,N7MAQ,Jim Hanrahan,,Woodbum,Oregon,United States,Portable
3141002,N7MAQ,Jim Hanrahan,,Woodbum,Oregon,United States,Mobile
3141003,KC7HBU,David Rogers,,Portland,Oregon,United States,Portable
@@ -38128,6 +38787,8 @@
3141104,KI7EOR,Laura Wickstrand,,Astoria,Oregon,United States,DMR
3141105,K7ZZY,Michael N Norris,Mike,Corbett,Oregon,United States,DMR
3141106,N7ZIM,Gary Zimmerman,,Bend,Oregon,United States,DMR
+3141107,W7BMF,Robert L Burk,,Hammond,Oregon,United States,DMR
+3141108,KF7TPO,Joshua A Thompson,,Warrenton,Oregon,United States,DMR
3142001,N3ST,Bryan Dorbert,,Littlestown,Pennsylvania,United States,Portable
3142002,K4MTP,Mike Priebe,,Effort,Pennsylvania,United States,Mobile
3142003,N3OBL,Frank Smoyer,,Pittsburgh,Pennsylvania,United States,Portable
@@ -38534,6 +39195,15 @@
3142405,N3EOP,Jamie Christenson,,Pittsburgh,Pennsylvania,United States,DMR
3142406,KC3AAD,George J Silowash,,Greensburg,Pennsylvania,United States,DMR
3142407,KC3GUU,James W Stiver,,Hermitage,Pennsylvania,United States,DMR
+3142408,K3GZ,Gary A Bodnar,,Newtown Square,Pennsylvania,United States,DMR
+3142409,K3VL,Ralph M Geiyer,Mark,Gray,Pennsylvania,United States,DMR
+3142410,W3YI,Juan Jose University Of Pittsburgh Amat Rad Assn,,Pittsburgh,Pennsylvania,United States,DMR
+3142411,N2QDZ,York T Yuen,,Etters,Pennsylvania,United States,DMR
+3142412,W3NRL,Nicholas R Lerro,Nick,Woodlyn ,Pennsylvania,United States,DMR
+3142413,KA3VRW,Philip E Hemenway,,Wellsboro ,Pennsylvania,United States,DMR
+3142414,WB3DLN,Dale L Howey,,Wellsboro,Pennsylvania,United States,DMR
+3142415,KC3FEZ,Richard Weddigen,,Hellertown,Pennsylvania,United States,DMR
+3142416,N3AEP,Ronald E Thompson,,Adamsburg,Pennsylvania,United States,DMR
3144001,KB1ISZ,William Carlson,,Smithfield,Rhode Island,United States,Hytera Portable
3144002,KB1ISZ,William Carlson,,Smithfield,Rhode Island,United States,Hytera Loaner
3144003,KC2FMI,Joseph Miklovic,,North Kingstown,Rhode Island,United States,Portable
@@ -38807,7 +39477,6 @@
3145237,N2EIO,David Jennings,,Beaufort,South Carolina,United States,Portable
3145238,KI4XS,Wray Lemkle,,Mt. Pleasant,South Carolina,United States,Portable
3145239,K4DWH,Dennis Hyder,,Leesville,South Carolina,United States,Portable
-3145240,KJ4BSM,Nicholas Horvath,,Bluffton,South Carolina,United States,Portable
3145241,KI4ROL,Sherron, David,,Bluffton,South Carolina,United States,Portable
3145242,WA4MPZ,Murray Baughman,,Bluffton,South Carolina,United States,Portable
3145243,KK4GAB,Ryan Spoone,,Hilton Head Island,South Carolina,United States,Portable
@@ -39179,6 +39848,19 @@
3145614,KE4VFD,Joshua W Caldwell,,Anderson,South Carolina,United States,DMR
3145615,N1JG,John P Gunderson,,Spartanburg,South Carolina,United States,DMR
3145616,KK4KSY,Robert W Froelich,Bob,Myrtle Beach,South Carolina,United States,DMR
+3145617,KM4YFV,Ashley Landreth,,Simpsonville,South Carolina,United States,DMR
+3145618,KM4YFV,Ashley Landreth,,Simpsonville,South Carolina,United States,DMR
+3145619,KM4VIY,Garland M Burgess,Mark,Pickens,South Carolina,United States,DMR
+3145620,KK4SAE,William Seabrook Seabrook,,Woodruff,South Carolina,United States,DMR
+3145621,KM4TWA,James Wegener,,Edgefield,South Carolina,United States,DMR
+3145622,KE7SZV,Daniel R Bjorklund,,Trenton,South Carolina,United States,DMR
+3145623,KM4VIY,Garland M Burgess,Mark,Pickens,South Carolina,United States,DMR
+3145624,KE4OFT,Jimmy W Bowen,,Pickens,South Carolina,United States,DMR
+3145625,KM4WVA,Richard B Morgan,Dick,Charleston,South Carolina,United States,CCS7
+3145626,KE4OFT,Jimmy W Bowen,,Pickens,South Carolina,United States,DMR
+3145627,KK4WIG,Donald J Jackson,Jim,North Augusta,South Carolina,United States,DMR
+3145628,KM4TDM,Jonathan A Williamson,Jono,Lexington,South Carolina,United States,DMR
+3145629,KM4TDM,Jonathan A Williamson,Jono,Lexington,South Carolina,United States,DMR
3146001,KG6JLB,Thomas Rohwer,,Madison,South Dakota,United States,Portable
3146002,AD0BN,Aaron Locker,,Sioux Falls,South Dakota,United States,Portable
3146003,KD0QYR,Dustin Schnabel,,Sioux Falls,South Dakota,United States,Non-DMR
@@ -39190,6 +39872,7 @@
3146009,N0AYK,Gary E Dahlerup,,Aberdeen,South Dakota,United States,DMR
3146010,KD0TKD,Tyrone D Lee,,Sturgis,South Dakota,United States,DMR
3146011,N2VRQ,David Larson,,Rapid City,South Dakota,United States,DMR
+3146012,K0WXP,Shawn B Pope,,Sioux Falls,South Dakota,United States,DMR
3147001,WB4JGI,Stuart Whitmire,,Cleveland,Tennessee,United States,Portable
3147002,K1LNX,Stephen Brown,,Johnson City,Tennessee,United States,Portable
3147003,K1LNX,Stephen Brown,,Johnson City,Tennessee,United States,Mobile
@@ -39663,6 +40346,14 @@
3147473,KM4ITW,Barry N Cantrell,,Knoxville,Tennessee,United States,DMR
3147474,KD4VTZ,Jeffrey W Chism,,Lakeland,Tennessee,United States,DMR
3147475,N3SAM,Samuel Lachance,Sam,Chattanooga,Tennessee,United States,DMR
+3147476,W4EAS,Terry L Allen,,Clinton,Tennessee,United States,DMR
+3147477,KM5GT,Greg A Tilford,,Chattanooga,Tennessee,United States,CCS7
+3147478,K4HOS,Norman G Hoskins,,Oliver Springs,Tennessee,United States,DMR
+3147479,KD4IID,Michael Henry,,Quebeck,Tennessee,United States,DMR
+3147480,KB4NK,Bobby E Argo,,Oliver Springs,Tennessee,United States,DMR
+3147481,KM4WYE,Shawn M Horne,,Mooresburg ,Tennessee,United States,DMR
+3147482,KK4PKT,Timmie L Sloan,,La Follette,Tennessee,United States,DMR
+3147483,KB4NK,Bobby E Argo,Bob,Oliver Springs ,Tennessee,United States,DMR
3148001,W5EBQ,Jim Hopper,,Dallas,Texas,United States,
3148002,N4MSE,Jeff Alexander,,Dallas,Texas,United States,
3148003,KE4QLC,Cliff Jenkins,,Commerce,Texas,United States,Portable
@@ -40538,6 +41229,17 @@
3148873,KA1MZY,Joe Plano,,Universal City,Texas,United States,DMR
3148874,KD2KW,Kenneth E Mitchell,Ken,Oak Point,Texas,United States,DMR
3148875,N7UQ,Charles R Dockery,Chuck,Wylie,Texas,United States,DMR
+3148876,AG5FB,Wayne C Coleman,,Fort Worth,Texas,United States,CCS7
+3148877,KC5AQS,David C Bachus,,San Antonio,Texas,United States,DMR
+3148878,K1DEA,Astin Thomas Thomas,Astin,Houston,Texas,United States,DMR
+3148879,KS5V,Dan Villalanti,Carl,Houston,Texas,United States,DMR
+3148880,KD5S,Kelly G Spencer,,Waskom,Texas,United States,DMR
+3148881,KC5FOG,Frequency Of Galveston Amateur Radio Club,Fogarc,Galveston,Texas,United States,Club Fleet
+3148882,W5SJT,Steve San Angelo Eoc Support Club,,San Angelo,Texas,United States,DMR
+3148883,NX5D,David L Karber,,Mesquite,Texas,United States,DMR
+3148884,KG5ONF,Michael C Jacobson,,Richmond,Texas,United States,DMR
+3148885,KD5GJE,Timothy L Warren,,Lubbock,Texas,United States,DMR
+3148886,KE5UT,Stewart Rabinowitz,,Celina,Texas,United States,DMR
3149001,N6DVZ,Roger Davies,,West Jordan,Utah,United States,Portable
3149002,KC7WSU,Chris Andrist,,Lehi,Utah,United States,DMR
3149003,WR7O,Douglas Datwyler,,Sandy,Utah,United States,Portable
@@ -40630,6 +41332,7 @@
3149090,W1YMI,Charles R Dickson,,Orem,Utah,United States,DMR
3149091,K1OO,Larry N Myers,,American Fork,Utah,United States,DMR
3149092,KE7DOG,Karen I Anderson,,Bountiful,Utah,United States,DMR
+3149093,KC7TPV,Robin S Pardey,,Salt Lake City,Utah,United States,DMR
3150001,N1CIV,Bob Jacobson,,Hartford,Vermont,United States,Portable
3150002,KC5CNT,Russ Hules,,Middlebury,Vermont,United States,Mobile
3150003,KC5CNT,Russ Hules,,Middlebury,Vermont,United States,Portable
@@ -40702,6 +41405,8 @@
3150070,KA1BUM,Rollin M Rice,,Windsor,Vermont,United States,DMR
3150071,KC1BT,Allan R Machell,Ray,Barre,Vermont,United States,DMR
3150072,KB1FDA,Joe Truss Truss,Joe,East Corinth,Vermont,United States,DMR
+3150073,KB1ZYP,Colleen D,,Rutland,Vermont,United States,DMR
+3150074,KA1LDL,Miles M Silk,,Barre,Vermont,United States,DMR
3151001,N8RK,Ralf Klingler,,Hayes,Virginia,United States,
3151002,W4YP,Bob Spindle,,Haymarket,Virginia,United States,Portable
3151003,W4YP,Bob Spindle,,Haymarket,Virginia,United States,Control Station
@@ -40848,7 +41553,7 @@
3151144,KK4SDN,Jeremy Drummond,,Virginia Beach,Virginia,United States,Portable
3151145,K3RFP,William R Nash,,Staunton,Virginia,United States,Mobile
3151146,K3RFP,Robert ,,Nash,Virginia,United States,Portable
-3151147,KG4FJC,John Gnatowsky,,Arvonia,Virginia,United States,Mobile
+3151147,KG4FJC,Jason Gnatowsky,,Arvonia,Virginia,United States,DMR
3151148,KG4HOT,Tim Miller,,schuyler,Virginia,United States,Mobile
3151149,N0WP,William Pond,,Ruckersville,Virginia,United States,Portable
3151150,KJ4PGD,John Fury,,Montross,Virginia,United States,Mobile
@@ -41144,6 +41849,12 @@
3151442,N3OP,Reginald R Cuffee,,Chesapeake,Virginia,United States,DMR
3151443,KK4VNM,Joshua Hankins,,Cedar Bluff,Virginia,United States,DMR
3151444,KD4ADL,Derek A Rogers,,Christiansburg,Virginia,United States,DMR
+3151445,KC4ASU,Angela Y Rogers,,Christiansburg,Virginia,United States,DMR
+3151446,KI4SIO,Gavin S Miller,,Roanoke,Virginia,United States,DMR
+3151447,KC5CG,Christopher A Graves,Gump,Ashburn,Virginia,United States,DMR
+3151448,KC3BPC,Ryan L Graves,,Ashburn,Virginia,United States,DMR
+3151449,N3ARH,Andrew R Hower,,Bluemont,Virginia,United States,DMR
+3151450,K5SAX,James E Whitley,Jim,Chesapeake,Virginia,United States,DMR
3153001,KD7AKB,Chris Palmer,,Bremerton,Washington,United States,Mobile
3153002,NF6C,Gregory Krantz,,Orting,Washington,United States,Mobile
3153003,NF6C,Gregory Krantz,,Orting,Washington,United States,Portable
@@ -41426,6 +42137,20 @@
3153280,K6WLF,Robert K Johnson,,Kirkland,Washington,United States,DMR
3153281,KI7BKK,James P Walker Jr,Jim,Woodinville,Washington,United States,DMR
3153282,W7CEB,Charles Beckmeier Beckmeier,,Redmond,Washington,United States,DMR
+3153283,W8JLV,James L Vincent,Jim,Sammamish,Washington,United States,DMR
+3153284,KG7SQP,John J Roberts Roberts,John,Bellevue,Washington,United States,DMR
+3153285,N7ESI,David S Rait,,Orting,Washington,United States,DMR
+3153286,KE7LSS,Kevin N Cuffel,,Vancouver,Washington,United States,DMR
+3153287,KF7MAN,Gabriel A Ghergu,,Lynnwood,Washington,United States,DMR
+3153288,W7HMT,Randy J Richmond,,North Bend,Washington,United States,DMR
+3153289,K7GTC,Darin L Record,,Tieton,Washington,United States,DMR
+3153290,KG7BFE,Michelle A Grieci Ghergu,,Lynnwood,Washington,United States,DMR
+3153291,KG4YKC,Luke Medcalf,,Seattle,Washington,United States,DMR
+3153292,W2ZT,Eric P Brownell,,Snohomish,Washington,United States,DMR
+3153293,W5RZG,John Roberts,,Bellevue,Washington,United States,DMR
+3153294,KI7GMN,Elizabeth C Macrae,,Sammamish,Washington,United States,DMR
+3153295,KG7KH,Jeff Dickenson,,Vancouver,Washington,United States,DMR
+3153296,N6TYG,Tony Bamberger,Tonyb,Battle Ground,Washington,United States,DMR
3154001,WV8VFD,Tyler Lewis,,Parkersburg,West Virginia,United States,Portable
3154002,WB3JPB,Bruce Conley,,Inwood,West Virginia,United States,Portable
3154003,WB8WKO,Mike Vargo,,Mount Hope,West Virginia,United States,Portable
@@ -41548,6 +42273,10 @@
3154120,KE8BEE,Harley S ` `Justice,,Madison,West Virginia,United States,DMR
3154121,WM0S,Lyle E Seigel,,Bunker Hill,West Virginia,United States,DMR
3154122,KD8CVI,Sidney R Maynard,,Henlawson,West Virginia,United States,DMR
+3154123,KE8EWP,Charles D Brown,,Justice,West Virginia,United States,DMR
+3154124,KD8WDA,Martin B Riffle,,Leon,West Virginia,United States,DMR
+3154125,AE8CW,Clint White White,Clint,Hewett,West Virginia,United States,DMR
+3154126,KD8WDA,Martin B Riffle,,Leon,West Virginia,United States,DMR
3155001,N9NLZ,Craig Ochs,,Brookfield,Wisconsin,United States,Portable
3155002,KB9VLL,Dan Albert,,South Milwaukee,Wisconsin,United States,Portable
3155003,KB9ENO,William Niemuth,,Hortonville,Wisconsin,United States,Portable
@@ -41753,6 +42482,10 @@
3155204,K9FRD,Nathaniel L Heise,Nate,Elkhorn,Wisconsin,United States,DMR
3155205,N9PYA,Dwayne Devore Devore,,Kenosha,Wisconsin,United States,DMR
3155206,N9PYA,Dwayne Devore,,Kenosha,Wisconsin,United States,DMR
+3155207,KC9VEQ,Michelle A White,,Rhinelander,Wisconsin,United States,DMR
+3155208,N0EEM,Edward E Murray,,Superior ,Wisconsin,United States,DMR
+3155209,KD9HCW,Corey Becker,,Racine,Wisconsin,United States,DMR
+3155210,KC9BTF,Angie L Skrentny,,West Bend,Wisconsin,United States,DMR
3156001,KC7YRA,Brad Lutz,,Casper,Wyoming,United States,Portable
3156002,KC7YRA,Brad Lutz,,Casper,Wyoming,United States,Mobile
3156003,KC0ZHF,Rodney Waln,,Cheyenne,Wyoming,United States,Portable
@@ -42014,6 +42747,7 @@
3708022,HI8HAP,Hemilton PeñA,,Bani,Peravia,Dominican Republic,DMR
3708023,HI8JRG,Rafael Genao,Rafael Genao,Hollywood Florid,Distrito Nacional,Dominican Republic,DMR
3708024,HI8V,Victor Baez (Vic),,Santo Domingo, Este,Distrito Nacional,Dominican Republic,DMR
+3708025,HI8W,Waldo Pons Cabral,,Santo Domingo,Distrito Nacional,Dominican Republic,DMR
3740001,9Y4DH,Dexter Harroo,,San Juan,,Trinidad and Tobago,Loaner
3740002,9Z4RG,Ravindranath Goswami,Robby,Port-Of-Spain,Woodbrook,Trinidad and Tobago,DMR
3740004,9Y4G7HEK,Andy Owen,,Port Of Spain,Woodbrook,Trinidad and Tobago,DMR
@@ -42185,6 +42919,9 @@
4403016,JA3RGQ,Ogawa Sugao,,Kyoto,Kinki,Japan,DMR
4403017,JA3ASU,Sayama Nobunori,Nob,Kyoto,Kinki,Japan,DMR
4403018,JA3QWG,Yatsuyoshi Yamamoto Yamamoto,Yama,Kakogawa,Kinki,Japan,DMR
+4403019,JH3ZMD,Hermano Kubota,Nobu,Kyoto,Kinki,Japan,DMR
+4403020,JA3ICQ,Nobuo Kubota,,Kyoto,Kinki,Japan,DMR
+4403021,JL3ZEF,Nobunori Sayama,Nob,Kyoto,Kinki,Japan,DMR
4404001,JO4DYL,Masanobu Ikemoto,,Yanai,Chugoku,Japan,Mobile
4404002,JO4DYL,Masanobu Ikemoto,,Yanai City,Chugoku,Japan,Mobile
4404003,JH4OWG,Hiroshi Nakamura,Hiro,Kurashiki,Chugoku,Japan,CCS7
@@ -42212,6 +42949,7 @@
4407021,JE7UPL,Masami Ichinohe,Naseri,Aomori,Tohoku,Japan,CCS7
4407022,JH7ZER,Aomori Tsukimiryou,Tsuki,Aomori City,Tohoku,Japan,CCS7
4407023,JH7ZER,Aomori Tsukimiryou,Tsuki,Aomori City,Tohoku,Japan,DMR
+4407024,JK7BEJ,Hiroyuki Mamada,,Hachinohe,Tohoku,Japan,CCS7
4408001,JI8KVH,Yoshiyasu Akehi,,Kitami,Hokkaido,Japan,Other
4408002,JA8IBG,Konishi Masashi,,Sapporo,Hokkaido,Japan,DMR
4409001,JH9IIA,Ryusho Tanabe,,Tsuruga,Hokuriku,Japan,Mobile
@@ -42312,6 +43050,7 @@
4500064,DS5DBQ,Jeongsu Jeon,Jeong,Busan,BuSan Si,Korea S, Republic of,CCS7
4500065,DS5DBQ,Jeongsu Jeon,Jeong,Busan,BuSan Si,Korea S, Republic of,CCS7
4500066,DS5NEO,Oh Hong-Joo,Jooe Oh,Busan,BuSan Si,Korea S, Republic of,CCS7
+4500067,HL5PBF,Jong-Min Lee,Jonglee,Busan,BuSan Si,Korea S, Republic of,CCS7
4501001,6K2GBE,Seongjin Oh,,Suwon,Chungeheongbuk,Korea, Republic of,
4501002,DS4GYP,Won-gil Jung,,KwangJu,KWangJu Si,Korea S, Republic of,Other
4501003,DS5TUK,Joon Ho Shin,,Suseonggu,Daeku Si,Korea S, Republic of,DMR
@@ -42338,11 +43077,13 @@
4504008,6K5DIO,Wook Rae Cho,Tokata,Kim Hae,KyungSang Nam-Do,Korea S, Republic of,Other
4504009,DS1OUY,Minho Kwon,Minho,Daegu,KyungSang Buk-Do,Korea S, Republic of,CCS7
4504010,6K5DIO,Cho Wook Rae,,Kimhae,KyungSang Nam-Do,Korea S, Republic of,CCS7
+4504011,HL5PDQ,Park Seho,,Gimhae,Kyungsang Nam-Do,Korea S, Republic of,DMR
4505001,HL5BRP,Hwang Chong-Gil,,Hadong-Gun,Chungchong Nam-Do,Korea S, Republic of,DMR
4505005,HL3WQ,Jae Gook Jeon,,Cheonan,Chungchong Nam-Do,Korea S, Republic of,CCS7
4505006,HL3KK,Kwang Ho Kim,,Cheonansi,Chungchong Nam-Do,Korea S, Republic of,DMR
4505007,DS3LYG,Kim Huihwan,Ds3lyg,Seo San- Si,ChungChong Nam-Do,Korea S, Republic of,DMR
4505008,DS3LYG,Kimhuihwan Huihwan,Ds3lyg,Seo San- Si,ChungChong Nam-Do,Korea S, Republic of,Other
+4505009,HL3EYJ,Kwanghee Cho,,Chungju,ChungChong Buk-Do,Korea S, Republic of,DMR
4506001,HL2KZJ,Kwang-ok Yoo,,GunPO-SI,KyungKi-Do,Korea S, Republic of,Other
4506002,HL2UJ,Kim Gil Tae,,CHEONG PYEONG,KyungKi-Do,Korea S, Republic of,DMR
4506003,DS1AWE,Joel(Seung) Han,,Dongducheon,Kyungki-Do,Korea S, Republic of,Other
@@ -42387,6 +43128,8 @@
4507024,DS0DE,Mia 6m Club, 6m6m,Mia Club,Seoul,Seoul,Korea S, Republic of,DMR
4507025,DS1SUR,Ji Yeon Kim,Ji-Yeon Kim ,Seoul,Seoul,Korea S, Republic of,DMR
4507026,HL1LFF,Oh Byung Hoon,,Seoul,Seoul,Korea S, Republic of,DMR
+4507027,HL1TKF,Park Byung-Ho,,Seoul,Seoul,Korea S, Republic of,DMR
+4507028,HL1TKF,Park Byung-Ho,,Seoul,Seoul,Korea S, Republic of,CCS7
4540001,VR2XJN,Charles Tsang,,Hong Kong,Hong Kong,China,Mobile
4540002,VR2XJT,Hkprc ,,Hong Kong,Hong Kong,China,Portable
4540003,VR2RG,Hkprc ,,Hong Kong,Hong Kong,China,Portable
@@ -42713,8 +43456,11 @@
4600020,VR2VTD,Allen Tam,,Hong Kong,Hong Kong,China,DMR
4600021,VR2HKS,Hkir Information Technology Club Scout Hong Kong Island Region (Hkir),Scout Hkir It Club,Wan Chai,Hong Kong,China,DMR
4600022,BH4DPF,Jeffrey Tan,,Shanghai,All Others,China,DMR
+4600023,VR2UCL,Cary Leung,,Kowloon,Hong Kong,China,DMR
+4600024,VR2UCL,Cary Leung,,Kowloon,Hong Kong,China,DMR
4602001,BH2REY,Zhaowei Zheng,Piku,Dalian,Hei Long Jiang Ji Lin Liao Ning,China,DMR
4602002,BH2REY,Zhaowei Zheng,Chi,Dalian,Hei Long Jiang Ji Lin Liao Ning,China,DMR
+4607001,BG7CAX,Zheng Yao,Akimoto,Changsha,Hu Nan Guang Dong Guang Xi,China,DMR
4661001,BX2ABT,Hans Fong,Dutchduke,Taoyuan City,Taipei,Taiwan,DMR
4661002,BX2AFC,Yngwie Chou,,Taipei,Taipei,Taiwan,DMR
4661003,BV2NT,Lee Paulton,,Taipei,Taipei,Taiwan,DMR
@@ -42742,6 +43488,13 @@
4661025,BX2ADE,Tim Huang,Panda,Taipei,Northern Taiwan,Taiwan,DMR
4661026,BV2FP,Kao David,,Taipei,Northern Taiwan,Taiwan,DMR
4661027,BM3HTT,Kao Ryan,,Taoyuan City,Northern Taiwan,Taiwan,DMR
+4661028,BX2AEK,Kim Liao,,Taipei,Outlying ,Taiwan,DMR
+4661029,BU3AA,åŠ‰å•Ÿæ— Liu,Akira,Taoyuan,Northern Taiwan,Taiwan,DMR
+4661030,BM2IUA,Kevin Chin,,Taoyuan,Northern Taiwan,Taiwan,DMR
+4661031,BV5AC,Lee Yeh-Ho,,Changhua Tw,Central Taiwan,Taiwan,DMR
+4661032,BM2LSM,Zhong Yu Wang,,New Taipei City,Taipei,Taiwan,DMR
+4661033,BV5OO,Yaojun Hsieh,,Taipei ,Taipei,Taiwan,DMR
+4661034,BM4ISC,Wu Chung Tsai,,Taichung,Central Taiwan,Taiwan,DMR
5020001,9W2VHN,Hafiznaimi Yahya,HAFIZNAIMI,PENANG,Spratly Is.,Malaysia,Mobile
5022001,9M2AOC,Alexander Oon,,Bayan Lepas,Penang,Malaysia,Portable
5022002,9M2SF,See Fung Lee,,ISland Glades,Penang,Malaysia,Portable
@@ -42805,6 +43558,8 @@
5051034,VK1MTS,Roald Martinsen,,Canberra,Australian Capital Territory,Australia,DMR
5051035,VK2DTW,Richard Calder,Dick,Goulburn,Australian Capital Territory,Australia,DMR
5051036,VK1EM,Mark C C,,Canberra,Australian Capital Territory,Australia,DMR
+5051037,VK2MWP,Andrew Geddes,,Canberra,Australian Capital Territory,Australia,DMR
+5051038,VK1OC,Robert Cook,Owen,Canberra,Australian Capital Territory,Australia,DMR
5052001,VK2YLO,John Reeves,,Goonellabah,New South Wales,Australia,Mobile
5052002,VK2LK,Matt Robert,,Sydney,New South Wales,Australia,
5052003,VK2YVA,Mal Alexander,,Campbelltown,New South Wales,Australia,
@@ -42994,6 +43749,13 @@
5052188,VK2FKLM,Mark Andrews,,Sydney,New South Wales,Australia,DMR
5052189,VK2HK,Ian Tulley,,Wyee,New South Wales,Australia,DMR
5052190,VK2KMI,Kimberly Olsen,Kim,Darlinghurst,New South Wales,Australia,DMR
+5052191,VK2MWP,Andrew Geddes,,Queanbeyan,New South Wales,Australia,DMR
+5052192,VK2YHX,Spero Davias,,Newcastle,New South Wales,Australia,DMR
+5052193,VK2AIR,Jeff Mackenzie,Jeff,Northmead,New South Wales,Australia,DMR
+5052194,VK2PSW,Peter Wohlhagen,,Albury,New South Wales,Australia,CCS7
+5052195,VK2PAM,Andrew Mills,,Gosford,New South Wales,Australia,DMR
+5052196,VK2PPM,Peter Mills,,Gosford,New South Wales,Australia,DMR
+5052197,VK2WIH,Hunter Joyce,,Lake Macquarie,New South Wales,Australia,DMR
5053001,VK3XDE,Paul Engler,,Melbourne,Victoria,Australia,Mobile
5053002,VK3TE,Peter Brennan,,Karingal,Victoria,Australia,Portable
5053003,VK3AJ,Peter Chaplin,,Upwey,Victoria,Australia,Mobile
@@ -43090,6 +43852,8 @@
5053094,VK3AJ,Peter Chaplin,,Upwey,Victoria,Australia,CCS7
5053095,VK3LED,Colin Herbert,,Maiden Gully,Victoria,Australia,DMR
5053096,VK3PEF,Des Egan,,Bendigo,Victoria,Australia,DMR
+5053097,VK3CKC,Kj Crockett,,Axedale,Victoria,Australia,DMR
+5053098,VK3GRK,Graeme R Knight,,Bendigo,Victoria,Australia,DMR
5054001,VK4QF,Andrew Chapman,,Toowoomba,Queensland,Australia,DMR
5054002,VK4QF,Andrew Chapman,,Toowoomba,Queensland,Australia,DMR
5054003,VK4QF,Andrew Chapman,,Toowoomba,Queensland,Australia,DMR
@@ -43196,6 +43960,7 @@
5054105,VK4ID,Allan Gilbey,,Glasshouse Mts,Queensland,Australia,DMR
5054106,VK4ID,Allan Gilbey,,Glasshouse Mts,Queensland,Australia,CCS7
5054107,VK4LGW,Graeme Willox,,Brisbane,Queensland,Australia,DMR
+5054108,VK4TV,Roger Wilson,,Hervey Bay,Queensland,Australia,DMR
5055001,VK5FBFB,Brendan Blackman,,adelaide,South Australia,Australia,Portable
5055002,VK5FBFB,Brendan Blackman,,Adelaide ,South Australia,Australia,DMR
5055003,VK5RZ,Stephan Forka,,Seaford Rise,South Australia,Australia,Other
@@ -43262,6 +44027,10 @@
5056048,VK6WH,West Australian Vhf Group Inc West Australian Vhf Group Inc,,Perth,Western Australia,Australia,DMR
5056049,VK6MST,Allan Huitema,,Melville,Western Australia,Australia,DMR
5056050,VK6NUT,Gurmit Singh Singh,Grom,Perth,Western Australia,Australia,DMR
+5056051,VK6IA,Andrew Albinson,,Ballajura,Western Australia,Australia,DMR
+5056052,VK6PM,Peter May,,Perth,Western Australia,Australia,DMR
+5056053,VK6HX,Craig Mason,,Perth,Western Australia,Australia,DMR
+5056054,VK6DY,Mark J Gaynor,,Perth,Western Australia,Australia,DMR
5056100,VK100ANZ,Hmas Stirling - Gard,,Garden Island,Western Australia,Australia,John McNamee VK6AG
5057001,VK7YXX,Don Nolder,,Richmond,Tasmania,Australia,
5057002,VK7JA,John Andrewartha,,Scottsdale,Tasmania,Australia,Mobile
@@ -43292,6 +44061,7 @@
5101006,YC9USA,David M Haag,David,Wamena,Jakarta ,Indonesia,DMR
5101007,YB0HD,Budi Rianto Halim,Budi,Jakarta,Jakarta ,Indonesia,DMR
5101008,YB1GJS,Gjellani Joostman Sutama ,Jel,Depok,Jakarta ,Indonesia,DMR
+5101009,YD0OAS,Danny Winata,Yd0oas- Danny,Jakarta,Jakarta ,Indonesia,DMR
5150001,DU1UGZ,Ramon Anquilan,,Paranaque City,National Capital Region,Philippines,Other
5150002,DW1ZDR,Audie O. Sanchez,,Pasig City,National Capital Region,Philippines,DMR
5150003,DW1ZDQ,Gazelle Dicen,,Pasig City,National Capital Region,Philippines,DMR
@@ -43406,6 +44176,8 @@
5200108,HS7WGQ,Suwanee Wanna,Kob,Hua-Hin,Bangkok,Thailand,CCS7
5200109,HS8MSJ,Krissana Kamkaew,, Phuket,Phuket,Thailand,CCS7
5200110,HS2XTL,Prasaudsub O,Sub,Muang,Bangkok,Thailand,CCS7
+5200111,HS8MSJ,Krissana Kamkaew,Eat,Phuket,Phuket,Thailand,DMR
+5200112,E24SUR,Hakim Leewamoh,Kim,Bangkok,Bangkok,Thailand,Other
5206001,HS0ZET,Ralf Klingler,,Nongkrot,Nakhon Sawan,Thailand,Portable
5206002,HS3LIQ,Wiwat Metheekasiwat,,Nakhonratchasima,Nakhon Ratchasima,Thailand,
5250001,9V1JC,Wiyanto Jacob,Jacob,Singapore,Singapore,Singapore,DMR
@@ -43558,6 +44330,7 @@
5301137,ZL1RKW,Ryan Warner,,Taumarunui,North Island 1,New Zealand,DMR
5301138,ZL1PKS,K D Williams,,Auckland,North Island 1,New Zealand,DMR
5301139,ZL1MIKE,Mike Conner,Mike,Auckland,North Island 1,New Zealand,DMR
+5301140,ZL1AFK,C Anderson,,Opotiki,North Island 1,New Zealand,DMR
5302001,ZL4JY,John Yaldwyn,,Waikanae,North Island 2,New Zealand,Mobile
5302002,ZL2JG,Jeff Graham,,Waikanae Beach,North Island 2,New Zealand,Mobile
5302003,ZL2JG,Jeff Graham,,Waikanae Beach,North Island 2,New Zealand,Portable
@@ -43737,6 +44510,7 @@
5351002,WH2F,Stephan Buettner,,Dededo,Guam,United States,Portable
5351003,NH2CY,Bradley A Hokanson,Brad,Santa Rita,All,Guam,DMR
5351004,KH2L,Edward H Poppe,Ed,Yona,All,Guam,DMR
+5351005,NH2P,Phillip R Leppke,,Yona,All,Guam,DMR
5371001,P29ZTC,Terry Griffiths,,Port Moresby,NCD,Papua New Guinea,Mobile
5371002,P29LZ,Lowell Zabala,,Lae,Morobe,Papua New Guinea,Mobile
6030001,7X2VX,Abdelkrim Hamza,Abdelkrim,Algiers,,Algeria,
@@ -43798,6 +44572,7 @@
6551011,ZS1GFL,Georg Lerm,Georg,Cape Town,Cape,South Africa,
6551012,ZS1YT,Jakobus Erasmus,Rassie,Strand,Cape,South Africa,
6551013,ZS1ZW,Jason Codd,Jason,Cape Town,Cape,South Africa,
+6551014,ZS1OSK,Ian Stanbridge,Ian,Cape Town,Cape,South Africa,
6552001,ZS2ABF,Peter Tottle,Peter,East Loindon,Eastern Cape,South Africa,
6554001,ZS4OIL,Mark Warner,Mark,Sasolburg,Freestate,South Africa,
6555001,ZS5GR,Tony ,Tony,Durban,Kwazulu-Natal,South Africa,Mobile
@@ -43849,6 +44624,8 @@
6555047,ZS5CEY,Andy Coetzee,Andy,Durban,Kwazulu-Natal,South Africa,
6555048,ZS5PG,Matthew Lyle,Matthew,Durban,Kwazulu-Natal,South Africa,
6555049,ZS5V,Marjoke Schuitemaker,Marjoke,Howick,Kwazulu-Natal,South Africa,
+6555050,ZS5GMW,Garth Wheeler,Garth,Durban,Kwazulu-Natal,South Africa,
+6555051,ZS5WFD,Keith Lowes,Keith,Westville,Kwazulu-Natal,South Africa,
6556001,ZS6RVC,Ronald ,Ronald,Northcliff,Gauteng,South Africa,Mobile
6556002,ZS6DR,Derek ,Derek,Johannesburg,Gauteng,South Africa,Portable
6556003,ZS6ARG,Lee ,Lee,Johannesburg,Gauteng,South Africa,Mobile
@@ -43926,6 +44703,7 @@
6556075,ZS6DJD,Dior Dreyer-Juselius,Dior,Meyerton,Gauteng/Mpumalanga,South Africa,
6556076,ZS6JMG,Jaco McGrillen,Jaco,Meyerton,Gauteng/Mpumalanga,South Africa,
6556077,ZS6EY,Hennie Van Rensburg,Hennie,Vanderbijlpark,Gauteng/Mpumalanga,South Africa,
+6556078,ZS6IIX,Pieter Hendrik Rood,Henry,Benoni,Gauteng/Mpumalanga,South Africa,
7020001,V31MP,Martin Pask,,Benque,San Ignacio,Belize,
7020002,V31DL,Andre Scholz,,Cayo,Cayo District,Belize,Portable
7020003,V3V,Dr Scholz,,Cayo,Cayo District,Belize,Club Fleet
@@ -43979,6 +44757,8 @@
7141026,HP1COO,Alejandro Arroyo,,Panama City,Panama,Panama,Other
7141027,HP8HAR,Hector Rodriguez,,Aguadulce Panama,Panama,Panama,DMR
7141028,HP2MIC,Manuel Chanis ,,Colon ,Colon,Panama,DMR
+7141029,HP1NUR,Tahumanara Chung,,Panama,Panama,Panama,DMR
+7141030,HP1BZE,Augusto Lowe,,Panama,Panama,Panama,DMR
7220001,LW6DX,Fabian Malnero,,General Pacheco,Buenos Aires,Argentina Republic,Portable
7220002,LW2EQU,Jose Romasanta,Jose,Buenos aires,,Argentina,
7220003,LU2CJM,Julio Cesar Marino,,Buenos Aires,Buenos Aires,Argentina Republic,DMR
@@ -44235,6 +45015,14 @@
7301034,CD1GRV,Rayo Arturo Venegas,Cd1grv,Chile,Tarapac,Chile,DMR
7301035,CE1WMY,Jimmy Romero,Jiro,Calama,Antofagasta,Chile,DMR
7301036,CB1SQP,Alejandro Elgueta,Chapala,Antofagasta,Antofagasta,Chile,DMR
+7301037,CE1SJJ,Claudio Mauricio Araya Herrera,,Calama ,Antofagasta,Chile,DMR
+7301038,CD1FJW,Francisco Javier Villalobos Palma,Droptic,Antofagasta,Antofagasta,Chile,DMR
+7301039,CE1WOY,Mauricio Romero,Mauro,Calama,Antofagasta,Chile,DMR
+7301040,CE1GCJ,Juan Daniel Godoy Codorni�,Nito,Calama,Antofagasta,Chile,DMR
+7301042,CA1JNN,Jhon NuñEz,,Calama,Antofagasta,Chile,DMR
+7301043,CA1ROY,Rodrigo Garcia,Roro,Calama,Antofagasta,Chile,DMR
+7301044,CA1IZA,Ivan Alonso Zapata Alderete,,Calama,Antofagasta,Chile,DMR
+7301045,CE1REA,Raul Eduardo Araya Vega,,Calama,Antofagasta,Chile,DMR
7302001,CE2LS,Radio Club Of La Serena,,La Serena,Cuarta,Chile,
7302002,CE2NXW,Jerardo Peralta,,La Serena,Elqui,Chile,Mobile
7302003,CA2DMR,Ruben Dario Munoz,,La Serena,Elqui,Chile,Mobile
@@ -44344,6 +45132,9 @@
7302108,CA2VJF,Victor Flores,,Quillota,Valparaiso,Chile,DMR
7302109,CE2SCP,Alejandro Anacona,Ferreira,Ovalle,Coquimbo,Chile,DMR
7302110,CE2KVL,Klaus Von Loocks Von Loocks,Klaus,ValparaÃSo,Valparaiso,Chile,DMR
+7302111,CE2NVS,Fabian Vera,,Chile,Valparaiso,Chile,DMR
+7302112,CE2NVS,Fabian Vera,,Chile,Valparaiso,Chile,DMR
+7302113,CA2WKZ,Henry Quintulaf,,Limache,Valparaiso,Chile,DMR
7303001,CA3SOC,Raul Romero,,Santiago,Reg.Metr. de Santiago,Chile,Mobile
7303002,CE3YP,George ,George,Jorge,Reg.Metr. de Santiag,Chile,
7303003,CE3BFE,Mario Reyne,romeopapa,Lampa,Reg.Metr. de Santiago,Chile,Otro
@@ -44372,7 +45163,6 @@
7303026,CE3YL,Maria NuÑEz,Yael,Maipu,Reg.Metr. de Santiago,Chile,CCS7
7303027,CE3FED,Federacion De Clubes De Radioaficionados De Chile,Federachi,Santiago,Reg.Metr. De Santiago,Chile,Other
7303028,CA3JVU ,Victor Rodrigo Jimenez Valenzuela,Vicho ,Santiago ,Reg.Metr. De Santiago,Chile,DMR
-7303029,CA3JVU ,Victor Rodrigo Jimenez Valenzuela,Vicho ,Santiago,Reg.Metr. De Santiago,Chile,DMR
7303030,CA3UHE,Walter Zapata,WaltiñO,Santiago,Reg.Metr. de Santiago,Chile,DMR
7303031,CA3JSG,Josue Garcia,Josue,Santiago,Reg.Metr. de Santiago,Chile,DMR
7303032,CA3UCK,Bernardo Ortega,Bernardo,Santiago,Reg.Metr. de Santiago,Chile,DMR
@@ -44385,7 +45175,17 @@
7303039,CA2DSM,Daniel Sepulveda,Kabun,Melipilla,Reg.Metr. De Santiago,Chile,Other
7303040,CD3GMH,Gonzalo Munoz,Gonzalo,Santiago,Reg.Metr. De Santiago,Chile,DMR
7303041,CD3GMH,Gonzalo Mu�Oz,Gonzalo,Santiago,Reg.Metr. De Santiago,Chile,DMR
+7303042,CE3DOC,Darko Olguin C,Ce3doc,Santiago,Reg.Metr. De Santiago,Chile,DMR
+7303043,CD3ESB,Eduardo Scheihing,Eco Sierra,Santiago,Reg.Metr. de Santiago,Chile,DMR
+7303044,CE3EPN,Eduardo Arturo Pereira Naranjo.,,Santiago,Reg.Metr. De Santiago,Chile,Other
+7303045,CA3VSP,Jaime Correa Mu�Oz,,Santiago,Reg.Metr. De Santiago,Chile,DMR
+7303046,CD3HFM,Hector Fuentes,Tito,Colina,Reg.Metr. de Santiago,Chile,DMR
+7303047,CD3HAJ,Javier Hormazabal,,Puente Alto,Reg.Metr. de Santiago,Chile,DMR
+7303048,CD3IRV,Carlos Ignacio Guevara Rios,,Santiago,Reg.Metr. De Santiago,Chile,DMR
+7303049,CD3KHO,Arturo A. Medina,,Santiago,Reg.Metr. de Santiago,Chile,DMR
+7303050,CD3OPD,Cesar Mucherl,,Santiago,Reg.Metr. de Santiago,Chile,DMR
7304001,CE4CSC,Carlos SáEz ,,Cauquenes,Maule,Chile,DMR
+7304002,CA4KRC,Jonathan Valderrama,,Chillan Viejo,Maule,Chile,DMR
7305001,CE5RHS,Miguel Vergara O.,,Coronel,Bio Bio,Chile,DMR
7305002,CE5KBR,Mauricio Vasquez C,,Los Angeles,Bio Bio,Chile,DMR
7305003,CA5SBT,Esteban Osorio,Esalos,ConcepcióN,Bio Bio,Chile,DMR
@@ -44414,6 +45214,7 @@
7341006,YY1MAV,Miguel Angel Villasmil Yanez,,Maracaibo,Falcon,Trujillo,Zulia,Venezuela,DMR
7341007,YV1EMH,Bruno J Villalobos R,,Maracaibo,Falcon,Trujillo,Zulia,Venezuela,DMR
7344001,YV4WC,Winkock Chang,,Valencia,Aragua,Carabobo,Cojedes,Venezuela,DMR
+7344002,YV4CWK,Ruben Angel Villar Fernandez,,Valencia,Aragua,Carabobo,Cojedes,Venezuela,DMR
7345001,YV5AJ,Club Venezuelo,,Caracas,Distrito Capital,Venezuela,Mobile
7345002,YV5RNE,R Nacional De Emerg.,,Caracas,Distrito Capital,Venezuela,Mobile
7345003,YV5NGV,Jose Dames,,Caracas,,Venezuela,
@@ -44430,11 +45231,12 @@
7345015,YY5ADM,Arnaldo Jose Aguilar Flores,,Caracas,Distrito Capital. Guarico,Miranda,Dependencias Federales,Venezuela,DMR
7345016,YV5NIV,Alexander RodrIGuez Mora,,Caracas,Distrito Capital. Guarico,Miranda,Dependencias Federales,Venezuela,DMR
7346001,YY6TTA,Gustavo Mena,,Barcelona,Anzoategui,Bolivar,Venezuela,Mobile
+7380001,8R1B,Julian Embrack,,Georgetown,Georgetown,Guyana,DMR
7400001,HC1ER ,Edison Perez,,Quito,All,Ecuador,DMR
7400002,HC2GBT,Gerald Gawaldo,Gerry,Guayaquil,All,Ecuador,DMR
7440001,ZP3BGA,Jose Raul Invernizzi,,Pedro Juan Caballero,,Paraguay,Mobile
7440002,ZP3BGA,Jose Raul Invernizzi,Jose Raul,Pedro Juan Caballero,Amabay,Paraguay,CCS7
-7481001,CX2AL, Hipólito Tournier,,Montevideo,Montevideo,Uruguay,Mobile
+7481001,CX2AL,Hipolito Tournier,,Montevideo,Montevideo,Uruguay,DMR
7481002,CX1RK,Miguel Angel Cabrera Mendez,Mike,Maldonado,Montevideo,Uruguay,DMR
13106201,N6DVA,Trbo Server,,Los Angeles,California,United States,On TS1
13106202,N6DVA,Trbo Server,,Los Angeles,California,United States,On TS2